/* 
 * Fynestravona Yoga Retreat Stylesheet
 * Theme: Yoga retreat in the city
 * Author: Claude
 */

/* Base Styles & Variables */
:root {
  --primary-color: #8E44AD;
  --primary-light: #9B59B6;
  --primary-dark: #7D3C98;
  --secondary-color: #3498DB;
  --accent-color: #2ECC71;
  --text-color: #333333;
  --text-light: #666666;
  --text-lighter: #999999;
  --bg-color: #FFFFFF;
  --bg-light: #F8F9FA;
  --bg-dark: #E9ECEF;
  --border-color: #DFE2E5;
  --success-color: #27AE60;
  --error-color: #E74C3C;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --box-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
  --font-family-primary: 'Montserrat', sans-serif;
  --font-family-secondary: 'Playfair Display', serif;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 10px */
}

body {
  font-family: var(--font-family-primary);
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-secondary);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.4rem;
}

p {
  margin-bottom: 1.5rem;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover, a:focus {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* Layout & Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 8rem 0;
}

.section-title {
  position: relative;
  margin-bottom: 2rem;
  font-weight: 600;
}

.section-title.centered {
  text-align: center;
}

.section-subtitle {
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-family: var(--font-family-primary);
}

.section-subtitle.centered {
  text-align: center;
}

.divider {
  width: 6rem;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 2rem 0 3rem;
}

.centered .divider {
  margin: 2rem auto 3rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1.6rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 12px rgba(142, 68, 173, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(142, 68, 173, 0.4);
  color: white;
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.header.scrolled {
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.98);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.logo {
  display: block;
}

.logo img {
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  font-size: 1.6rem;
  padding: 0.5rem 1rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover, .nav-link:focus {
  color: var(--primary-color);
}

.nav-link:hover::after, .nav-link:focus::after {
  width: 80%;
}

.nav-link.highlight {
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--border-radius);
  padding: 0.8rem 1.6rem;
}

.nav-link.highlight:hover {
  background-color: var(--primary-dark);
}

.nav-link.highlight::after {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 3rem;
  height: 2.1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: url('images/hero-bg.jpg') no-repeat center center/cover;
  color: white;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(142, 68, 173, 0.8), rgba(52, 152, 219, 0.8));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero h1 {
  font-size: 5.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero h2 {
  font-size: 3.2rem;
  margin-bottom: 2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.hero p {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
}

/* About Section */
.about-section {
  background-color: var(--bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow-lg);
}

.about-image::before {
  content: '';
  display: block;
  padding-top: 120%;
}

.about-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.feature-text {
  font-weight: 500;
}

/* Benefits Section */
.benefits-section {
  background-color: white;
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

.benefit-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

.benefit-icon {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.benefit-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* Program Section */
.program-section {
  background: linear-gradient(135deg, rgba(142, 68, 173, 0.05), rgba(52, 152, 219, 0.05));
  padding: 8rem 0 10rem;
}

.program-header {
  max-width: 700px;
  margin: 0 auto 5rem;
  text-align: center;
}

.program-tabs {
  max-width: 900px;
  margin: 0 auto;
}

.tab-headers {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
  gap: 1rem;
}

.tab-btn {
  padding: 1.2rem 2.4rem;
  border: none;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
  cursor: pointer;
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 12px rgba(142, 68, 173, 0.3);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.schedule {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.schedule-item {
  display: flex;
  gap: 3rem;
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.schedule-time {
  flex-shrink: 0;
  width: 20%;
  min-width: 150px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.8rem;
  padding: 2rem;
  text-align: center;
}

.schedule-info {
  padding: 2rem;
  flex-grow: 1;
}

.schedule-info h3 {
  margin-bottom: 1rem;
  font-size: 2.2rem;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(142, 68, 173, 0.1);
  color: var(--primary-color);
  border-radius: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 1rem;
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3rem;
}

.workshop-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.workshop-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

.workshop-image {
  height: 200px;
  overflow: hidden;
}

.workshop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.workshop-card:hover .workshop-image img {
  transform: scale(1.05);
}

.workshop-content {
  padding: 2.5rem;
}

.workshop-content h3 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.workshop-date {
  font-size: 1.4rem;
  color: var(--text-lighter);
  margin-bottom: 1.5rem;
}

.workshop-content .btn {
  margin-top: 1.5rem;
}

/* Location Section */
.location-section {
  padding: 0;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.location-map {
  height: 600px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-info {
  padding: 6rem;
  background-color: var(--bg-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.detail-icon {
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.detail-text h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

/* Pricing Section */
.pricing-section {
  background-color: white;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

.pricing-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(142, 68, 173, 0.05), rgba(52, 152, 219, 0.05));
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-lg);
  border: 2px solid var(--primary-light);
}

.pricing-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.5rem 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 2rem;
}

.pricing-header {
  padding: 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.price {
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.pricing-header p {
  font-size: 1.4rem;
  color: var(--text-lighter);
  margin-bottom: 0;
}

.pricing-features {
  padding: 3rem;
  flex-grow: 1;
}

.pricing-features ul {
  padding-left: 2rem;
}

.pricing-features li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.pricing-card .btn {
  margin: 0 3rem 3rem;
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, rgba(142, 68, 173, 0.05), rgba(52, 152, 219, 0.05));
  padding: 8rem 0;
}

.testimonials-slider {
  max-width: 800px;
  margin: 5rem auto 0;
  position: relative;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.testimonial-content {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  box-shadow: var(--box-shadow);
  position: relative;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 8rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(142, 68, 173, 0.1);
}

.testimonial-text {
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.testimonial-author img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.author-info h4 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.author-info p {
  color: var(--text-lighter);
  margin-bottom: 0;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  gap: 2rem;
}

.prev-testimonial, .next-testimonial {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.prev-testimonial:hover, .next-testimonial:hover {
  background-color: var(--primary-color);
  color: white;
}

.testimonial-dots {
  display: flex;
  gap: 1rem;
}

.dot {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: rgba(142, 68, 173, 0.2);
  transition: var(--transition);
  cursor: pointer;
}

.dot.active {
  background-color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  padding: 10rem 0;
  background-color: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.method-icon {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.method-details h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.contact-form-container {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  box-shadow: var(--box-shadow);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.form-group {
  margin-bottom: 0;
}

.form-group.full-width {
  grid-column: span 2;
}

.contact-form label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: var(--bg-light);
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(142, 68, 173, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  flex-shrink: 0;
  margin-top: 0.3rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
  font-size: 1.4rem;
}

.error-messages {
  background-color: rgba(231, 76, 60, 0.1);
  border-left: 4px solid var(--error-color);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
}

.error-messages ul {
  padding-left: 2rem;
}

.error-messages li {
  color: var(--error-color);
}

.success-message {
  background-color: rgba(46, 204, 113, 0.1);
  border-left: 4px solid var(--success-color);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
  color: var(--success-color);
}

/* Footer */
.footer {
  background-color: #272a33;
  color: #ffffff;
  padding-top: 6rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-logo img {
  margin-bottom: 2rem;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 300px;
}

.footer-newsletter h3 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.newsletter-form .form-group {
  display: flex;
  gap: 1rem;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-middle {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 4rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-middle h3 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.footer-nav ul,
.footer-legal ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-nav a,
.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: #ffffff;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 0.3rem;
}

.footer-bottom {
  padding: 3rem 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  width: 5rem;
  height: 5rem;
  background-color: white;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Media Queries */
@media (max-width: 1024px) {
  html {
    font-size: 60%;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
  }
  
  .location-info {
    padding: 5rem 3rem;
    order: -1;
  }
}

@media (max-width: 991px) {
  section {
    padding: 6rem 0;
  }
  
  .about-grid, 
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-image::before {
    padding-top: 70%;
  }
  
  .schedule-item {
    flex-direction: column;
  }
  
  .schedule-time {
    width: 100%;
    padding: 1.5rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 58%;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    padding: 8rem 3rem 3rem;
    transition: all 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 5;
  }
  
  .nav-list.active {
    right: 0;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero h1 {
    font-size: 4.2rem;
  }
  
  .hero h2 {
    font-size: 2.8rem;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: 1;
  }
  
  .testimonial-content {
    padding: 3rem 2rem;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 55%;
  }
  
  section {
    padding: 5rem 0;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .hero h1 {
    font-size: 3.6rem;
  }
  
  .hero h2 {
    font-size: 2.4rem;
  }
  
  .tab-headers {
    flex-direction: column;
    gap: 1rem;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}