/* ============================================
   ALLWAY CANADA IMMIGRATION & APPEALS
   Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* === CSS VARIABLES === */
:root {
  --red: #C1121F;
  --red-light: #E63946;
  --navy: #1D3557;
  --navy-dark: #152840;
  --teal: #264653;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --gray-light: #F1F3F5;
  --gray: #E9ECEF;
  --gray-mid: #ADB5BD;
  --text: #222222;
  --text-light: #555555;
  --shadow-sm: 0 2px 8px rgba(29,53,87,0.08);
  --shadow-md: 0 4px 20px rgba(29,53,87,0.12);
  --shadow-lg: 0 8px 40px rgba(29,53,87,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--text-light); line-height: 1.8; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.75rem;
}

/* === LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-header p {
  margin-top: 16px;
  font-size: 1.05rem;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(193,18,31,0.25);
}
.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(193,18,31,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 24px;
  transition: var(--transition);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius);
  padding: 12px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.8);
}

.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo img {
  height: 44px;
  width: auto;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  line-height: 1.2;
}

.brand-sub {
  font-size: 0.68rem;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy);
  background: var(--gray-light);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.nav-cta { margin-left: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(21,40,64,0.92) 0%, rgba(29,53,87,0.85) 50%, rgba(38,70,83,0.88) 100%),
    url('https://images.unsplash.com/photo-1517935706615-2717063c2225?w=1600&q=80') center/cover no-repeat;
  z-index: 0;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(193,18,31,0.15);
  border: 1px solid rgba(193,18,31,0.3);
  color: #FF8C94;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red-light);
  border-radius: 50%;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
}

.hero h1 span { color: #FF8C94; }

.hero-lead {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
}

.trust-item svg { color: #4CAF50; flex-shrink: 0; }

/* Hero Trust Card */
.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.hero-card-title {
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 20px;
}

.stat-item {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.3;
}

.hero-card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
}

.card-feature-dot {
  width: 6px;
  height: 6px;
  background: var(--red-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* === ABOUT PREVIEW === */
.about-preview {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  min-height: 420px;
  background: var(--gray);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
}

.img-placeholder svg {
  opacity: 0.3;
  color: white;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}

.badge-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.badge-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.badge-text span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--gray);
}

.value-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(193,18,31,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}

.value-item h5 { font-size: 0.85rem; color: var(--navy); margin-bottom: 2px; }
.value-item p { font-size: 0.78rem; line-height: 1.5; }

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(29,53,87,0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--navy);
  color: var(--white);
}

.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--navy); }
.service-card p { font-size: 0.87rem; line-height: 1.7; margin-bottom: 20px; }

.service-card .link-arrow {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-card:hover .link-arrow { gap: 10px; }

/* Full services grid - larger */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* === APPEALS HIGHLIGHT === */
.appeals-highlight {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.appeals-highlight::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(193,18,31,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.appeals-highlight::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.appeals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.appeals-highlight .section-label { color: #FF8C94; }
.appeals-highlight h2 { color: var(--white); }
.appeals-highlight p { color: rgba(255,255,255,0.72); }

.appeals-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}

.appeals-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
}

.appeals-list-item::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.appeals-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.appeal-type-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--transition);
}

.appeal-type-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.appeal-type-card svg {
  color: var(--red-light);
  margin-bottom: 12px;
}

.appeal-type-card h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.appeal-type-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* === TESTIMONIALS === */
.testimonials { background: var(--off-white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--red);
  opacity: 0.12;
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.stars span { color: #F59E0B; font-size: 0.9rem; }

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray);
  padding-top: 20px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  display: block;
}

.author-detail {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

.cta-banner h2 { color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* === CONTACT PREVIEW === */
.contact-preview {
  background: var(--white);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.contact-info-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--gray);
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: rgba(29,53,87,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin: 0 auto 16px;
}

.contact-info-card h4 { font-size: 0.85rem; margin-bottom: 6px; }
.contact-info-card p { font-size: 0.9rem; color: var(--text); }

/* === FOOTER === */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img { height: 52px; margin-bottom: 16px; }

.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.84rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--red);
  color: var(--white);
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.84rem;
}

.footer-contact-item svg { color: var(--red-light); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-disclaimer {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.4);
  max-width: 640px;
  line-height: 1.6;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}

/* === FLOATING ELEMENTS === */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  color: white;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}

.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--red); transform: translateY(-3px); }

/* Mobile sticky CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--white);
  padding: 14px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  border-top: 1px solid var(--gray);
}

.mobile-cta .btn { width: 100%; justify-content: center; }

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--teal) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.page-hero .section-label { color: #FF8C94; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* === ABOUT PAGE === */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--gray);
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}

.value-card-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 16px;
}

.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { font-size: 0.87rem; }

.team-section { background: var(--off-white); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: var(--gray);
  z-index: 0;
}

.process-step { text-align: center; position: relative; z-index: 1; }

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.process-step:hover .step-number {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.process-step h4 { margin-bottom: 8px; font-size: 0.95rem; }
.process-step p { font-size: 0.82rem; }

/* === SERVICES PAGE === */
.service-detail-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(29,53,87,0.2);
  transform: translateY(-4px);
}

