@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=DM+Serif+Display&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

:root{
  --navy:#0C4A6E;
  --navy2:#0369A1;
  --navy3:#075985;
  --blue-light:#E0F2FE;
  --blue-mid:#BAE6FD;
  --accent:#F97316;
  --accent-dark:#EA6C0A;
  --accent-light:#FFF7ED;
  --white:#FFFFFF;
  --grey:#F8FAFC;
  --border:#E2E8F0;
  --text:#0F172A;
  --muted:#64748B;
  --green:#16A34A;
  --green-light:#DCFCE7;
  --radius:12px;
  --shadow:0 1px 3px rgba(0,0,0,0.06),0 4px 16px rgba(0,0,0,0.05);
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'DM Sans',sans-serif;color:var(--text);background:var(--white);font-size:15px;line-height:1.65}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

/* NAV */
nav{position:sticky;top:0;z-index:200;background:var(--white);border-bottom:1px solid var(--border);height:66px;display:flex;align-items:center;padding:0 5%}
.nav-inner{width:100%;max-width:1180px;margin:0 auto;display:flex;align-items:center;gap:8px}
.logo{display:flex;align-items:center;gap:10px;flex-shrink:0}
.logo-box{width:38px;height:38px;border-radius:10px;background:var(--navy);display:flex;align-items:center;justify-content:center;color:white;font-size:18px}
.logo-name{font-size:21px;font-weight:700;color:var(--navy);letter-spacing:-0.5px}
.logo-name em{font-style:normal;color:var(--accent)}
.nav-links{display:flex;align-items:center;gap:2px;margin-left:auto;list-style:none}
.nav-links a{padding:7px 13px;border-radius:8px;font-size:14px;font-weight:500;color:var(--muted);transition:all .15s}
.nav-links a:hover,.nav-links a.active{color:var(--navy);background:#F1F5F9}
.nav-book{background:var(--navy) !important;color:white !important;margin-left:6px;padding:8px 18px !important;border-radius:8px !important}
.nav-book:hover{background:var(--navy2) !important}
.hamburger{display:none;border:none;background:none;font-size:22px;cursor:pointer;color:var(--text);padding:4px;margin-left:auto}

/* BUTTONS */
.btn{display:inline-flex;align-items:center;gap:8px;padding:12px 22px;border-radius:10px;font-size:15px;font-weight:600;cursor:pointer;border:none;transition:all .2s;text-decoration:none}
.btn-navy{background:var(--navy);color:white}
.btn-navy:hover{background:var(--navy2);transform:translateY(-1px)}
.btn-wa{background:#16A34A;color:white}
.btn-wa:hover{background:#15803d;transform:translateY(-1px)}
.btn-outline{background:transparent;color:var(--navy);border:2px solid var(--navy)}
.btn-outline:hover{background:var(--blue-light)}
.btn-lg{padding:14px 28px;font-size:16px}
.btn-accent{background:var(--accent);color:white}
.btn-accent:hover{background:var(--accent-dark)}

/* VISIT BADGE */
.visit-badge{display:inline-flex;align-items:center;gap:6px;background:var(--blue-light);color:var(--navy);border:1px solid var(--blue-mid);padding:5px 12px;border-radius:20px;font-size:12px;font-weight:500}

/* PAGE HERO (inner pages) */
.page-hero{background:var(--navy);padding:52px 5%}
.page-hero-inner{max-width:1180px;margin:0 auto}
.breadcrumb{display:flex;align-items:center;gap:8px;font-size:13px;color:rgba(255,255,255,0.5);margin-bottom:14px}
.breadcrumb a{color:rgba(255,255,255,0.65)}
.breadcrumb a:hover{color:white}
.page-hero h1{font-family:'DM Serif Display',serif;font-size:38px;color:white;margin-bottom:10px;line-height:1.15}
.page-hero p{font-size:16px;color:rgba(255,255,255,0.7);max-width:520px}

/* SECTION */
.sec{padding:76px 5%}
.sec-grey{background:var(--grey)}
.sec-navy{background:var(--navy)}
.inner{max-width:1180px;margin:0 auto}
.sec-title{font-family:'DM Serif Display',serif;font-size:34px;color:var(--text);line-height:1.2;margin-bottom:12px;letter-spacing:-0.3px}
.sec-title.white{color:white}
.sec-sub{font-size:16px;color:var(--muted);line-height:1.75;max-width:500px}
.sec-sub.white{color:rgba(255,255,255,0.7)}

/* VISITING CHARGE BANNER */
.vc-banner{background:var(--navy);border-radius:var(--radius);padding:14px 18px;display:flex;align-items:flex-start;gap:12px;margin-bottom:28px}
.vc-banner i{color:var(--blue-mid);font-size:18px;margin-top:1px;flex-shrink:0}
.vc-title{font-size:14px;font-weight:600;color:white;margin-bottom:3px}
.vc-list{font-size:13px;color:rgba(255,255,255,0.7);line-height:1.7}

/* SERVICE CATEGORY TABS */
.cat-scroll{display:flex;gap:8px;overflow-x:auto;padding-bottom:4px;scrollbar-width:none;margin-bottom:28px}
.cat-scroll::-webkit-scrollbar{display:none}
.cat-tab{flex-shrink:0;padding:8px 16px;border-radius:20px;border:1.5px solid var(--border);font-size:13px;font-weight:500;cursor:pointer;color:var(--muted);background:white;transition:all .15s;display:flex;align-items:center;gap:6px}
.cat-tab:hover{border-color:var(--navy2);color:var(--navy)}
.cat-tab.active{background:var(--navy);color:white;border-color:var(--navy)}

/* RATE TABLE */
.rate-block{background:white;border:1.5px solid var(--border);border-radius:var(--radius);overflow:hidden;margin-bottom:24px}
.rate-block-head{background:var(--grey);padding:14px 18px;display:flex;align-items:center;gap:12px;border-bottom:1px solid var(--border);cursor:pointer;user-select:none}
.rbh-icon{font-size:22px;line-height:1}
.rbh-title{font-size:15px;font-weight:600;color:var(--navy);flex:1}
.rbh-count{font-size:12px;color:var(--muted);background:white;border:1px solid var(--border);padding:2px 8px;border-radius:20px}
.rbh-toggle{font-size:18px;color:var(--muted);transition:transform .2s}
.rbh-toggle.open{transform:rotate(180deg)}
.rate-rows{display:none}
.rate-rows.open{display:block}
.rate-cat-label{background:#F0F9FF;padding:8px 18px;font-size:11px;font-weight:600;color:var(--navy2);letter-spacing:.06em;border-bottom:1px solid var(--border)}
.rate-row{display:flex;align-items:center;padding:13px 18px;border-bottom:1px solid var(--border);gap:12px;transition:background .12s}
.rate-row:last-child{border-bottom:none}
.rate-row:hover{background:#F8FAFC}
.rr-left{flex:1;min-width:0}
.rr-name{font-size:14px;font-weight:500;color:var(--text)}
.rr-note{font-size:12px;color:var(--muted);margin-top:2px}
.rr-right{display:flex;flex-direction:column;align-items:flex-end;gap:4px;flex-shrink:0}
.rr-price{font-size:14px;font-weight:600;color:var(--navy)}
.rr-visit{font-size:11px;color:var(--muted);background:var(--blue-light);padding:2px 8px;border-radius:10px;color:var(--navy2);white-space:nowrap}
.rr-book{padding:5px 12px;background:var(--navy);color:white;border:none;border-radius:6px;font-size:11px;font-weight:600;cursor:pointer;transition:background .15s;white-space:nowrap}
.rr-book:hover{background:var(--navy2)}

/* HOME HERO */
.hero{background:var(--navy);padding:80px 5% 0;overflow:hidden;position:relative}
.hero-dots{position:absolute;inset:0;background-image:radial-gradient(rgba(255,255,255,0.04) 1px,transparent 1px);background-size:28px 28px}
.hero-inner{max-width:1180px;margin:0 auto;display:grid;grid-template-columns:1fr 400px;gap:48px;align-items:flex-end;position:relative;z-index:1}
.hero-left{padding-bottom:72px}
.hero-tag{display:inline-flex;align-items:center;gap:7px;background:rgba(255,255,255,0.1);border:1px solid rgba(255,255,255,0.15);color:rgba(255,255,255,0.85);padding:6px 14px;border-radius:20px;font-size:13px;font-weight:500;margin-bottom:22px}
.hero h1{font-family:'DM Serif Display',serif;font-size:52px;color:white;line-height:1.1;letter-spacing:-1px;margin-bottom:18px}
.hero-sub{font-size:17px;color:rgba(255,255,255,0.65);line-height:1.75;margin-bottom:32px;max-width:460px}
.hero-btns{display:flex;gap:12px;flex-wrap:wrap}
.hero-stats{display:flex;gap:32px;margin-top:44px;padding-top:32px;border-top:1px solid rgba(255,255,255,0.1)}
.hst-num{font-size:26px;font-weight:700;color:white;line-height:1}
.hst-lbl{font-size:12px;color:rgba(255,255,255,0.5);margin-top:3px}
.hero-card{background:white;border-radius:18px 18px 0 0;padding:24px;box-shadow:0 -8px 32px rgba(0,0,0,0.2)}
.hc-title{font-size:15px;font-weight:700;color:var(--navy);margin-bottom:16px}
.hc-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-bottom:16px}
.hc-item{padding:10px;border:1.5px solid var(--border);border-radius:10px;cursor:pointer;transition:all .15s;display:flex;align-items:center;gap:8px;font-size:13px;font-weight:500}
.hc-item:hover,.hc-item.active{border-color:var(--navy);background:var(--blue-light);color:var(--navy)}
.hc-item span{font-size:18px}
.hc-input{width:100%;padding:10px 13px;border:1.5px solid var(--border);border-radius:9px;font-family:inherit;font-size:13px;outline:none;margin-bottom:10px;transition:border .15s}
.hc-input:focus{border-color:var(--navy2)}
.hc-btn{width:100%;padding:12px;background:var(--navy);color:white;border:none;border-radius:9px;font-size:14px;font-weight:600;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:8px;transition:background .15s}
.hc-btn:hover{background:var(--navy2)}
.hc-note{text-align:center;font-size:11px;color:var(--muted);margin-top:8px}

/* TRUST BAR */
.trust-bar{background:var(--grey);border-bottom:1px solid var(--border);padding:16px 5%}
.trust-inner{max-width:1180px;margin:0 auto;display:flex;align-items:center;justify-content:center;gap:36px;flex-wrap:wrap}
.ti-item{display:flex;align-items:center;gap:8px;font-size:13px;font-weight:500;color:var(--muted)}
.ti-item i{color:var(--green);font-size:14px}

/* SERVICES GRID */
.svc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:44px}
.svc-card{background:white;border:1.5px solid var(--border);border-radius:var(--radius);padding:24px;cursor:pointer;transition:all .2s;display:block}
.svc-card:hover{border-color:var(--navy);box-shadow:0 6px 24px rgba(12,74,110,0.1);transform:translateY(-3px)}
.svc-icon{width:52px;height:52px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:26px;margin-bottom:16px}
.svc-name{font-size:16px;font-weight:700;color:var(--navy);margin-bottom:6px}
.svc-desc{font-size:13px;color:var(--muted);line-height:1.6;margin-bottom:14px}
.svc-price{font-size:13px;font-weight:600;color:var(--navy2)}
.svc-visit-tag{font-size:11px;color:var(--muted);margin-top:4px}

/* STEPS */
.steps-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:44px}
.step-card{background:white;border:1.5px solid var(--border);border-radius:var(--radius);padding:24px;text-align:center}
.step-num{width:40px;height:40px;background:var(--navy);color:white;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:16px;font-weight:700;margin:0 auto 14px}
.step-icon{font-size:28px;margin-bottom:12px}
.step-title{font-size:14px;font-weight:600;color:var(--navy);margin-bottom:6px}
.step-desc{font-size:12px;color:var(--muted);line-height:1.65}

/* AREAS */
.zone-title{font-size:13px;font-weight:600;color:var(--navy2);margin:24px 0 10px;display:flex;align-items:center;gap:8px}
.zone-title::after{content:'';flex:1;height:1px;background:var(--border)}
.pills{display:flex;flex-wrap:wrap;gap:8px}
.pill{padding:7px 14px;border-radius:20px;background:white;border:1.5px solid var(--border);font-size:13px;font-weight:500;color:var(--text);cursor:pointer;transition:all .15s;display:flex;align-items:center;gap:6px}
.pill:hover{border-color:var(--navy);background:var(--blue-light);color:var(--navy)}
.pill i{font-size:11px;color:var(--navy2)}

/* WHY US */
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:52px;align-items:start}
.why-list{display:flex;flex-direction:column;gap:20px}
.why-item{display:flex;gap:16px;padding-bottom:20px;border-bottom:1px solid var(--border)}
.why-item:last-child{border-bottom:none;padding-bottom:0}
.wi-icon{width:46px;height:46px;border-radius:11px;display:flex;align-items:center;justify-content:center;font-size:22px;flex-shrink:0}
.wi-title{font-size:15px;font-weight:600;color:var(--navy);margin-bottom:4px}
.wi-desc{font-size:13px;color:var(--muted);line-height:1.65}
.review-card{background:white;border:1.5px solid var(--border);border-radius:var(--radius);padding:18px;margin-bottom:14px}
.rc-stars{color:#F59E0B;font-size:13px;letter-spacing:1px;margin-bottom:8px}
.rc-text{font-size:14px;color:var(--text);line-height:1.65;margin-bottom:12px}
.rc-author{display:flex;align-items:center;gap:10px}
.rc-av{width:36px;height:36px;border-radius:50%;background:var(--navy);color:white;display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:700;flex-shrink:0}
.rc-name{font-size:13px;font-weight:600;color:var(--navy)}
.rc-area{font-size:12px;color:var(--muted)}
.rating-card{background:var(--navy);border-radius:var(--radius);padding:18px 20px;margin-bottom:14px;display:flex;align-items:center;gap:16px}
.rcard-num{font-size:38px;font-weight:700;color:white;line-height:1}
.rcard-stars{color:#F59E0B;font-size:15px;margin-bottom:4px}
.rcard-lbl{font-size:12px;color:rgba(255,255,255,0.5)}

/* CTA STRIP */
.cta-strip{background:var(--navy);padding:68px 5%;text-align:center}
.cta-strip h2{font-family:'DM Serif Display',serif;font-size:34px;color:white;margin-bottom:10px}
.cta-strip p{font-size:16px;color:rgba(255,255,255,0.7);margin-bottom:28px}
.cta-btns{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

/* CONTACT */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:36px;align-items:start}
.form-card{background:white;border:1.5px solid var(--border);border-radius:var(--radius);padding:28px}
.fc-title{font-size:17px;font-weight:700;color:var(--navy);margin-bottom:20px}
.fg{margin-bottom:16px}
.fg label{display:block;font-size:13px;font-weight:500;color:var(--text);margin-bottom:6px}
.fg input,.fg select,.fg textarea{width:100%;padding:10px 13px;border:1.5px solid var(--border);border-radius:9px;font-family:inherit;font-size:14px;color:var(--text);background:white;outline:none;transition:border .15s}
.fg input:focus,.fg select:focus,.fg textarea:focus{border-color:var(--navy2)}
.fg textarea{resize:vertical;min-height:100px}
.contact-info-card{background:white;border:1.5px solid var(--border);border-radius:var(--radius);padding:22px;margin-bottom:16px}
.cic-title{font-size:15px;font-weight:600;color:var(--navy);margin-bottom:16px}
.cic-row{display:flex;align-items:center;gap:12px;padding:12px 0;border-bottom:1px solid var(--border)}
.cic-row:last-child{border-bottom:none}
.cic-icon{width:40px;height:40px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0}
.cic-label{font-size:11px;color:var(--muted);margin-bottom:2px}
.cic-val{font-size:14px;font-weight:500;color:var(--navy)}
.cic-val a{color:var(--navy)}

/* ABOUT */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:52px;align-items:center}
.stat-row{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin:44px 0}
.stat-box{text-align:center;padding:24px 12px;background:white;border:1.5px solid var(--border);border-radius:var(--radius)}
.sb-num{font-family:'DM Serif Display',serif;font-size:32px;color:var(--navy);margin-bottom:4px}
.sb-lbl{font-size:12px;color:var(--muted)}
.value-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:36px}
.val-card{padding:20px;background:white;border:1.5px solid var(--border);border-radius:var(--radius)}
.val-icon{font-size:24px;margin-bottom:10px}
.val-title{font-size:14px;font-weight:600;color:var(--navy);margin-bottom:6px}
.val-desc{font-size:13px;color:var(--muted);line-height:1.65}
.team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:36px}
.team-card{text-align:center;padding:24px 16px;background:white;border:1.5px solid var(--border);border-radius:var(--radius)}
.tc-av{width:68px;height:68px;border-radius:50%;background:var(--navy);color:white;display:flex;align-items:center;justify-content:center;font-size:24px;font-weight:700;margin:0 auto 14px}
.tc-name{font-size:15px;font-weight:600;color:var(--navy);margin-bottom:3px}
.tc-role{font-size:12px;color:var(--muted);margin-bottom:10px}
.tc-desc{font-size:13px;color:var(--muted);line-height:1.6}

