/* ============================================================
   Mirai Skin & Hair Clinic — Premium Stylesheet
   Brand Teal: #16B4CC | Dark Navy: #0a2540 | Gold: #C9A96E
   ============================================================ */

:root {
  --teal:       #16B4CC;
  --teal-dark:  #0e8fa0;
  --teal-light: #e8f8fb;
  --navy:       #0a2540;
  --navy-mid:   #12345a;
  --gold:       #C9A96E;
  --gold-light: #f5edd8;
  --white:      #ffffff;
  --off-white:  #f9fafb;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-400:   #9ca3af;
  --gray-600:   #4b5563;
  --gray-900:   #111827;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', 'Segoe UI', sans-serif;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(10,37,64,.08);
  --shadow-lg:  0 12px 48px rgba(10,37,64,.14);
  --transition: all .3s ease;
}

/* ── 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(--gray-900); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); 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.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 600; }
p  { color: var(--gray-600); font-size: 1.05rem; line-height: 1.8; }

.section-label { display: inline-block; font-size: .85rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: .6rem; }
.section-title { margin-bottom: 1rem; }
.section-desc  { max-width: 620px; margin: 0 auto 3rem; text-align: center; }

/* ── Layout ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-alt { background: var(--off-white); }
.text-center { text-align: center; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 2rem; border-radius: 50px; font-size: .95rem; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); text-decoration: none; }
.btn-primary  { background: var(--teal); color: var(--white); box-shadow: 0 4px 18px rgba(22,180,204,.35); }
.btn-primary:hover  { background: var(--teal-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(22,180,204,.45); }
.btn-outline  { background: transparent; border: 2px solid var(--teal); color: var(--teal); }
.btn-outline:hover  { background: var(--teal); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--white); box-shadow: 0 4px 18px rgba(201,169,110,.3); }
.btn-gold:hover { background: #b8935a; color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--teal); font-weight: 700; }
.btn-white:hover { background: var(--teal-light); color: var(--teal-dark); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: .5rem 1.2rem; font-size: .85rem; }

/* ── Header / Navbar ── */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--transition); }
.header.scrolled { background: var(--white); box-shadow: 0 2px 24px rgba(0,0,0,.1); }
.header.scrolled .nav-link { color: var(--navy); }
.header.scrolled .logo-img { filter: none; }

.navbar { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 0; }
.logo-img { height: 52px; width: auto; }
.logo-img-dark { filter: brightness(0) invert(1); }

.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-link { padding: .5rem .9rem; font-size: .92rem; font-weight: 500; color: var(--white); border-radius: var(--radius-sm); transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--teal); background: rgba(22,180,204,.12); }
.header.scrolled .nav-link:hover { color: var(--teal); }

.nav-dropdown { position: relative; }
.nav-dropdown-menu { position: absolute; top: calc(100% + .5rem); left: 0; min-width: 240px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: .75rem 0; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: var(--transition); }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { display: block; padding: .6rem 1.25rem; font-size: .9rem; color: var(--gray-600); transition: var(--transition); }
.nav-dropdown-menu a:hover { color: var(--teal); background: var(--teal-light); }