.service-detail-card .service-icon { margin-bottom: 16px; }
.service-detail-card h3 { font-size: 1rem; margin-bottom: 8px; }
.service-detail-card p { font-size: 0.84rem; flex: 1; margin-bottom: 16px; }

/* === APPEALS PAGE === */
.refusal-reasons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.reason-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px 24px;
  border-left: 3px solid var(--red);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.reason-card svg { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.reason-card h4 { font-size: 0.9rem; margin-bottom: 4px; }
.reason-card p { font-size: 0.82rem; }

.appeal-process {
  background: var(--navy);
  padding: 80px 0;
}

.appeal-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
}

.appeal-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}

.appeal-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 39px;
  top: 72px;
  width: 2px;
  height: calc(100% - 40px);
  background: rgba(255,255,255,0.15);
}

.appeal-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.appeal-step-content {
  padding: 0 0 40px;
}

.appeal-step-content h3 { color: var(--white); font-size: 1rem; margin-bottom: 6px; }
.appeal-step-content p { color: rgba(255,255,255,0.65); font-size: 0.87rem; }

/* === FAQ PAGE === */
.faq-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.faq-cat-btn {
  padding: 8px 18px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid var(--gray);
  color: var(--text-light);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}

.faq-cat-btn.active,
.faq-cat-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.faq-section { display: none; }
.faq-section.active { display: block; }

.faq-section h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray);
}

.accordion-item {
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item.open {
  box-shadow: var(--shadow-sm);
  border-color: rgba(29,53,87,0.2);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  background: var(--white);
}

.accordion-header h4 {
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 500;
  padding-right: 16px;
}

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.accordion-item.open .accordion-icon {
  background: var(--navy);
  color: var(--white);
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.accordion-body.open {
  max-height: 500px;
}

.accordion-body-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  border-top: 1px solid var(--gray);
  padding-top: 16px;
}

/* === CONTACT PAGE === */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(29,53,87,0.08);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--gray);
}

.sidebar-card h4 { font-size: 0.95rem; margin-bottom: 16px; color: var(--navy); }

.hours-list { display: flex; flex-direction: column; gap: 8px; }

.hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray);
}

.hours-item:last-child { border-bottom: none; }
.hours-item .day { color: var(--text-light); }
.hours-item .time { font-weight: 500; color: var(--navy); }

.map-placeholder {
  background: var(--gray);
  border-radius: var(--radius);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-mid);
  font-size: 0.85rem;
  gap: 8px;
  overflow: hidden;
  margin-top: 16px;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* === ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* === DIVIDERS === */
.divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 16px auto 0;
}

.divider-left { margin-left: 0; }

/* === UTILITY === */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-navy { color: var(--navy); }
.text-red { color: var(--red); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

.badge-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(193,18,31,0.1);
  color: var(--red);
  border: 1px solid rgba(193,18,31,0.2);
}

.info-box {
  background: rgba(29,53,87,0.05);
  border-left: 3px solid var(--navy);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  font-size: 0.87rem;
  color: var(--text-light);
  margin: 20px 0;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .appeals-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 16px;
    margin-top: 8px;
    gap: 4px;
  }

  .nav-menu.open .nav-link { padding: 12px 16px; border-radius: 8px; }
  .nav-menu.open .nav-cta { display: block; margin: 8px 0 0; }
  .nav-menu.open .nav-cta .btn { width: 100%; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .appeals-cards { grid-template-columns: 1fr; }
  .refusal-reasons { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .mobile-cta { display: block; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }

  .contact-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .navbar { padding: 12px 16px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
/* ============================================
   ADDITIONS: Nav hover underline, FAQ, Contact,
   Booking, Image sections, Click animations
   ============================================ */

/* === NAV HOVER RED UNDERLINE === */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* active overrides */
.nav-link.active::after {
  transform: scaleX(1);
}

/* Remove background change on hover - keep underline only */
.nav-link:hover {
  background: transparent;
  color: var(--navy);
}

/* === CLICK RIPPLE ANIMATION === */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  border-radius: inherit;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.btn.clicked::before {
  transform: scale(2.5);
  opacity: 0;
  animation: ripple-out 0.45s ease forwards;
}

@keyframes ripple-out {
  0% { transform: scale(0); opacity: 0.35; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* === ACCORDION CLICK ANIMATION === */
.accordion-header {
  transition: background 0.2s ease;
}
.accordion-header:active {
  background: var(--gray-light);
}

/* === FAQ PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--teal) 100%);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

.page-hero-badge {
  display: inline-block;
  background: rgba(193,18,31,0.2);
  border: 1px solid rgba(193,18,31,0.4);
  color: #ff8080;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* === FAQ SEARCH === */
.faq-search-wrap {
  max-width: 520px;
  margin: 32px auto 0;
  position: relative;
}

.faq-search {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: white;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.faq-search::placeholder { color: rgba(255,255,255,0.5); }

.faq-search:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.15);
}

.faq-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.5);
}

/* === FAQ LAYOUT === */
.faq-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: flex-start;
}

.faq-sidebar-nav {
  position: sticky;
  top: 100px;
}

.faq-sidebar-nav h4 {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 16px;
}

.faq-nav-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 2px;
}

