/* ===================================================
   INVESTAMONEY – COMPLETE STYLESHEET
   =================================================== */
:root {
  --navy:      #002d3a; /* Deep Teal/Dark Blue */
  --blue:      #005f7a; /* Brand Blue-Dark */
  --blue-lt:   #007ba1; /* Brand Blue-Logo */
  --blue-dk:   #00485d; /* Darker Brand Teal */
  --gold:      #f38120; /* Brand Orange-Logo */
  --gold-lt:   #ff9d4d; /* Brand Orange-Light */
  --white:     #ffffff;
  --off:       #f4f6fb;
  --text:      #102a35; /* Darker Teal Body Text */
  --muted:     #5a6a7e;
  --border:    #dce4f0;
  --r:         12px;
  --r-lg:      20px;
  --shadow:    0 4px 24px rgba(10,22,40,.10);
  --shadow-lg: 0 12px 48px rgba(10,22,40,.16);
  --tr:        .28s cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body { font-family:'DM Sans',sans-serif; color:var(--text); background:var(--white); line-height:1.7; font-size:16px; }
h1,h2,h3,h4 { font-family:'Playfair Display',Georgia,serif; line-height:1.25; color:var(--navy); }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
img { max-width:100%; display:block; }
address { font-style:normal; }

.container { max-width:1200px; margin:0 auto; padding:0 24px; }

/* ── TOPBAR ── */
.topbar {
  background:var(--blue-lt); color:var(--white);
  font-size:13px; padding:8px 16px;
  display:flex; justify-content:center; flex-wrap:wrap; gap:20px;
  border-bottom:1px solid rgba(255,255,255,0.15);
}
.topbar a { color:var(--white); font-weight:500; }
.topbar a:hover { color:var(--gold-lt); }
.topbar-inner { display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; width:100%; max-width:1200px; }

/* ── NAVBAR ── */
.navbar {
  background:var(--white);
  border-bottom:2px solid var(--border);
  position:sticky; top:0; z-index:900;
  box-shadow:var(--shadow);
  transition:box-shadow var(--tr);
}
.navbar.scrolled { box-shadow:0 6px 32px rgba(10,22,40,.15); }

.nav-container {
  max-width:1200px; margin:0 auto; padding:0 20px;
  display:flex; align-items:center; justify-content:space-between;
  height:68px; gap:12px;
}

/* Logo */
.logo { display:flex; align-items:center; text-decoration:none; flex-shrink:0; }
.logo-img { height:50px; width:auto; display:block; }
.footer .logo-img { height:40px; }

/* Desktop nav */
.desktop-nav { display:flex; align-items:center; gap:4px; }
.desktop-nav > a {
  font-size:14px; font-weight:700; color:var(--gold);
  padding:8px 11px; border-radius:8px; transition:var(--tr); white-space:nowrap;
}
.desktop-nav > a:hover,
.desktop-nav > a.active { background:var(--off); color:var(--blue-lt); }

/* Dropdown */
.has-dropdown { position:relative; }
.ddlabel {
  font-size:14px; font-weight:700; color:var(--gold);
  padding:8px 11px; border-radius:8px; cursor:pointer;
  display:flex; align-items:center; gap:4px; white-space:nowrap;
  transition:var(--tr); user-select:none;
}
.ddlabel:hover { background:var(--off); color:var(--blue-lt); }
.dd-box {
  display:none; position:absolute; top:calc(100% + 6px); left:50%;
  transform:translateX(-50%);
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--r); box-shadow:var(--shadow-lg);
  min-width:210px; padding:8px; z-index:200;
}
.has-dropdown:hover .dd-box { display:block; }
.dd-box a {
  display:block; padding:10px 14px; font-size:14px;
  color:var(--text); border-radius:8px; transition:var(--tr);
}
.dd-box a:hover { background:var(--off); color:var(--blue-lt); padding-left:20px; }

