/* ═══════════════════════════════════════════════════
   DENTISTE RABAT — Design System
   Palette: Navy #0B2D5E · Teal #0D9B8A · Gold #C8963C · White #FAFAFA
   Fonts: Playfair Display (headings) · Inter (body)
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --navy:        #0B2D5E;
  --navy-mid:    #163D78;
  --teal:        #0D9B8A;
  --teal-light:  #15B8A4;
  --gold:        #C8963C;
  --gold-light:  #E0B46A;
  --white:       #FAFAFA;
  --off-white:   #F4F7FB;
  --light-gray:  #E8EEF6;
  --mid-gray:    #8A9BBE;
  --text:        #1A2B4A;
  --text-light:  #4A607A;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(11,45,94,.08);
  --shadow-md:   0 8px 40px rgba(11,45,94,.12);
  --shadow-lg:   0 20px 60px rgba(11,45,94,.18);
  --transition:  0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  --max-w:       1200px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }
::selection { background: var(--teal); color: #fff; }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p  { color: var(--text-light); }
a  { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Container ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 50px;
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: .9rem; letter-spacing: .02em;
  cursor: pointer; border: none; transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  color: #fff; box-shadow: 0 6px 24px rgba(13,155,138,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(13,155,138,.45); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-white {
  background: #fff; color: var(--navy); font-weight: 700;
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,.2); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #fff; box-shadow: 0 6px 24px rgba(200,150,60,.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(200,150,60,.45); }
.btn-sm { padding: .6rem 1.4rem; font-size: .82rem; }
.btn-lg { padding: 1rem 2.6rem; font-size: 1rem; }

/* ── Section labels ── */
.section-label {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 1rem;
}
.section-label::before {
  content: ''; width: 28px; height: 2px;
  background: var(--teal); border-radius: 2px;
}

/* ── Section spacing ── */
section { padding: 6rem 0; }

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
#navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 1.2rem 0;
  transition: background .4s, box-shadow .4s, padding .4s;
}
#navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(11,45,94,.08);
  padding: .8rem 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: .75rem;
  font-family: 'Playfair Display', serif;
}
.nav-logo .logo-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #fff;
  box-shadow: 0 4px 12px rgba(13,155,138,.3);
}
.nav-logo .logo-text { font-size: 1.2rem; font-weight: 600; color: var(--navy); line-height: 1.1; }
.nav-logo .logo-sub  { font-family: 'Inter', sans-serif; font-size: .65rem; color: var(--mid-gray); letter-spacing: .08em; text-transform: uppercase; }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: .88rem; font-weight: 500; color: #fff;
  position: relative; padding-bottom: 3px;
  transition: color .3s;
}
#navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--teal); border-radius: 2px; transition: width .3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--teal); }
#navbar.scrolled .nav-links a:hover { color: var(--teal); }
.nav-cta { margin-left: 1rem; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: .3rem;
}
.nav-toggle .bar {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: .3s;
  margin: 5px 0;
}
#navbar.scrolled .nav-toggle .bar { background: var(--navy); }
.nav-toggle.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #071C3E 0%, #0B2D5E 50%, #163D78 100%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-particles span {
  position: absolute; border-radius: 50%;
  background: rgba(13,155,138,.15); animation: float 8s ease-in-out infinite;
}
.hero-particles span:nth-child(1) { width:300px; height:300px; top:-100px; right:-80px; animation-delay:0s; }
.hero-particles span:nth-child(2) { width:200px; height:200px; bottom:10%; left:-60px; animation-delay:2s; }
.hero-particles span:nth-child(3) { width:150px; height:150px; top:40%; right:15%; animation-delay:4s; }
@keyframes float { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-30px) scale(1.05)} }

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; position: relative; z-index: 2;
  padding: 8rem 0 6rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(13,155,138,.2); border: 1px solid rgba(13,155,138,.4);
  color: #7EEADC; font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
}
.hero h1 { color: #fff; margin-bottom: 1.5rem; }
.hero h1 em { color: var(--teal-light); font-style: italic; }
.hero-desc { color: rgba(255,255,255,.72); font-size: 1.05rem; line-height: 1.85; margin-bottom: 2.5rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 1.5rem; margin-top: 3rem; flex-wrap: wrap;
}
.hero-trust-item { display: flex; align-items: center; gap: .5rem; }
.hero-trust-item .num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: #fff; }
.hero-trust-item .lbl { font-size: .72rem; color: rgba(255,255,255,.5); line-height: 1.3; text-transform: uppercase; letter-spacing: .05em; }
.hero-trust-sep { width: 1px; height: 40px; background: rgba(255,255,255,.15); }

.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.4);
  aspect-ratio: 4/5; position: relative;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-card {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: #fff; border-radius: 16px; padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 1rem;
  min-width: 220px;
}
.hero-img-card .card-icon { font-size: 2rem; }
.hero-img-card .card-title { font-weight: 700; font-size: .9rem; color: var(--navy); }
.hero-img-card .card-sub   { font-size: .75rem; color: var(--mid-gray); }
.hero-img-badge {
  position: absolute; top: 1.5rem; right: -1rem;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff; border-radius: 14px; padding: 1rem 1.2rem; text-align: center;
  box-shadow: 0 8px 24px rgba(13,155,138,.4);
}
.hero-img-badge .big { font-family: 'Playfair Display',serif; font-size: 2rem; font-weight: 700; display: block; }
.hero-img-badge .sm  { font-size: .68rem; opacity: .8; text-transform: uppercase; letter-spacing: .08em; }

