/* =====================================================================
   Dr. (Col) Pranati Swain — Master Theme
   Extracted from the approved index.php design. Single source of truth
   for UI/UX, palette, typography, spacing, components & responsiveness.
   ===================================================================== */
:root{
  --navy:#0c2540;
  --navy-deep:#081a2e;
  --teal:#0f8b8d;
  --teal-dark:#0a6a6c;
  --gold:#c6a25c;
  --ink:#1f2d3d;
  --muted:#5f7185;
  --line:#e4e9ef;
  --bg-soft:#f4f7fa;
  --white:#ffffff;
  --shadow:0 18px 50px -22px rgba(12,37,64,.35);
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3{font-family:'Fraunces','Georgia',serif;font-weight:500;line-height:1.2;color:var(--navy);}
a{text-decoration:none;color:inherit;}
img{max-width:100%;display:block;}
.wrap{max-width:1180px;margin:0 auto;padding:0 26px;}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:12px;font-weight:600;letter-spacing:.16em;text-transform:uppercase;
  color:var(--teal-dark);
}
.eyebrow::before{content:"";width:26px;height:2px;background:var(--gold);display:inline-block;}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  padding:15px 28px;border-radius:8px;font-weight:600;font-size:15px;
  cursor:pointer;border:none;transition:transform .18s ease,box-shadow .18s ease;
}
.btn-primary{background:var(--teal);color:#fff;box-shadow:0 12px 26px -12px rgba(15,139,141,.7);}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 16px 32px -12px rgba(15,139,141,.85);}
.btn-ghost{background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,.45);}
.btn-ghost:hover{background:rgba(255,255,255,.1);}
.btn-dark{background:var(--navy);color:#fff;}
.btn-dark:hover{transform:translateY(-2px);}

/* ---------- TOP BAR ---------- */
.topbar{background:var(--navy-deep);color:#cdd9e6;font-size:13.5px;}
.topbar .wrap{display:flex;justify-content:space-between;align-items:center;padding-top:9px;padding-bottom:9px;flex-wrap:wrap;gap:8px;}
.topbar a{color:#cdd9e6;}
.topbar a:hover{color:#fff;}
.topbar .tb-left span{margin-right:22px;}
.topbar .tb-right{color:var(--gold);font-weight:600;letter-spacing:.02em;}

/* ---------- NAV ---------- */
nav.site-nav{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.96);backdrop-filter:blur(8px);border-bottom:1px solid var(--line);}
nav.site-nav .wrap{display:flex;align-items:center;justify-content:space-between;padding-top:14px;padding-bottom:14px;}
.brand{display:flex;align-items:center;gap:12px;}
.brand .mark{
  width:48px;height:48px;border-radius:50%;flex:none;overflow:hidden;
  /* white disc so the logo's dark-navy outer ring + "VASCULAR / ENDOVASCULAR" text stays readable on any background */
  background:#ffffff url('../images/logo.png') center/cover no-repeat;
  display:flex;align-items:center;justify-content:center;
  font-size:0;color:transparent;text-indent:-9999px; /* hide the old "PS" text, show the logo */
}
/* larger, more legible logo in the top navigation */
nav.site-nav .brand .mark{width:56px;height:56px;}
.brand .b-name{font-family:'Fraunces',serif;font-size:18px;color:var(--navy);line-height:1.15;}
.brand .b-sub{font-size:11.5px;letter-spacing:.13em;text-transform:uppercase;color:var(--teal-dark);font-weight:600;}
.nav-links{display:flex;gap:30px;list-style:none;font-size:14.5px;font-weight:500;align-items:center;}
.nav-links>li{position:relative;}
.nav-links a{color:var(--ink);transition:color .15s;display:inline-flex;align-items:center;gap:5px;}
.nav-links a:hover,.nav-links a.active{color:var(--teal);}
.nav-cta{padding:11px 22px;font-size:14px;}

/* nav dropdown (Specialities) */
.has-drop>a::after{content:"▾";font-size:11px;color:var(--muted);}
/* invisible "bridge" so the cursor can cross the gap to the dropdown without losing hover */
.has-drop::before{content:"";position:absolute;top:100%;left:0;width:100%;height:24px;display:none;}
.has-drop:hover::before{display:block;}
.dropdown{
  position:absolute;top:calc(100% + 14px);left:50%;transform:translateX(-50%) translateY(8px);
  background:#fff;border:1px solid var(--line);border-radius:12px;box-shadow:var(--shadow);
  padding:14px;min-width:540px;display:grid;grid-template-columns:1fr 1fr;gap:4px 18px;
  opacity:0;visibility:hidden;transition:opacity .18s,transform .18s;z-index:60;
}
.nav-links .has-drop:hover .dropdown{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0);}
.dropdown .dd-col-title{grid-column:1/-1;font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);font-weight:700;margin:10px 6px 4px;}
.dropdown a{display:block;padding:8px 10px;border-radius:8px;font-size:14px;color:var(--ink);transition:background .15s,color .15s;}
.dropdown a:hover{background:var(--bg-soft);color:var(--teal-dark);}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;flex-direction:column;gap:5px;padding:6px;}
.nav-toggle span{width:24px;height:2px;background:var(--navy);display:block;border-radius:2px;}

