:root {
  /* Main Color Palette - Gray and Dark Yellow */
  --primary: #8b6914; /* dark yellow */
  --primary-dark: #6b4f0f;
  --secondary: #6b7280; /* gray */
  --accent: #d97706; /* orange-yellow accent */
  --light: #f9fafb; /* light gray */
  --dark: #1f2937; /* dark gray */
  --text: #f3f4f6; /* light gray text */
  --text-light: #9ca3af; /* gray text */
  
  /* Additional Colors */
  --white: #ffffff;
  --black: #000000;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Yellow/Amber Colors */
  --yellow-50: #fffbeb;
  --yellow-100: #fef3c7;
  --yellow-200: #fde68a;
  --yellow-300: #fcd34d;
  --yellow-400: #fbbf24;
  --yellow-500: #f59e0b;
  --yellow-600: #d97706;
  --yellow-700: #b45309;
  --yellow-800: #92400e;
  --yellow-900: #78350f;
  
  /* Error Colors */
  --error: #ef4444;
  --error-light: #fef2f2;
  --error-dark: #dc2626;
  
  /* Success Colors */
  --success: #10b981;
  --success-light: #ecfdf5;
  --success-dark: #059669;
  
  /* Warning Colors */
  --warning: #f59e0b;
  --warning-light: #fffbeb;
  --warning-dark: #d97706;
  
  /* Gradients */
  --gradient: linear-gradient(135deg, #8b6914 0%, #6b7280 50%, #d97706 100%);
  --gradient-dark: linear-gradient(135deg, #6b4f0f 0%, #4b5563 50%, #6b7280 100%);
  --gradient-yellow: linear-gradient(135deg, #6b7280 0%, #4b5563 50%, #8b6914 100%);
  --gradient-hero: linear-gradient(135deg, rgba(139, 105, 20, 0.8), rgba(217, 119, 6, 0.8));
  --gradient-features: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  --gradient-testimonials: linear-gradient(135deg, #374151 0%, #1f2937 100%);
  --gradient-services: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  --gradient-experience: linear-gradient(135deg, #374151 0%, #1f2937 100%);
  --gradient-gallery: linear-gradient(135deg, #374151 0%, #1f2937 100%);
  --gradient-contact: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  --gradient-footer: linear-gradient(135deg, #1f2937 0%, #374151 50%, #4b5563 100%);
  --gradient-auxiliary: linear-gradient(135deg, #1f2937 0%, #374151 50%, #6b7280 100%);
  
  /* Shadows */
  --shadow: 0 4px 6px -1px rgba(139, 105, 20, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(139, 105, 20, 0.1);
  --shadow-yellow: 0 4px 20px rgba(139, 105, 20, 0.3);
  --shadow-card: 0 10px 25px rgba(139, 105, 20, 0.3);
  --shadow-button: 0 10px 25px rgba(217, 119, 6, 0.3);
  --shadow-form: 0 25px 50px rgba(217, 119, 6, 0.3);
  --shadow-footer: 0 10px 20px rgba(139, 105, 20, 0.3);
  --shadow-success: 0 15px 30px rgba(139, 105, 20, 0.4);
  
  /* Background Colors */
  --bg-primary: rgba(31, 41, 55, 0.95);
  --bg-secondary: rgba(31, 41, 55, 0.98);
  --bg-overlay: rgba(31, 41, 55, 0.98);
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-hover: rgba(255, 255, 255, 0.1);
  --bg-form: rgba(255, 255, 255, 0.1);
  --bg-button: rgba(139, 105, 20, 0.1);
  --bg-button-hover: rgba(139, 105, 20, 0.2);
  --bg-accent: rgba(217, 119, 6, 0.1);
  --bg-accent-hover: rgba(217, 119, 6, 0.2);
  
  /* Border Colors */
  --border-primary: rgba(255, 255, 255, 0.2);
  --border-secondary: rgba(139, 105, 20, 0.2);
  --border-accent: rgba(217, 119, 6, 0.2);
  --border-focus: rgba(217, 119, 6, 0.3);
  --border-error: rgba(239, 68, 68, 0.3);
  
  /* Text Colors */
  --text-primary: rgba(255, 255, 255, 0.9);
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  
  /* Star Rating Colors */
  --star-filled: #fbbf24;
  --star-empty: #ffd700;
  
  /* Focus Colors */
  --focus-ring: rgba(217, 119, 6, 0.1);
  --focus-border: rgba(217, 119, 6, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--gradient-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-primary);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
  border-bottom: 3px solid var(--primary);
}

.header.scrolled {
  background: var(--bg-secondary);
  box-shadow: var(--shadow);
  padding: 0.5rem 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.logo:focus {
  outline: 2px solid var(--focus-border);
  outline-offset: 2px;
  border-radius: 8px;
}

.logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 105, 20, 0.3), transparent);
  transition: left 0.6s ease;
}

.logo:hover::before {
  left: 100%;
}

.logo i {
  font-size: 2rem;
  color: var(--secondary);
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Desktop Navigation Menu */
.nav-menu-desktop {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-menu-desktop a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  position: relative;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  overflow: hidden;
}

.nav-menu-desktop a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--gradient);
  border-radius: 50%;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.nav-menu-desktop a:hover::before {
  width: 300%;
  height: 300%;
}

.nav-menu-desktop a:hover {
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* Mobile Navigation Menu */
.nav-menu-mobile {
  display: none;
  list-style: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-overlay);
  backdrop-filter: blur(20px);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 8rem 2rem 2rem;
  border-right: 2px solid var(--border-primary);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.nav-menu-mobile.active {
  right: 0;
}

.nav-menu-mobile li {
  width: 100%;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInFromRight 0.5s ease forwards;
}

.nav-menu-mobile li a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 1.2rem;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-menu-mobile li.menu-item-animate {
  animation: slideInFromRight 0.5s ease forwards;
}

.nav-menu-mobile a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  overflow: hidden;
  display: block;
  width: 100%;
}

.nav-menu-mobile a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  transition: left 0.3s ease;
  z-index: -1;
}

.nav-menu-mobile a:hover::before {
  left: 0;
}

.nav-menu-mobile a:hover {
  color: var(--dark);
  transform: translateX(10px);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--gradient);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 3px solid var(--primary);
  position: relative;
}

.btn-outline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--gradient);
  transition: width 0.4s ease;
  z-index: -1;
}

.btn-outline:hover::after {
  width: 100%;
}

.btn-outline:hover {
  color: var(--white);
  border-color: transparent;
  transform: translateY(-5px) scale(1.05);
}

/* Section Styles */
.section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
  position: relative;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary); }
  to { text-shadow: 0 0 20px var(--primary), 0 0 30px var(--primary); }
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
  animation: expand 1s ease-out;
}

