/* ===========================
   Midnight Saffron Theme • Premium & Modern (v1)
   Fresh complete style.css (drop-in replacement)
   Keeps your existing class names: .btn, .site-header, .card, .vk-card, .contact-box, etc.
   =========================== */

/* ===========================
   Design Tokens
   =========================== */
:root{
  /* Neutrals */
  --ink:#0b1220;            /* near-black navy for text */
  --muted:#546175;          /* muted slate */
  --bg:#f6f7fb;             /* soft cool white */
  --panel:#ffffff;          /* surface */
  --panel-2:#fbfcff;        /* subtle elevated surface */
  --line:#e7e9f1;           /* hairline border */
  --soft:#f0f2f8;           /* soft separators */

  /* Brand (premium saffron + deep teal) */
  --primary:#d97706;        /* saffron / amber */
  --primary-700:#b45309;    /* deeper saffron */
  --primary-ink:#0b1220;

  --accent:#0f766e;         /* deep teal */
  --accent-700:#115e59;

  --call:#0f766e;           /* call button */
  --wa:#25D366;             /* WhatsApp */

  /* Status */
  --ok:#ecfdf5;
  --ok-line:#a7f3d0;
  --err:#fef2f2;
  --err-line:#fecaca;

  /* Radii */
  --r-sm:12px;
  --r-md:16px;
  --r-lg:22px;
  --r-xl:28px;

  /* Shadows */
  --shadow-sm:0 8px 22px rgba(11,18,32,.06);
  --shadow:0 18px 55px rgba(11,18,32,.10);
  --shadow-hi:0 26px 70px rgba(11,18,32,.14);

  /* Focus */
  --ring:0 0 0 4px rgba(217,119,6,.20);

  /* Typography scale */
  --h1:clamp(28px, 3.2vw, 42px);
  --h2:clamp(22px, 2.3vw, 30px);
  --h3:clamp(18px, 1.8vw, 22px);
}

/* ===========================
   Base / Reset
   =========================== */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font:16px/1.75 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
  color:var(--ink);
  background:
    radial-gradient(800px 500px at -10% -10%, rgba(15,118,110,.10) 0%, rgba(15,118,110,0) 60%),
    radial-gradient(900px 520px at 110% 0%, rgba(217,119,6,.10) 0%, rgba(217,119,6,0) 55%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 55%, #f2f4fb 100%);
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img{max-width:100%;display:block}
a{color:var(--accent);text-decoration:none}
a:hover{color:var(--accent-700)}
:focus-visible{outline:none;box-shadow:var(--ring);border-radius:12px}

/* Headings (works even if you don’t add special classes) */
h1{font-size:var(--h1);line-height:1.2;letter-spacing:-.02em}
h2{font-size:var(--h2);line-height:1.25;letter-spacing:-.01em}
h3{font-size:var(--h3);line-height:1.3}
p{color:var(--ink)}
small,.muted{color:var(--muted)}
hr{border:0;border-top:1px solid var(--line);margin:22px 0}

/* Selection */
::selection{background:rgba(217,119,6,.18)}

/* ===========================
   Layout Containers
   =========================== */
.page{max-width:1200px;margin:0 auto;padding:16px}
.contain{max-width:1200px;margin:0 auto;padding:0 16px}

/* ===========================
   Flash / Notices
   =========================== */
.flash{margin:12px 0;padding:12px 14px;border-radius:var(--r-md)}
.flash--ok{background:var(--ok);border:1px solid var(--ok-line)}
.flash--err{background:var(--err);border:1px solid var(--err-line)}

/* ===========================
   Buttons & Chips
   =========================== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:11px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,var(--panel),var(--panel-2));
  color:var(--ink);
  cursor:pointer;
  font-weight:800;
  letter-spacing:.2px;
  user-select:none;-webkit-user-select:none;
  transition:transform .08s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease, opacity .18s ease;
}
.btn svg{width:18px;height:18px}
.btn:hover{box-shadow:var(--shadow-sm);border-color:#d9dcec}
.btn:active{transform:translateY(1px)}

.btn--small{padding:8px 12px}

.btn--ghost{
  background:transparent;
  border-color:var(--line);
  color:var(--ink);
}

.btn--primary{
  border-color:rgba(217,119,6,.25);
  background:linear-gradient(180deg, rgba(217,119,6,1) 0%, rgba(180,83,9,1) 100%);
  color:#fff;
  text-shadow:0 1px 0 rgba(0,0,0,.16);
  box-shadow:0 14px 30px rgba(217,119,6,.22);
}
.btn--primary:hover{box-shadow:0 18px 45px rgba(217,119,6,.28)}

.btn--call{
  background:linear-gradient(180deg, rgba(15,118,110,1) 0%, rgba(17,94,89,1) 100%);
  border-color:rgba(15,118,110,.35);
  color:#ecfeff;
  box-shadow:0 14px 30px rgba(15,118,110,.22);
}
.btn--wa{
  background:linear-gradient(180deg, #2ad86b 0%, #1aa853 100%);
  border-color:rgba(34,197,94,.45);
  color:#07210f;
  box-shadow:0 14px 30px rgba(34,197,94,.20);
}

.chip{
  display:inline-flex;align-items:center;gap:6px;
  padding:6px 12px;
  border-radius:999px;
  font-size:13px;
  background:rgba(15,118,110,.10);
  border:1px solid rgba(15,118,110,.18);
  color:var(--accent-700);
}

/* Small utility */
.elevate{box-shadow:var(--shadow);background:var(--panel);border-radius:var(--r-lg);border:1px solid var(--line)}

/* ===========================
   Header (Two Rows)
   =========================== */
.site-header{
  position:sticky;top:0;z-index:60;
  background:rgba(255,255,255,.82);
  border-bottom:1px solid var(--line);
  backdrop-filter:saturate(140%) blur(14px);
}
.topbar{border-bottom:1px solid var(--line)}
.topbar__inner{
  max-width:1200px;margin:0 auto;padding:10px 16px;
  display:flex;align-items:center;gap:12px;
}
.logo img{
  display:block;height:auto;max-height:56px;width:auto;
  filter:drop-shadow(0 10px 22px rgba(11,18,32,.10));
}
.topbar__cta{display:flex;gap:10px;margin-left:auto}
.menu-toggle{
  display:none;margin-left:8px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,var(--panel),var(--panel-2));
  border-radius:999px;padding:10px 12px;
}

