﻿/* ================================================================
   OC PETS VETERINARY CLINIC — Complete Stylesheet
   Clean rebuild — no animation dependencies, all content visible
   Brand: Gold #C09642 | Dark #1A1A2E | White/Cream backgrounds
================================================================ */

/* ── Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: #3D3D4D; background: #ffffff; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.25; color: #1A1A2E; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; font-family: 'Inter', sans-serif; }
p { color: #5A5A6E; line-height: 1.8; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 80px 0; }

/* ── Colors & Variables ────────────────────────────────────────── */
/* ⚠️  THEME COLORS — to change the brand colors across the whole website:
   1. Update the hex values below (CSS)
   2. Update the matching values in /theme.php (PHP emails + server PDF)
   3. Update the THEME block near the top of /consent/general/index.html (browser PDF)
   Both files are clearly labeled for easy finding. */
:root {
  --gold: #C09642;       /* Primary gold — ALSO in theme.php THEME_GOLD */
  --gold-d: #9A7832;
  --gold-l: #D4AF60;
  --gold-bg: #FDF8EC;
  --dark: #1A1A2E;       /* Navy dark — ALSO in theme.php THEME_NAVY */
  --dark2: #2C2C3E;
  --text: #3D3D4D;
  --text2: #6B6B7B;
  --white: #ffffff;
  --cream: #FAFAF5;
  --border: #E8E0D0;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-l: 0 8px 40px rgba(0,0,0,0.14);
  --radius: 14px;
  --radius-sm: 8px;
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 50px; font-weight: 600; font-size: 0.92rem; cursor: pointer; transition: all 0.25s ease; border: 2px solid transparent; white-space: nowrap; }
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-d); border-color: var(--gold-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,150,66,0.35); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-white { background: #fff; color: var(--dark); border-color: #fff; font-weight: 700; }
.btn-white:hover { background: var(--gold-bg); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-wa { background: #25D366; color: #fff; border-color: #25D366; }
.btn-wa:hover { background: #128C7E; border-color: #128C7E; transform: translateY(-2px); }
.btn-wa svg { width: 18px; height: 18px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Tags ───────────────────────────────────────────────────────── */
.tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); background: var(--gold-bg); border: 1px solid var(--border); padding: 5px 14px; border-radius: 50px; }
.tag-light { background: rgba(192,150,66,0.15); color: #D4AF60; border-color: rgba(192,150,66,0.3); }

/* ── Section Header ─────────────────────────────────────────────── */
.sec-head { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.sec-head .tag { margin-bottom: 14px; }
.sec-head h2 { margin-bottom: 14px; }
.sec-head p { font-size: 1rem; }

/* ── Top Info Bar ───────────────────────────────────────────────── */
.topbar { background: var(--dark); padding: 9px 0; font-size: 0.78rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px; }
.topbar a, .topbar span { color: rgba(255,255,255,0.75); }
.topbar a:hover { color: var(--gold); }
.topbar-right { display: flex; gap: 20px; }

/* ── Navigation ─────────────────────────────────────────────────── */
#navbar { position: fixed !important; top: 0 !important; left: 0; right: 0; z-index: 9999 !important; transition: padding 0.3s ease, box-shadow 0.3s ease; padding: 12px 0; background: #1A1A2E !important; box-shadow: 0 2px 24px rgba(0,0,0,0.3); }
#navbar.scrolled { padding: 10px 0; }
.nav-wrap { display: flex; align-items: center; gap: 16px; max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.nav-brand img { height: 50px; width: auto; object-fit: contain; filter: none; }
/* logo scrolled state — already handled */
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links > li > a { color: #ffffff; font-size: 0.875rem; font-weight: 500; padding: 8px 12px; border-radius: 8px; display: block; transition: all 0.2s; }
.nav-links > li > a:hover, .nav-links > li > a.active { color: #fff; background: rgba(192,150,66,0.2); }
/* Dropdown */
.has-drop { position: relative; }
.dropdown { position: absolute; top: calc(100% + 10px); left: 0; min-width: 230px; background: #fff; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); border: 1px solid var(--border); opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.25s; z-index: 100; }
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 11px 18px; font-size: 0.86rem; color: var(--text); transition: background 0.15s; }
.dropdown a:hover { background: var(--gold-bg); color: var(--dark); }
.dropdown a:first-child { border-radius: 12px 12px 0 0; }
.dropdown a:last-child { border-radius: 0 0 12px 12px; }
.nav-actions { display: flex; gap: 10px; margin-left: 16px; flex-shrink: 0; }
.nav-call { color: #ffffff; font-size: 0.84rem; font-weight: 500; padding: 8px 14px; border: 1px solid rgba(255,255,255,0.25); border-radius: 50px; transition: all 0.2s; }
.nav-call:hover { background: rgba(255,255,255,0.1); color: #fff; }
.nav-book { background: var(--gold); color: #fff; font-size: 0.84rem; font-weight: 600; padding: 9px 20px; border-radius: 50px; transition: all 0.2s; }
.nav-book:hover { background: var(--gold-d); transform: translateY(-1px); }
/* Hamburger */






/* ── HERO ───────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(125deg, rgba(20,20,38,0.93) 0%, rgba(26,26,46,0.78) 50%, rgba(40,40,68,0.65) 100%); }
.hero-body { flex: 1; display: flex; align-items: center; position: relative; z-index: 1; padding: 140px 28px 60px; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-content { max-width: 680px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); background: rgba(192,150,66,0.15); border: 1px solid rgba(192,150,66,0.35); padding: 6px 16px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 22px; }
.hero-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.8)} }
.hero-content h1 { color: #fff; margin-bottom: 20px; }
.hero-content h1 em { color: var(--gold); font-style: normal; }
.hero-content p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 540px; margin-bottom: 34px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.8); font-size: 0.84rem; }
.trust-icon { width: 22px; height: 22px; background: var(--gold); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; flex-shrink: 0; }
/* Stats Bar */
.stats-bar { position: relative; z-index: 1; background: rgba(255,255,255,0.06); backdrop-filter: blur(16px); border-top: 1px solid rgba(255,255,255,0.1); }
.stats-row { display: flex; align-items: stretch; max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.stat-box { flex: 1; text-align: center; padding: 26px 20px; }
.stat-box + .stat-box { border-left: 1px solid rgba(255,255,255,0.12); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 6px; display: block; }

/* ── SERVICES ───────────────────────────────────────────────────── */
.services-sec { background: var(--cream); }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 22px 24px; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: all 0.3s ease; text-decoration: none; color: inherit; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-l); border-color: transparent; }
.svc-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--card-color, var(--gold)); }
.svc-icon { font-size: 1.8rem; width: 54px; height: 54px; background: var(--gold-bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.svc-card h3 { color: var(--dark); font-size: 1.05rem; margin-bottom: 10px; }
.svc-card p { font-size: 0.84rem; flex: 1; margin-bottom: 18px; color: var(--text2); }
.svc-link { color: var(--gold); font-size: 0.84rem; font-weight: 600; margin-top: auto; }
.svc-link:hover { text-decoration: underline; }
.services-more { text-align: center; margin-top: 40px; }

/* ── STATS COUNTER ──────────────────────────────────────────────── */
.numbers-sec { background: var(--dark); padding: 64px 0; }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.num-box { text-align: center; padding: 32px 24px; border-right: 1px solid rgba(255,255,255,0.1); }
.num-box:last-child { border-right: none; }
.num-big { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.num-label { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-top: 8px; display: block; }

/* ── PRICING ────────────────────────────────────────────────────── */
.pricing-sec { background: var(--dark); position: relative; overflow: hidden; padding: 90px 0; }
.pricing-sec::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(192,150,66,0.12) 0%, transparent 70%); pointer-events: none; }
.pricing-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.pricing-left h2 { color: #fff; margin: 12px 0 18px; }
.pricing-left p { color: rgba(255,255,255,0.72); margin-bottom: 28px; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.price-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 28px 22px; position: relative; }
.price-badge { position: absolute; top: -1px; left: 22px; background: var(--gold); color: #fff; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 0 0 8px 8px; }
.price-card h4 { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 8px; }
.price-card > p { color: rgba(255,255,255,0.6); font-size: 0.82rem; margin-bottom: 16px; }
.price-amount { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); margin-bottom: 16px; line-height: 1; }
.price-amount small { font-family: 'Inter', sans-serif; font-size: 0.82rem; color: rgba(255,255,255,0.5); font-weight: 400; }
.price-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.price-list li { font-size: 0.82rem; color: rgba(255,255,255,0.72); }

/* ── ABOUT ──────────────────────────────────────────────────────── */
.about-sec { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { position: relative; }
.about-img img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-l); aspect-ratio: 4/3; object-fit: cover; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: #fff; border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-l); display: flex; align-items: center; gap: 12px; border: 1px solid var(--border); }
.about-badge img { width: 42px; height: 42px; object-fit: contain; }
.about-badge strong { display: block; font-size: 0.88rem; color: var(--dark); }
.about-badge span { font-size: 0.76rem; color: var(--text2); }
.about-stat { position: absolute; top: -20px; left: -20px; background: var(--gold); border-radius: var(--radius); padding: 16px 20px; text-align: center; box-shadow: 0 8px 28px rgba(192,150,66,0.4); }
.about-stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #fff; font-weight: 700; line-height: 1; }
.about-stat span { font-size: 0.72rem; color: rgba(255,255,255,0.82); }
.about-text h2 { margin: 12px 0 16px; }
.about-intro { color: var(--dark); font-size: 1rem; margin-bottom: 16px; font-weight: 400; line-height: 1.8; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin: 24px 0 32px; }
.about-feat { display: flex; gap: 14px; align-items: flex-start; }
.feat-icon { width: 44px; height: 44px; background: var(--gold-bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.about-feat h4 { color: var(--dark); margin-bottom: 4px; }
.about-feat p { font-size: 0.84rem; margin: 0; }

/* ── TEAM ───────────────────────────────────────────────────────── */
.team-sec { background: var(--cream); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: all 0.3s ease; }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-l); }
.team-img { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-role { position: absolute; bottom: 0; left: 0; right: 0; background: var(--gold); color: #fff; font-size: 0.75rem; font-weight: 600; text-align: center; padding: 8px; }
.team-info { padding: 20px 18px; }
.team-info h3 { color: var(--dark); font-size: 1rem; margin-bottom: 8px; }
.team-info p { font-size: 0.83rem; margin-bottom: 14px; }
.team-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.team-tags span { font-size: 0.72rem; background: var(--gold-bg); color: var(--gold); border: 1px solid var(--border); padding: 3px 10px; border-radius: 50px; }
.team-link { color: var(--gold); font-size: 0.82rem; font-weight: 600; }

/* ── HEALTH LIBRARY ─────────────────────────────────────────────── */
.library-sec { background: #fff; }
.lib-filter { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.lib-btn { background: transparent; border: 1.5px solid var(--border); color: var(--text2); padding: 8px 18px; border-radius: 50px; font-size: 0.83rem; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.lib-btn:hover, .lib-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }
.lib-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lib-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: all 0.3s ease; cursor: pointer; }
.lib-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-l); border-color: var(--gold); }
.lib-card.hidden { display: none; }
.lib-img { aspect-ratio: 16/9; overflow: hidden; }
.lib-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.lib-card:hover .lib-img img { transform: scale(1.07); }
.lib-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.lib-tag { font-size: 0.71rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.lib-body h4 { color: var(--dark); font-family: 'Playfair Display', serif; font-size: 1.05rem; margin-bottom: 10px; line-height: 1.35; }
.lib-body p { font-size: 0.84rem; flex: 1; margin-bottom: 16px; }
.lib-read { color: var(--gold); font-size: 0.84rem; font-weight: 600; align-self: flex-start; }
.lib-more { text-align: center; margin-top: 40px; }

/* ── LIBRARY MODAL ──────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.75); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box { background: #fff; border-radius: var(--radius); max-width: 760px; width: 100%; max-height: 88vh; overflow-y: auto; position: relative; }
.modal-header { background: var(--dark); padding: 28px 32px 24px; border-radius: var(--radius) var(--radius) 0 0; position: relative; }
.modal-header h2 { color: #fff; font-size: 1.6rem; margin-bottom: 8px; }
.modal-header p { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin: 0; }
.modal-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); background: rgba(192,150,66,0.2); padding: 4px 12px; border-radius: 50px; display: inline-block; margin-bottom: 12px; }
.modal-close { position: absolute; top: 16px; right: 20px; background: rgba(255,255,255,0.1); color: #fff; border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.modal-close:hover { background: rgba(255,255,255,0.25); }
.modal-body { padding: 32px; }
.modal-body h3 { color: var(--dark); font-size: 1.15rem; margin: 24px 0 10px; font-family: 'Inter', sans-serif; }
.modal-body h3:first-child { margin-top: 0; }
.modal-body p { font-size: 0.92rem; line-height: 1.8; margin-bottom: 14px; }
.modal-body ul { margin: 0 0 14px 20px; list-style: disc; }
.modal-body ul li { font-size: 0.92rem; color: #5A5A6E; line-height: 1.7; margin-bottom: 6px; }
.modal-cta { background: var(--gold-bg); border-radius: var(--radius-sm); padding: 22px 24px; margin-top: 28px; text-align: center; border: 1px solid var(--border); }
.modal-cta p { font-size: 0.9rem; margin-bottom: 14px; color: var(--dark); font-weight: 500; }

/* ── REVIEWS ────────────────────────────────────────────────────── */
.reviews-sec { background: var(--cream); padding: 80px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 36px; }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all 0.3s; }
.review-card:hover { box-shadow: var(--shadow-l); transform: translateY(-4px); }
.stars { font-size: 1.1rem; margin-bottom: 14px; }
.review-card p { font-size: 0.88rem; font-style: italic; color: var(--text); line-height: 1.75; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-av { width: 42px; height: 42px; background: var(--gold); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.reviewer strong { display: block; font-size: 0.9rem; color: var(--dark); }
.reviewer span { font-size: 0.78rem; color: var(--text2); }
.reviews-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq-sec { background: #fff; }
.faq-inner { display: grid; grid-template-columns: 1fr 1.7fr; gap: 72px; align-items: start; }
.faq-left h2 { margin: 12px 0 16px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 0; background: none; border: none; cursor: pointer; font-size: 0.94rem; font-weight: 600; color: var(--dark); text-align: left; gap: 14px; transition: color 0.2s; font-family: 'Inter', sans-serif; }
.faq-q:hover { color: var(--gold); }
.faq-q .faq-icon { font-size: 1.2rem; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 18px; }
.faq-answer p { font-size: 0.88rem; line-height: 1.78; margin: 0; }

/* ── CONTACT ────────────────────────────────────────────────────── */
.contact-sec { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 48px; }
.contact-form-wrap { background: #fff; border-radius: var(--radius); padding: 36px; border: 1px solid var(--border); }
.contact-form-wrap h3 { margin-bottom: 24px; font-size: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 15px; border: 1.5px solid var(--border); border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--text); background: var(--cream); outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: #fff; }
.form-group textarea { resize: vertical; }
.form-note { font-size: 0.76rem; color: var(--text2); text-align: center; margin-top: 10px; }
.form-success { text-align: center; padding: 40px 24px; display: none; }
.form-success .success-icon { font-size: 3rem; margin-bottom: 14px; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.info-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 18px 20px; display: flex; align-items: flex-start; gap: 14px; transition: all 0.2s; }
.info-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.info-icon { font-size: 1.3rem; flex-shrink: 0; }
.info-card strong { display: block; font-size: 0.88rem; color: var(--dark); margin-bottom: 4px; }
.info-card p { font-size: 0.84rem; margin: 0; }
.info-card a { color: var(--gold); }
.info-card a:hover { text-decoration: underline; }
.map-wrap { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); margin-top: 4px; }

/* ── CTA BAND ───────────────────────────────────────────────────── */
.cta-band { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-d) 100%); padding: 72px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; margin-bottom: 8px; }
.cta-inner p { color: #ffffff; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ── FOOTER ─────────────────────────────────────────────────────── */
.footer { background: var(--dark); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 68px; width: auto; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); transition: all 0.2s; }
.footer-social a svg { width: 17px; height: 17px; }
.footer-social a:hover { background: var(--gold); color: #fff; }
.footer-col h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: 0.9rem; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.84rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-col p { font-size: 0.84rem; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.footer-col p a { color: rgba(255,255,255,0.6); }
.footer-col p a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--gold); }

/* ── FLOATING BUTTONS ───────────────────────────────────────────── */
.wa-float { 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 8px 28px rgba(37,211,102,0.45); transition: transform 0.2s; }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
.wa-float:hover { transform: scale(1.12); }
.wa-float::before { content: ''; position: absolute; inset: -5px; border-radius: 50%; background: rgba(37,211,102,0.25); animation: waPulse 2.5s ease-in-out infinite; }
@keyframes waPulse { 0%,100%{transform:scale(1);opacity:.6} 50%{transform:scale(1.3);opacity:0} }
.back-top { position: fixed; bottom: 94px; right: 28px; z-index: 900; width: 42px; height: 42px; background: rgba(26,26,46,0.85); color: #fff; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; font-size: 0.9rem; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s; }
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--gold); border-color: var(--gold); }

/* ── INNER PAGES ────────────────────────────────────────────────── */
.inner-hero { background: linear-gradient(135deg, var(--dark) 0%, #22224A 100%); padding: 150px 0 70px; position: relative; overflow: hidden; }
.inner-hero::after { content: ''; position: absolute; top: -80px; right: -80px; width: 450px; height: 450px; background: radial-gradient(circle, rgba(192,150,66,0.14) 0%, transparent 70%); pointer-events: none; }
.inner-hero-body { position: relative; z-index: 1; max-width: 780px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; font-size: 0.8rem; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.35); }
.inner-hero h1 { color: #fff; margin-bottom: 14px; }
.inner-hero p { color: rgba(255,255,255,0.75); font-size: 1.03rem; max-width: 600px; margin-bottom: 28px; }
.inner-hero .hero-btns { flex-wrap: wrap; gap: 12px; }
.page-content { background: var(--cream); padding: 72px 0 90px; }
.content-grid { display: grid; grid-template-columns: 1fr 290px; gap: 48px; align-items: start; }
.content-main { }
.intro-box { background: #fff; border-radius: var(--radius); padding: 30px 34px; border: 1px solid var(--border); margin-bottom: 36px; }
.intro-box p { font-size: 0.97rem; color: var(--text); line-height: 1.85; margin: 0; }
.features-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.feature-row { background: #fff; border-radius: var(--radius-sm); padding: 22px 24px; display: flex; gap: 16px; align-items: flex-start; border: 1px solid var(--border); transition: all 0.25s; }
.feature-row:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateX(4px); }
.f-icon { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.feature-row h4 { color: var(--dark); font-family: 'Inter', sans-serif; font-size: 0.95rem; margin-bottom: 5px; font-weight: 600; }
.feature-row p { font-size: 0.85rem; margin: 0; color: var(--text2); }
.cta-box { background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%); border-radius: var(--radius); padding: 32px; margin-top: 36px; }
.cta-box h3 { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 10px; }
.cta-box p { color: rgba(255,255,255,0.72); font-size: 0.9rem; margin-bottom: 22px; }
.cta-box-btns { display: flex; gap: 12px; flex-wrap: wrap; }
/* Sidebar */
.sidebar { position: sticky; top: 100px; }
.sidebar-widget { background: #fff; border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); margin-bottom: 20px; }
.sidebar-widget h4 { font-family: 'Inter', sans-serif; font-size: 0.88rem; color: var(--dark); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); font-weight: 700; }
.sidebar-nav { display: flex; flex-direction: column; gap: 2px; }
.sidebar-nav a { display: block; padding: 8px 12px; border-radius: 8px; font-size: 0.84rem; color: var(--text); transition: all 0.2s; }
.sidebar-nav a:hover, .sidebar-nav a.active { background: var(--gold-bg); color: var(--gold); font-weight: 600; }
.sidebar-contact { background: var(--dark); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.sidebar-contact h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: 0.88rem; margin-bottom: 14px; font-weight: 700; }
.sidebar-contact p { font-size: 0.84rem; color: rgba(255,255,255,0.68); margin-bottom: 8px; }
.sidebar-contact a { color: var(--gold); }
.sidebar-contact a:hover { text-decoration: underline; }
.related-services { margin-top: 48px; }
.related-services h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.related-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 18px 14px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; transition: all 0.25s; }
.related-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }
.related-card span { font-size: 1.5rem; }
.related-card strong { font-size: 0.82rem; color: var(--dark); display: block; }

/* ── PRICING PAGE ───────────────────────────────────────────────── */
.pricing-full { background: var(--cream); }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 36px; }
.pcard { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; position: relative; transition: all 0.3s; }
.pcard:hover { box-shadow: var(--shadow-l); border-color: var(--gold); transform: translateY(-4px); }
.pcard-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.pcard-emoji { font-size: 2rem; }
.pcard-head h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 4px; }
.pcard-head p { font-size: 0.82rem; color: var(--text2); margin: 0; }
.pcard-price { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold); margin-bottom: 20px; line-height: 1; }
.pcard-price small { font-family: 'Inter', sans-serif; font-size: 0.82rem; color: var(--text2); font-weight: 400; }
.pcard-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.pcard-list li { font-size: 0.87rem; color: var(--text); padding: 4px 0; border-bottom: 1px solid var(--border); }
.pcard-list li:last-child { border: none; }
.pricing-note { background: var(--gold-bg); border: 1px solid var(--border); border-radius: 10px; padding: 20px 24px; margin-bottom: 28px; }
.pricing-note p { font-size: 0.88rem; color: var(--text); margin: 0; }

/* ── TEAM PAGE ──────────────────────────────────────────────────── */
.team-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.team-page-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: grid; grid-template-columns: 200px 1fr; transition: all 0.3s; }
.team-page-card:hover { box-shadow: var(--shadow-l); border-color: var(--gold); }
.team-page-img { position: relative; }
.team-page-img img { width: 100%; height: 100%; object-fit: cover; }
.team-page-role { position: absolute; bottom: 0; left: 0; right: 0; background: var(--gold); color: #fff; font-size: 0.73rem; font-weight: 600; text-align: center; padding: 8px; }
.team-page-info { padding: 24px 26px; }
.team-page-info h3 { color: var(--dark); margin-bottom: 8px; font-size: 1.15rem; }
.team-page-info .team-desc { font-size: 0.87rem; line-height: 1.75; margin-bottom: 16px; }
.team-page-info .team-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 16px; }
.team-page-info .team-tags span { font-size: 0.72rem; background: var(--gold-bg); color: var(--gold); border: 1px solid var(--border); padding: 3px 10px; border-radius: 50px; }
.team-link-btn { color: var(--gold); font-size: 0.84rem; font-weight: 600; }

/* ── LIBRARY FULL PAGE ──────────────────────────────────────────── */
.lib-hero { background: var(--dark); padding: 150px 0 70px; }
.lib-hero h1 { color: #fff; margin: 12px 0 14px; }
.lib-hero p { color: rgba(255,255,255,0.72); max-width: 540px; }
.lib-page-sec { background: var(--cream); padding: 60px 0 90px; }
.lib-search-wrap { max-width: 480px; margin: 0 auto 36px; display: flex; border-radius: 50px; overflow: hidden; border: 1.5px solid var(--border); background: #fff; }
.lib-search-wrap input { flex: 1; border: none; outline: none; padding: 12px 20px; font-size: 0.9rem; color: var(--text); background: transparent; }
.lib-search-wrap button { background: var(--gold); color: #fff; border: none; padding: 12px 22px; font-weight: 600; cursor: pointer; transition: background 0.2s; font-size: 0.9rem; }
.lib-search-wrap button:hover { background: var(--gold-d); }

/* ── FAQ PAGE ───────────────────────────────────────────────────── */
.faq-page { background: var(--cream); padding: 60px 0 90px; }
.faq-page-inner { max-width: 820px; margin: 0 auto; }

/* ── CONTACT PAGE ───────────────────────────────────────────────── */
.contact-page { background: var(--cream); padding: 60px 0 90px; }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .lib-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-inner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .team-page-grid { grid-template-columns: 1fr; }
  .team-page-card { grid-template-columns: 180px 1fr; }
}
@media (max-width: 768px) {
  /* Hide address text in topbar on mobile — keep only phone/email/hours */
  .topbar { display: none; }  /* Hidden on mobile for clean look */
  .nav-links, .nav-actions .nav-call { display: none; }
  .nav-actions { margin-left: auto; margin-right: 0; }
  .hamburger { margin-left: 8px; }
  
  .nav-links.mobile-open > li > a { font-size: 1.1rem; padding: 12px 0; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: transparent; padding-left: 16px; }
  .dropdown a { color: rgba(255,255,255,0.7); font-size: 0.95rem; padding: 8px 0; }
  
  .section { padding: 56px 0; }
  .hero-body { padding-top: 110px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .stats-row { flex-wrap: wrap; }
  .stat-box { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .svc-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .lib-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .price-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .team-page-card { grid-template-columns: 1fr; }
  .team-page-img { aspect-ratio: 3/2; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  .num-big { font-size: 2.2rem; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .stat-box { flex: 0 0 100%; }
}






/* ── Hamburger button ────────────────────────── */






@media (max-width: 768px) {
  
}


/* ═══════════════════════════════
   HAMBURGER — Mobile menu trigger
   Always hidden on desktop,
   ALWAYS visible on mobile
═══════════════════════════════ */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(192,150,66,0.25);
  border: 1.5px solid rgba(192,150,66,0.6);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px 10px;
  margin-left: 12px;
  z-index: 10000;
  position: relative;
  min-width: 42px;
  min-height: 36px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
  pointer-events: none;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger { display: flex !important; }
  .nav-actions .nav-book { display: flex !important; }
}

/* ══════════════════════════════════════════════════
   MOBILE NAVIGATION OVERLAY
   Fixed full-screen menu, completely independent
   of scroll position or navbar state
══════════════════════════════════════════════════ */
#mobileOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  z-index: 99999;
  background: #1A1A2E;
  background: rgba(22, 22, 40, 0.99);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 28px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
#mobileOverlay.visible {
  opacity: 1;
  pointer-events: all;
}
#mobileClose {
  position: absolute;
  top: 18px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}
#mobileClose:hover { background: rgba(255,255,255,0.2); }
.mobile-brand { margin-bottom: 28px; margin-top: 16px; }
.mobile-brand img { height: 50px; width: auto; object-fit: contain; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  flex: 1;
}
.mobile-nav-link {
  display: block;
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  font-weight: 500;
  padding: 11px 14px;
  border-radius: 10px;
  transition: all 0.18s;
  text-decoration: none;
}
.mobile-nav-link:hover,
.mobile-nav-link:active { background: rgba(192,150,66,0.2); color: #fff; }
.mobile-nav-group { margin: 6px 0; }
.mobile-nav-sub-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(192,150,66,0.8);
  padding: 6px 14px 2px;
  margin-top: 4px;
}
.mobile-nav-link.sub {
  font-size: 0.9rem;
  padding: 8px 14px 8px 24px;
  color: rgba(255,255,255,0.72);
}
.mobile-nav-link.sub:hover { color: #fff; }
.mobile-nav-footer {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-call-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  padding: 13px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  text-align: center;
}
.mobile-wa-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 13px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  text-align: center;
}
/* Body scroll lock when menu open */
body.menu-open { overflow: hidden; }

/* Only show overlay trigger on mobile */
@media (min-width: 769px) {
  #mobileOverlay { display: none !important; }
}