@keyframes expand {
  from { width: 0; }
  to { width: 80px; }
}

.section-header p {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/grilled-cabbage-steaks42313.avif');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: -1;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  color: var(--white);
  z-index: 2;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  animation: slideInLeft 1.2s ease;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  animation: slideInLeft 1.2s ease 0.3s both;
  font-weight: 300;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  animation: slideInLeft 1.2s ease 0.6s both;
}

.hero-image {
  position: relative;
  animation: slideInRight 1.2s ease 0.3s both;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
}

.hero-image:hover img {
  transform: scale(1.1) rotate(2deg);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Features Section */
.features-section {
  background: var(--gradient-features);
  color: var(--white);
}

.features-section .section-header h2 {
  color: var(--white);
}

.features-section .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
  transition: left 0.6s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px rgba(99, 102, 241, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--white);
  transition: all 0.3s ease;
  position: relative;
}

.feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(360deg);
}

.feature-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.feature-card p {
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.feature-item {
  background: rgba(99, 102, 241, 0.1);
  color: var(--secondary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(99, 102, 241, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-item {
  background: rgba(99, 102, 241, 0.2);
  transform: translateX(5px);
}

/* Author Rating */
.author-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.rating-label {
  font-size: 0.8rem;
  color: var(--text-light);
}

.rating-value {
  font-weight: 600;
  color: var(--primary);
}

/* Testimonials Section */
.testimonials-section {
  background: var(--gradient-testimonials);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 8rem;
  color: var(--primary);
  opacity: 0.1;
  font-family: 'Playfair Display', serif;
}

.testimonial-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
}

.testimonial-stars {
  font-size: 1.5rem;
  color: var(--star-filled);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-stars {
  transform: scale(1.2);
  color: var(--star-empty);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: var(--text);
  font-size: 1.1rem;
}

.testimonial-author strong {
  display: block;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Services Section */
.services-section {
  background: var(--gradient-services);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.service-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
  position: relative;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(99, 102, 241, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.service-item:hover::before {
  transform: translateX(100%);
}

.service-item:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.1);
}

.service-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.service-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-item:hover .service-image::after {
  opacity: 1;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.2) rotate(5deg);
}

.service-content {
  padding: 2rem;
}

.service-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-content ul {
  list-style: none;
}

.service-content li {
  padding: 0.5rem 0;
  color: var(--text);
  position: relative;
  padding-left: 1.5rem;
  transition: all 0.3s ease;
}

.service-content li:hover {
  color: var(--secondary);
  transform: translateX(10px);
}

.service-content li::before {
  content: '✨';
  position: absolute;
  left: 0;
  top: 0.5rem;
  transition: all 0.3s ease;
}

.service-content li:hover::before {
  transform: scale(1.2) rotate(15deg);
}

/* Service Price */
.service-price {
  margin-top: 1.5rem;
  padding: 1rem;
  background: linear-gradient(45deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.price-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.price-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

/* Experience Section */
.experience-section {
  background: var(--gradient-experience);
}

.experience-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.experience-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary);
}

.experience-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.8;
}

.experience-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
  transition: left 0.6s ease;
}

.stat:hover::before {
  left: 100%;
}

.stat:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.1);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.stat:hover .stat-number {
  transform: scale(1.2);
  color: var(--secondary);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.experience-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
}

.experience-image:hover img {
  transform: scale(1.1) rotate(2deg);
}

/* Experience Highlights */
.experience-highlights {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.highlight:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.highlight i {
  font-size: 1.2rem;
  color: var(--accent);
  transition: all 0.3s ease;
}

.highlight:hover i {
  transform: scale(1.2) rotate(360deg);
  color: var(--secondary);
}

.highlight span {
  font-weight: 500;
  color: var(--text);
}

/* Gallery Section */
.gallery-section {
  background: var(--gradient-gallery);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(99, 102, 241, 0.4), rgba(139, 92, 246, 0.4));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover {
  transform: scale(1.1) rotate(3deg);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.3);
}

/* Contact Section */
.contact-section {
  background: var(--gradient-contact);
  color: var(--white);
}

.contact-section .section-header h2 {
  color: var(--white);
}

.contact-section .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--white);
}

