/* contact-styles.css - Dark Gaming Theme Matching Blog Design */

/*--------------------------------------------------------------
# CSS Custom Properties - Matching Blog Color Scheme
--------------------------------------------------------------*/
:root {
  /* Primary Blog Colors */
  --primary-color: #1C1C1C;
  --accent-red: #FF3B30;
  --accent-orange: #FF6A00;
  --secondary-silver: #C0C0C0;
  --electric-lime: #CCFF00;
  --electric-cyan: #00FFFF;
  --text-white: #FFFFFF;
  --text-gray: #CCCCCC;
  --bg-dark: #0A0A0A;
  --bg-darker: #060606;
  
  /* Spacing System */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  --space-xxxl: 4rem;
  
  /* Typography Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
}

/*--------------------------------------------------------------
# Base Layout - Dark Theme
--------------------------------------------------------------*/
.contact-wrapper {
  background: var(--primary-color);
  min-height: 100vh;
  color: var(--text-white);
  padding-top: 80px;
}

/*--------------------------------------------------------------
# Page Header - Matching Blog Style
--------------------------------------------------------------*/
.page-header {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--primary-color) 50%, var(--bg-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-xxl);
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, var(--accent-red) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, var(--accent-orange) 0%, transparent 50%);
  opacity: 0.1;
  z-index: 1;
}

.page-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.header-content {
  flex: 1;
}

.page-title {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--text-white), var(--secondary-silver));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}

.page-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-gray);
  max-width: 500px;
}

.header-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-white);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/*--------------------------------------------------------------
# Main Container
--------------------------------------------------------------*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/*--------------------------------------------------------------
# Contact Content Layout
--------------------------------------------------------------*/
.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xxl);
  padding: var(--space-xxl) 0;
}

/*--------------------------------------------------------------
# Contact Info Section - Gaming Style
--------------------------------------------------------------*/
.contact-info {
  background: var(--bg-dark);
  border-radius: 20px;
  padding: var(--space-xxl);
  border: 1px solid rgba(255, 59, 48, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 59, 48, 0.1), transparent);
  transition: left 0.5s ease;
}

.contact-info:hover::before {
  left: 100%;
}

.contact-info:hover {
  border-color: var(--accent-red);
  box-shadow: 0 10px 30px rgba(255, 59, 48, 0.1);
}

.info-header h2 {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
  color: var(--text-white);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.info-header h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  margin-top: var(--space-sm);
  border-radius: 2px;
}

.info-header p {
  font-family: 'Inter', sans-serif;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  font-size: var(--text-base);
  position: relative;
  z-index: 2;
}

/*--------------------------------------------------------------
# Contact Methods
--------------------------------------------------------------*/
.contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--primary-color);
  border-radius: 15px;
  border: 1px solid rgba(255, 59, 48, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.contact-method:hover {
  border-color: var(--accent-red);
  transform: translateX(5px);
  background: rgba(255, 59, 48, 0.05);
}

.method-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  color: var(--text-white);
  flex-shrink: 0;
}

.method-content h3 {
  font-family: 'Bebas Neue', Arial, sans-serif;
  color: var(--text-white);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.05em;
  font-size: var(--text-lg);
  text-transform: uppercase;
}

.method-content p {
  font-family: 'Inter', sans-serif;
  color: var(--text-gray);
  line-height: 1.5;
  font-size: var(--text-base);
  margin: 0;
}

/*--------------------------------------------------------------
# Business Hours Section
--------------------------------------------------------------*/
.business-hours {
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 2;
}