/* ══════════════════════════════════
   TRUST BAR
══════════════════════════════════ */
.trust-bar {
  background: var(--navy); padding: 1.2rem 0;
}
.trust-bar-inner {
  display: flex; align-items: center; gap: 1.5rem;
  justify-content: center; flex-wrap: wrap;
}
.trust-bar-item {
  display: flex; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.8); font-size: .82rem; font-weight: 500;
  white-space: nowrap;
}
.trust-bar-item .icon { color: var(--teal-light); font-size: 1rem; }
.trust-sep { color: rgba(255,255,255,.2); }

/* ══════════════════════════════════
   SERVICES CARDS
══════════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3.5rem;
}
.service-card {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  padding: 0; display: flex; flex-direction: column; gap: 0;
  transition: var(--transition); position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--navy));
  transform: scaleX(0); transform-origin: left; transition: transform .4s;
  z-index: 2;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(13,155,138,.2); }
.service-img-thumb {
  width: 100%; aspect-ratio: 16/9; overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-img-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-img-thumb img { transform: scale(1.06); }
.service-card h3 { color: var(--navy); font-size: 1.15rem; padding: 1.5rem 1.8rem 0; }
.service-card p  { font-size: .85rem; line-height: 1.75; flex: 1; padding: .6rem 1.8rem 0; }
.service-card h3 { color: var(--navy); font-size: 1.15rem; }
.service-card p  { font-size: .85rem; line-height: 1.75; flex: 1; }
.service-link {
  font-size: .82rem; font-weight: 600; color: var(--teal);
  display: flex; align-items: center; gap: .3rem;
  transition: gap .3s;
  padding: 1rem 1.8rem 1.8rem;
}
.service-card:hover .service-link { gap: .6rem; }

/* ══════════════════════════════════
   ABOUT SECTION
══════════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 200px; border-radius: var(--radius);
  overflow: hidden; border: 6px solid #fff;
  box-shadow: var(--shadow-md);
}
.about-img-accent img { width: 100%; display: block; }
.about-badge {
  position: absolute; top: 2rem; left: -1.5rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff; border-radius: var(--radius); padding: 1.2rem 1.5rem;
  text-align: center; box-shadow: 0 8px 24px rgba(13,155,138,.35);
}
.about-badge .num { font-family: 'Playfair Display',serif; font-size: 2.2rem; font-weight: 700; }
.about-badge .txt { font-size: .7rem; opacity: .85; text-transform: uppercase; letter-spacing: .06em; }
.about-features { display: flex; flex-direction: column; gap: .9rem; margin: 2rem 0; }
.about-feat { display: flex; align-items: flex-start; gap: 1rem; }
.about-feat .feat-icon {
  width: 38px; height: 38px; min-width: 38px; border-radius: 10px;
  background: rgba(13,155,138,.1); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--teal);
}
.about-feat h4 { font-family: 'Inter',sans-serif; font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: .15rem; }
.about-feat p  { font-size: .82rem; }

/* ══════════════════════════════════
   STATS STRIP
══════════════════════════════════ */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 4rem 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-item { padding: 1.5rem; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700; color: #fff;
  line-height: 1; margin-bottom: .4rem;
}
.stat-num span { color: var(--teal-light); }
.stat-lbl { font-size: .78rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .1em; }

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testimonials-section { background: var(--off-white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3.5rem;
}
.testimonial-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--light-gray);
  box-shadow: var(--shadow); transition: var(--transition);
  display: flex; flex-direction: column; gap: 1rem;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: #F59E0B; font-size: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: .9rem; line-height: 1.8; color: var(--text-light); font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: .8rem; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .95rem;
  flex-shrink: 0;
}
.author-name  { font-weight: 600; font-size: .88rem; color: var(--navy); }
.author-city  { font-size: .75rem; color: var(--mid-gray); }

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 3rem;
}
.faq-item {
  background: #fff; border: 1px solid var(--light-gray);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-question {
  padding: 1.3rem 1.5rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: .9rem; color: var(--navy);
  transition: background .3s;
}
.faq-question:hover { background: var(--off-white); }
.faq-icon { font-size: 1.2rem; color: var(--teal); transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.5rem; max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  font-size: .87rem; color: var(--text-light); line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 1.5rem 1.3rem; }