.contact-info p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  line-height: 1.8;
}

.contact-details {
  display: grid;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
  transition: left 0.6s ease;
}

.contact-item:hover::before {
  left: 100%;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(15px) scale(1.02);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--accent);
  width: 50px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-item:hover i {
  transform: scale(1.3) rotate(360deg);
  color: var(--secondary);
}

.contact-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.contact-item p {
  margin: 0;
  opacity: 0.9;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(99, 102, 241, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.contact-form:hover::before {
  transform: translateX(100%);
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: 'Inter', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 255, 204, 0.1);
  outline: none;
  transform: scale(1.02);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: var(--gradient-footer);
  color: var(--white);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(139, 92, 246, 0.1) 50%, transparent 70%);
  animation: slide 10s linear infinite;
}

@keyframes slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-section h3,
.footer-section h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--accent);
  position: relative;
}

.footer-section h3::after,
.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.footer-section:hover h3::after,
.footer-section:hover h4::after {
  width: 100%;
}

.footer-section p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.footer-section li:hover {
  transform: translateX(10px);
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
  position: relative;
}

.footer-section a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.footer-section a:hover::before {
  width: 100%;
}

.footer-section a:hover {
  opacity: 1;
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.social-links a:hover::before {
  left: 100%;
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.2);
  box-shadow: var(--shadow);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  width: 100%;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .btn {
  font-size: 1rem;
  width: 100%;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
  position: relative;
  z-index: 1;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 450px;
  background: rgba(30, 27, 75, 0.95);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  border: 2px solid var(--primary);
  backdrop-filter: blur(10px);
  display: none; /* Hidden by default to prevent flashing */
}

.cookie-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.cookie-content p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
}

