/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #0891B2;
  --primary-light: #22D3EE;
  --accent: #A3E635;
  --bg-light: #ECFEFF;
  --dark: #164E63;
  --text: #334155;
  --muted: #64748B;
  --white: #ffffff;
  --radius: 14px;
  --shadow-sm: 0 4px 12px rgba(8, 145, 178, 0.08);
  --shadow-md: 0 10px 30px rgba(8, 145, 178, 0.12);
  --shadow-lg: 0 20px 50px rgba(8, 145, 178, 0.18);
  --transition: all 0.35s cubic-bezier(.22,.61,.36,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--bg-light);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; border-radius: var(--radius); }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 90px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block; background: rgba(34, 211, 238, 0.15); color: var(--primary);
  padding: 6px 16px; border-radius: 20px; font-size: 14px; font-weight: 500;
  margin-bottom: 14px; letter-spacing: 0.5px;
}
.section-title { font-size: 42px; font-weight: 700; color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
.section-title .highlight { color: var(--primary); position: relative; }
.section-desc { font-size: 16px; color: var(--muted); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-block; padding: 14px 28px; border-radius: 50px;
  font-weight: 500; font-size: 15px; transition: var(--transition);
  cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 8px 20px rgba(8,145,178,0.35); }
.btn-primary:hover { background: var(--dark); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(8,145,178,0.45); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }
.btn-full { width: 100%; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(14px);
  padding: 16px 0; transition: var(--transition);
  border-bottom: 1px solid rgba(8,145,178,0.08);
}
.navbar.scrolled { padding: 10px 0; box-shadow: var(--shadow-sm); }
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 700; }
.logo-icon {
  width: 42px; height: 42px; background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px; display: grid; place-items: center; font-size: 22px;
  box-shadow: 0 6px 18px rgba(8,145,178,0.3);
}
.logo-text { color: var(--dark); }
.logo-text span { color: var(--primary); }
.nav-menu ul { display: flex; gap: 30px; }
.nav-menu a { font-weight: 500; font-size: 15px; color: var(--dark); position: relative; transition: var(--transition); }
.nav-menu a::after {
  content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px;
  background: var(--primary); transition: width 0.3s;
}
.nav-menu a:hover { color: var(--primary); }
.nav-menu a:hover::after { width: 100%; }
.nav-cta { padding: 10px 22px; font-size: 14px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: transparent; padding: 8px; }
.hamburger span { width: 26px; height: 3px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ========== HERO ========== */
.hero {
  min-height: 100vh; padding: 120px 0 80px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #ECFEFF 0%, #ffffff 60%);
}
.hero-shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; z-index: 0; }
.shape-1 { width: 400px; height: 400px; background: var(--primary-light); top: -100px; right: -100px; animation: float 8s ease-in-out infinite; }
.shape-2 { width: 300px; height: 300px; background: var(--accent); bottom: -50px; left: -80px; animation: float 10s ease-in-out infinite reverse; }
.shape-3 { width: 200px; height: 200px; background: var(--primary); top: 40%; left: 30%; opacity: 0.2; animation: float 12s ease-in-out infinite; }

.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-sub {
  display: inline-block; background: rgba(163,230,53,0.2); color: var(--dark);
  padding: 8px 18px; border-radius: 30px; font-size: 14px; font-weight: 500; margin-bottom: 20px;
}
.hero-title { font-size: 58px; font-weight: 800; line-height: 1.1; color: var(--dark); margin-bottom: 22px; }
.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc { font-size: 17px; color: var(--muted); margin-bottom: 30px; max-width: 540px; }
.hero-cta { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-stats-mini { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-stats-mini > div { display: flex; flex-direction: column; }
.hero-stats-mini strong { font-size: 26px; color: var(--dark); font-weight: 700; }
.hero-stats-mini span { font-size: 13px; color: var(--muted); }

.hero-visual { position: relative; height: 500px; }
.hero-card { position: relative; }
.hero-img-wrap {
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg);
  position: relative; z-index: 2;
}
.hero-img-wrap img { width: 100%; height: 500px; object-fit: cover; }
.pulse-dot, .pulse-dot-2 {
  position: absolute; width: 22px; height: 22px; background: var(--accent);
  border-radius: 50%; z-index: 3;
}
.pulse-dot { top: 15%; right: -10px; animation: pulse 2s infinite; }
.pulse-dot-2 { bottom: 20%; left: -10px; background: var(--primary-light); animation: pulse 2s infinite 1s; }
.floating-badge {
  position: absolute; background: var(--white); padding: 14px 18px; border-radius: 16px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
  animation: floatBadge 4s ease-in-out infinite; z-index: 4;
}
.floating-badge span { font-size: 28px; }
.floating-badge strong { font-size: 15px; color: var(--dark); }
.floating-badge small { font-size: 12px; color: var(--muted); }
.badge-1 { top: 10%; left: -30px; }
.badge-2 { bottom: 12%; right: -20px; animation-delay: 2s; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-25px); } }
@keyframes floatBadge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(163,230,53,0.7); }
  100% { box-shadow: 0 0 0 20px rgba(163,230,53,0); }
}