.navbar{background:transparent}
.navbar__list{
  max-width:1200px;margin:0 auto;padding:10px 16px;
  display:flex;gap:8px;list-style:none;flex-wrap:wrap;
}
.navbar__list a{
  padding:10px 14px;border-radius:999px;
  border:1px solid transparent;
  color:var(--ink);
  background:rgba(11,18,32,.035);
}
.navbar__list a:hover{
  border-color:rgba(15,118,110,.25);
  background:rgba(15,118,110,.08);
}
.navbar__list a.active,
.navbar__list a[aria-current="page"]{
  background:rgba(217,119,6,.14);
  border-color:rgba(217,119,6,.28);
  color:#7c2d12;
}

/* ===========================
   Hero / Banners
   =========================== */
.hero{
  position:relative;
  margin:16px 0 26px;
  border-radius:var(--r-xl);
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--panel);
  box-shadow:var(--shadow);
}
.hero__img{
  width:100%;height:320px;object-fit:cover;
  background:
    radial-gradient(900px 340px at 20% 0%, rgba(217,119,6,.25) 0%, rgba(217,119,6,0) 55%),
    radial-gradient(820px 320px at 90% 10%, rgba(15,118,110,.22) 0%, rgba(15,118,110,0) 55%),
    linear-gradient(135deg,#ffffff 0%, #f3f6ff 40%, #fff7ed 100%);
}
.hero__overlay{
  position:absolute;inset:auto 0 0 0;
  padding:20px 18px;
  color:#ffffff;
  background:
    linear-gradient(180deg, rgba(11,18,32,0) 0%, rgba(11,18,32,.70) 70%, rgba(11,18,32,.84) 100%);
}
.hero__overlay h1{margin:0;font-size:var(--h1);text-shadow:0 2px 10px rgba(0,0,0,.20)}

/* Optional: hero subtitle if you use it */
.hero__overlay p{margin:8px 0 0;color:rgba(255,255,255,.88);max-width:900px}

/* ===========================
   Cards / Grids
   =========================== */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:18px;
}
.card{
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:16px;
  background:linear-gradient(180deg,var(--panel),var(--panel-2));
  box-shadow:var(--shadow-sm);
  transition:transform .14s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
  border-color:rgba(15,118,110,.18);
}
.card h1,.card h2,.card h3{margin:0 0 8px}
.card p{margin:0 0 12px;color:var(--muted)}
.card p:last-child{margin-bottom:0}
.section-head{margin-bottom:12px}
.section-head .muted{color:var(--muted)}