.cookie-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}

/* Mobile menu styles */
.mobile-menu {
  display: none;
}

.mobile-menu button {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}

.mobile-menu button:hover {
  background: rgba(71, 85, 105, 0.2);
  color: var(--primary);
  transform: scale(1.1);
}

/* Burger icon animation */
.mobile-menu button i {
  transition: all 0.3s ease;
  display: block;
}

.mobile-menu button.active i {
  transform: rotate(45deg);
}

/* Alternative burger animation */
.mobile-menu button.active i::before {
  content: '×';
  font-size: 1.8rem;
  font-weight: bold;
}

/* Mobile menu overlay and navigation */
@media (max-width: 768px) {
  .nav-menu-desktop {
    display: none;
  }
  
  .nav-menu-mobile {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
}

/* Desktop navigation - ensure visibility on larger screens */
@media (min-width: 769px) {
  .nav-menu-desktop {
    display: flex !important;
    position: static;
    width: auto;
    height: auto;
    background: none;
    backdrop-filter: none;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 3rem;
    padding: 0;
    border: none;
  }
  
  .nav-menu-mobile {
    display: none !important;
  }
  
  .mobile-menu {
    display: none !important;
  }
}

/* Enhanced responsive design */
@media (max-width: 768px) {
  .nav-menu {
    display: flex;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .experiencia-content {
    grid-template-columns: 1fr;
  }
  
  .contato-content {
    grid-template-columns: 1fr;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .cookie-banner {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
  }

  /* Mobile menu animations */
  @keyframes slideInFromLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInFromRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-menu.active li {
    animation: fadeInUp 0.5s ease forwards;
  }

  .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
  .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
  .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
  .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
  .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .especialidades-grid,
  .eventos-grid,
  .depoimentos-grid,
  .galeria-grid {
    grid-template-columns: 1fr;
  }
  
  .experiencia-stats {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }

  /* Smaller mobile menu */
  .nav-menu {
    padding: 1rem;
  }

  .nav-menu a {
    font-size: 1.3rem;
    padding: 0.8rem 1.5rem;
  }
} 

/* Enhanced animations for new elements */
@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.evento-features,
.author-rating,
.especialidade-price,
.experiencia-highlights,
.footer-badges {
  animation: slideInFromBottom 0.6s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .evento-features {
    flex-direction: column;
  }
  
  .experiencia-highlights {
    gap: 0.8rem;
  }
  
  .footer-badges {
    justify-content: center;
  }
  
  .highlight {
    padding: 0.8rem;
  }
  
  .highlight span {
    font-size: 0.9rem;
  }
} 

/* Styles for auxiliary pages (politica-privacidade, termos-servico, cookies, obrigado) */
.auxiliary-page {
  background: var(--gradient-auxiliary);
  min-height: 100vh;
}

.auxiliary-header {
  background: var(--bg-primary);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-secondary);
  box-shadow: var(--shadow-yellow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.auxiliary-header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.auxiliary-header .logo:hover {
  transform: scale(1.05);
}

.auxiliary-header .logo i {
  color: var(--primary);
  animation: rotate 3s linear infinite;
}

.auxiliary-content {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-primary);
  border-radius: 1.5rem;
  padding: 2rem;
  margin: 2rem 0;
}

.auxiliary-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
  animation: glow 2s ease-in-out infinite alternate;
}

.auxiliary-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 2rem 0 1rem;
  font-family: 'Playfair Display', serif;
}

.auxiliary-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary);
  margin: 1.5rem 0 1rem;
}

.auxiliary-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.auxiliary-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.auxiliary-content li {
  padding: 0.5rem 0;
  color: var(--text);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 1.5rem;
}