.business-hours h3 {
  font-family: 'Bebas Neue', Arial, sans-serif;
  color: var(--text-white);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.05em;
  font-size: var(--text-xl);
  text-transform: uppercase;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  background: var(--primary-color);
  border-radius: 10px;
  border: 1px solid rgba(255, 59, 48, 0.2);
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.hours-row:hover {
  border-color: var(--accent-red);
  background: rgba(255, 59, 48, 0.05);
}

.hours-row .day {
  color: var(--secondary-silver);
  font-weight: 600;
  font-size: var(--text-sm);
  font-family: 'Bebas Neue', Arial, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hours-row .time {
  color: var(--text-white);
  font-weight: 600;
  font-size: var(--text-sm);
}

/*--------------------------------------------------------------
# Social Section
--------------------------------------------------------------*/
.social-section {
  position: relative;
  z-index: 2;
}

.social-section h3 {
  font-family: 'Bebas Neue', Arial, sans-serif;
  color: var(--text-white);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.05em;
  font-size: var(--text-xl);
  text-transform: uppercase;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.social-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: var(--primary-color);
  border-radius: 10px;
  border: 1px solid rgba(255, 59, 48, 0.2);
  text-decoration: none;
  color: var(--text-gray);
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.social-link:hover {
  border-color: var(--accent-red);
  color: var(--text-white);
  transform: translateY(-2px);
}

.social-link.facebook:hover {
  background: rgba(59, 89, 152, 0.2);
  border-color: #3b5998;
}

.social-link.instagram:hover {
  background: rgba(225, 48, 108, 0.2);
  border-color: #e1306c;
}

.social-link.youtube:hover {
  background: rgba(255, 0, 0, 0.2);
  border-color: #ff0000;
}

.social-link.twitter:hover {
  background: rgba(29, 161, 242, 0.2);
  border-color: #1da1f2;
}

.social-link i {
  font-size: var(--text-base);
}

/*--------------------------------------------------------------
# Contact Form Section - Gaming Style
--------------------------------------------------------------*/
.contact-form-section {
  background: var(--bg-dark);
  border-radius: 20px;
  padding: var(--space-xxl);
  border: 1px solid rgba(255, 59, 48, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 59, 48, 0.1), transparent);
  transition: left 0.5s ease;
}

.contact-form-section:hover::before {
  left: 100%;
}

.contact-form-section:hover {
  border-color: var(--accent-red);
  box-shadow: 0 10px 30px rgba(255, 59, 48, 0.1);
}

.form-header h2 {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
  color: var(--text-white);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.form-header h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  margin-top: var(--space-sm);
  border-radius: 2px;
}

.form-header p {
  font-family: 'Inter', sans-serif;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  font-size: var(--text-base);
  position: relative;
  z-index: 2;
}

/*--------------------------------------------------------------
# Alert Messages
--------------------------------------------------------------*/
.alert {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  border-radius: 10px;
  margin-bottom: var(--space-xl);
  font-family: 'Inter', sans-serif;
  position: relative;
  z-index: 2;
}

.alert-success {
  background: rgba(40, 167, 69, 0.2);
  border: 2px solid #28a745;
  color: #28a745;
}

.alert-error {
  background: rgba(255, 59, 48, 0.2);
  border: 2px solid var(--accent-red);
  color: var(--accent-red);
}

.alert i {
  font-size: var(--text-lg);
}

/*--------------------------------------------------------------
# Contact Form Styling
--------------------------------------------------------------*/
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  position: relative;
  z-index: 2;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: 'Bebas Neue', Arial, sans-serif;
  color: var(--text-white);
  margin-bottom: var(--space-sm);
  font-size: var(--text-base);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: var(--space-lg);
  color: var(--text-gray);
  z-index: 2;
  font-size: var(--text-base);
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  padding: var(--space-lg) var(--space-lg) var(--space-lg) 50px;
  background: var(--primary-color);
  border: 2px solid rgba(255, 59, 48, 0.3);
  border-radius: 10px;
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
  font-size: var(--text-base);
  transition: all 0.3s ease;
}

.input-wrapper textarea {
  min-height: 150px;
  resize: vertical;
  padding-top: var(--space-lg);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  color: var(--text-gray);
  font-style: italic;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.2);
  background: rgba(255, 59, 48, 0.05);
}

.input-wrapper select {
  cursor: pointer;
}

.input-wrapper select option {
  background: var(--primary-color);
  color: var(--text-white);
}

.input-hint {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  color: var(--text-gray);
  margin-top: var(--space-xs);
  font-style: italic;
}

/*--------------------------------------------------------------
# Form Actions
--------------------------------------------------------------*/
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.form-note {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  color: var(--text-gray);
}

.form-note i {
  color: var(--accent-red);
  font-size: var(--text-base);
}