/* FOOTER */
footer{background:#0A2540;padding:56px 5% 24px}
.foot-top{max-width:1180px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1.2fr;gap:36px;padding-bottom:40px;border-bottom:1px solid rgba(255,255,255,0.07)}
.fb-name{font-size:19px;font-weight:700;color:white;display:flex;align-items:center;gap:10px;margin-bottom:12px}
.fb-box{width:32px;height:32px;background:var(--navy2);border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:15px}
.fb-desc{font-size:14px;color:rgba(255,255,255,0.45);line-height:1.75;margin-bottom:16px}
.fb-contact{display:flex;align-items:center;gap:8px;font-size:13px;color:rgba(255,255,255,0.55);margin-bottom:8px}
.fb-contact i{color:var(--navy2);width:14px}
.fb-contact a{color:rgba(255,255,255,0.65)}
.fc-head{font-size:11px;font-weight:600;color:rgba(255,255,255,0.3);letter-spacing:.1em;text-transform:uppercase;margin-bottom:14px}
.fc-links{list-style:none;display:flex;flex-direction:column;gap:9px}
.fc-links a{font-size:14px;color:rgba(255,255,255,0.5);transition:color .15s}
.fc-links a:hover{color:white}
.foot-bottom{max-width:1180px;margin:22px auto 0;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:10px;font-size:12px;color:rgba(255,255,255,0.25)}

/* WA FLOAT */
.wa-float{position:fixed;bottom:24px;right:24px;z-index:999;width:56px;height:56px;border-radius:50%;background:#16A34A;color:white;display:flex;align-items:center;justify-content:center;font-size:26px;box-shadow:0 4px 18px rgba(22,163,74,0.4);transition:transform .2s}
.wa-float:hover{transform:scale(1.1)}

/* RESPONSIVE */
@media(max-width:1024px){
  .hero-inner{grid-template-columns:1fr}
  .hero-card{border-radius:16px;max-width:460px;margin-top:32px}
  .hero-left{padding-bottom:0}
  .hero{padding-bottom:48px}
  .svc-grid{grid-template-columns:repeat(2,1fr)}
  .steps-grid{grid-template-columns:repeat(2,1fr)}
  .why-grid{grid-template-columns:1fr;gap:32px}
  .contact-grid{grid-template-columns:1fr}
  .about-grid{grid-template-columns:1fr}
  .foot-top{grid-template-columns:1fr 1fr}
  .stat-row{grid-template-columns:repeat(2,1fr)}
  .team-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:640px){
  .nav-links{display:none}
  .nav-links.open{display:flex;flex-direction:column;position:absolute;top:66px;left:0;right:0;background:white;padding:12px 5%;border-bottom:1px solid var(--border);z-index:100;gap:4px}
  .hamburger{display:block}
  .hero h1{font-size:34px}
  .hero-stats{flex-wrap:wrap;gap:20px}
  .svc-grid{grid-template-columns:1fr}
  .steps-grid{grid-template-columns:1fr}
  .value-grid{grid-template-columns:1fr}
  .team-grid{grid-template-columns:1fr}
  .stat-row{grid-template-columns:repeat(2,1fr)}
  .foot-top{grid-template-columns:1fr}
  .sec{padding:52px 5%}
  .trust-inner{gap:16px}
  .page-hero h1{font-size:28px}
}