.auxiliary-content li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--primary);
  transition: all 0.3s ease;
}

.auxiliary-content li:hover {
  transform: translateX(10px);
  color: var(--primary);
}

.auxiliary-content li:hover::before {
  transform: scale(1.2) rotate(15deg);
}

.auxiliary-contact-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 2rem 0;
}

.auxiliary-contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--text);
}

.auxiliary-contact-info i {
  color: var(--secondary);
  margin-right: 1rem;
  font-size: 1.2rem;
}

.auxiliary-footer {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #3730a3 100%);
  position: relative;
  overflow: hidden;
}

.auxiliary-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
  animation: slide 10s ease-in-out infinite;
}

.auxiliary-footer-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  padding: 4rem 0 2rem;
}

.auxiliary-footer-section h3,
.auxiliary-footer-section h4 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
}

.auxiliary-footer-section h3::after,
.auxiliary-footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.auxiliary-footer-section:hover h3::after,
.auxiliary-footer-section:hover h4::after {
  width: 100%;
}

.auxiliary-footer-section p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.auxiliary-footer-section ul {
  list-style: none;
  padding: 0;
}

.auxiliary-footer-section li {
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.auxiliary-footer-section li:hover {
  transform: translateX(10px);
}

.auxiliary-footer-section a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.auxiliary-footer-section a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.auxiliary-footer-section a:hover::before {
  width: 100%;
}

.auxiliary-footer-section a:hover {
  color: var(--primary);
}

.auxiliary-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auxiliary-newsletter-form input {
  padding: 1rem;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  width: 100%;
}

.auxiliary-newsletter-form .btn {
  width: 100%;
  background: var(--gradient);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.auxiliary-newsletter-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.auxiliary-footer-bottom {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--text-light);
  position: relative;
  z-index: 2;
}

/* Success page specific styles */
.success-icon {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.success-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.success-info {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
  padding: 1.5rem;
  border-radius: 1rem;
  margin: 2rem 0;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.success-info h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.success-info ul {
  text-align: left;
}

.success-info li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--text);
}

.success-info i {
  color: var(--secondary);
  margin-right: 1rem;
  font-size: 1.2rem;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.success-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  background: var(--gradient);
  color: white;
  border: none;
}

.success-actions .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}

.success-contact {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 2rem;
}

.success-contact h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.success-contact p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

/* Responsive design for auxiliary pages */
@media (max-width: 768px) {
  .auxiliary-content h1 {
    font-size: 2rem;
  }
  
  .auxiliary-content h2 {
    font-size: 1.5rem;
  }
  
  .auxiliary-content h3 {
    font-size: 1.2rem;
  }
  
  .auxiliary-footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .success-actions {
    flex-direction: column;
  }
  
  .success-card {
    margin: 1rem;
    padding: 1.5rem;
  }
} 

/* Comprehensive Responsive Design */