/* ══════════════════════════════════
   MAP + CONTACT
══════════════════════════════════ */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 4rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; }
.contact-item .c-icon {
  width: 46px; height: 46px; min-width: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff;
}
.contact-item h4 { font-family: 'Inter',sans-serif; font-weight: 600; font-size: .88rem; color: var(--navy); margin-bottom: .2rem; }
.contact-item p  { font-size: .85rem; }
.contact-item a  { color: var(--teal); transition: color .3s; }
.contact-item a:hover { color: var(--navy); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { width: 100%; height: 380px; border: none; display: block; }

/* ══════════════════════════════════
   APPOINTMENT / BOOKING FORM
══════════════════════════════════ */
.booking-section { background: var(--white); }
.booking-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.booking-form-wrap {
  background: #fff; border-radius: var(--radius-lg);
  padding: 2.8rem; box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
}
.form-title { font-size: 1.5rem; margin-bottom: .4rem; }
.form-sub { font-size: .85rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label {
  display: block; font-size: .75rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--navy); margin-bottom: .45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .8rem 1rem; border-radius: 10px;
  border: 1.5px solid var(--light-gray);
  background: var(--off-white);
  font-family: 'Inter', sans-serif; font-size: .88rem; color: var(--text);
  outline: none; transition: border-color .3s, box-shadow .3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,155,138,.12);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230D9B8A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.form-submit { width: 100%; margin-top: .5rem; justify-content: center; font-size: 1rem; padding: 1rem; }
.form-success {
  display: none; text-align: center; padding: 2rem;
  background: rgba(13,155,138,.07); border-radius: var(--radius);
  border: 1px solid rgba(13,155,138,.2);
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { color: var(--teal); margin-bottom: .5rem; }

/* ══════════════════════════════════
   BLOG CARDS
══════════════════════════════════ */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.blog-card {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; overflow: hidden; background: var(--light-gray); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.6rem; }
.blog-category {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: .5rem;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: .6rem; }
.blog-card p  { font-size: .82rem; line-height: 1.7; margin-bottom: 1rem; }
.blog-meta { font-size: .75rem; color: var(--mid-gray); display: flex; gap: 1rem; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: linear-gradient(135deg, #071C3E 0%, #0B2D5E 100%);
  color: rgba(255,255,255,.75); padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 4rem;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-sub  { color: rgba(255,255,255,.4); }
.footer-desc { font-size: .85rem; line-height: 1.85; margin: 1.2rem 0 1.5rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: rgba(255,255,255,.7);
  transition: background .3s, color .3s, transform .3s;
}
.footer-social a:hover { background: var(--teal); color: #fff; transform: translateY(-3px); }
.footer-col h4 {
  font-family: 'Inter',sans-serif; font-weight: 700; font-size: .85rem;
  color: #fff; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { font-size: .84rem; transition: color .3s; }
.footer-col ul a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom a { transition: color .3s; }
.footer-bottom a:hover { color: var(--teal-light); }

/* ══════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #163D78 100%);
  padding: 8rem 0 5rem; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(13,155,138,.15) 0%, transparent 70%);
}
.page-hero h1 { color: #fff; position: relative; }
.page-hero p  { color: rgba(255,255,255,.65); max-width: 540px; margin: 1rem auto 0; position: relative; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; font-size: .8rem; color: rgba(255,255,255,.5);
  margin-bottom: 1.2rem; position: relative;
}
.breadcrumb a { color: var(--teal-light); }
.breadcrumb a:hover { color: #fff; }

/* ══════════════════════════════════
   WHATSAPP FLOAT BUTTON
══════════════════════════════════ */
.whatsapp-btn {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,.55); }
.whatsapp-btn::before {
  content: ''; position: absolute;
  width: 100%; height: 100%; border-radius: 50%;
  background: #25D366; animation: wa-pulse 2.5s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ══════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-left.visible, .reveal-right.visible { transform: none; }
.stagger > * {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:.0s; }
.stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:.1s; }
.stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:.2s; }
.stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:.3s; }
.stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:.4s; }
.stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:.5s; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual {
    display: block;
    width: 100%;
    margin-top: 2rem;
  }
  .hero-img-wrap {
    aspect-ratio: 3/2;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
  }
  .hero-img-card { display: none; }
  .hero-img-badge { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .booking-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; position: fixed; inset: 0; background: #fff; flex-direction: column; justify-content: center; align-items: center; gap: 2rem; z-index: 999; transform: translateX(100%); transition: transform .4s cubic-bezier(.22,1,.36,1); }
  .nav-links.open { transform: translateX(0); display: flex; }
  .nav-links a { color: var(--navy) !important; font-size: 1.2rem; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; z-index: 1000; position: relative; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .hero-trust { gap: 1rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .hero h1 { font-size: 2.2rem; }
}