.nav-cta { margin-left: 1rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .4rem; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.header.scrolled .hamburger span { background: var(--navy); }

/* ── Hero ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 50%, #0e2a46 100%); overflow: hidden; }
.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='%2316B4CC' fill-opacity='0.04'%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"); }
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(22,180,204,.15); border: 1px solid rgba(22,180,204,.3); border-radius: 50px; padding: .45rem 1.1rem; font-size: .85rem; color: var(--teal); margin-bottom: 1.5rem; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--teal); }
.hero p { color: rgba(255,255,255,.78); font-size: 1.15rem; margin-bottom: 2.25rem; max-width: 540px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; }
.hero-stat-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--white); line-height: 1; }
.hero-stat-label { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: .2rem; }
.hero-visual { position: absolute; right: 0; top: 0; height: 100%; width: 45%; background: linear-gradient(135deg, rgba(22,180,204,.1), rgba(22,180,204,.05)); clip-path: polygon(15% 0,100% 0,100% 100%,0 100%); }
.hero-float { position: absolute; right: 5%; bottom: 15%; background: var(--white); border-radius: var(--radius); padding: 1.1rem 1.5rem; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .8rem; z-index: 3; }
.hero-float-icon { width: 44px; height: 44px; background: var(--teal-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 1.2rem; }
.hero-float-text { font-size: .82rem; color: var(--gray-600); }
.hero-float-text strong { display: block; font-size: .95rem; color: var(--navy); }

/* ── Services Cards ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 2rem 1.75rem; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--gray-200); position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--teal); transform: scaleX(0); transition: var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { width: 60px; height: 60px; background: var(--teal-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 1.6rem; margin-bottom: 1.25rem; }
.service-card h3 { font-size: 1.2rem; margin-bottom: .65rem; }
.service-card p { font-size: .92rem; }
.service-card .read-more { display: inline-flex; align-items: center; gap: .35rem; font-size: .88rem; font-weight: 600; color: var(--teal); margin-top: 1rem; }
.service-card .read-more:hover { gap: .6rem; }

/* ── Why Choose Us ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.why-card { text-align: center; padding: 2rem 1.25rem; }
.why-icon { width: 72px; height: 72px; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.8rem; margin: 0 auto 1.25rem; box-shadow: 0 8px 24px rgba(22,180,204,.3); }
.why-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }

/* ── Process Steps ── */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; counter-reset: step; }
.process-step { position: relative; text-align: center; }
.step-num { width: 60px; height: 60px; background: var(--navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; margin: 0 auto 1rem; }
.process-step:not(:last-child)::after { content: ''; position: absolute; top: 30px; left: calc(50% + 40px); right: calc(-50% + 40px); height: 2px; background: var(--gray-200); }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.75rem; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); border-left: 4px solid var(--teal); }
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: .75rem; letter-spacing: .1em; }
.testimonial-text { font-style: italic; margin-bottom: 1.25rem; font-size: .97rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar { width: 44px; height: 44px; background: var(--teal-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--teal); font-weight: 700; font-size: 1rem; }
.testimonial-name { font-weight: 600; color: var(--navy); font-size: .95rem; }
.testimonial-location { font-size: .8rem; color: var(--gray-400); }

/* ── Reels / Instagram ── */
.reels-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.reel-wrapper { border-radius: var(--radius); overflow: hidden; background: var(--gray-100); line-height: 0; box-shadow: var(--shadow); }
.reel-wrapper blockquote.instagram-media { margin: 0 !important; min-width: unset !important; max-width: 100% !important; border-radius: 0 !important; }

/* ── About / Founder ── */
.founder-card { display: flex; gap: 3rem; align-items: center; }
.founder-img-wrap { flex: 0 0 340px; position: relative; }
.founder-img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.founder-badge { position: absolute; bottom: -1rem; right: -1rem; background: var(--teal); color: var(--white); border-radius: var(--radius-sm); padding: 1rem 1.25rem; text-align: center; box-shadow: 0 8px 24px rgba(22,180,204,.35); }
.founder-badge-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; line-height: 1; }
.founder-badge-text { font-size: .8rem; line-height: 1.3; margin-top: .2rem; }
.founder-content h2 { margin-bottom: .75rem; }
.founder-qualifications { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.25rem 0; }
.qual-tag { display: inline-flex; align-items: center; gap: .4rem; background: var(--teal-light); border-radius: 50px; padding: .35rem .9rem; font-size: .82rem; color: var(--teal); font-weight: 500; }