/* Large Desktop */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
  
  .hero-content h1 {
    font-size: 4rem;
  }
  
  .section-header h2 {
    font-size: 3.5rem;
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
    padding: 0 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .features-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .experience-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet */
@media (max-width: 992px) {
  .container {
    max-width: 800px;
    padding: 0 1rem;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .experience-content {
    flex-direction: column;
    gap: 3rem;
  }
  
  .contact-content {
    flex-direction: column;
    gap: 3rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
  }
  
  .section-header p {
    font-size: 1.1rem;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  /* Mobile Grid Adjustments */
  .features-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .experience-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .experience-highlights {
    flex-direction: column;
    gap: 1rem;
  }
  
  .highlight {
    width: 100%;
    text-align: center;
  }
  
  .contact-details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-section {
    padding: 0 1rem;
  }
  
  /* Mobile Form Adjustments */
  .contact-form {
    padding: 2rem;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 1rem;
    padding: 1rem;
  }
  
  /* Mobile Cookie Banner */
  .cookie-banner {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .cookie-content h3 {
    font-size: 1.2rem;
  }
  
  .cookie-content p {
    font-size: 0.9rem;
  }
  
  .cookie-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-actions .btn {
    width: 100%;
    max-width: 200px;
  }
  
  /* Mobile Header Adjustments */
  .header {
    padding: 0.5rem 0;
  }
  
  .logo {
    font-size: 1.5rem;
    text-decoration: none;
  }
  
  .logo:hover {
    color: var(--accent);
    transform: translateY(-1px);
  }
  
  .logo i {
    font-size: 1.5rem;
  }
  
  /* Mobile Button Adjustments */
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .btn-outline {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Mobile Medium */
@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .section-header p {
    font-size: 0.9rem;
  }
  
  .feature-card,
  .service-item,
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .feature-card h3,
  .service-item h3,
  .testimonial-card h3 {
    font-size: 1.2rem;
  }
  
  .feature-card p,
  .service-item p,
  .testimonial-card p {
    font-size: 0.9rem;
  }
  
  .experience-stats {
    grid-template-columns: 1fr;
  }
  
  .stat {
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .footer-content {
    padding: 0 0.5rem;
  }
  
  .nav-menu a {
    font-size: 1.3rem;
    padding: 0.8rem 1.5rem;
    min-width: 180px;
  }
}

/* Mobile Small */
@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
  
  .hero-content p {
    font-size: 0.8rem;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .nav-menu a {
    font-size: 1.2rem;
    padding: 0.7rem 1.2rem;
    min-width: 160px;
  }
  
  .container {
    padding: 0 0.3rem;
  }
  
  .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .btn-outline {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
  }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .nav-menu {
    padding: 2rem 0;
  }
  
  .nav-menu a {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .hero {
    min-height: 60vh;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .feature-card:hover,
  .service-item:hover,
  .testimonial-card:hover,
  .gallery-item:hover {
    transform: none;
  }
  
  .nav-menu a:hover {
    transform: none;
  }
  
  .btn:hover,
  .btn-outline:hover {
    transform: none;
  }
  
  .social-links a:hover {
    transform: none;
  }
  
  /* Add touch-friendly tap targets */
  .btn,
  .btn-outline,
  .nav-menu a {
    min-height: 44px;
    min-width: 44px;
  }
}

/* High DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-image img,
  .service-image img,
  .gallery-item img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .nav-menu.active li {
    animation: none;
    opacity: 1;
    transform: translateY(0);
  }
  
  .feature-card:hover,
  .service-item:hover,
  .testimonial-card:hover,
  .gallery-item:hover {
    transform: none;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --text: #e2e8f0;
    --text-light: #94a3b8;
    --light: #f1f5f9;
  }
}

/* Print Styles */
@media print {
  .header,
  .mobile-menu,
  .cookie-banner,
  .footer {
    display: none !important;
  }
  
  .section {
    page-break-inside: avoid;
  }
  
  .hero,
  .experience-section,
  .services-section,
  .features-section,
  .testimonials-section,
  .gallery-section,
  .contact-section {
    page-break-before: always;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .hero,
  .section {
    background: white !important;
    color: black !important;
  }
}

/* Accessibility Improvements */
@media (prefers-contrast: high) {
  :root {
    --primary: #000080;
    --secondary: #404040;
    --text: #000000;
    --text-light: #404040;
  }
  
  .btn,
  .btn-outline {
    border: 2px solid currentColor;
  }
}

/* Focus Styles for Keyboard Navigation */
.btn:focus,
.btn-outline:focus,
.nav-menu a:focus,
.social-links a:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Skip to Content Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary);
  color: var(--light);
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
}

.skip-link:focus {
  top: 6px;
} 

/* Animation classes for scroll-triggered animations */
.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form validation styles */
.form-group {
  position: relative;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px var(--border-error);
}

.form-group.focused label {
  transform: translateY(-1.5rem) scale(0.85);
  color: var(--primary);
}

/* Mobile menu improvements */
.nav-menu li {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.nav-menu.active li {
  opacity: 1;
  transform: translateY(0);
}

.nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
.nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
.nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
.nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }
.nav-menu.active li:nth-child(6) { animation-delay: 0.6s; }

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .btn-outline,
  .nav-menu a,
  .logo {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu button {
    min-height: 44px;
    min-width: 44px;
  }
}

/* Loading states */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--primary);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Focus visible for better accessibility */
.btn:focus-visible,
.btn-outline:focus-visible,
.nav-menu a:focus-visible,
.social-links a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn,
  .btn-outline {
    border: 2px solid currentColor;
  }
  
  .nav-menu a {
    border: 1px solid currentColor;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .nav-menu.active li {
    animation: none;
    opacity: 1;
    transform: translateY(0);
  }
} 

/* Enhanced Mobile Styles for Hero and Contact Sections */

/* Hero Section Mobile Improvements */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 0 1.5rem;
  }

  .hero-content {
    order: 1;
    z-index: 2;
    padding: 0 1rem;
  }

  .hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  }

  .hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    opacity: 0.95;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-image {
    order: 2;
    margin-top: 2rem;
    padding: 0 1rem;
  }

  .hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  }

  .hero-background {
    opacity: 0.2;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1.5rem 0;
  }

  .hero .container {
    padding: 0 1rem;
    gap: 1.5rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }

  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .hero-buttons .btn {
    max-width: 250px;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    min-height: 45px;
  }

  .hero-image {
    margin-top: 1.5rem;
  }

  .hero-image img {
    max-width: 320px;
    border-radius: 12px;
  }
}

@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons .btn {
    max-width: 220px;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    min-height: 42px;
  }
}

/* Contact Section Mobile Improvements */
@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.5rem;
  }

  .contact-info {
    order: 1;
    text-align: center;
  }

  .contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .contact-details {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .contact-item {
    padding: 1.2rem;
    border-radius: 12px;
    gap: 1rem;
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .contact-item i {
    font-size: 1.3rem;
    width: 40px;
    flex-shrink: 0;
  }

  .contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .contact-item p {
    font-size: 0.95rem;
    margin: 0;
  }

  .contact-form {
    order: 2;
    padding: 2rem;
    border-radius: 15px;
    margin: 0 0.5rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 1rem;
    font-size: 1rem;
    border-radius: 10px;
    min-height: 50px;
  }

  .form-group textarea {
    min-height: 100px;
    resize: vertical;
  }

  .contact-form .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    min-height: 50px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 2.5rem 0;
  }

  .contact-content {
    gap: 2rem;
    padding: 0 1rem;
  }

  .contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }

  .contact-info p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .contact-details {
    gap: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .contact-item {
    padding: 1rem;
    gap: 0.8rem;
  }

  .contact-item i {
    font-size: 1.2rem;
    width: 35px;
  }

  .contact-item h4 {
    font-size: 0.95rem;
  }

  .contact-item p {
    font-size: 0.9rem;
  }

  .contact-form {
    padding: 1.5rem;
    margin: 0;
  }

  .form-group {
    margin-bottom: 1.2rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.9rem;
    font-size: 0.95rem;
    min-height: 45px;
  }

  .form-group textarea {
    min-height: 90px;
  }

  .contact-form .btn {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    min-height: 45px;
  }
}