.faq-nav-btn:hover {
  background: var(--gray-light);
  color: var(--navy);
}

.faq-nav-btn.active {
  background: var(--navy);
  color: var(--white);
}

.faq-nav-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29,53,87,0.08);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.faq-nav-btn.active .faq-nav-icon {
  background: rgba(255,255,255,0.15);
}

.faq-content-area {
  min-height: 500px;
}

.faq-panel { display: none; }
.faq-panel.active { display: block; }

.faq-panel-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gray);
}

.faq-panel-header h2 {
  font-size: 1.4rem;
  color: var(--navy);
}

.faq-panel-header p {
  margin-top: 8px;
  font-size: 0.9rem;
}

/* Highlight on search match */
.accordion-item.search-hidden { display: none; }

/* === FAQ CTA STRIP === */
.faq-cta-strip {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 60px;
}

.faq-cta-strip h3 { color: var(--white); font-size: 1.2rem; }
.faq-cta-strip p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-top: 6px; }

@media (max-width: 768px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar-nav { position: static; display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
  .faq-sidebar-nav h4 { display: none; }
  .faq-nav-btn { padding: 8px 14px; }
  .faq-cta-strip { flex-direction: column; text-align: center; }
}

/* === CONTACT PAGE === */
.contact-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(193,18,31,0.08);
}

.contact-hero h1 { color: var(--white); }
.contact-hero p { color: rgba(255,255,255,0.72); max-width: 540px; margin-top: 16px; font-size: 1.05rem; }

.contact-badges {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.contact-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 8px 16px;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-family: var(--font-heading);
  font-weight: 500;
}

/* contact grid */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .contact-main-grid { grid-template-columns: 1fr; }
}

/* form enhancements */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: rgba(29,53,87,0.02);
}

.form-submit-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.form-note {
  font-size: 0.78rem;
  color: var(--gray-mid);
}

/* success state */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(46,204,113,0.1);
  border: 2px solid rgba(46,204,113,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #2ECC71;
  font-size: 1.8rem;
}

/* info cards on contact */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(29,53,87,0.2);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(29,53,87,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}

.contact-info-icon.red { background: rgba(193,18,31,0.08); color: var(--red); }

.contact-info-body h4 { font-size: 0.85rem; color: var(--navy); margin-bottom: 4px; }
.contact-info-body p, .contact-info-body a {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-info-body a:hover { color: var(--navy); }

/* hours table */
.hours-grid {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--gray);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray);
  font-size: 0.85rem;
}

.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text-light); }
.hours-row .time { font-weight: 600; color: var(--navy); font-family: var(--font-heading); }
.hours-row .closed { color: var(--gray-mid); font-style: italic; }

/* map embed */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  border: 1px solid var(--gray);
  background: var(--gray-light);
  position: relative;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* WhatsApp section */
.whatsapp-section {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.whatsapp-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.whatsapp-section h4 { color: white; font-size: 1rem; margin-bottom: 6px; }
.whatsapp-section p { color: rgba(255,255,255,0.75); font-size: 0.85rem; }

.btn-whatsapp {
  background: white;
  color: #075E54;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  margin-left: auto;
  flex-shrink: 0;
}

.btn-whatsapp:hover {
  background: #e8f5e9;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .whatsapp-section { flex-direction: column; text-align: center; }
  .btn-whatsapp { margin-left: 0; }
}

/* === BOOKING SECTION === */
.booking-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--teal) 100%);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-hero h1 { color: white; }
.booking-hero p { color: rgba(255,255,255,0.72); max-width: 560px; margin: 16px auto 0; }

.booking-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.booking-option-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.booking-option-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(29,53,87,0.2);
}

.booking-option-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(29,53,87,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

.booking-option-icon.red { background: rgba(193,18,31,0.08); }

.booking-option-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.booking-option-card p { font-size: 0.87rem; margin-bottom: 24px; }

@media (max-width: 768px) {
  .booking-options-grid { grid-template-columns: 1fr; }
}

/* === IMAGE BANNER SECTIONS === */
.img-banner {
  position: relative;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0;
}

.img-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.img-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(29,53,87,0.88) 0%, rgba(29,53,87,0.3) 100%);
  display: flex;
  align-items: center;
  padding: 48px;
}

.img-banner-overlay .content h2 { color: white; font-size: clamp(1.4rem, 3vw, 2rem); }
.img-banner-overlay .content p { color: rgba(255,255,255,0.75); margin-top: 12px; max-width: 480px; }
.img-banner-overlay .content .btn { margin-top: 24px; }

/* virtual consult strip */
.virtual-strip {
  background: var(--off-white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.virtual-strip-icon {
  width: 40px;
  height: 40px;
  background: rgba(29,53,87,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}

.virtual-strip p { font-size: 0.85rem; color: var(--text-light); }
.virtual-strip strong { color: var(--navy); }

/* === SCROLL-TRIGGERED STAGGER === */
.stagger-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-child.visible {
  opacity: 1;
  transform: translateY(0);
}