/* ── CTA Banner ── */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%); padding: 5rem 0; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.75); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.75rem; }
.contact-icon { width: 50px; height: 50px; background: var(--teal-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 1.2rem; flex-shrink: 0; }
.contact-info-text h4 { font-size: 1rem; margin-bottom: .25rem; }
.contact-info-text p, .contact-info-text a { font-size: .95rem; color: var(--gray-600); }

.map-wrapper { border-radius: var(--radius); overflow: hidden; height: 320px; box-shadow: var(--shadow); }
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* ── Forms ── */
.form-group { margin-bottom: 1.35rem; }
.form-label { display: block; font-size: .88rem; font-weight: 600; color: var(--navy); margin-bottom: .45rem; }
.form-control { width: 100%; padding: .8rem 1.1rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-size: .95rem; font-family: var(--font-body); color: var(--gray-900); background: var(--white); transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(22,180,204,.12); }
.form-control.is-invalid { border-color: #ef4444; }
.invalid-feedback { font-size: .83rem; color: #ef4444; margin-top: .3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.otp-wrapper { display: flex; gap: .75rem; }
.otp-input { flex: 1; }
.otp-status { font-size: .85rem; margin-top: .35rem; }
.otp-status.success { color: #16a34a; }
.otp-status.error   { color: #ef4444; }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.75rem; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--gray-200); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; background: var(--gray-100); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-meta { display: flex; align-items: center; gap: 1rem; font-size: .8rem; color: var(--gray-400); margin-bottom: .75rem; }
.blog-category { background: var(--teal-light); color: var(--teal); padding: .2rem .7rem; border-radius: 50px; font-size: .78rem; font-weight: 600; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: .6rem; line-height: 1.4; }
.blog-card h3 a:hover { color: var(--teal); }
.blog-card p { font-size: .88rem; }

/* ── Page Hero ── */
.page-hero { background: linear-gradient(135deg, var(--navy), #1a3a5c); padding: 8rem 0 4rem; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.1rem; }
.breadcrumb { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.1); border-radius: 50px; padding: .4rem 1rem; font-size: .85rem; color: rgba(255,255,255,.7); margin-top: 1.25rem; }
.breadcrumb a { color: var(--teal); }

/* ── Social Links ── */
.social-links { display: flex; gap: .75rem; }
.social-link { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: .9rem; transition: var(--transition); }
.social-link:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }

/* ── Footer ── */
.footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: .9rem; margin-top: 1rem; max-width: 280px; color: rgba(255,255,255,.6); }
.footer-logo { height: 48px; filter: brightness(0) invert(1); }
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 1.25rem; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--teal); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .7rem; margin-bottom: .85rem; font-size: .9rem; color: rgba(255,255,255,.6); }
.footer-contact-item svg, .footer-contact-item i { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: .85rem; transition: var(--transition); }
.footer-social a:hover { background: var(--teal); color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; font-size: .85rem; color: rgba(255,255,255,.45); }
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--teal); }

/* ── WhatsApp Float ── */
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,.45); transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); box-shadow: 0 8px 32px rgba(37,211,102,.55); }