@media (max-width: 360px) {
  .contact-info h2 {
    font-size: 1.9rem;
  }

  .contact-info p {
    font-size: 0.95rem;
  }

  .contact-item {
    padding: 0.8rem;
    gap: 0.7rem;
  }

  .contact-item i {
    font-size: 1.1rem;
    width: 30px;
  }

  .contact-item h4 {
    font-size: 0.9rem;
  }

  .contact-item p {
    font-size: 0.85rem;
  }

  .contact-form {
    padding: 1.2rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.8rem;
    font-size: 0.9rem;
    min-height: 42px;
  }

  .form-group textarea {
    min-height: 80px;
  }

  .contact-form .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    min-height: 42px;
  }
}

/* Landscape Mobile Improvements */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 1rem 0;
  }

  .hero .container {
    gap: 1.5rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }

  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .hero-buttons .btn {
    width: auto;
    max-width: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .hero-image {
    margin-top: 1rem;
  }

  .hero-image img {
    max-width: 300px;
  }

  .contact-section {
    padding: 2rem 0;
  }

  .contact-content {
    gap: 2rem;
  }

  .contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .contact-info p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .contact-details {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .contact-item {
    padding: 1rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .hero-buttons .btn {
    min-height: 44px;
    padding: 1rem 2rem;
  }

  .contact-item {
    min-height: 60px;
  }

  .contact-form .btn {
    min-height: 44px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 44px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
} 

/* Mobile Experience Content Styles */
@media (max-width: 768px) {
  .experience-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    text-align: center;
  }

  .experience-text {
    order: 1;
    width: 100%;
  }

  .experience-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary);
  }

  .experience-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-light);
  }

  .experience-highlights {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-primary);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
    min-height: 60px;
    justify-content: center;
  }

  .highlight:hover {
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
  }

  .highlight i {
    font-size: 1.3rem;
    color: var(--accent);
    transition: all 0.3s ease;
    min-width: 24px;
  }

  .highlight:hover i {
    transform: scale(1.2) rotate(360deg);
    color: var(--primary);
  }

  .highlight span {
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
    text-align: left;
    flex: 1;
  }

  .experience-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
  }

  .stat {
    text-align: center;
    padding: 1.2rem 0.8rem;
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-primary);
    position: relative;
    overflow: hidden;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 105, 20, 0.2), transparent);
    transition: left 0.6s ease;
  }

  .stat:hover::before {
    left: 100%;
  }

  .stat:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
    background: var(--bg-card-hover);
  }

  .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 0.3rem;
    transition: all 0.3s ease;
    line-height: 1;
  }

  .stat:hover .stat-number {
    transform: scale(1.1);
    color: var(--primary);
  }

  .stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.2;
  }

  .experience-image {
    order: 2;
    width: 100%;
    max-width: 400px;
  }

  .experience-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
  }

  .experience-image:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-yellow);
  }
}