/* ========== ABOUT ========== */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.about-img { position: relative; }
.about-img img { border-radius: 20px; box-shadow: var(--shadow-md); height: 580px; object-fit: cover; width: 100%; }
.about-badge {
  position: absolute; bottom: 30px; left: -20px; background: var(--primary); color: var(--white);
  padding: 18px 24px; border-radius: 16px; text-align: center;
  box-shadow: var(--shadow-lg); animation: floatBadge 4s ease-in-out infinite;
}
.about-badge strong { display: block; font-size: 36px; font-weight: 700; }
.about-badge span { font-size: 13px; opacity: 0.95; }

.about-block { display: flex; gap: 18px; margin-bottom: 24px; padding: 20px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); transition: var(--transition); }
.about-block:hover { transform: translateX(8px); box-shadow: var(--shadow-md); border-left: 3px solid var(--primary); }
.about-icon {
  flex-shrink: 0; width: 52px; height: 52px; background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px; display: grid; place-items: center; font-size: 24px;
}
.about-block h3 { color: var(--dark); font-size: 18px; margin-bottom: 6px; }
.about-block p { color: var(--muted); font-size: 14px; }

/* ========== STATS ========== */
.stats { background: linear-gradient(135deg, var(--dark), var(--primary)); color: var(--white); position: relative; overflow: hidden; }
.stats::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px;
  background: var(--accent); border-radius: 50%; filter: blur(100px); opacity: 0.2;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; z-index: 1; }
.stat-card {
  text-align: center; padding: 40px 20px; background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px); border-radius: 20px; border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.12); }
.stat-icon { font-size: 42px; margin-bottom: 14px; }
.stat-card h3 { font-size: 48px; font-weight: 700; color: var(--accent); margin-bottom: 6px; }
.stat-card p { font-size: 15px; opacity: 0.9; }

/* ========== FEATURES ========== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card {
  background: var(--white); padding: 36px 28px; border-radius: 20px; box-shadow: var(--shadow-sm);
  transition: var(--transition); position: relative; overflow: hidden; border: 1px solid transparent;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s;
}
.feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: rgba(8,145,178,0.1); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 66px; height: 66px; background: linear-gradient(135deg, rgba(8,145,178,0.1), rgba(34,211,238,0.1));
  border-radius: 18px; display: grid; place-items: center; font-size: 30px; margin-bottom: 20px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon { transform: rotate(-8deg) scale(1.05); background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.feature-card:hover .feature-icon::after { content: ''; }
.feature-card h3 { color: var(--dark); font-size: 19px; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 14px; }

/* ========== PROCESS ========== */
.process-timeline { max-width: 800px; margin: 0 auto; position: relative; }
.process-timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--accent)); transform: translateX(-50%);
}
.process-step {
  display: grid; grid-template-columns: 1fr 80px 1fr; gap: 30px; align-items: center;
  margin-bottom: 40px;
}
.process-step:nth-child(even) .step-content { grid-column: 1; text-align: right; }
.process-step:nth-child(even) .step-number { grid-column: 2; grid-row: 1; }
.process-step:nth-child(odd) .step-content { grid-column: 3; }
.process-step:nth-child(odd) .step-number { grid-column: 2; }