/* Hamburger – hidden on desktop */
.hbg {
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:42px; height:42px; background:var(--off);
  border:none; border-radius:8px; cursor:pointer; padding:9px;
  flex-shrink:0;
}
.hbg span {
  display:block; width:100%; height:2.5px;
  background:var(--navy); border-radius:2px;
  transition:transform .3s ease, opacity .3s ease;
  transform-origin:center;
}
.hbg.active span:nth-child(1) { transform:translateY(7.5px) rotate(45deg); }
.hbg.active span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hbg.active span:nth-child(3) { transform:translateY(-7.5px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.mob-overlay {
  display:none; position:fixed; inset:0;
  background:rgba(10,22,40,.55); z-index:950;
}
.mob-overlay.show { display:block; }

.mob-drawer {
  position:fixed; top:0; left:0; bottom:0;
  width:min(310px,88vw);
  background:var(--white);
  z-index:960;
  display:flex; flex-direction:column;
  transform:translateX(-100%);
  transition:transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow:4px 0 32px rgba(10,22,40,.18);
}
.mob-drawer.open { transform:translateX(0); }

.mob-head {
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 18px; border-bottom:2px solid var(--border);
  flex-shrink:0;
}
.mob-close {
  background:none; border:none; font-size:18px; cursor:pointer;
  width:36px; height:36px; border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  color:var(--navy); transition:var(--tr);
}
.mob-close:hover { background:var(--off); }

.mob-body {
  overflow-y:auto; flex:1; padding:8px 0 24px;
}
.mob-body > a {
  display:block; padding:14px 20px;
  font-size:15px; font-weight:600; color:var(--gold);
  border-bottom:1px solid var(--border);
  transition:background var(--tr);
}
.mob-body > a:hover { background:var(--off); color:var(--blue-lt); }
.mob-body > a:last-of-type { border-bottom:none; }

/* Mobile accordion */
.mob-acc { border-bottom:1px solid var(--border); }
.mob-acc-btn {
  display:flex; justify-content:space-between; align-items:center;
  width:100%; padding:14px 20px;
  font-size:15px; font-weight:600; color:var(--gold);
  background:none; border:none; cursor:pointer; text-align:left;
  transition:background var(--tr);
}
.mob-acc-btn:hover { background:var(--off); color:var(--blue-lt); }
.acc-arrow { font-size:11px; transition:transform .3s ease; flex-shrink:0; }
.mob-acc-body { display:none; background:#f0f7f9; }
.mob-acc-body.open { display:block; }
.mob-acc-body a {
  display:block; padding:12px 20px 12px 36px;
  font-size:14px; color:var(--text); border-top:1px solid var(--border);
  transition:background var(--tr);
}
.mob-acc-body a:hover { background:#e1eff5; color:var(--blue-lt); }

/* ── BUTTONS ── */
.btn {
  display:inline-block; padding:13px 28px;
  border-radius:10px; font-size:15px; font-weight:600;
  border:2px solid transparent; cursor:pointer; transition:var(--tr);
  text-align:center;
}
.btn-primary { background:var(--gold); color:var(--navy); border-color:var(--gold); }
.btn-primary:hover { background:var(--gold-lt); transform:translateY(-2px); box-shadow:0 8px 24px rgba(201,168,76,.35); }
.btn-outline { background:transparent; color:var(--white); border-color:rgba(255,255,255,.55); }
.btn-outline:hover { background:rgba(255,255,255,.12); border-color:var(--white); }
.btn-blue { background:var(--blue-lt); color:var(--white); border-color:var(--blue-lt); }
.btn-blue:hover { background:var(--blue); transform:translateY(-2px); }

/* ── HERO SLIDER ── */
.hero-slider {
  position:relative; overflow:hidden;
  height:580px; background:var(--navy);
}
.hs-slide {
  position:absolute; inset:0;
  display:flex; align-items:center;
  opacity:0; transform:translateX(40px);
  transition:opacity .7s ease, transform .7s ease;
  pointer-events:none;
}
.hs-slide.active { opacity:1; transform:translateX(0); pointer-events:all; }

/* Slide background images + fallback gradients */
.hs-slide .hs-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  z-index:0;
}
.hs-slide-1 .hs-bg { background-image:linear-gradient(135deg,#05101a 0%,#005f7a 50%,#007ba1 100%); }
.hs-slide-2 .hs-bg { background-image:linear-gradient(135deg,#05151a 0%,#004d61 50%,#00a8cc 100%); }
.hs-slide-3 .hs-bg { background-image:linear-gradient(135deg,#0a071a 0%,#003140 50%,#005f7a 100%); }
.hs-slide-4 .hs-bg { background-image:linear-gradient(135deg,#07151a 0%,#003d2e 50%,#007a5c 100%); }
.hs-slide-5 .hs-bg { background-image:linear-gradient(135deg,#15071a 0%,#3d0040 50%,#7500a8 100%); }

.hs-overlay {
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(90deg,rgba(0,0,0,.65) 0%,rgba(0,0,0,.2) 60%,rgba(0,0,0,.05) 100%);
}
.hs-inner {
  position:relative; z-index:2;
  max-width:1200px; margin:0 auto; padding:0 24px;
  display:flex; justify-content:center; align-items:center;
  width:100%; text-align:center;
}

/* Slide content */
.hs-content { color:var(--white); }
.hs-badge {
  display:inline-block;
  background:rgba(201,168,76,.2); border:1px solid var(--gold);
  color:var(--gold-lt); font-size:11px; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase;
  padding:6px 16px; border-radius:30px; margin-bottom:18px;
}
.hs-content h1 {
  font-size:clamp(1.7rem,3.2vw,3rem);
  color:var(--white); margin-bottom:16px; line-height:1.2;
}
.hs-content h1 span { color:var(--gold-lt); }
.hs-content p {
  font-size:16px; color:rgba(255,255,255,.8);
  margin-bottom:28px; max-width:700px; margin-left:auto; margin-right:auto; line-height:1.7;
}
.hs-btns { display:flex; gap:14px; flex-wrap:wrap; justify-content:center; }

/* Slide visual right */
.hs-visual {
  display:flex; flex-direction:column; align-items:center; gap:18px;
}
.hs-icon {
  font-size:80px; line-height:1;
  filter:drop-shadow(0 8px 24px rgba(0,0,0,.4));
  animation:floatY 3s ease-in-out infinite;
}
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* Stats grid (slide 1) */
.hs-stats { display:grid; grid-template-columns:1fr 1fr; gap:14px; width:100%; }
.hs-stat {
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.15);
  border-radius:var(--r); padding:20px; text-align:center;
  backdrop-filter:blur(8px); transition:var(--tr);
}
.hs-stat:hover { background:rgba(255,255,255,.18); transform:translateY(-3px); }
.hs-stat .num {
  font-family:'Playfair Display',serif; font-size:1.9rem;
  color:var(--gold-lt); font-weight:700; display:block;
}
.hs-stat .lbl { font-size:12px; color:rgba(255,255,255,.65); display:block; margin-top:3px; }

/* Pill list (slides 2-5) */
.hs-pills { display:flex; flex-direction:column; gap:11px; width:100%; }
.hs-pill {
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18);
  border-left:3px solid var(--gold);
  color:rgba(255,255,255,.9); padding:11px 16px;
  border-radius:10px; font-size:14px; font-weight:500;
  backdrop-filter:blur(6px); transition:var(--tr);
}
.hs-pill:hover { background:rgba(255,255,255,.17); padding-left:20px; }

/* Slider controls */
.hs-prev, .hs-next {
  position:absolute; top:50%; transform:translateY(-50%);
  width:46px; height:46px; border-radius:50%;
  background:rgba(255,255,255,.12); border:1.5px solid rgba(255,255,255,.3);
  color:var(--white); font-size:26px; cursor:pointer; z-index:5;
  display:flex; align-items:center; justify-content:center;
  transition:var(--tr); line-height:1;
}
.hs-prev { left:18px; }
.hs-next { right:18px; }
.hs-prev:hover,.hs-next:hover { background:var(--gold); border-color:var(--gold); color:var(--navy); }

/* Dots */
.hs-dots {
  position:absolute; bottom:22px; left:50%; transform:translateX(-50%);
  display:flex; gap:8px; z-index:5;
}
.hs-dot {
  width:10px; height:10px; border-radius:5px;
  background:rgba(255,255,255,.35); border:none; cursor:pointer;
  transition:var(--tr); padding:0;
}
.hs-dot.active { background:var(--gold); width:26px; }

/* Progress */
.hs-progress { position:absolute; bottom:0; left:0; right:0; height:3px; background:rgba(255,255,255,.1); z-index:5; }
#hsProgress { height:100%; background:var(--gold); width:0%; transition:width .1s linear; }

/* ── GENERAL SECTIONS ── */
.section { padding:80px 0; }
.section-alt { background:var(--off); }
.section-header { text-align:center; margin-bottom:52px; }
.eyebrow {
  font-size:12px; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:var(--blue-lt);
  display:block; margin-bottom:10px;
}
.section-header h2 { font-size:clamp(1.8rem,3vw,2.6rem); margin-bottom:12px; }
.section-header p { color:var(--muted); max-width:560px; margin:0 auto; font-size:16px; }

/* ── SERVICE CARDS ── */
.cards-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.service-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:40px 30px; text-align:center;
  transition:all 0.35s cubic-bezier(.4,0,.2,1); position:relative; overflow:hidden;
  box-shadow:0 10px 30px -12px rgba(10,22,40,.08);
}
.service-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:4px;
  background:linear-gradient(90deg,var(--blue-lt),var(--gold));
  transform:scaleX(0); transition:var(--tr); transform-origin:left;
}
.service-card:hover { transform:translateY(-10px); box-shadow:0 20px 40px -15px rgba(10,22,40,.15); border-color:transparent; }
.service-card:hover::before { transform:scaleX(1); }
.service-icon {
  width:72px; height:72px; background:linear-gradient(135deg,var(--off),#e1eff5);
  border-radius:20px; font-size:32px;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 24px; transition:var(--tr);
}
.service-card:hover .service-icon { background:linear-gradient(135deg,var(--blue-lt),var(--blue)); color:white; transform:rotate(-5deg) scale(1.1); }
.service-card h3 { font-size:18px; font-weight:700; margin-bottom:12px; font-family:'DM Sans',sans-serif; color:var(--navy); }
.service-card p { font-size:14px; color:var(--muted); line-height:1.6; }
.service-card a { display:inline-block; margin-top:20px; font-size:14px; font-weight:700; color:var(--blue-lt); transition:var(--tr); }
.service-card a:hover { color:var(--blue); padding-left:5px; }

/* ── FEATURES ── */
.features-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:24px; }
.feature-item {
  display:flex; gap:14px; align-items:flex-start;
  padding:22px; background:var(--white);
  border:1px solid var(--border); border-radius:var(--r);
  transition:var(--tr);
}
.feature-item:hover { box-shadow:var(--shadow); transform:translateY(-3px); }
.feature-icon {
  width:46px; height:46px; background:linear-gradient(135deg,var(--blue-lt),var(--blue));
  border-radius:12px; display:flex; align-items:center; justify-content:center;
  font-size:20px; flex-shrink:0; color:white;
}
.feature-item h4 { font-size:15px; margin-bottom:4px; font-family:'DM Sans',sans-serif; font-weight:600; }
.feature-item p  { font-size:13.5px; color:var(--muted); }

/* ── CTA BANNER ── */
.cta-banner { background:linear-gradient(135deg,var(--navy),var(--blue)); color:var(--white); padding:64px 0; text-align:center; }
.cta-banner h2 { color:var(--white); font-size:2rem; margin-bottom:12px; }
.cta-banner p  { color:rgba(255,255,255,.75); margin-bottom:28px; font-size:16px; }

/* ── PAGE HERO ── */
.page-hero { background:linear-gradient(135deg,var(--navy),var(--blue-lt)); color:var(--white); padding:60px 0 48px; text-align:center; }
.breadcrumb { font-size:13px; color:rgba(255,255,255,.6); margin-bottom:12px; }
.breadcrumb a { color:var(--gold-lt); }
.page-hero h1 { color:var(--white); font-size:clamp(1.8rem,3vw,2.8rem); }
.page-hero p  { color:rgba(255,255,255,.75); margin-top:12px; max-width:580px; margin-left:auto; margin-right:auto; }

/* ── SERVICE DETAIL ── */
.service-detail-grid { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
.service-detail-content h2 { margin-bottom:14px; }
.service-detail-content p { color:var(--muted); margin-bottom:18px; }
.checklist { margin:16px 0; }
.checklist li { display:flex; gap:12px; margin-bottom:12px; font-size:15px; }
.checklist li::before {
  content:'✓'; color:var(--white); background:var(--blue-lt);
  width:22px; height:22px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:12px; font-weight:700; flex-shrink:0; margin-top:2px;
}

/* ── ENQUIRY CARD ── */
.enquiry-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:32px;
  box-shadow:var(--shadow); position:sticky; top:90px;
}
.enquiry-card h3 { margin-bottom:4px; font-size:1.25rem; }
.enquiry-card p  { color:var(--muted); font-size:14px; margin-bottom:20px; }
.form-group { margin-bottom:16px; }
.form-group label { display:block; font-size:13px; font-weight:600; color:var(--navy); margin-bottom:5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:11px 14px;
  border:1.5px solid var(--border); border-radius:8px;
  font-family:'DM Sans',sans-serif; font-size:14px; color:var(--text);
  background:var(--white); outline:none; transition:var(--tr);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--blue-lt); box-shadow:0 0 0 3px rgba(33,85,163,.1); }
.form-group textarea { resize:vertical; min-height:88px; }
.btn-full { width:100%; display:block; }

/* ── CALCULATOR ── */
.calc-card { background:var(--white); border:1px solid var(--border); border-radius:var(--r-lg); padding:40px; box-shadow:var(--shadow); max-width:700px; margin:0 auto; }
.calc-tabs { display:flex; gap:8px; margin-bottom:28px; flex-wrap:wrap; }
.calc-tab { padding:9px 20px; border-radius:30px; font-size:14px; font-weight:600; border:2px solid var(--border); background:var(--white); cursor:pointer; color:var(--muted); transition:var(--tr); }
.calc-tab.active,.calc-tab:hover { background:var(--blue-lt); border-color:var(--blue-lt); color:var(--white); }
.range-group { margin-bottom:22px; }
.range-group label { display:flex; justify-content:space-between; font-size:14px; font-weight:600; color:var(--navy); margin-bottom:8px; }
.range-group label span { color:var(--blue-lt); font-weight:700; }
input[type="range"] { width:100%; height:6px; border-radius:3px; background:var(--border); outline:none; cursor:pointer; accent-color:var(--blue-lt); }
.calc-result {
  background:linear-gradient(135deg,var(--navy),var(--blue));
  border-radius:var(--r); padding:24px;
  display:grid; grid-template-columns:1fr 1fr 1fr; gap:16px;
  margin-top:24px; text-align:center; color:var(--white);
}
.res-label { font-size:12px; color:rgba(255,255,255,.65); display:block; margin-bottom:5px; }
.res-value { font-family:'Playfair Display',serif; font-size:1.5rem; color:var(--gold-lt); font-weight:700; display:block; }

/* ── BLOG ── */
.blog-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:26px; }
.blog-card { background:var(--white); border:1px solid var(--border); border-radius:var(--r-lg); overflow:hidden; transition:var(--tr); }
.blog-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.blog-thumb { height:170px; background:linear-gradient(135deg,var(--navy),var(--blue-lt)); display:flex; align-items:center; justify-content:center; font-size:54px; }
.blog-content { padding:22px; }
.blog-tag { font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--blue-lt); background:#e1eff5; padding:4px 10px; border-radius:20px; display:inline-block; margin-bottom:10px; }
.blog-card h3 { font-size:16px; margin-bottom:8px; font-family:'DM Sans',sans-serif; font-weight:600; line-height:1.4; }
.blog-card p  { font-size:13.5px; color:var(--muted); margin-bottom:14px; }
.blog-meta { font-size:12px; color:var(--muted); display:flex; gap:10px; }

/* ── CONTACT ── */
.contact-grid { display:grid; grid-template-columns:1fr 1.5fr; gap:44px; align-items:start; }
.contact-info-card { background:linear-gradient(135deg,var(--navy),var(--blue)); color:var(--white); border-radius:var(--r-lg); padding:36px; }
.contact-info-card h3 { color:var(--white); margin-bottom:8px; font-size:1.35rem; }
.contact-info-card>p { color:rgba(255,255,255,.7); margin-bottom:24px; font-size:14px; }
.contact-detail { display:flex; gap:14px; margin-bottom:18px; align-items:flex-start; }
.contact-detail-icon { width:40px; height:40px; background:rgba(255,255,255,.1); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.contact-detail h5 { color:var(--gold-lt); font-size:11px; text-transform:uppercase; letter-spacing:.1em; font-family:'DM Sans',sans-serif; margin-bottom:3px; }
.contact-detail p { color:rgba(255,255,255,.85); font-size:14px; }
.contact-detail a { color:rgba(255,255,255,.85); }
.contact-detail a:hover { color:var(--gold-lt); }
.contact-form-card { background:var(--white); border:1px solid var(--border); border-radius:var(--r-lg); padding:36px; box-shadow:var(--shadow); }
.contact-form-card h3 { margin-bottom:4px; }
.contact-form-card>p { color:var(--muted); font-size:14px; margin-bottom:20px; }

/* ── ABOUT ── */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.about-img-block { border-radius:var(--r-lg); height:540px; overflow:hidden; box-shadow:var(--shadow-lg); position:relative; background:var(--off); border:1px solid var(--border); }
.about-img-block img { width:100%; height:100%; object-fit:cover; object-position:top center; display:block; }
.about-img-block.no-img { display:flex; align-items:center; justify-content:center; flex-direction:column; gap:14px; color:rgba(255,255,255,.9); font-size:72px; }
.team-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(190px,1fr)); gap:22px; }
.team-card { background:var(--white); border:1px solid var(--border); border-radius:var(--r-lg); padding:26px 18px; text-align:center; transition:var(--tr); }
.team-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.team-avatar { width:68px; height:68px; background:linear-gradient(135deg,var(--blue),var(--blue-lt)); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:28px; margin:0 auto 14px; color:white; }
.team-card h4 { font-size:15px; font-family:'DM Sans',sans-serif; font-weight:600; }
.team-card span { font-size:13px; color:var(--muted); }

/* ── FOOTER ── */
.footer { background:var(--blue-dk); color:rgba(255,255,255,.75); padding:60px 0 0; }
.footer-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr 1.3fr; gap:36px; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-brand .logo-text { color:var(--white); }
.footer-brand p { font-size:14px; color:rgba(255,255,255,.6); margin-top:12px; line-height:1.7; }
.footer-social { display:flex; gap:10px; margin-top:18px; }
.footer-social a { width:36px; height:36px; background:rgba(255,255,255,.08); border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:700; color:rgba(255,255,255,.7); transition:var(--tr); }
.footer-social a:hover { background:var(--gold); color:var(--navy); }
.footer-col h4 { font-family:'DM Sans',sans-serif; font-size:13px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--white); margin-bottom:18px; }
.footer-col ul li { margin-bottom:9px; }
.footer-col ul a { font-size:14px; color:var(--white); transition:var(--tr); }
.footer-col ul a:hover { color:var(--gold-lt); padding-left:4px; }
.footer-col address p { font-size:13.5px; color:var(--white); margin-bottom:7px; }
.footer-col address a { color:var(--white); }
.footer-col address a:hover { color:var(--gold-lt); }
.footer-bottom { padding:18px 0; background:rgba(0,0,0,.15); }
.footer-bottom p { text-align:center; font-size:13px; color:rgba(255,255,255,.8); font-weight:500; }

/* ── CALCULATOR ICON GRID ── */
.calc-icon-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(110px,1fr));gap:14px;margin-bottom:16px;}
.calc-icon-btn{display:flex;flex-direction:column;align-items:center;gap:8px;padding:16px 10px;background:var(--white);border:1.5px solid var(--border);border-radius:var(--r);text-align:center;font-size:12px;font-weight:500;color:var(--navy);transition:var(--tr);cursor:pointer;}
.calc-icon-btn:hover,.calc-icon-btn.active{border-color:var(--blue-lt);background:var(--off);color:var(--blue-lt);transform:translateY(-3px);box-shadow:var(--shadow);}
.calc-icon-btn img{width:44px;height:44px;object-fit:contain;}

/* ── FORM ROW 2 ── */
@media (max-width:600px){.form-row-2{display:block!important;}.form-row-2 .form-group{margin-bottom:16px;}}

.success-msg { background:#d4edda; color:#155724; border:1px solid #c3e6cb; border-radius:8px; padding:12px 16px; margin-bottom:16px; font-size:14px; display:none; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet 768-1024 */
@media (max-width:1024px) {
  .footer-grid { grid-template-columns:1fr 1fr; gap:28px; }
  .hero-slider  { height:auto; min-height:500px; }
}

/* 900px */
@media (max-width:900px) {
  .section { padding:60px 0; }
  .service-detail-grid, .contact-grid, .about-grid { grid-template-columns:1fr; gap:28px; }
  .hs-inner { grid-template-columns:1fr; gap:24px; padding:56px 24px 80px; }
  .hs-visual { display:none; }
  .hero-slider { min-height:420px; height:auto; }
  .calc-result { grid-template-columns:1fr 1fr; }
  .about-img-block { height:280px; }
  .enquiry-card { position:static; }
  .cards-grid { grid-template-columns:repeat(2,1fr); }
  .features-grid { grid-template-columns:repeat(2,1fr); }
}

/* Mobile 768 — MAIN BREAKPOINT */
@media (max-width:768px) {
  /* Hide desktop nav, show hamburger */
  .desktop-nav { display:none; }
  .hbg { display:flex; }

  .nav-container { height:60px; padding:0 16px; }
  .logo-text { font-size:18px; }
  .logo-icon  { width:36px; height:36px; font-size:18px; }

  /* topbar compact */
  .topbar { font-size:12px; gap:8px; padding:6px 16px; flex-direction:column; align-items:center; }
  .topbar-inner { flex-direction:column; align-items:center; gap:4px; }

  /* Hero slider */
  .hero-slider { min-height:380px; }
  .hs-content h1 { font-size:1.55rem; }
  .hs-content p  { font-size:15px; margin-bottom:22px; }
  .hs-btns { flex-direction:column; gap:10px; }
  .hs-btns .btn { width:100%; max-width:280px; }
  .hs-inner { padding:50px 16px 76px; }
  .hs-prev { left:10px; } .hs-next { right:10px; }
  .hs-prev,.hs-next { width:38px; height:38px; font-size:22px; }

  /* Sections */
  .section { padding:48px 0; }
  .section-header { margin-bottom:36px; }
  .section-header h2 { font-size:1.6rem; }
  .cards-grid { grid-template-columns:1fr 1fr; gap:14px; }
  .features-grid { grid-template-columns:1fr; }
  .blog-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:24px; }

  /* Page hero */
  .page-hero { padding:44px 0 32px; }
  .page-hero h1 { font-size:1.7rem; }

  /* CTA */
  .cta-banner { padding:44px 0; }
  .cta-banner h2 { font-size:1.5rem; }

  /* Calculator */
  .calc-card { padding:22px 16px; }
  .calc-result { grid-template-columns:1fr; gap:10px; }
  .calc-tabs { gap:6px; }
  .calc-tab { padding:8px 14px; font-size:13px; }

  /* Forms */
  .enquiry-card, .contact-form-card, .contact-info-card { padding:22px 16px; }
  .contact-grid { grid-template-columns:1fr; }

  /* Contact form 2-col → 1-col */
  .form-row-2 { grid-template-columns:1fr !important; }
}

/* Small mobile */
@media (max-width:480px) {
  .container { padding:0 14px; }
  .cards-grid { grid-template-columns:1fr; }
  .hs-content h1 { font-size:1.35rem; }
  .hs-badge { font-size:10px; padding:5px 12px; }
  .btn { padding:12px 20px; font-size:14px; }
  .stat-card .num { font-size:1.6rem; }
  .section-header h2 { font-size:1.4rem; }
  .feature-item { padding:16px; }
  .cta-banner h2 { font-size:1.3rem; }
  .page-hero h1 { font-size:1.45rem; }
  .footer { padding:44px 0 0; }
  .footer-bottom p { font-size:11px; }
  .topbar { display:none; } /* very small – hide to save space */
}

/* ============================================================
   HOME PAGE – NEW SECTIONS
   ============================================================ */

/* ── HOME ABOUT GRID ── */
.home-about-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;}
.home-about-text h2{font-size:clamp(1.6rem,2.5vw,2.2rem);margin-bottom:16px;}
.home-about-text p{color:var(--muted);margin-bottom:12px;}
.home-about-cards{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.hab-card{background:var(--white);border:1px solid var(--border);border-left:3px solid var(--blue-lt);border-radius:var(--r);padding:18px 16px;transition:var(--tr);}
.hab-card:hover{box-shadow:var(--shadow);transform:translateY(-3px);}
.hab-card h4{font-size:14px;font-weight:700;font-family:'DM Sans',sans-serif;color:var(--navy);margin-bottom:6px;}
.hab-card p{font-size:13px;color:var(--muted);}

/* ── INFO SPLIT ── */
.info-split{display:grid;grid-template-columns:1fr 1fr;gap:0;border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--shadow-lg);}
.info-chart-box{background:var(--navy);padding:48px 40px;display:flex;align-items:center;justify-content:center;}
.info-chart-inner{width:100%;}
.chart-visual{display:flex;align-items:flex-end;gap:16px;height:200px;margin-bottom:12px;padding:0 8px;}
.chart-bar{flex:1;background:var(--c,var(--blue-lt));border-radius:6px 6px 0 0;height:var(--h,50%);position:relative;transition:height .6s ease;display:flex;align-items:flex-start;justify-content:center;}
.cb-val{font-size:11px;font-weight:700;color:#fff;margin-top:6px;}
.chart-labels{display:flex;gap:16px;padding:0 8px;}
.chart-labels span{flex:1;text-align:center;font-size:11px;color:rgba(255,255,255,.6);font-family:'DM Sans',sans-serif;}
.chart-caption{text-align:center;font-size:12px;color:rgba(255,255,255,.45);margin-top:14px;}
.info-text-box{background:var(--white);padding:48px 40px;display:flex;flex-direction:column;justify-content:center;}
.info-text-box h2{font-size:clamp(1.5rem,2.5vw,2rem);margin-bottom:14px;}
.info-text-box p{color:var(--muted);margin-bottom:12px;}

/* ── WHY GRID ── */
.why-grid{display:grid;grid-template-columns:1fr 1.4fr;gap:56px;align-items:center;}
.why-image{border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--shadow-lg);border:1px solid var(--border);background:var(--off);}
.why-image img{width:100%;height:540px;object-fit:cover;object-position:top center;display:block;}
.why-content h2{font-size:clamp(1.6rem,2.5vw,2.2rem);margin-bottom:12px;}
.why-content>p{color:var(--muted);margin-bottom:4px;}

/* ── FAQ + CALLBACK ── */
.faq-callback-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start;}
.callback-box h3,.faq-box h3{font-size:1.4rem;margin-bottom:8px;}
.callback-box>p,.faq-box>p{color:var(--muted);font-size:14px;margin-bottom:20px;}
.cb-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.btn-blue{background:var(--blue-lt);color:#fff;border:2px solid var(--blue-lt);}
.btn-blue:hover{background:var(--blue);border-color:var(--blue);transform:translateY(-2px);}
.btn-full{width:100%;display:block;text-align:center;}

/* FAQ accordion */
.faq-list{margin-top:8px;}
.faq-item{border-bottom:1px solid var(--border);}
.faq-q{display:flex;justify-content:space-between;align-items:center;width:100%;padding:14px 0;background:none;border:none;cursor:pointer;text-align:left;gap:12px;}
.faq-q span:first-child{font-size:14px;font-weight:600;color:var(--navy);font-family:'DM Sans',sans-serif;}
.faq-icon{font-size:18px;color:var(--blue-lt);font-weight:700;flex-shrink:0;line-height:1;}
.faq-item.open .faq-q span:first-child{color:var(--blue-lt);}
.faq-a{padding:0 0 14px;}
.faq-a p{font-size:14px;color:var(--muted);}

/* ── FUN SECTION ── */
.fun-section{background:linear-gradient(135deg,var(--navy),var(--blue));padding:60px 0;}
.fun-row{display:flex;justify-content:space-around;align-items:center;flex-wrap:wrap;gap:24px;}
.fun-item{text-align:center;color:#fff;}
.fun-num{display:block;font-family:'Playfair Display',serif;font-size:2.8rem;font-weight:700;color:var(--gold-lt);line-height:1;}
.fun-lbl{display:block;font-size:13px;color:rgba(255,255,255,.7);margin-top:6px;font-family:'DM Sans',sans-serif;}

/* ── TESTIMONIALS GRID ── */
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.testi-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r-lg);padding:28px;box-shadow:var(--shadow);transition:var(--tr);}
.testi-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);}
.testi-stars{color:var(--gold);font-size:16px;margin-bottom:14px;letter-spacing:2px;}
.testi-card>p{font-size:14px;color:var(--muted);font-style:italic;line-height:1.7;margin-bottom:20px;}
.testi-author{display:flex;align-items:center;gap:12px;}
.testi-avatar{width:42px;height:42px;border-radius:50%;background:linear-gradient(135deg,var(--blue),var(--blue-lt));color:#fff;display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:700;flex-shrink:0;}
.testi-author strong{display:block;font-size:14px;font-family:'DM Sans',sans-serif;font-weight:700;color:var(--navy);}
.testi-author span{display:block;font-size:12px;color:var(--muted);}

/* ── RESPONSIVE – NEW SECTIONS ── */
@media (max-width:1024px){
  .info-split{grid-template-columns:1fr;}
  .info-chart-box{padding:36px 28px;}
  .chart-visual{height:160px;}
}
@media (max-width:900px){
  .home-about-grid{grid-template-columns:1fr;gap:32px;}
  .why-grid{grid-template-columns:1fr;gap:28px;}
  .why-image img{height:280px;}
  .faq-callback-grid{grid-template-columns:1fr;gap:32px;}
  .testi-grid{grid-template-columns:1fr 1fr;}
  .fun-row{gap:16px;}
  .fun-num{font-size:2.2rem;}
}
@media (max-width:768px){
  .home-about-cards{grid-template-columns:1fr 1fr;}
  .info-text-box{padding:32px 20px;}
  .info-chart-box{padding:32px 20px;}
  .testi-grid{grid-template-columns:1fr;}
  .cb-row{grid-template-columns:1fr;}
  .fun-row{gap:12px;}
  .fun-item{min-width:120px;}
}
@media (max-width:480px){
  .home-about-cards{grid-template-columns:1fr;}
  .fun-num{font-size:1.8rem;}
  .fun-item{min-width:100px;}
}