@media (max-width: 480px) {
  .experience-content {
    gap: 2rem;
  }

  .experience-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .experience-text p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }

  .experience-highlights {
    margin: 1.5rem 0;
    gap: 0.8rem;
  }

  .highlight {
    padding: 1rem;
    min-height: 55px;
    max-width: 100%;
  }

  .highlight i {
    font-size: 1.2rem;
    min-width: 20px;
  }

  .highlight span {
    font-size: 0.9rem;
  }

  .experience-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .stat {
    padding: 1rem 0.6rem;
    min-height: 70px;
  }

  .stat-number {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .experience-image {
    max-width: 100%;
  }

  .experience-image img {
    border-radius: 12px;
  }
}

@media (max-width: 360px) {
  .experience-text h2 {
    font-size: 1.8rem;
  }

  .experience-text p {
    font-size: 0.95rem;
  }

  .highlight {
    padding: 0.8rem;
    min-height: 50px;
  }

  .highlight i {
    font-size: 1.1rem;
    min-width: 18px;
  }

  .highlight span {
    font-size: 0.85rem;
  }

  .experience-stats {
    gap: 0.6rem;
  }

  .stat {
    padding: 0.8rem 0.5rem;
    min-height: 65px;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .experience-content {
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
    text-align: left;
  }

  .experience-text {
    order: 1;
    flex: 1;
  }

  .experience-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .experience-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .experience-highlights {
    margin: 1.5rem 0;
    gap: 0.8rem;
  }

  .highlight {
    padding: 0.8rem;
    min-height: 45px;
    max-width: 100%;
    justify-content: flex-start;
  }

  .highlight span {
    text-align: left;
  }

  .experience-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .stat {
    padding: 0.8rem 0.6rem;
    min-height: 60px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .experience-image {
    order: 2;
    flex: 0 0 40%;
    max-width: 40%;
  }
}

@media (hover: none) and (pointer: coarse) {
  .highlight:hover {
    transform: none;
  }

  .highlight:active {
    background: var(--bg-card-hover);
    transform: scale(0.98);
  }

  .stat:hover {
    transform: none;
  }

  .stat:active {
    background: var(--bg-card-hover);
    transform: scale(0.98);
  }

  .experience-image:hover img {
    transform: none;
  }

  .experience-image:active img {
    transform: scale(0.98);
  }
} 