/* ── Alert / Flash ── */
.alert { padding: .95rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1.25rem; font-size: .93rem; }
.alert-success { background: #dcfce7; border: 1px solid #86efac; color: #166534; }
.alert-error   { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; }
.alert-info    { background: var(--teal-light); border: 1px solid rgba(22,180,204,.3); color: var(--teal-dark); }

/* ── Pricing Table ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.75rem; }
.pricing-card { background: var(--white); border-radius: var(--radius); padding: 2.25rem; box-shadow: var(--shadow); border: 2px solid var(--gray-200); transition: var(--transition); }
.pricing-card.featured { border-color: var(--teal); background: linear-gradient(135deg, var(--navy), #1a3a5c); color: var(--white); }
.pricing-card.featured h3, .pricing-card.featured .price { color: var(--white); }
.pricing-card.featured p { color: rgba(255,255,255,.7); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: var(--teal); }
.price span { font-size: 1rem; font-weight: 400; color: var(--gray-400); }
.price-features { margin: 1.25rem 0; }
.price-features li { padding: .5rem 0; font-size: .92rem; border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; gap: .5rem; }
.price-features li::before { content: '✓'; color: var(--teal); font-weight: 700; }
.pricing-card.featured .price-features li { border-bottom-color: rgba(255,255,255,.1); }
.pricing-card.featured .price-features li::before { color: var(--gold); }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 1.35rem 0; font-size: 1rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-question span { font-family: var(--font-head); }
.faq-icon { width: 28px; height: 28px; background: var(--teal-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: .9rem; flex-shrink: 0; transition: var(--transition); }
.faq-item.active .faq-icon { background: var(--teal); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 0 1.35rem; color: var(--gray-600); font-size: .95rem; line-height: 1.8; }
.faq-item.active .faq-answer { max-height: 500px; }

/* ── Stat Strip ── */
.stat-strip { background: var(--teal); padding: 3rem 0; }
.stat-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-strip-num { font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat-strip-label { font-size: .88rem; color: rgba(255,255,255,.8); margin-top: .35rem; text-transform: uppercase; letter-spacing: .08em; }

/* ── Admin Panel ── */
.admin-sidebar { position: fixed; left: 0; top: 0; bottom: 0; width: 256px; background: var(--navy); z-index: 100; overflow-y: auto; transition: var(--transition); }
.admin-sidebar-logo { padding: 1.75rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.admin-sidebar-logo img { height: 44px; filter: brightness(0) invert(1); }
.admin-nav { padding: 1rem 0; }
.admin-nav-section { padding: .5rem 1.5rem; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-top: .5rem; }
.admin-nav-link { display: flex; align-items: center; gap: .85rem; padding: .7rem 1.5rem; font-size: .9rem; color: rgba(255,255,255,.65); transition: var(--transition); border-left: 3px solid transparent; }
.admin-nav-link:hover, .admin-nav-link.active { color: var(--white); background: rgba(255,255,255,.07); border-left-color: var(--teal); }
.admin-nav-link svg { width: 18px; height: 18px; flex-shrink: 0; }

.admin-main { margin-left: 256px; min-height: 100vh; background: #f1f5f9; }
.admin-topbar { background: var(--white); padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.admin-topbar h1 { font-size: 1.35rem; color: var(--navy); margin: 0; }
.admin-content { padding: 2rem; }

.stat-card { background: var(--white); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); display: flex; align-items: center; gap: 1rem; }
.stat-card-icon { width: 54px; height: 54px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.stat-card-icon.teal { background: var(--teal-light); color: var(--teal); }
.stat-card-icon.gold { background: var(--gold-light); color: var(--gold); }
.stat-card-icon.navy { background: #e8eef5; color: var(--navy); }
.stat-card-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-card-label { font-size: .82rem; color: var(--gray-400); margin-top: .2rem; }

.admin-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.admin-table thead { background: var(--gray-100); }
.admin-table th { padding: .9rem 1.1rem; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-600); text-align: left; }
.admin-table td { padding: .9rem 1.1rem; font-size: .9rem; border-bottom: 1px solid var(--gray-100); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--off-white); }
.badge { display: inline-block; padding: .25rem .7rem; border-radius: 50px; font-size: .75rem; font-weight: 600; }
.badge-new       { background: #dbeafe; color: #1e40af; }
.badge-pending   { background: #fef3c7; color: #92400e; }
.badge-confirmed { background: #dcfce7; color: #166534; }
.badge-completed { background: #e0e7ff; color: #3730a3; }
.badge-cancelled { background: #fee2e2; color: #991b1b; }
.badge-contacted { background: #e0f2fe; color: #0369a1; }
.badge-converted { background: #dcfce7; color: #166534; }
.badge-closed    { background: var(--gray-100); color: var(--gray-600); }
.badge-published { background: #dcfce7; color: #166534; }
.badge-draft     { background: var(--gray-100); color: var(--gray-600); }

.admin-card { background: var(--white); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); }
.admin-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--gray-200); }
.admin-card-header h2 { font-size: 1.15rem; margin: 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .founder-card { flex-direction: column; }
  .founder-img-wrap { flex: none; width: 100%; max-width: 400px; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .nav-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); flex-direction: column; justify-content: center; align-items: center; gap: 1rem; z-index: 999; }
  .nav-menu.open { display: flex; }
  .nav-link { color: var(--white) !important; font-size: 1.1rem; }
  .hamburger { display: flex; z-index: 1001; position: relative; }
  .nav-dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,.05); border-radius: var(--radius-sm); }
  .hero-visual { display: none; }
  .hero-stats { gap: 1.5rem; }
  .hero-float { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .stat-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .admin-sidebar { width: 100%; height: auto; position: relative; }
  .admin-main { margin-left: 0; }
  .process-step::after { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .reels-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .stat-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ── Utilities ── */
.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mb-1{margin-bottom:.25rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.gap-1{gap:.25rem}.gap-2{gap:.5rem}.text-teal{color:var(--teal)}.text-gold{color:var(--gold)}.text-white{color:var(--white)}.font-head{font-family:var(--font-head)}.d-flex{display:flex}.align-center{align-items:center}.justify-between{justify-content:space-between}.w-full{width:100%}
.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* ── Service Page Gold-Luxury Components ── */

/* Trust Bar */
.trust-bar { background: var(--off-white); border-top: 1px solid rgba(201,169,110,.2); border-bottom: 1px solid rgba(201,169,110,.2); padding: 1.75rem 0; }
.trust-bar-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.trust-item { display: flex; align-items: center; gap: .85rem; }
.trust-icon { width: 44px; height: 44px; border: 1px solid rgba(201,169,110,.35); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.trust-text strong { display: block; font-size: .88rem; font-weight: 700; color: var(--navy); }
.trust-text span { font-size: .8rem; color: var(--gray-600); }

/* Gold Step Cards */
.gold-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem; }
.gold-step-card { background: var(--white); border: 1px solid rgba(201,169,110,.3); border-radius: var(--radius); padding: 1.75rem; position: relative; overflow: hidden; box-shadow: 0 2px 12px rgba(184,134,11,.06); transition: var(--transition); }
.gold-step-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(184,134,11,.12); }
.gold-step-num { font-family: var(--font-head); font-size: 3.5rem; font-weight: 700; color: var(--gold); opacity: .15; line-height: 1; margin-bottom: .5rem; }
.gold-step-card h4 { font-size: 1rem; color: var(--gold); margin-bottom: .5rem; }
.gold-step-card p { font-size: .87rem; }

/* Left-border Benefit Cards */
.benefit-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.25rem; }
.benefit-card { background: var(--white); border-left: 3px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 1.35rem 1.5rem; box-shadow: 0 2px 10px rgba(10,37,64,.06); transition: var(--transition); }
.benefit-card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(10,37,64,.1); }
.benefit-card-head { display: flex; align-items: center; gap: .65rem; margin-bottom: .4rem; }
.benefit-card-head i { color: var(--gold); font-size: 1.1rem; }
.benefit-card-head h4 { font-size: .97rem; color: var(--navy); margin: 0; }
.benefit-card p { font-size: .85rem; margin: 0; }

/* Candidacy Boxes */
.candidacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.candidacy-box { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.candidacy-box.yes { border-top: 4px solid #4caf50; }
.candidacy-box.no  { border-top: 4px solid #e57373; }
.candidacy-box h3 { font-size: 1.1rem; margin-bottom: 1.25rem; display: flex; align-items: center; gap: .5rem; }
.candidacy-list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .9rem; color: var(--gray-600); padding: .4rem 0; border-bottom: 1px solid var(--gray-100); }
.candidacy-list li:last-child { border-bottom: none; }
.candidacy-list li i.yes { color: #4caf50; margin-top: .2rem; flex-shrink:0; }
.candidacy-list li i.no  { color: #e57373; margin-top: .2rem; flex-shrink:0; }

/* Horizontal Timeline */
.h-timeline { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 2.5rem; }
.h-timeline::before { content:''; position: absolute; top: 20px; left: 5%; right: 5%; height: 1px; background: rgba(201,169,110,.4); }
.h-timeline-item { text-align: center; position: relative; }
.h-timeline-dot { width: 16px; height: 16px; background: var(--gold); border: 3px solid var(--white); border-radius: 50%; margin: 0 auto .85rem; position: relative; z-index:1; box-shadow: 0 0 0 2px rgba(201,169,110,.3); }
.h-timeline-item h4 { font-size: .9rem; color: var(--gold); margin-bottom: .3rem; }
.h-timeline-item p { font-size: .82rem; }

/* Pricing Gold Card */
.price-gold-card { max-width: 560px; margin: 2rem auto; background: var(--white); border: 1px solid rgba(201,169,110,.45); border-radius: var(--radius); padding: 2.5rem; box-shadow: 0 4px 24px rgba(184,134,11,.1); }
.price-gold-card .price-big { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; margin: .75rem 0; }
.price-gold-card .price-note { font-size: .82rem; color: var(--gray-400); margin-bottom: 1.5rem; }
.price-includes { border-top: 1px solid var(--gray-100); padding-top: 1.25rem; }
.price-includes li { display: flex; align-items: center; gap: .5rem; font-size: .9rem; padding: .4rem 0; color: var(--gray-600); }
.price-includes li::before { content: '—'; color: var(--gold); font-weight: 700; }

/* Aftercare Cards */
.aftercare-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.25rem; }
.aftercare-card { background: var(--white); border-top: 3px solid var(--gold); border-radius: 0 0 var(--radius-sm) var(--radius-sm); padding: 1.5rem; box-shadow: 0 2px 10px rgba(10,37,64,.06); }
.aftercare-card .day-label { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.aftercare-card h4 { font-size: .97rem; color: var(--navy); margin-bottom: .4rem; }
.aftercare-card p { font-size: .85rem; }

/* Why Points with faded numbers */
.why-points { display: flex; flex-direction: column; gap: 0; }
.why-point { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.35rem 0; border-bottom: 1px solid rgba(201,169,110,.15); }
.why-point:last-child { border-bottom: none; }
.why-point-num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--gold); opacity: .25; line-height: 1; min-width: 2.5rem; }
.why-point-text h4 { font-size: .97rem; color: var(--gold); margin-bottom: .25rem; }
.why-point-text p { font-size: .87rem; margin: 0; }

/* Mid CTA Gold Strip */
.mid-cta-gold { background: var(--gold); padding: 2.5rem 0; text-align: center; }
.mid-cta-gold p { color: var(--navy); font-size: 1.05rem; font-weight: 500; margin-bottom: 1.25rem; }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-mid); color: var(--white); transform: translateY(-2px); }

/* Image placeholder for service pages */
.service-img-placeholder { background: linear-gradient(135deg, var(--off-white), var(--gold-light)); border: 1px solid rgba(201,169,110,.3); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: .75rem; color: var(--gold); font-size: .88rem; font-weight: 600; }

@media(max-width:900px){
  .trust-bar-grid{grid-template-columns:1fr 1fr;}
  .candidacy-grid{grid-template-columns:1fr;}
  .h-timeline{grid-template-columns:1fr 1fr;}
  .h-timeline::before{display:none;}
}
@media(max-width:600px){
  .trust-bar-grid{grid-template-columns:1fr;}
  .h-timeline{grid-template-columns:1fr;}
}

/* ══════════════════════════════════════════════════════════════
   PHOTO GALLERY — Premium Masonry Design
══════════════════════════════════════════════════════════════ */
.gallery-section { background: var(--off-white); }

/* Filter Tabs */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin: 2rem 0 2.5rem;
}
.gallery-filter-btn {
  padding: .5rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .02em;
}
.gallery-filter-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.gallery-filter-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(22,180,204,.35);
}

/* Masonry Grid */
.gallery-grid {
  columns: 4;
  column-gap: 1.1rem;
  transition: all .3s;
}
@media(max-width:1100px){ .gallery-grid { columns: 3; } }
@media(max-width:720px)  { .gallery-grid { columns: 2; } }
@media(max-width:460px)  { .gallery-grid { columns: 1; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.1rem;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.gallery-item.hidden { display: none; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(10,37,64,.18); }

.gallery-img-wrap { position: relative; overflow: hidden; }
.gallery-img-wrap img {
  width: 100%;
  display: block;
  border-radius: 14px;
  transition: transform .45s ease;
}
.gallery-item:hover .gallery-img-wrap img { transform: scale(1.07); }

/* Hover Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,.8) 0%, rgba(10,37,64,.1) 60%, transparent 100%);
  border-radius: 14px;
  opacity: 0;
  transition: opacity .35s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-content {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #fff;
  font-weight: 600;
  font-size: .88rem;
}
.gallery-overlay-content i {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}

/* Category Badge */
.gallery-cat-badge {
  position: absolute;
  top: .75rem; left: .75rem;
  background: rgba(22,180,204,.92);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .3s, transform .3s;
}
.gallery-item:hover .gallery-cat-badge { opacity: 1; transform: translateY(0); }

/* ── Lightbox ─────────────────────────────────────────────── */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5,15,30,.96);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}
.gallery-lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  text-align: center;
}
.lightbox-inner img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  object-fit: contain;
}
.lightbox-caption {
  color: rgba(255,255,255,.75);
  margin-top: 1rem;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .03em;
}

.lightbox-close {
  position: fixed;
  top: 1.25rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 10000;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }

.lightbox-nav {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 10000;
}
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

@media(max-width:600px){
  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }
  .lightbox-nav { width: 40px; height: 40px; font-size: .95rem; }
}