/*--------------------------------------------------------------
# Services Overview Section
--------------------------------------------------------------*/
.services-overview {
  background: var(--bg-dark);
  padding: var(--space-xxl);
  border-radius: 20px;
  margin: var(--space-xxl) 0;
  border: 1px solid rgba(255, 59, 48, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.services-overview:hover {
  border-color: var(--accent-red);
  box-shadow: 0 10px 30px rgba(255, 59, 48, 0.1);
}

.services-overview h2 {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  color: var(--text-white);
  margin-bottom: var(--space-xxl);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.services-overview h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  margin: var(--space-md) auto 0;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.service-item {
  padding: var(--space-xxl);
  background: var(--primary-color);
  border-radius: 15px;
  border: 2px solid rgba(255, 59, 48, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 59, 48, 0.1), transparent);
  transition: left 0.5s ease;
}

.service-item:hover::before {
  left: 100%;
}

.service-item:hover {
  border-color: var(--accent-red);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 59, 48, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  font-size: var(--text-2xl);
  color: var(--text-white);
  position: relative;
  z-index: 2;
}

.service-item h3 {
  font-family: 'Bebas Neue', Arial, sans-serif;
  color: var(--text-white);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.05em;
  font-size: var(--text-xl);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.service-item p {
  color: var(--text-gray);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  font-size: var(--text-base);
  position: relative;
  z-index: 2;
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq-section {
  padding: var(--space-xxl) 0;
}

.faq-section h2 {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  color: var(--text-white);
  text-align: center;
  margin-bottom: var(--space-xxl);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.faq-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  margin: var(--space-md) auto 0;
  border-radius: 2px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.faq-item {
  background: var(--bg-dark);
  padding: var(--space-xl);
  border-radius: 15px;
  border: 1px solid rgba(255, 59, 48, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-red);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 59, 48, 0.1);
}

.faq-item h3 {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: var(--text-lg);
  color: var(--accent-red);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.faq-item p {
  color: var(--text-gray);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  font-size: var(--text-base);
}

/*--------------------------------------------------------------
# Map Section
--------------------------------------------------------------*/
.map-section {
  margin: var(--space-xxl) 0;
}

.map-section h2 {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  color: var(--text-white);
  text-align: center;
  margin-bottom: var(--space-xl);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.map-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  margin: var(--space-md) auto 0;
  border-radius: 2px;
}

.map-container {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 59, 48, 0.2);
  transition: all 0.3s ease;
}

.map-container:hover {
  border-color: var(--accent-red);
  box-shadow: 0 10px 30px rgba(255, 59, 48, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-overlay {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  background: rgba(0, 0, 0, 0.8);
  padding: var(--space-xl);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 59, 48, 0.3);
}

.map-info h3 {
  font-family: 'Bebas Neue', Arial, sans-serif;
  color: var(--text-white);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: var(--text-lg);
}

.map-info p {
  color: var(--text-gray);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  margin-bottom: var(--space-lg);
  font-size: var(--text-sm);
}

.directions-btn {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  color: var(--text-white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.directions-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 59, 48, 0.3);
}

/*--------------------------------------------------------------
# Button Styles - Gaming Theme
--------------------------------------------------------------*/
.btn {
  font-family: 'Bebas Neue', Arial, sans-serif;
  padding: var(--space-lg) var(--space-xxl);
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: var(--text-lg);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  position: relative;
  overflow: hidden;
  min-width: 180px;
  justify-content: center;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  color: var(--text-white);
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 59, 48, 0.3);
}

/*--------------------------------------------------------------
# Field Validation Styles
--------------------------------------------------------------*/
.field-error {
  color: var(--accent-red);
  font-size: var(--text-sm);
  margin-top: var(--space-xs);
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: italic;
}

.input-wrapper input.error,
.input-wrapper textarea.error,
.input-wrapper select.error {
  border-color: var(--accent-red);
  background-color: rgba(255, 59, 48, 0.1);
  box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.2);
}

/*--------------------------------------------------------------
# Responsive Breakpoints - Mobile First
--------------------------------------------------------------*/

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .page-header .container {
    flex-direction: row;
    text-align: left;
  }
  
  .header-visual {
    order: 2;
  }
  
  .contact-content {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xxl);
  }
  
  .contact-info {
    position: sticky;
    top: 100px;
    height: fit-content;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .social-links {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
  }
  
  .form-actions {
    flex-wrap: nowrap;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .contact-content {
    gap: 4rem;
  }
  
  .contact-info,
  .contact-form-section {
    padding: var(--space-xxl);
  }
  
  .services-overview {
    padding: var(--space-xxl);
  }
}

/*--------------------------------------------------------------
# Mobile Specific Optimizations
--------------------------------------------------------------*/
@media (max-width: 767px) {
  .page-header {
    padding: 60px 0;
  }
  
  .page-header .container {
    flex-direction: column;
    gap: var(--space-xl);
    text-align: center;
  }
  
  .header-visual {
    order: -1;
  }
  
  .header-icon {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .contact-content {
    padding: 60px 0;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .contact-info {
    position: static;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-actions {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-lg);
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
    gap: var(--space-lg);
  }
  
  .contact-info,
  .contact-form-section,
  .services-overview {
    padding: var(--space-xl) var(--space-lg);
  }
  
  .map-overlay {
    position: static;
    margin: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  .page-header {
    padding: 40px 0;
  }
  
  .contact-content {
    padding: 40px 0;
  }
  
  .contact-info,
  .contact-form-section,
  .services-overview {
    padding: var(--space-lg) var(--space-md);
  }
  
  .service-item,
  .faq-item {
    padding: var(--space-lg);
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: var(--text-xl);
  }
  
  .method-icon {
    width: 50px;
    height: 50px;
    font-size: var(--text-lg);
  }
  
  .contact-method {
    padding: var(--space-lg);
  }
  
  .map-container {
    height: 300px;
    border-radius: 15px;
  }
}

/*--------------------------------------------------------------
# Accessibility & Performance Optimizations
--------------------------------------------------------------*/

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .header-icon {
    animation: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .contact-info,
  .contact-form-section,
  .services-overview,
  .service-item,
  .faq-item,
  .map-container {
    border-width: 2px;
  }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.directions-btn:focus,
.social-link:focus,
.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  outline: 3px solid var(--accent-orange);
  outline-offset: 2px;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .contact-method:hover,
  .service-item:hover,
  .faq-item:hover {
    transform: none;
  }
  
  /* Larger touch targets */
  .btn,
  .directions-btn,
  .social-link {
    min-height: 44px;
    padding: var(--space-lg) var(--space-xl);
  }
  
  .input-wrapper input,
  .input-wrapper select,
  .input-wrapper textarea {
    min-height: 44px;
  }
}

/* Landscape phone optimizations */
@media (max-height: 500px) and (orientation: landscape) {
  .page-header {
    padding: 40px 0;
  }
  
  .header-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  
  .contact-content {
    padding: 40px 0;
  }
}

/* Very small screens (Galaxy Fold, etc.) */
@media (max-width: 320px) {
  .page-title {
    font-size: var(--text-2xl);
  }
  
  .page-subtitle {
    font-size: var(--text-base);
  }
  
  .service-icon,
  .method-icon {
    width: 45px;
    height: 45px;
    font-size: var(--text-base);
  }
  
  .btn {
    font-size: var(--text-base);
    padding: var(--space-md) var(--space-lg);
  }
}

/*--------------------------------------------------------------
# Custom Scrollbar to Match Theme
--------------------------------------------------------------*/
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
}

/*--------------------------------------------------------------
# Loading States & Skeleton Screens
--------------------------------------------------------------*/
.skeleton {
  background: linear-gradient(90deg, var(--bg-dark) 25%, var(--primary-color) 50%, var(--bg-dark) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/*--------------------------------------------------------------
# Additional Gaming-Style Enhancements
--------------------------------------------------------------*/

/* Enhanced hover effects for interactive elements */
.service-item:hover .service-icon,
.contact-method:hover .method-icon {
  animation: pulse 1s ease-in-out;
}

/* Gaming-style glow effects */
.glow-red {
  box-shadow: 0 0 20px rgba(255, 59, 48, 0.3);
}

.glow-orange {
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.3);
}

/* Gradient text effects */
.gradient-text {
  background: linear-gradient(45deg, var(--accent-red), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Consistent border radius throughout */
.rounded-lg {
  border-radius: 20px;
}

.rounded-md {
  border-radius: 15px;
}

.rounded-sm {
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Animation Enhancements
--------------------------------------------------------------*/
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll animations for enhanced user experience */
.service-item {
  animation: slideInUp 0.6s ease-out;
}

.faq-item {
  animation: fadeIn 0.8s ease-out;
}

.contact-method {
  animation: scaleIn 0.6s ease-out;
}

/*--------------------------------------------------------------
# Print Styles
--------------------------------------------------------------*/
@media print {
  .contact-wrapper {
    background: white !important;
    color: black !important;
  }
  
  .page-header,
  .contact-info,
  .contact-form-section,
  .services-overview {
    background: none !important;
    color: black !important;
    border: 1px solid black !important;
  }
  
  .service-item,
  .faq-item,
  .contact-method {
    background: none !important;
    border: 1px solid black !important;
    color: black !important;
  }
  
  .btn {
    border: 1px solid black !important;
    background: none !important;
    color: black !important;
  }
  
  .header-icon,
  .service-icon,
  .method-icon {
    background: none !important;
    border: 2px solid black !important;
    color: black !important;
  }
  
  .map-container {
    display: none;
  }
}

/*--------------------------------------------------------------
# Enhanced Interaction States
--------------------------------------------------------------*/

/* Active states for better touch feedback */
.btn:active {
  transform: translateY(1px);
}

.service-item:active {
  transform: translateY(-3px);
}

.contact-method:active {
  transform: translateX(3px);
}

/*--------------------------------------------------------------
# Form Enhancement Styles
--------------------------------------------------------------*/

/* Loading state for form submission */
.contact-form.loading {
  pointer-events: none;
  opacity: 0.6;
}

.contact-form.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid var(--accent-red);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
  z-index: 10;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Success state */
.form-success {
  border-color: var(--electric-lime) !important;
  background: rgba(204, 255, 0, 0.1) !important;
}

/* Error state */
.form-error {
  border-color: var(--accent-red) !important;
  background: rgba(255, 59, 48, 0.1) !important;
}

/*--------------------------------------------------------------
# Additional Utility Classes
--------------------------------------------------------------*/

/* Spacing utilities */
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

/* Text utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-white { color: var(--text-white); }
.text-gray { color: var(--text-gray); }
.text-red { color: var(--accent-red); }
.text-orange { color: var(--accent-orange); }

/* Display utilities */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Flexbox utilities */
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.flex-column { flex-direction: column; }

/* Ensure content doesn't overflow on any screen size */
* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
}