/* ---------- HERO ---------- */
.hero{
  background:
    radial-gradient(900px 500px at 88% -10%,rgba(15,139,141,.4),transparent),
    linear-gradient(160deg,var(--navy) 0%,var(--navy-deep) 70%);
  color:#fff;position:relative;overflow:hidden;
}
.hero::after{
  content:"";position:absolute;right:-160px;bottom:-160px;
  width:520px;height:520px;border:1px solid rgba(255,255,255,.07);border-radius:50%;
}
.hero .wrap{display:grid;grid-template-columns:1.15fr .85fr;gap:54px;align-items:center;padding-top:78px;padding-bottom:84px;}
.hero .eyebrow{color:var(--gold);}
.hero .eyebrow::before{background:var(--gold);}
.hero h1{color:#fff;font-size:52px;font-weight:500;margin:20px 0 18px;}
.hero h1 .accent{color:var(--gold);font-style:italic;}
.hero p.lead{font-size:17.5px;color:#c4d2e0;max-width:520px;}
.hero-cta{display:flex;gap:14px;margin-top:32px;flex-wrap:wrap;}
.hero-assure{display:flex;gap:26px;margin-top:34px;flex-wrap:wrap;font-size:13.5px;color:#a9bacb;}
.hero-assure div{display:flex;align-items:center;gap:8px;}
.hero-assure .dot{width:7px;height:7px;border-radius:50%;background:var(--gold);}

/* hero portrait card */
.portrait{
  position:relative;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);
  border-radius:18px;padding:18px;backdrop-filter:blur(4px);
}
.portrait .photo{
  height:340px;border-radius:12px;overflow:hidden;
  background:
    radial-gradient(circle at 50% 36%,rgba(255,255,255,.16),transparent 60%),
    linear-gradient(150deg,#16395c,#0a6a6c);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;
  color:#dce8f0;text-align:center;
}
.portrait .photo img{width:100%;height:100%;object-fit:cover;object-position:top center;}
.portrait .badge{
  position:absolute;left:-26px;bottom:36px;background:#fff;color:var(--navy);
  border-radius:12px;padding:14px 18px;box-shadow:var(--shadow);
  display:flex;align-items:center;gap:12px;
}
.portrait .badge .num{font-family:'Fraunces',serif;font-size:30px;color:var(--teal);}
.portrait .badge .lbl{font-size:12.5px;line-height:1.3;color:var(--muted);}
.portrait .ribbon{
  margin-top:16px;background:var(--gold);color:#3a2c08;border-radius:9px;
  padding:11px 14px;font-size:13px;font-weight:600;text-align:center;
}

/* ---------- TRUST STRIP ---------- */
.trust{background:var(--bg-soft);border-bottom:1px solid var(--line);}
.trust .wrap{display:grid;grid-template-columns:repeat(4,1fr);gap:30px;padding-top:38px;padding-bottom:38px;}
.stat{text-align:center;}
.stat .n{font-family:'Fraunces',serif;font-size:38px;color:var(--navy);line-height:1;}
.stat .n span{color:var(--teal);}
.stat .t{font-size:13.5px;color:var(--muted);margin-top:7px;}
.stat+.stat{border-left:1px solid var(--line);}

/* ---------- SECTION BASE ---------- */
section{padding:86px 0;}
.sec-head{max-width:680px;margin-bottom:48px;}
.sec-head.center{margin-left:auto;margin-right:auto;text-align:center;}
.sec-head h2{font-size:38px;margin:14px 0 14px;}
.sec-head p{color:var(--muted);font-size:16.5px;}

/* ---------- ABOUT ---------- */
.about .wrap{display:grid;grid-template-columns:.95fr 1.05fr;gap:58px;align-items:center;}
.about-visual{
  position:relative;border-radius:16px;overflow:hidden;
  background:linear-gradient(160deg,#10314f,#0a6a6c);min-height:560px;
  display:flex;align-items:flex-end;padding:26px;
}
.about-visual img.bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center top;z-index:0;}
/* keep the gradient light over the face (top) and a touch darker only at the very bottom behind the card */
.about-visual::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(16,49,79,.12) 0%,rgba(16,49,79,.05) 45%,rgba(8,26,46,.55) 100%);z-index:1;}
.about-visual .quote-card{
  position:absolute;bottom:26px;right:26px;left:26px;z-index:2;
  background:rgba(255,255,255,.94);border-radius:12px;padding:20px 22px;
  box-shadow:var(--shadow);
}
.about-visual .quote-card p{font-family:'Fraunces',serif;font-style:italic;font-size:18px;color:var(--navy);}
.about-visual .quote-card .by{font-size:12.5px;color:var(--teal-dark);font-weight:600;margin-top:8px;letter-spacing:.04em;}
.about h2{font-size:37px;margin:14px 0 18px;}
.about p{color:#475568;margin-bottom:16px;font-size:16px;}
.about .signoff{display:flex;align-items:center;gap:14px;margin-top:24px;}
.about .signoff .name{font-family:'Fraunces',serif;font-size:20px;color:var(--navy);}
.about .signoff .role{font-size:13px;color:var(--muted);}

/* ---------- CREDENTIALS ---------- */
.creds{background:var(--navy);color:#fff;}
.creds h2{color:#fff;}
.creds .sec-head p{color:#a9bacb;}
.cred-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
.cred-card{
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);
  border-radius:13px;padding:26px 24px;transition:transform .18s,border-color .18s;
}
.cred-card:hover{transform:translateY(-4px);border-color:var(--gold);}
.cred-card .yr{color:var(--gold);font-weight:700;font-size:13px;letter-spacing:.08em;}
.cred-card h3{color:#fff;font-size:19px;margin:8px 0 6px;}
.cred-card p{color:#a9bacb;font-size:14px;}
.creds-foot{
  margin-top:34px;display:flex;align-items:center;gap:16px;flex-wrap:wrap;
  background:rgba(198,162,92,.12);border:1px solid rgba(198,162,92,.4);
  border-radius:12px;padding:20px 24px;
}
.creds-foot .star{font-size:26px;}
.creds-foot p{font-size:15px;color:#e8eef4;}
.creds-foot strong{color:var(--gold);}

/* ---------- SERVICES ---------- */
.svc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
.svc{
  border:1px solid var(--line);border-radius:13px;padding:28px 24px;
  background:#fff;transition:transform .18s,box-shadow .18s,border-color .18s;
  display:flex;flex-direction:column;
}
.svc:hover{transform:translateY(-5px);box-shadow:var(--shadow);border-color:transparent;}
.svc .ic{
  width:50px;height:50px;border-radius:11px;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,var(--teal),var(--teal-dark));color:#fff;font-size:22px;margin-bottom:16px;
}
.svc h3{font-size:19px;margin-bottom:8px;}
.svc p{color:var(--muted);font-size:14.5px;flex:1;}
.svc .more{margin-top:16px;font-size:13.5px;font-weight:600;color:var(--teal-dark);display:inline-flex;align-items:center;gap:6px;}
.svc:hover .more{color:var(--teal);}

/* ---------- WHY / COLONEL ---------- */
.why{background:var(--bg-soft);}
.why .wrap{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;}
.why-list{list-style:none;margin-top:8px;}
.why-list li{display:flex;gap:16px;padding:18px 0;border-bottom:1px solid var(--line);}
.why-list li:last-child{border-bottom:none;}
.why-list .chk{
  flex:none;width:34px;height:34px;border-radius:50%;
  background:var(--navy);color:var(--gold);display:flex;align-items:center;justify-content:center;
  font-size:15px;font-weight:700;
}
.why-list h3{font-size:17px;margin-bottom:3px;}
.why-list p{color:var(--muted);font-size:14.5px;}
.why-panel{
  background:linear-gradient(160deg,var(--navy),var(--navy-deep));color:#fff;
  border-radius:16px;padding:40px 36px;position:relative;overflow:hidden;
}
.why-panel::after{content:"";position:absolute;right:-90px;top:-90px;width:240px;height:240px;border:1px solid rgba(255,255,255,.08);border-radius:50%;}
.why-panel .crest{
  width:64px;height:64px;border-radius:50%;background:var(--gold);color:var(--navy-deep);
  display:flex;align-items:center;justify-content:center;font-size:28px;margin-bottom:20px;
}
.why-panel h3{color:#fff;font-size:25px;margin-bottom:14px;}
.why-panel p{color:#bccadb;font-size:15px;margin-bottom:14px;}
.why-panel .tag{
  display:inline-block;margin-top:6px;background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);border-radius:30px;
  padding:7px 15px;font-size:12.5px;color:#dce6f0;margin-right:8px;margin-bottom:8px;
}

/* ---------- CONDITIONS ---------- */
.cond-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;}
.cond{
  border:1px solid var(--line);border-radius:10px;padding:18px 18px;
  font-size:14.5px;font-weight:500;color:var(--ink);
  display:flex;align-items:center;gap:10px;transition:background .15s,color .15s;
}
.cond:hover{background:var(--navy);color:#fff;}
.cond .b{width:8px;height:8px;border-radius:50%;background:var(--teal);flex:none;}
.cond:hover .b{background:var(--gold);}

/* ---------- TESTIMONIALS ---------- */
.tst{background:var(--bg-soft);}
.tst-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
.tst-card{background:#fff;border:1px solid var(--line);border-radius:13px;padding:28px 26px;}
.tst-card .stars{color:var(--gold);font-size:15px;letter-spacing:2px;margin-bottom:12px;}
.tst-card p{font-size:15px;color:#475568;font-style:italic;}
.tst-card .who{display:flex;align-items:center;gap:12px;margin-top:18px;}
.tst-card .av{
  width:42px;height:42px;border-radius:50%;flex:none;
  background:linear-gradient(135deg,var(--teal),var(--navy));color:#fff;
  display:flex;align-items:center;justify-content:center;font-weight:600;font-size:15px;
}
.tst-card .who .nm{font-weight:600;font-size:14px;color:var(--navy);}
.tst-card .who .mt{font-size:12.5px;color:var(--muted);}
.tst-note{text-align:center;font-size:12.5px;color:var(--muted);margin-top:26px;}

/* ---------- CTA BOOKING ---------- */
.cta{
  background:
    radial-gradient(700px 380px at 85% 0%,rgba(15,139,141,.5),transparent),
    linear-gradient(150deg,var(--navy),var(--navy-deep));
  color:#fff;
}
.cta .wrap{display:grid;grid-template-columns:1.1fr .9fr;gap:50px;align-items:center;}
.cta h2{color:#fff;font-size:36px;margin-bottom:14px;}
.cta p{color:#bccadb;font-size:16px;margin-bottom:24px;}
.cta-info{list-style:none;}
.cta-info li{display:flex;gap:13px;align-items:flex-start;margin-bottom:14px;font-size:14.5px;color:#dce6f0;}
.cta-info .ci{
  width:34px;height:34px;border-radius:9px;flex:none;
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);
  display:flex;align-items:center;justify-content:center;font-size:15px;
}
.cta-info a{color:#dce6f0;}
.cta-info a:hover{color:#fff;}
.cta-info strong{display:block;color:#fff;font-size:13.5px;}
/* booking card */
.book-card{background:#fff;border-radius:16px;padding:32px 30px;box-shadow:var(--shadow);}
.book-card h3{font-size:22px;margin-bottom:6px;}
.book-card .sub{font-size:13.5px;color:var(--muted);margin-bottom:20px;}
.field{margin-bottom:14px;}
.field label{display:block;font-size:12.5px;font-weight:600;color:var(--navy);margin-bottom:6px;}
.field input,.field select,.field textarea{
  width:100%;padding:12px 14px;border:1px solid var(--line);border-radius:8px;
  font-family:inherit;font-size:14px;color:var(--ink);background:#fff;
}
.field textarea{resize:vertical;min-height:96px;}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--teal);}
.book-card .btn{width:100%;margin-top:6px;}
.book-card .fineprint{font-size:11.5px;color:var(--muted);text-align:center;margin-top:12px;}

/* ---------- FOOTER ---------- */
footer.site-footer{background:var(--navy-deep);color:#9fb1c4;font-size:14px;}
.foot-top{display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:40px;padding-top:62px;padding-bottom:46px;}
footer.site-footer h4{color:#fff;font-family:'Inter',sans-serif;font-size:14px;letter-spacing:.1em;text-transform:uppercase;margin-bottom:18px;}
footer.site-footer .brand .b-name{color:#fff;}
footer.site-footer p{margin-top:14px;max-width:330px;color:#9fb1c4;}
footer.site-footer ul{list-style:none;}
footer.site-footer ul li{margin-bottom:10px;}
footer.site-footer ul a:hover{color:var(--gold);}
.foot-bottom{border-top:1px solid rgba(255,255,255,.08);padding:20px 0;display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;font-size:12.5px;}

/* =====================================================================
   INTERIOR-PAGE COMPONENTS (built on the same tokens/typography)
   ===================================================================== */
/* page hero / banner + breadcrumb */
.page-hero{
  background:
    radial-gradient(700px 380px at 85% -20%,rgba(15,139,141,.4),transparent),
    linear-gradient(150deg,var(--navy),var(--navy-deep));
  color:#fff;position:relative;overflow:hidden;
}
.page-hero::after{content:"";position:absolute;right:-120px;bottom:-160px;width:420px;height:420px;border:1px solid rgba(255,255,255,.07);border-radius:50%;}
.page-hero .wrap{padding-top:54px;padding-bottom:58px;position:relative;z-index:1;}
.page-hero .eyebrow{color:var(--gold);}
.page-hero .eyebrow::before{background:var(--gold);}
.page-hero h1{color:#fff;font-size:42px;margin:16px 0 14px;max-width:820px;}
.page-hero p.intro{color:#c4d2e0;font-size:17px;max-width:720px;}
.crumbs{display:flex;gap:8px;align-items:center;font-size:13px;color:#9fb1c4;flex-wrap:wrap;}
.crumbs a{color:#cdd9e6;}
.crumbs a:hover{color:var(--gold);}
.crumbs span.sep{opacity:.5;}

/* generic content / prose layout */
.content-section{padding:74px 0;}
.layout{display:grid;grid-template-columns:1fr 320px;gap:54px;align-items:start;}
.prose h2{font-size:28px;margin:36px 0 14px;}
.prose h2:first-child{margin-top:0;}
.prose h3{font-size:21px;color:var(--teal-dark);margin:28px 0 10px;}
.prose h4{font-size:17px;color:var(--navy);margin:22px 0 8px;}
.prose p{color:#475568;font-size:16px;margin-bottom:16px;}
.prose ul{list-style:none;margin:6px 0 20px;}
.prose ul li{position:relative;padding:7px 0 7px 28px;color:#3f4d5e;font-size:15.5px;border-bottom:1px solid var(--line);}
.prose ul li:last-child{border-bottom:none;}
.prose ul li::before{content:"";position:absolute;left:4px;top:15px;width:9px;height:9px;border-radius:50%;background:var(--teal);}
/* Ordered lists — same rhythm, colour and dividers as .prose ul, with a teal number
   in place of the dot. The global reset above strips padding from every element, so
   without this an <ol> loses its indent and the markers hang outside the column.
   Native list-style is kept (not CSS counters) so start=, type= and reversed still
   work on anything published through the admin editor. */
.prose ol{list-style:decimal outside;margin:6px 0 20px;padding-left:28px;}
.prose ol > li{padding:7px 0;color:#3f4d5e;font-size:15.5px;border-bottom:1px solid var(--line);}
.prose ol > li:last-child{border-bottom:none;}
.prose ol > li::marker{color:var(--teal);font-weight:600;font-size:14px;}
/* Nested lists: indent, no dividers, and the usual a/b/c for a second level. */
.prose li > ul,.prose li > ol{margin:4px 0 2px;}
.prose li > ul > li,.prose li > ol > li{border-bottom:none;padding-top:3px;padding-bottom:3px;font-size:15px;}
.prose li > ul > li::before{top:11px;}
.prose ol ol{list-style-type:lower-alpha;}
.prose blockquote{border-left:3px solid var(--gold);background:var(--bg-soft);padding:18px 22px;border-radius:0 10px 10px 0;font-family:'Fraunces',serif;font-style:italic;color:var(--navy);font-size:18px;margin:22px 0;}
.lead-img{border-radius:14px;border:1px solid var(--line);box-shadow:var(--shadow);margin-bottom:30px;width:100%;}

/* sidebar */
.sidebar{position:sticky;top:96px;display:flex;flex-direction:column;gap:22px;}
.side-card{border:1px solid var(--line);border-radius:14px;padding:24px 22px;background:#fff;}
.side-card.dark{background:linear-gradient(160deg,var(--navy),var(--navy-deep));color:#fff;border:none;}
.side-card h4{font-size:13px;letter-spacing:.1em;text-transform:uppercase;color:var(--gold);margin-bottom:14px;}
.side-card.dark h4{color:var(--gold);}
.side-links{list-style:none;}
.side-links li{margin-bottom:4px;}
.side-links a{display:block;padding:9px 12px;border-radius:8px;font-size:14px;color:var(--ink);transition:background .15s,color .15s;}
.side-links a:hover,.side-links a.active{background:var(--bg-soft);color:var(--teal-dark);}
.side-links a.active{font-weight:600;border-left:3px solid var(--teal);}
.side-card.dark p{color:#bccadb;font-size:14px;margin-bottom:16px;}
.side-card.dark .btn{width:100%;}
.side-contact{list-style:none;font-size:14px;}
.side-contact li{display:flex;gap:10px;align-items:flex-start;margin-bottom:12px;color:#475568;}
.side-contact .ci{color:var(--teal);flex:none;}
.side-card.dark .side-contact li{color:#dce6f0;}

/* specialities / treatments index extras (reuses .svc-grid + .svc) */
.cat-block{margin-bottom:18px;}
.cat-title{display:flex;align-items:center;gap:12px;margin:8px 0 26px;}
.cat-title .eyebrow{margin:0;}
.cat-title .rule{flex:1;height:1px;background:var(--line);}

/* blog grid */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;}
.post-card{border:1px solid var(--line);border-radius:14px;overflow:hidden;background:#fff;display:flex;flex-direction:column;transition:transform .18s,box-shadow .18s;}
.post-card:hover{transform:translateY(-5px);box-shadow:var(--shadow);}
.post-card .thumb{height:188px;background:var(--bg-soft);overflow:hidden;}
.post-card .thumb img{width:100%;height:100%;object-fit:cover;transition:transform .4s;}
.post-card:hover .thumb img{transform:scale(1.05);}
.post-card .pc-body{padding:22px 22px 24px;display:flex;flex-direction:column;flex:1;}
.post-card .date{font-size:12px;letter-spacing:.06em;text-transform:uppercase;color:var(--teal-dark);font-weight:600;margin-bottom:9px;}
.post-card h3{font-size:18.5px;line-height:1.3;margin-bottom:10px;}
.post-card p{font-size:14px;color:var(--muted);flex:1;}
.post-card .more{margin-top:16px;font-size:13.5px;font-weight:600;color:var(--teal-dark);}

/* article (single post) */
.article-body img{border-radius:12px;margin:22px 0;border:1px solid var(--line);}
.article-meta{font-size:13px;color:var(--muted);margin-bottom:8px;}

/* contact */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:start;}
.info-card{display:flex;gap:14px;align-items:flex-start;border:1px solid var(--line);border-radius:12px;padding:20px 22px;margin-bottom:16px;}
.info-card .ic{width:44px;height:44px;border-radius:10px;flex:none;background:linear-gradient(135deg,var(--teal),var(--teal-dark));color:#fff;display:flex;align-items:center;justify-content:center;font-size:19px;}
.info-card h4{font-size:15px;color:var(--navy);margin-bottom:3px;}
.info-card p,.info-card a{font-size:14.5px;color:var(--muted);}
.info-card a:hover{color:var(--teal);}
.map-embed{border:0;width:100%;height:300px;border-radius:14px;margin-top:10px;filter:grayscale(.2);}

/* image gallery */
.gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;}
.gallery-grid a{border-radius:12px;overflow:hidden;display:block;border:1px solid var(--line);aspect-ratio:3/2;}
.gallery-grid img{width:100%;height:100%;object-fit:cover;transition:transform .4s;}
.gallery-grid a:hover img{transform:scale(1.07);}

/* responsive two-column split (collapses to 1 col on mobile) */
.media-split{display:grid;grid-template-columns:1.05fr .95fr;gap:58px;align-items:center;}
.media-split.even{grid-template-columns:1fr 1fr;}

/* expertise list (about) */
.expertise{list-style:none;display:grid;grid-template-columns:1fr 1fr;gap:12px 26px;margin:8px 0 4px;}
.expertise li{display:flex;gap:12px;align-items:flex-start;font-size:15px;color:#3f4d5e;padding:8px 0;}
.expertise .chk{flex:none;width:26px;height:26px;border-radius:50%;background:var(--navy);color:var(--gold);display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;}

/* FAQ accordion (native details) */
.faq-wrap{max-width:820px;margin:0 auto;}
.faq{border:1px solid var(--line);border-radius:12px;margin-bottom:12px;background:#fff;overflow:hidden;}
.faq summary{list-style:none;cursor:pointer;padding:20px 24px;font-weight:600;color:var(--navy);font-size:16px;display:flex;justify-content:space-between;gap:14px;align-items:center;}
.faq summary::-webkit-details-marker{display:none;}
.faq summary::after{content:"+";font-size:22px;color:var(--teal);font-weight:400;transition:transform .2s;}
.faq[open] summary::after{transform:rotate(45deg);}
.faq .faq-a{padding:0 24px 20px;color:#475568;font-size:15px;}

/* approach cards (home) */
.approach-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
.approach-card{text-align:center;border:1px solid var(--line);border-radius:14px;padding:26px 22px;background:#fff;}
.approach-card .ph{width:88px;height:88px;border-radius:50%;margin:0 auto 16px;overflow:hidden;border:3px solid var(--bg-soft);}
.approach-card .ph img{width:100%;height:100%;object-fit:cover;}
.approach-card h3{font-size:17px;margin-bottom:6px;}
.approach-card p{font-size:14px;color:var(--muted);}

/* floating whatsapp */
.wa-float{position:fixed;right:22px;bottom:22px;z-index:80;width:54px;height:54px;border-radius:50%;background:#25d366;color:#fff;display:flex;align-items:center;justify-content:center;font-size:26px;box-shadow:0 12px 28px -8px rgba(37,211,102,.7);transition:transform .18s;}
.wa-float:hover{transform:scale(1.08);}

/* ---------- RESPONSIVE ---------- */
@media(max-width:960px){
  .hero .wrap,.about .wrap,.why .wrap,.cta .wrap,.contact-grid{grid-template-columns:1fr;gap:42px;}
  .hero h1{font-size:40px;}
  .nav-links{display:none;position:absolute;top:100%;left:0;right:0;flex-direction:column;background:#fff;border-bottom:1px solid var(--line);padding:14px 20px;gap:4px;align-items:stretch;box-shadow:var(--shadow);
    max-height:calc(100vh - 160px);max-height:calc(100dvh - 160px);overflow-y:auto;overscroll-behavior:contain;-webkit-overflow-scrolling:touch;}
  .nav-links.open{display:flex;}
  .nav-links>li{width:100%;}
  .nav-links a{padding:11px 6px;}
  .has-drop>a::after{margin-left:auto;}
  .dropdown{position:static;transform:none;opacity:1;visibility:visible;min-width:0;box-shadow:none;border:none;border-left:2px solid var(--line);border-radius:0;grid-template-columns:1fr;padding:4px 0 4px 12px;margin:2px 0 6px;}
  .nav-links .has-drop:hover .dropdown{transform:none;}
  .has-drop::before,.has-drop:hover::before{display:none;} /* bridge not needed when dropdown is inline */
  .nav-toggle{display:flex;}
  .layout{grid-template-columns:1fr;}
  .sidebar{position:static;}
  .trust .wrap{grid-template-columns:repeat(2,1fr);gap:24px;}
  .stat+.stat{border-left:none;}
  .stat:nth-child(3){border-top:1px solid var(--line);padding-top:24px;}
  .stat:nth-child(4){border-top:1px solid var(--line);padding-top:24px;}
  .cred-grid,.svc-grid,.tst-grid,.blog-grid,.approach-grid{grid-template-columns:1fr;}
  .cond-grid,.gallery-grid,.expertise{grid-template-columns:repeat(2,1fr);}
  .media-split,.media-split.even{grid-template-columns:1fr;gap:34px;}
  .foot-top{grid-template-columns:1fr;gap:30px;}
  .portrait .badge{left:0;}
  .page-hero h1{font-size:33px;}
}
@media(max-width:520px){
  .hero h1{font-size:33px;}
  .sec-head h2,.about h2,.cta h2{font-size:29px;}
  section{padding:62px 0;}
  .cond-grid,.gallery-grid,.expertise{grid-template-columns:1fr;}
  .blog-grid{grid-template-columns:1fr;}
  .page-hero h1{font-size:28px;}
}