.meta{display:flex;gap:10px;margin-top:10px;flex-wrap:wrap}
.tag{
  background:rgba(217,119,6,.10);
  border:1px solid rgba(217,119,6,.18);
  border-radius:999px;
  padding:6px 12px;
  font-size:13px;
  color:#7c2d12;
}

/* ===========================
   Pagination
   =========================== */
.pager{display:flex;flex-wrap:wrap;gap:8px;margin:18px 0;align-items:center}
.pg{
  padding:9px 13px;
  border:1px solid var(--line);
  border-radius:999px;
  background:linear-gradient(180deg,var(--panel),var(--panel-2));
  transition:background .15s ease,color .15s ease,border-color .15s ease,box-shadow .15s ease,transform .08s ease;
}
.pg:hover{box-shadow:var(--shadow-sm);border-color:#d9dcec}
.pg:active{transform:translateY(1px)}
.pg.active{
  background:linear-gradient(180deg, rgba(217,119,6,1) 0%, rgba(180,83,9,1) 100%);
  color:#fff;border-color:rgba(217,119,6,.25);
}
.pg.disabled{opacity:.45;pointer-events:none}
.dots{padding:8px 6px;color:var(--muted)}

/* ===========================
   Footer
   =========================== */
.site-footer{
  margin-top:28px;
  border-top:1px solid var(--line);
  background:
    radial-gradient(900px 340px at 20% 10%, rgba(217,119,6,.18) 0%, rgba(217,119,6,0) 65%),
    radial-gradient(820px 320px at 80% 20%, rgba(15,118,110,.16) 0%, rgba(15,118,110,0) 65%),
    linear-gradient(180deg, #0b1220 0%, #0a0f1c 100%);
  color:#e8edf7;
}
.footer__grid{
  max-width:1200px;
  margin:0 auto;
  padding:26px 16px;
  display:grid;
  gap:22px;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}
.footer__block h3{margin:0 0 10px;color:#fff}
.list{
  list-style:none;margin:0;padding:0;
  display:grid;gap:8px;
}
.list a{color:rgba(232,237,247,.85)}
.list a:hover{color:#ffffff}

.footer__cta{display:flex;flex-wrap:wrap;gap:12px;margin-top:12px}
.footer__bottom{
  border-top:1px solid rgba(255,255,255,.10);
  padding:14px 16px;
  text-align:center;
  color:rgba(232,237,247,.75);
  font-size:14px;
  background:rgba(255,255,255,.02);
}

/* Footer: socials + quick links */
.socials-block{display:flex;flex-direction:column;gap:10px}
.footer-quick-links{
  margin-top:6px;
  font-size:14px;
  color:rgba(232,237,247,.75);
  line-height:1.6;
}
.footer-quick-links a{
  color:rgba(166,244,235,.92);
  text-decoration:none;
  white-space:nowrap;
}
.footer-quick-links a:hover{text-decoration:underline}

/* ===========================
   Contact Form
   =========================== */
.contact-form{position:relative}
.contact-form .row{display:grid;gap:12px;margin-bottom:12px}
.contact-form .row--two{grid-template-columns:repeat(2,minmax(0,1fr))}

.contact-form input,
.contact-form textarea,
.contact-form select{
  width:100%;
  padding:12px 12px;
  border:1px solid var(--line);
  border-radius:var(--r-md);
  font:inherit;
  background:linear-gradient(180deg,var(--panel),var(--panel-2));
  transition:border-color .15s ease, box-shadow .15s ease, background .15s ease, transform .05s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
  outline:none;
  border-color:rgba(217,119,6,.35);
  box-shadow:var(--ring);
}
.contact-form textarea{min-height:120px;resize:vertical}
.contact-form .hp{
  position:absolute;left:-10000px;top:auto;
  width:1px;height:1px;overflow:hidden;
}
.contact-form .row--two > *{min-width:0}

/* Styled select caret */
.contact-form select{
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  padding-right:44px;
  background:
    linear-gradient(180deg,var(--panel),var(--panel-2))
    url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23546175' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'>\
<polyline points='6 9 12 15 18 9'/></svg>")
    no-repeat right 12px center / 18px 18px;
}
.contact-form select::-ms-expand{display:none}

/* ===========================
   Mobile Fixed CTA
   =========================== */
.mobile-cta{
  position:fixed;left:0;right:0;bottom:0;display:none;
  z-index:9999;
  background:rgba(255,255,255,.86);
  backdrop-filter:saturate(150%) blur(12px);
  border-top:1px solid var(--line);
  padding:10px 12px calc(10px + env(safe-area-inset-bottom));
  box-shadow:0 -18px 45px rgba(11,18,32,.10);
}
.mobile-cta .mcta-btn{
  display:inline-flex;align-items:center;justify-content:center;
  width:49%;height:48px;margin:0;padding:0 14px;
  border-radius:999px;font-weight:900;border:0;text-align:center;
}
.mobile-cta .mcta-call{background:linear-gradient(180deg, var(--call), var(--accent-700));color:#ecfeff}
.mobile-cta .mcta-wa{background:linear-gradient(180deg, #2ad86b, #1aa853);color:#07210f}

/* ===========================
   Videos
   =========================== */
.videos{margin:22px 0}
.videos h2{margin:0 0 12px}
.video-grid{
  display:grid;gap:14px;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}
.video{
  position:relative;padding-top:56.25%;
  border-radius:var(--r-lg);overflow:hidden;
  border:1px solid var(--line);
  background:#000;
  box-shadow:var(--shadow-sm);
}
.video iframe{position:absolute;inset:0;width:100%;height:100%;border:0}

/* ===========================
   Socials Icons
   =========================== */
.socials{display:flex;gap:12px;flex-wrap:wrap;align-items:center}
.socials .social{
  width:42px;height:42px;
  display:inline-flex;align-items:center;justify-content:center;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  background:rgba(255,255,255,.06);
  box-shadow:none;
}
.socials .social svg{width:20px;height:20px;fill:#ffffff}

/* ===========================
   Contact Box & Buttons (Dr. Kunal Kaushik CTAs)
   =========================== */
.contact-box{
  margin:24px 0;
  padding:18px 20px;
  border-radius:var(--r-lg);
  border:1px solid var(--line);
  background:linear-gradient(180deg,var(--panel),var(--panel-2));
  box-shadow:var(--shadow-sm);
  color:var(--ink);
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
.contact-box__title{
  margin:0 0 8px;
  font-size:1.1rem;
  font-weight:800;
  color:var(--ink);
}
.contact-box p{margin:6px 0;font-size:0.95rem;color:var(--muted)}
.contact-box__note{margin-top:10px;font-size:0.88rem;color:var(--muted)}

/* Variants */
.contact-box--mini{
  background:rgba(217,119,6,.08);
  border-color:rgba(217,119,6,.18);
}
.contact-box--full{
  background:linear-gradient(180deg,#0b1220,#070b14);
  border-color:rgba(255,255,255,.10);
  color:#e8edf7;
}
.contact-box--full .contact-box__title{color:#ffffff}
.contact-box--full p{color:rgba(232,237,247,.80)}

/* Action & social rows */
.kb-contact-actions,
.kb-contact-socials{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:10px 0 6px;
}
.kb-contact-socials{gap:8px}

/* Useful links list */
.kb-contact-links{list-style:none;padding-left:0;margin:6px 0 0}
.kb-contact-links li{margin:2px 0}
.kb-contact-links a{font-size:0.9rem;text-decoration:none;color:var(--accent)}
.kb-contact-links a:hover{text-decoration:underline}
.contact-box--full .kb-contact-links a{color:rgba(166,244,235,.92)}
.kb-contact-links-label{margin-top:10px;font-size:0.9rem}

/* Core kb button */
.kb-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:6px;
  padding:8px 14px;
  font-size:0.9rem;
  font-weight:800;
  border-radius:999px;
  text-decoration:none;
  border:1px solid transparent;
  cursor:pointer;
  box-shadow:0 12px 26px rgba(11,18,32,.12);
  transition:transform .08s ease, box-shadow .12s ease, background-color .12s ease, color .12s ease, border-color .12s ease;
}
.kb-btn__icon{width:18px;height:18px;flex-shrink:0}
.kb-btn__label{white-space:nowrap}

/* Primary actions */
.kb-btn-call{
  background:linear-gradient(180deg, var(--call), var(--accent-700));
  color:#ecfeff;
  border-color:rgba(15,118,110,.35);
}
.kb-btn-wa{
  background:linear-gradient(180deg, #2ad86b, #1aa853);
  color:#07210f;
  border-color:rgba(34,197,94,.45);
}
.kb-btn-email{
  background:linear-gradient(180deg, var(--primary), var(--primary-700));
  color:#fff;
  border-color:rgba(217,119,6,.25);
}

/* Social buttons */
.kb-btn-social{
  background:rgba(11,18,32,.04);
  color:var(--ink);
  border:1px solid var(--line);
  box-shadow:0 6px 16px rgba(11,18,32,.08);
}
.contact-box--full .kb-btn-social{
  background:rgba(255,255,255,.06);
  color:#e8edf7;
  border-color:rgba(255,255,255,.12);
}

/* Hover / active */
.kb-btn:hover{transform:translateY(-1px);box-shadow:0 18px 38px rgba(11,18,32,.16)}
.kb-btn:active{transform:translateY(0);box-shadow:none}

/* ===========================
   Generic Vastu Highlight Cards
   =========================== */
.vk-card{
  position:relative;
  margin:1.5rem 0;
  padding:1.5rem 1.75rem;
  border-radius:var(--r-lg);
  background:linear-gradient(180deg,var(--panel),var(--panel-2));
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  overflow:hidden;
}
.vk-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(circle at top left, rgba(15,118,110,.10), transparent 55%),
    radial-gradient(circle at bottom right, rgba(217,119,6,.10), transparent 60%);
  opacity:.9;
}
.vk-card h2,.vk-card h3{margin-top:0}
.vk-card p:last-child{margin-bottom:0}

/* Online Vastu Advice card */
.vk-card--online{
  border-color:rgba(29,78,216,.18);
  background:linear-gradient(135deg,#ffffff 0%, #f4f7ff 70%, #ffffff 100%);
}
.vk-card--online::before{
  background:radial-gradient(circle at top right, rgba(29,78,216,.12), transparent 60%);
}

/* On-Site Vastu Visit card */
.vk-card--onsite{
  border-color:rgba(15,118,110,.22);
  background:linear-gradient(135deg,#ffffff 0%, #f1fbf8 70%, #ffffff 100%);
}
.vk-card--onsite::before{
  background:radial-gradient(circle at top left, rgba(15,118,110,.16), transparent 60%);
}

/* Extra highlight card */
.vk-card--highlight{
  border-color:rgba(217,119,6,.22);
  background:linear-gradient(135deg,#ffffff 0%, #fff7ed 70%, #ffffff 100%);
}
.vk-card--highlight::before{
  background:radial-gradient(circle at top center, rgba(217,119,6,.16), transparent 60%);
}

/* ===========================
   Promo CTA Blocks with Contact Button
   =========================== */
.vk-promo-cta{
  margin:2.5rem 0;
  padding:1.75rem 1.75rem 1.9rem;
  border-radius:var(--r-xl);
  color:#f9fafb;
  text-align:center;
  background:
    radial-gradient(900px 280px at 20% 0%, rgba(217,119,6,.55) 0%, rgba(217,119,6,0) 60%),
    radial-gradient(820px 260px at 85% 15%, rgba(15,118,110,.55) 0%, rgba(15,118,110,0) 60%),
    linear-gradient(135deg,#0b1220 0%, #0f1a34 45%, #071521 100%);
  box-shadow:var(--shadow-hi);
  border:1px solid rgba(255,255,255,.10);
}
.vk-promo-cta h2{
  margin:0 0 0.75rem;
  font-size:clamp(20px, 2.1vw, 28px);
  line-height:1.35;
  font-weight:900;
}
.vk-promo-cta p{
  margin:0 0 1.25rem;
  font-size:0.98rem;
  line-height:1.6;
  max-width:700px;
  margin-left:auto;margin-right:auto;
  color:rgba(249,250,251,.88);
}
.vk-promo-cta__btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.4rem;
  padding:.8rem 1.75rem;
  border-radius:999px;
  background-color:#ffffff;
  color:#0b1220;
  font-weight:900;
  font-size:0.98rem;
  text-decoration:none;
  box-shadow:0 16px 45px rgba(0,0,0,.30);
  transition:transform .12s ease, box-shadow .12s ease, background-color .12s ease, color .12s ease;
  border:none;
}
.vk-promo-cta__btn:hover,
.vk-promo-cta__btn:focus-visible{
  transform:translateY(-1px);
  box-shadow:0 22px 60px rgba(0,0,0,.35);
  background-color:#fff7ed;
  color:#0b1220;
}
.vk-promo-cta__btn:active{transform:translateY(0);box-shadow:0 14px 34px rgba(0,0,0,.28)}

/* ===========================
   Reusable Content Images (SEO + speed)
   =========================== */
.vk-fig{margin:16px 0 18px}
.vk-fig--center{text-align:center;clear:both}
.vk-fig--left{float:left;margin:6px 18px 14px 0}
.vk-fig--right{float:right;margin:6px 0 14px 18px}
h2,h3,h4{clear:both}

.vk-fig picture,.vk-fig img{display:block}
.vk-content-img{
  border-radius:var(--r-lg);
  box-shadow:var(--shadow-sm);
  border:1px solid var(--line);
  background:#fff;
}

/* Mobile: stack images */
@media (max-width:720px){
  .vk-fig--left,.vk-fig--right{float:none;margin:14px auto 16px}
  .vk-fig{text-align:center}
}

/* ===========================
   FAQs (better design)
   =========================== */
#faqs,.vk-faq{margin-top:28px}
#faqs details,
.vk-faq details,
.vk-faq__item{
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  background:linear-gradient(180deg,var(--panel),var(--panel-2));
  box-shadow:var(--shadow-sm);
  margin:12px 0;
  overflow:hidden;
}
#faqs summary,
.vk-faq summary,
.vk-faq__item > summary{
  cursor:pointer;
  padding:14px 44px 14px 16px;
  font-weight:900;
  line-height:1.35;
  list-style:none;
  position:relative;
}
#faqs summary::-webkit-details-marker,
.vk-faq summary::-webkit-details-marker{display:none}
#faqs summary::after,
.vk-faq summary::after,
.vk-faq__item > summary::after{
  content:'+';
  position:absolute;
  right:14px;top:50%;
  transform:translateY(-50%);
  width:28px;height:28px;
  border-radius:999px;
  display:grid;place-items:center;
  background:rgba(217,119,6,.14);
  border:1px solid rgba(217,119,6,.22);
  color:#7c2d12;
  font-size:18px;
  font-weight:900;
}
#faqs details[open] summary::after,
.vk-faq details[open] summary::after,
.vk-faq__item[open] > summary::after{content:'–'}
#faqs details > p,
.vk-faq details > p{padding:0 16px 16px;margin:0}
.vk-faq__item .vk-faq__a,
.vk-faq__item > .vk-faq__a{padding:0 16px 16px}
.vk-faq__item .vk-faq__a p{margin:0}

/* ===========================
   Subtle Animations
   =========================== */
a,.btn,.card,.pg,.kb-btn{transition:transform .12s ease,background .18s ease,color .18s ease,border-color .18s ease,box-shadow .18s ease}
@media (prefers-reduced-motion: reduce){
  *{animation:none!important;transition:none!important;scroll-behavior:auto!important}
}


/* ===========================
   Select (Country Dropdown) Fix
   - Ensures dropdown matches input styling (height, padding, colors)
   - Works even if the country field is NOT inside .contact-form
   =========================== */
form select,
.contact-form select,
select{
  width:100%;
  min-height:48px;
  padding:12px 44px 12px 12px;
  border:1px solid var(--line);
  border-radius:var(--r-md);
  font:inherit;
  line-height:1.25;
  color:var(--ink);
  background:
    linear-gradient(180deg,var(--panel),var(--panel-2))
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23546175' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>")
    no-repeat right 12px center / 18px 18px;
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  transition:border-color .15s ease, box-shadow .15s ease, background .15s ease, transform .05s ease;
}

/* Keep options readable on Windows/mobile pickers */
select option{
  color:var(--ink);
  background:var(--panel);
}

/* Focus style consistent with inputs */
form select:focus,
.contact-form select:focus,
select:focus{
  outline:none;
  border-color:rgba(217,119,6,.35);
  box-shadow:var(--ring);
}

/* IE legacy caret */
select::-ms-expand{display:none}



/* ===========================
   Footer Form Controls Fix (Country Dropdown Dark Background)
   Some browsers apply dark UI to <select> inside dark sections.
   Force LIGHT color-scheme + explicit background-color in footer.
   =========================== */
.site-footer .contact-form{
  color-scheme: light;
}

.site-footer .contact-form input,
.site-footer .contact-form textarea,
.site-footer .contact-form select{
  background-color: #ffffff !important;
  color: var(--ink) !important;
  border-color: rgba(255,255,255,.18);
}

/* Keep the custom caret visible and consistent */
.site-footer .contact-form select{
  background:
    #ffffff
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23546175' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>")
    no-repeat right 12px center / 18px 18px !important;
}

/* Placeholder readability in footer */
.site-footer .contact-form input::placeholder,
.site-footer .contact-form textarea::placeholder{
  color: rgba(84,97,117,.85);
}

/* Option list (Chrome/Windows) */
.site-footer .contact-form select option{
  background:#ffffff;
  color:var(--ink);
}


/* ===========================
   Responsive Tweaks
   =========================== */
@media (max-width:900px){
  .topbar__inner{gap:10px}
  .topbar__cta{order:3;width:100%;justify-content:flex-end}
  .menu-toggle{display:inline-flex}
  .navbar{display:none}
  .navbar.open{display:block}
  .navbar__list{flex-direction:column}
  .logo img{max-height:48px}
  .hero__img{height:240px}

  .mobile-cta{display:flex;gap:2%}
  body{padding-bottom:80px}
}
@media (max-width:700px){
  .contact-form .row--two{grid-template-columns:1fr}
}
@media (max-width:640px){
  .kb-btn{width:100%;justify-content:center}
  .kb-contact-actions,.kb-contact-socials{flex-direction:column;gap:8px}

  .vk-card{padding:1.25rem 1.25rem;border-radius:var(--r-md)}
  .vk-promo-cta{margin:2rem 0;padding:1.5rem 1.25rem 1.65rem;border-radius:var(--r-lg)}
  .vk-promo-cta__btn{width:100%;max-width:320px}
}

/* ===========================
   Optional Dark Mode (adds contrast, keeps saffron/teal)
   Add class="dark" on <body> or a wrapper
   =========================== */
.dark{
  --ink:#eaf0ff;
  --muted:#b8c3da;
  --bg:#070b14;
  --panel:#0b1220;
  --panel-2:#0f1930;
  --line:rgba(255,255,255,.12);
  --soft:rgba(255,255,255,.08);

  --primary:#f59e0b;
  --primary-700:#d97706;
  --primary-ink:#0b1220;

  --accent:#2dd4bf;
  --accent-700:#14b8a6;

  --shadow-sm:0 10px 26px rgba(0,0,0,.35);
  --shadow:0 20px 60px rgba(0,0,0,.50);
  --shadow-hi:0 28px 80px rgba(0,0,0,.60);

  --ring:0 0 0 4px rgba(245,158,11,.25);

  background:#070b14;
}
.dark body{background:#070b14}
.dark .site-header{background:rgba(11,18,32,.78);border-color:var(--line)}
.dark a{color:var(--accent)}
.dark a:hover{color:var(--accent-700)}

.dark .navbar__list a{
  color:#eaf0ff;
  background:rgba(255,255,255,.06);
}
.dark .navbar__list a:hover{
  border-color:rgba(45,212,191,.25);
  background:rgba(45,212,191,.10);
}
.dark .navbar__list a.active{
  background:rgba(245,158,11,.18);
  border-color:rgba(245,158,11,.28);
  color:#fff7ed;
}

.dark .socials .social{border-color:rgba(255,255,255,.14);background:rgba(255,255,255,.06)}
.dark .socials .social svg{fill:#eaf0ff}