.step-number {
  width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white); border-radius: 50%; display: grid; place-items: center;
  font-size: 22px; font-weight: 700; box-shadow: 0 8px 20px rgba(8,145,178,0.4);
  border: 4px solid var(--bg-light); z-index: 1;
}
.step-content {
  background: var(--white); padding: 24px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.step-content:hover { box-shadow: var(--shadow-md); transform: scale(1.02); }
.step-content h3 { color: var(--dark); margin-bottom: 8px; font-size: 18px; }
.step-content p { color: var(--muted); font-size: 14px; }

/* ========== SERVICES ========== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
  background: var(--white); padding: 34px 28px; border-radius: 20px; box-shadow: var(--shadow-sm);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; right: 0; width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(34,211,238,0.1), transparent); border-radius: 50%;
  transform: translate(30%, 30%); transition: var(--transition);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { width: 250px; height: 250px; }
.service-icon {
  width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 18px; display: grid; place-items: center; font-size: 32px; margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(8,145,178,0.25);
}
.service-card h3 { color: var(--dark); font-size: 20px; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.service-link { color: var(--primary); font-weight: 600; font-size: 14px; transition: var(--transition); }
.service-link:hover { color: var(--dark); letter-spacing: 0.5px; }

/* ========== BOOKING ========== */
.booking { background: linear-gradient(135deg, #ECFEFF 0%, #ffffff 100%); }
.booking-wrapper {
  background: var(--white); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr 1.2fr;
}
.booking-info {
  background: linear-gradient(135deg, var(--dark), var(--primary));
  color: var(--white); padding: 50px 40px;
}
.booking-info .section-tag { background: rgba(163,230,53,0.2); color: var(--accent); }
.booking-info h2 { font-size: 32px; margin-bottom: 16px; color: var(--white); }
.booking-info h2 .highlight { color: var(--accent); }
.booking-info p { opacity: 0.9; margin-bottom: 24px; }
.booking-list li { margin-bottom: 10px; font-size: 14px; opacity: 0.95; }
.booking-form { padding: 50px 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid #e2e8f0; border-radius: 10px;
  font-family: inherit; font-size: 14px; transition: var(--transition); background: #f8fafc;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); background: var(--white);
  box-shadow: 0 0 0 3px rgba(8,145,178,0.12);
}
.form-group textarea { resize: vertical; }

/* ========== FAQ ========== */
.faq-grid { max-width: 900px; margin: 0 auto; }
.faq-item {
  background: var(--white); margin-bottom: 16px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item.active { border-left: 4px solid var(--primary); }
.faq-question {
  padding: 22px 26px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; transition: var(--transition);
}
.faq-question:hover { background: rgba(8,145,178,0.03); }
.faq-question h4 { color: var(--dark); font-size: 16px; font-weight: 600; flex: 1; }
.faq-toggle {
  width: 34px; height: 34px; background: rgba(8,145,178,0.1); color: var(--primary);
  border-radius: 50%; display: grid; place-items: center; font-size: 20px; font-weight: 700;
  transition: var(--transition); flex-shrink: 0;
}
.faq-item.active .faq-toggle { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.faq-answer p { padding: 0 26px 22px; color: var(--muted); font-size: 14px; }
.faq-item.active .faq-answer { max-height: 300px; }

/* ========== REVIEWS ========== */
.reviews { background: linear-gradient(135deg, var(--bg-light), #ffffff); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card {
  background: var(--white); padding: 32px; border-radius: 20px; box-shadow: var(--shadow-sm);
  transition: var(--transition); position: relative;
}
.review-card::before {
  content: '"'; position: absolute; top: 10px; right: 20px; font-size: 90px;
  color: rgba(8,145,178,0.08); font-family: Georgia; line-height: 1;
}
.review-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.review-stars { color: #fbbf24; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.review-card > p { color: var(--text); font-size: 14px; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white); border-radius: 50%; display: grid; place-items: center; font-weight: 700;
}
.review-author strong { color: var(--dark); font-size: 15px; display: block; }
.review-author small { color: var(--muted); font-size: 12px; }

/* ========== CONTACT ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: start; }
.info-item {
  display: flex; gap: 16px; margin-bottom: 24px; padding: 22px;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.info-item:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.info-icon {
  width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px; display: grid; place-items: center; font-size: 22px; flex-shrink: 0;
}
.info-item h4 { color: var(--dark); font-size: 16px; margin-bottom: 4px; }
.info-item p { color: var(--muted); font-size: 14px; }
.info-item a { color: var(--primary); transition: var(--transition); }
.info-item a:hover { color: var(--dark); }
.contact-form { background: var(--white); padding: 40px; border-radius: 20px; box-shadow: var(--shadow-md); }

/* ========== FOOTER ========== */
.footer { background: var(--dark); color: rgba(255,255,255,0.8); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-col .logo { color: var(--white); margin-bottom: 16px; }
.footer-col .logo-text { color: var(--white); }
.footer-col p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-col h4 { color: var(--white); font-size: 17px; margin-bottom: 22px; position: relative; padding-bottom: 10px; }
.footer-col h4::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px;
  background: var(--accent); border-radius: 2px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; transition: var(--transition); }
.footer-col ul a:hover { color: var(--primary-light); padding-left: 6px; }
.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 40px; height: 40px; background: rgba(255,255,255,0.08); border-radius: 50%;
  display: grid; place-items: center; font-size: 18px; transition: var(--transition);
}
.social-icons a:hover { background: var(--primary); transform: translateY(-4px); }
.subscribe-form { display: flex; gap: 8px; }
.subscribe-form input {
  flex: 1; padding: 11px 14px; border: none; border-radius: 8px; font-family: inherit;
  background: rgba(255,255,255,0.08); color: var(--white); font-size: 13px;
}
.subscribe-form input::placeholder { color: rgba(255,255,255,0.5); }
.subscribe-form input:focus { outline: none; background: rgba(255,255,255,0.14); }
.subscribe-form button {
  padding: 11px 20px; background: var(--primary); color: var(--white); border-radius: 8px;
  font-weight: 500; font-size: 13px; transition: var(--transition);
}
.subscribe-form button:hover { background: var(--accent); color: var(--dark); }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 14px; }
.legal-links { display: flex; gap: 22px; }
.legal-links a { transition: var(--transition); }
.legal-links a:hover { color: var(--primary-light); }

/* ========== INNER PAGE HERO ========== */
.page-hero {
  background: linear-gradient(135deg, var(--dark), var(--primary)); color: var(--white);
  padding: 140px 0 70px; text-align: center;
}
.page-hero h1 { font-size: 48px; font-weight: 800; margin: 12px 0; }
.page-hero p { opacity: 0.9; font-size: 15px; }
.page-hero .hero-sub { background: rgba(163,230,53,0.2); color: var(--accent); }
.legal-content { max-width: 880px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: 20px; box-shadow: var(--shadow-md); }
.legal-content h2 { color: var(--dark); font-size: 22px; margin: 28px 0 12px; padding-bottom: 10px; border-bottom: 2px solid var(--bg-light); }
.legal-content p, .legal-content li { color: var(--text); font-size: 15px; margin-bottom: 12px; line-height: 1.75; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }

/* ========== ANIMATIONS ========== */
.fade-in-left, .fade-in-right, .reveal, .reveal-left, .reveal-right, .reveal-up { opacity: 0; transition: all 0.9s cubic-bezier(.22,.61,.36,1); }
.fade-in-left { transform: translateX(-40px); }
.fade-in-right { transform: translateX(40px); }
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up { transform: translateY(40px); }
.fade-in-left.visible, .fade-in-right.visible, .reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-up.visible { opacity: 1; transform: translate(0,0); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; } .delay-4 { transition-delay: 0.4s; } .delay-5 { transition-delay: 0.5s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .hero-grid, .about-grid, .booking-wrapper, .contact-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 44px; }
  .section-title { font-size: 34px; }
  .features-grid, .services-grid, .reviews-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { height: 400px; max-width: 500px; margin: 0 auto; }
  .process-timeline::before { left: 35px; }
  .process-step { grid-template-columns: 80px 1fr; gap: 20px; }
  .process-step:nth-child(even) .step-content, .process-step:nth-child(odd) .step-content { grid-column: 2; text-align: left; }
  .process-step:nth-child(even) .step-number, .process-step:nth-child(odd) .step-number { grid-column: 1; }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed; top: 70px; left: 0; right: 0; background: var(--white);
    flex-direction: column; padding: 20px; box-shadow: var(--shadow-md);
    transform: translateY(-120%); transition: var(--transition); z-index: 999;
  }
  .nav-menu.active { transform: translateY(0); }
  .nav-menu ul { flex-direction: column; gap: 14px; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .hero-title { font-size: 36px; }
  .section { padding: 60px 0; }
  .features-grid, .services-grid, .reviews-grid, .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .booking-info, .booking-form { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .legal-content { padding: 30px 24px; }
  .hero-stats-mini { justify-content: center; }
  .hero-cta { justify-content: center; text-align: center; }
  .hero-content { text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .section-title { font-size: 28px; }
  .page-hero h1 { font-size: 36px; }
  .stat-card h3 { font-size: 38px; }
}