/* ==========================================================================
   Green Solar Energy — Main Stylesheet
   Palette derived from company logo (green #0C9054 / amber #F09C24 / ink #1B1B1C)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
    --green: #0C9054;
    --green-600: #0A7C48;
    --green-700: #07663A;
    --green-400: #21B26B;
    --green-200: #A9E3C4;
    --green-100: #E4F5EB;
    --green-50: #F2FAF5;

    --amber: #F09C24;
    --amber-600: #D4841A;
    --amber-200: #FBDCAE;
    --amber-100: #FDF0DC;
    --amber-50: #FFF9F0;

    --ink: #14201A;
    --ink-2: #1B2B23;
    --body: #55665D;
    --muted: #7B8B82;
    --line: #E1EAE5;
    --white: #FFFFFF;

    --bg-mint: #F2FAF5;
    --bg-cream: #FFF9F0;
    --bg-cool: #F4F8F7;
    --bg-sand: #FBF7EF;
    --bg-sky: #F1F7FA;

    --radius: 18px;
    --radius-sm: 12px;
    --shadow-sm: 0 6px 20px rgba(20, 32, 26, .06);
    --shadow: 0 18px 45px rgba(20, 32, 26, .10);
    --shadow-lg: 0 28px 70px rgba(20, 32, 26, .16);

    --ff-head: 'Outfit', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --ff-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

    --container: 1240px;
    --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--body);
    background: var(--white);
    overflow-x: hidden;
}
img, svg, video, iframe { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; transition: .25s ease; }
a:hover { color: var(--green-700); }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-head);
    color: var(--ink);
    margin: 0 0 .6em;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -.01em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--green); color: #fff; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { position: relative; padding: 96px 0; }
.section--sm { padding: 70px 0; }
.bg-white { background: var(--white); }
.bg-mint { background: var(--bg-mint); }
.bg-cream { background: var(--bg-cream); }
.bg-cool { background: var(--bg-cool); }
.bg-sand { background: var(--bg-sand); }
.bg-sky { background: var(--bg-sky); }
.bg-ink { background: var(--ink); color: #C9D6CE; }
.bg-ink h2, .bg-ink h3, .bg-ink h4 { color: #fff; }

.grid { display: grid; gap: 26px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.text-center { text-align: center; }
.d-none-sm { display: inline-flex; }

/* ---------- Section divider (closes every section) ---------- */
.sec-divider { position: relative; height: 46px; width: 100%; }
.sec-divider::before {
    content: "";
    position: absolute; left: 0; right: 0; top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-200) 18%, var(--amber-200) 50%, var(--green-200) 82%, transparent);
}
.sec-divider::after {
    content: "";
    position: absolute; left: 50%; top: 50%;
    width: 13px; height: 13px;
    transform: translate(-50%, -50%) rotate(45deg);
    background: inherit;
    border: 2px solid var(--green);
    border-radius: 3px;
}
.sec-divider.bg-ink::before { background: linear-gradient(90deg, transparent, rgba(255,255,255,.16) 25%, rgba(240,156,36,.6) 50%, rgba(255,255,255,.16) 75%, transparent); }
.sec-divider.bg-ink::after { border-color: var(--amber); }

/* ---------- Section heading ---------- */
.sec-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.sec-head.left { margin-inline: 0; text-align: left; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--ff-head);
    font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
    color: var(--green-700);
    background: var(--green-100);
    border: 1px solid var(--green-200);
    padding: 7px 16px; border-radius: 999px;
    margin-bottom: 18px;
}
.eyebrow i { color: var(--amber); }
.sec-head h2 { margin-bottom: .35em; }
.sec-head .sub {
    font-family: var(--ff-head);
    font-size: 1.06rem; font-weight: 600; color: var(--green-700);
    margin-bottom: .5rem;
}
.sec-head p { color: var(--body); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--ff-head); font-weight: 600; font-size: .98rem;
    padding: 14px 28px; border-radius: 999px; border: 2px solid transparent;
    cursor: pointer; transition: .28s ease; white-space: nowrap;
}
.btn-primary { background: var(--green); color: #fff; border-color: var(--green); box-shadow: 0 10px 24px rgba(12,144,84,.25); }
.btn-primary:hover { background: var(--green-700); border-color: var(--green-700); color: #fff; transform: translateY(-2px); }
.btn-amber { background: var(--amber); color: #2A1B03; border-color: var(--amber); box-shadow: 0 10px 24px rgba(240,156,36,.28); }
.btn-amber:hover { background: var(--amber-600); border-color: var(--amber-600); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--green-700); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-light { background: #fff; color: var(--green-700); border-color: #fff; }
.btn-light:hover { background: var(--amber); border-color: var(--amber); color: #2A1B03; }
.btn-lg { padding: 16px 34px; font-size: 1.03rem; }

/* ---------- Topbar ---------- */
.topbar {
    background: var(--ink);
    color: #C6D3CB;
    font-size: .9rem;
    padding: 9px 0;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.topbar ul { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar a, .topbar li { color: #C6D3CB; display: inline-flex; align-items: center; gap: 8px; }
.topbar a:hover { color: var(--amber); }
.topbar i { color: var(--green-400); }
.topbar .socials a {
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(255,255,255,.08); justify-content: center;
}
.topbar .socials a:hover { background: var(--green); color: #fff; }

/* ---------- Header ---------- */
.header { position: relative; z-index: 90; }
.navbar {
    background: #fff;
    border-bottom: 1px solid var(--line);
    transition: .3s ease;
}
.navbar.is-stuck {
    position: fixed; top: 0; left: 0; right: 0;
    box-shadow: 0 10px 30px rgba(20,32,26,.10);
    animation: slideDown .4s ease;
}
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--header-h); }
.brand img { height: 52px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li > a {
    font-family: var(--ff-head); font-weight: 600; color: var(--ink);
    padding: 12px 15px; display: inline-flex; align-items: center; gap: 7px; border-radius: 10px;
    font-size: .98rem;
}
.nav-menu > li > a:hover, .nav-menu > li.active > a { color: var(--green); background: var(--green-50); }
.has-drop { position: relative; }
.has-drop > a::after { content: "\f107"; font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free"; font-weight: 900; font-size: .8rem; }
.dropdown {
    position: absolute; top: calc(100% + 10px); left: 0; min-width: 290px;
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    box-shadow: var(--shadow); padding: 10px; opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: .25s ease; z-index: 20;
}
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
    display: block; padding: 9px 14px; border-radius: 9px;
    color: var(--ink); font-size: .93rem; font-weight: 500;
}
.dropdown a:hover { background: var(--green-50); color: var(--green-700); padding-left: 20px; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-call { display: flex; align-items: center; gap: 12px; }
.nav-call .ic {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--green-100); color: var(--green-700);
    display: grid; place-items: center; border: 2px solid var(--green-200);
}
.nav-call span { display: block; font-size: .78rem; color: var(--muted); line-height: 1.3; }
.nav-call strong { font-family: var(--ff-head); color: var(--ink); font-size: 1rem; }
.nav-toggle {
    display: none; width: 46px; height: 46px; border-radius: 12px;
    background: var(--green); color: #fff; border: 0; font-size: 1.2rem; cursor: pointer;
}

/* mobile drawer */
.mobile-menu {
    position: fixed; inset: 0 auto 0 0; width: min(340px, 86vw);
    background: #fff; z-index: 200; padding: 24px; overflow-y: auto;
    transform: translateX(-105%); transition: transform .35s ease;
    box-shadow: var(--shadow-lg);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .brand img { height: 46px; }
.mm-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.mm-close { background: var(--green-50); border: 0; width: 40px; height: 40px; border-radius: 10px; color: var(--green-700); font-size: 1.1rem; cursor: pointer; }
.mm-list > li { border-bottom: 1px solid var(--line); }
.mm-list a { display: block; padding: 13px 2px; font-family: var(--ff-head); font-weight: 600; color: var(--ink); }
.mm-list .sub-toggle { display: flex; align-items: center; justify-content: space-between; }
.mm-sub { display: none; padding: 0 0 10px 12px; }
.mm-sub.open { display: block; }
.mm-sub a { font-weight: 500; font-size: .93rem; color: var(--body); padding: 8px 2px; }
.mm-contact { margin-top: 26px; display: grid; gap: 12px; font-size: .92rem; }
.mm-contact i { color: var(--green); width: 20px; }
.overlay { position: fixed; inset: 0; background: rgba(14,26,20,.55); opacity: 0; visibility: hidden; transition: .3s; z-index: 150; }
.overlay.show { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--ink); }
.hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
}
.hero-video-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(100deg, rgba(10,24,17,.90) 0%, rgba(10,24,17,.76) 45%, rgba(10,24,17,.34) 100%);
}
.hero-inner { position: relative; z-index: 3; padding: 130px 0 140px; max-width: 760px; }
.hero .eyebrow { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.22); color: #fff; }
.hero h1 { color: #fff; margin-bottom: .4em; }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero p { color: #D5E2DA; font-size: 1.1rem; max-width: 620px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-points { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 38px; }
.hero-points li { display: flex; align-items: center; gap: 10px; color: #E5EFE9; font-weight: 500; }
.hero-points i { color: var(--amber); }

/* ---------- Feature strip ---------- */
.feature-strip {
    margin-top: -88px; position: relative; z-index: 10;
    padding-top: 0; padding-bottom: 76px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0, rgba(255,255,255,0) 88px, #fff 88px) !important;
}
.feature-strip .grid { gap: 24px; }
.feat-card {
    background: #fff;
    border: 2px solid var(--green-200);
    border-radius: var(--radius);
    padding: 30px 26px;
    box-shadow: var(--shadow-sm);
    position: relative; overflow: hidden;
    transition: .3s ease;
}
.feat-card:nth-child(2) { border-color: var(--amber-200); }
.feat-card:nth-child(3) { border-color: #BFE0D3; }
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--green); }
.feat-ic {
    width: 62px; height: 62px; border-radius: 16px;
    display: grid; place-items: center; font-size: 1.6rem;
    background: var(--green-100); color: var(--green-700);
    border: 2px solid var(--green-200); margin-bottom: 18px;
}
.feat-card:nth-child(2) .feat-ic { background: var(--amber-100); color: var(--amber-600); border-color: var(--amber-200); }
.feat-card h4 { margin-bottom: .4em; }
.feat-card p { font-size: .95rem; }
.feat-num {
    position: absolute; right: 18px; bottom: 6px;
    font-family: var(--ff-head); font-size: 3.4rem; font-weight: 800;
    color: var(--green-50); line-height: 1; pointer-events: none;
}

/* ---------- About (overlapping rectangles) ---------- */
.about-grid { display: grid; grid-template-columns: 1.02fr 1fr; gap: 64px; align-items: center; }
.about-stack { position: relative; padding: 0 0 90px 0; }
.about-stack .img-1 {
    width: 78%; border-radius: 6px; overflow: hidden;
    border: 8px solid #fff; box-shadow: var(--shadow);
}
.about-stack .img-2 {
    position: absolute; right: 0; bottom: 0; width: 62%;
    border-radius: 6px; overflow: hidden;
    border: 8px solid #fff; box-shadow: var(--shadow-lg);
}
.about-stack img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-stack .img-1 img { aspect-ratio: 4/3.2; }
.about-stack .img-2 img { aspect-ratio: 4/3.4; }
.exp-badge {
    position: absolute; left: 0; bottom: 96px; z-index: 4;
    background: var(--green); color: #fff; border-radius: 4px;
    padding: 18px 22px; text-align: center; box-shadow: var(--shadow);
    border: 3px solid #fff;
}
.exp-badge strong { display: block; font-family: var(--ff-head); font-size: 2.1rem; line-height: 1; }
.exp-badge span { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.about-list { display: grid; gap: 14px; margin: 26px 0 30px; }
.about-list li { display: flex; gap: 12px; align-items: flex-start; }
.about-list i { color: var(--green); margin-top: 6px; }
.about-list strong { font-family: var(--ff-head); color: var(--ink); display: block; }
.about-cta { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.about-sign { display: flex; align-items: center; gap: 14px; }
.about-sign .ic { width: 52px; height: 52px; border-radius: 50%; background: var(--amber-100); color: var(--amber-600); display: grid; place-items: center; font-size: 1.3rem; border: 2px solid var(--amber-200); }

/* ---------- Marquee carousels (infinite loop) ---------- */
.marquee { position: relative; overflow: hidden; }
.marquee::before, .marquee::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 3; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--fade, #fff), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--fade, #fff), transparent); }
.marquee-track { display: flex; gap: 26px; width: max-content; animation: marquee var(--speed, 46s) linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 13px)); } }
.marquee-item { width: 350px; flex: 0 0 auto; }

/* why choose card */
.choose-card {
    background: #fff; border: 2px solid var(--green-200); border-radius: var(--radius);
    padding: 30px 26px; height: 100%; transition: .3s ease;
}
.choose-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-5px); }
.choose-card .ic {
    width: 60px; height: 60px; border-radius: 14px; display: grid; place-items: center;
    font-size: 1.5rem; background: var(--green-100); color: var(--green-700);
    border: 2px solid var(--green-200); margin-bottom: 18px;
}
.marquee-item:nth-child(even) .choose-card .ic { background: var(--amber-100); color: var(--amber-600); border-color: var(--amber-200); }
.marquee-item:nth-child(3n) .choose-card { border-color: var(--amber-200); }
.choose-card h4 { margin-bottom: .35em; font-size: 1.12rem; }
.choose-card p { font-size: .94rem; margin: 0; }

/* ---------- Services ---------- */
.svc-card {
    background: #fff; border: 2px solid var(--green-200); border-radius: var(--radius);
    overflow: hidden; display: flex; flex-direction: column; height: 100%;
    transition: .32s ease;
}
.svc-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-7px); }
.svc-thumb { position: relative; overflow: hidden; aspect-ratio: 16/11; background: var(--green-50); }
.svc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: .6s ease; }
.svc-card:hover .svc-thumb img { transform: scale(1.08); }
.svc-thumb .badge {
    position: absolute; left: 14px; top: 14px; z-index: 2;
    background: rgba(255,255,255,.94); color: var(--green-700);
    font-family: var(--ff-head); font-weight: 700; font-size: .74rem; letter-spacing: .08em;
    text-transform: uppercase; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--green-200);
}
.svc-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { font-size: 1.2rem; margin-bottom: .45em; }
.svc-body h3 a { color: var(--ink); }
.svc-body h3 a:hover { color: var(--green); }
.svc-body p { font-size: .94rem; flex: 1; }
.svc-link {
    display: inline-flex; align-items: center; gap: 9px; margin-top: 18px;
    font-family: var(--ff-head); font-weight: 600; font-size: .92rem; color: var(--green-700);
}
.svc-link i { transition: .25s; }
.svc-link:hover i { transform: translateX(5px); }

/* ---------- Script eyebrow ---------- */
.script-eyebrow {
    display: block;
    font-family: 'Caveat', 'Segoe Script', cursive;
    font-size: clamp(1.5rem, 2.6vw, 1.95rem);
    font-weight: 600;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 10px;
}
.sec-head h2 .accent, h2 .accent { color: var(--amber); }

/* ---------- PM Surya Ghar : image strip ---------- */
.pmsg-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 34px; }
.pmsg-strip figure {
    margin: 0; border-radius: 16px; overflow: hidden;
    border: 2px solid var(--green-200); box-shadow: var(--shadow-sm); background: var(--green-50);
}
.pmsg-strip img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: .5s ease; }
.pmsg-strip figure:hover img { transform: scale(1.06); }

/* ---------- Subsidy slab table ---------- */
.slab-card {
    background: #fff; border: 2px solid var(--green-200); border-radius: 18px;
    padding: 26px; box-shadow: var(--shadow-sm);
}
.slab-card-head { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 20px; }
.slab-card-head .ic {
    width: 40px; height: 40px; flex: 0 0 auto; border-radius: 11px; display: grid; place-items: center;
    background: var(--amber-100); color: var(--amber-600); border: 2px solid var(--amber-200);
}
.slab-card-head h3 { font-size: 1.12rem; margin: 0 0 4px; }
.slab-card-head p { font-size: .93rem; margin: 0; }
.slab-table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid var(--line); }
.slab-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.slab-table thead th {
    background: var(--green); color: #fff; text-align: left;
    font-family: var(--ff-head); font-weight: 700; font-size: .74rem;
    letter-spacing: .12em; text-transform: uppercase; padding: 15px 22px; white-space: nowrap;
}
.slab-table td { padding: 16px 22px; border-bottom: 1px solid var(--line); font-size: .96rem; color: var(--body); }
.slab-table tbody tr:last-child td { border-bottom: 0; }
.slab-table tbody tr:nth-child(even) { background: var(--amber-50); }
.slab-table td:last-child { font-family: var(--ff-head); font-weight: 700; color: var(--amber-600); white-space: nowrap; }
.slab-note { font-size: .86rem; color: var(--muted); margin-top: 14px; }

/* ---------- Info cards (What is / Why choose / How much) ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-card {
    background: #fff; border: 2px solid var(--line); border-radius: 18px;
    padding: 30px 28px; transition: .3s ease; height: 100%;
}
.info-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-6px); }
.info-card .ic {
    width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
    background: var(--amber-100); color: var(--amber-600); border: 2px solid var(--amber-200);
    font-size: 1.1rem; margin-bottom: 18px;
}
.info-card:nth-child(2) .ic { background: var(--green-100); color: var(--green-700); border-color: var(--green-200); }
.info-card h3 { font-size: 1.08rem; margin-bottom: .55em; }
.info-card p { font-size: .93rem; margin: 0; }
.info-card-img { display: none; }
.info-list { display: grid; gap: 11px; margin-top: 4px; }
.info-list li { display: flex; gap: 10px; font-size: .93rem; }
.info-list i { color: var(--green); margin-top: 6px; font-size: .82rem; }

/* ---------- System type cards (centred) ---------- */
.systype {
    background: #fff; border: 2px solid var(--green-200); border-radius: 18px;
    padding: 34px 28px; text-align: center; transition: .3s ease; height: 100%;
}
.systype:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--green); }
.systype .ic {
    width: 68px; height: 68px; margin: 0 auto 20px; border-radius: 50%;
    display: grid; place-items: center; font-size: 1.5rem;
    background: var(--green-100); color: var(--green-700); border: 2px solid var(--green-200);
}
.systype:nth-child(2) { border-color: var(--amber-200); }
.systype:nth-child(2) .ic { background: var(--amber-100); color: var(--amber-600); border-color: var(--amber-200); }
.systype:nth-child(3) { border-color: #BBD9E6; }
.systype:nth-child(3) .ic { background: var(--bg-sky); color: #2A7FB8; border-color: #BBD9E6; }
.systype h4 { margin-bottom: .45em; font-size: 1.14rem; }
.systype p { font-size: .93rem; margin: 0; }

/* ---------- Apply for subsidy ---------- */
.apply-grid { display: grid; grid-template-columns: .95fr 1.15fr; gap: 34px; align-items: stretch; }
.apply-hero {
    position: relative; overflow: hidden; border-radius: 20px; color: #fff;
    background: linear-gradient(155deg, #0A7C48 0%, #0C9054 55%, #12A45F 100%);
    padding: 44px 36px; display: flex; flex-direction: column; justify-content: center;
    box-shadow: var(--shadow);
}
.apply-hero::after {
    content: ""; position: absolute; right: -70px; top: -70px; width: 240px; height: 240px;
    border-radius: 50%; background: rgba(255,255,255,.08);
}
.apply-hero::before {
    content: ""; position: absolute; left: -50px; bottom: -60px; width: 180px; height: 180px;
    border-radius: 50%; background: rgba(255,255,255,.06);
}
.apply-hero > * { position: relative; z-index: 2; }
.apply-sun {
    width: 56px; height: 56px; margin: 0 auto 20px; border-radius: 50%;
    background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.3);
    display: grid; place-items: center; font-size: 1.4rem; color: var(--amber);
}
.apply-amt { text-align: center; font-family: var(--ff-head); font-size: clamp(2.4rem, 5vw, 3.2rem); font-weight: 800; line-height: 1; color: #fff; }
.apply-cap { text-align: center; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--amber); margin-top: 10px; }
.apply-list { display: grid; gap: 13px; margin-top: 28px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.18); }
.apply-list li { display: flex; gap: 12px; font-size: .95rem; color: #E8F6EE; }
.apply-list i { color: var(--amber); margin-top: 5px; font-size: .85rem; }
.phone-row { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.phone-row input { flex: 1; }
.phone-remove {
    width: 40px; height: 40px; flex: 0 0 auto; border-radius: 10px; cursor: pointer;
    border: 2px solid var(--line); background: #fff; color: var(--muted);
}
.phone-remove:hover { border-color: #E0A0A0; color: #C05555; }
.phone-add {
    background: none; border: 0; cursor: pointer; padding: 4px 0;
    font-family: var(--ff-head); font-weight: 600; font-size: .88rem; color: var(--green-700);
    display: inline-flex; align-items: center; gap: 7px;
}
.phone-add:hover { color: var(--amber-600); }
.phone-add[hidden] { display: none; }

/* ---------- PM Surya Ghar ---------- */
.pmsg { position: relative; overflow: hidden; }
.pmsg-top { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.pmsg-media { position: relative; padding-bottom: 70px; }
.pmsg-media .m1 { width: 80%; border: 8px solid #fff; box-shadow: var(--shadow); border-radius: 6px; overflow: hidden; }
.pmsg-media .m2 { position: absolute; right: 0; bottom: 0; width: 58%; border: 8px solid #fff; box-shadow: var(--shadow-lg); border-radius: 6px; overflow: hidden; }
.pmsg-media img { width: 100%; object-fit: cover; }
.pmsg-media .m1 img { aspect-ratio: 4/3; }
.pmsg-media .m2 img { aspect-ratio: 4/3; }
.subsidy-flag {
    position: absolute; left: 0; top: 18px; z-index: 5;
    background: var(--amber); color: #2A1B03; padding: 14px 20px; border-radius: 4px;
    border: 3px solid #fff; box-shadow: var(--shadow); text-align: center;
}
.subsidy-flag strong { display: block; font-family: var(--ff-head); font-size: 1.7rem; line-height: 1; }
.subsidy-flag span { font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }

.slab-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.slab {
    background: #fff; border: 2px solid var(--green-200); border-radius: var(--radius);
    padding: 26px; text-align: center; transition: .3s;
}
.slab:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--green); }
.slab .cap { font-family: var(--ff-head); font-weight: 700; color: var(--green-700); font-size: 1.05rem; }
.slab .amt { font-family: var(--ff-head); font-size: 2rem; font-weight: 800; color: var(--ink); margin: 8px 0 4px; }
.slab .amt small { font-size: .95rem; font-weight: 600; color: var(--muted); }
.slab p { font-size: .9rem; margin: 0; }
.slab.is-max { background: var(--amber-50); border-color: var(--amber); }
.slab.is-max .cap { color: var(--amber-600); }

.systype-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ---------- Forms ---------- */
.form-card {
    background: #fff; border: 2px solid var(--green-200); border-radius: var(--radius);
    padding: 34px; box-shadow: var(--shadow);
}
.form-card h3 { margin-bottom: .3em; }
.form-card > p { font-size: .95rem; margin-bottom: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--ff-head); font-size: .86rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
    width: 100%; padding: 13px 16px; border: 2px solid var(--line); border-radius: 10px;
    background: #FBFDFC; transition: .25s; font-size: .95rem; font-family: var(--ff-body);
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: 0; border-color: var(--green); background: #fff; box-shadow: 0 0 0 4px var(--green-100);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 12px; }
.form-msg {
    display: none; margin-top: 14px; padding: 12px 16px; border-radius: 10px;
    background: var(--green-100); border: 2px solid var(--green-200); color: var(--green-700);
    font-size: .92rem; font-weight: 600; line-height: 1.55;
}
.form-msg.show { display: block; }
.form-msg a { color: inherit; text-decoration: underline; font-weight: 700; }
.form-msg.is-error { background: #FDECEC; border-color: #F3B7B7; color: #B23A3A; }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.proc-card {
    position: relative; border-radius: var(--radius); padding: 34px 26px 30px;
    border: 2px solid; transition: .32s ease; height: 100%;
}
.proc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.proc-card:nth-child(1) { background: #EAF6F0; border-color: #9DD5BA; }
.proc-card:nth-child(2) { background: #FFF4E2; border-color: #F6CE92; }
.proc-card:nth-child(3) { background: #EAF3FA; border-color: #A6CBE4; }
.proc-card:nth-child(4) { background: #F4EEFA; border-color: #C3AEE0; }
.proc-num {
    position: absolute; right: 22px; top: 18px;
    font-family: var(--ff-head); font-size: 2.6rem; font-weight: 800; line-height: 1;
    color: rgba(20,32,26,.10);
}
.proc-ic {
    width: 64px; height: 64px; border-radius: 16px; background: #fff;
    display: grid; place-items: center; font-size: 1.6rem; color: var(--green-700);
    border: 2px solid currentColor; margin-bottom: 20px;
}
.proc-card:nth-child(1) .proc-ic { color: #0C9054; }
.proc-card:nth-child(2) .proc-ic { color: #D4841A; }
.proc-card:nth-child(3) .proc-ic { color: #2A7FB8; }
.proc-card:nth-child(4) .proc-ic { color: #7A52B3; }
.proc-card h4 { margin-bottom: .4em; }
.proc-card p { font-size: .93rem; margin: 0; color: #4C5A53; }

/* ---------- Counters ---------- */
.counter-wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.counter-item { text-align: center; padding: 24px 16px; border-right: 1px dashed rgba(255,255,255,.18); }
.counter-item:last-child { border-right: 0; }
.counter-item .ic { font-size: 2rem; color: var(--amber); margin-bottom: 10px; }
.counter-item .num { font-family: var(--ff-head); font-size: 2.7rem; font-weight: 800; color: #fff; line-height: 1; }
.counter-item p { color: #AEBFB6; margin: 6px 0 0; font-size: .95rem; }

/* ---------- Videos ---------- */
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.video-card {
    position: relative; border-radius: var(--radius); overflow: hidden;
    border: 3px solid var(--green); box-shadow: var(--shadow-sm); background: #0C1710;
    transition: .3s ease;
}
.video-card:nth-child(even) { border-color: var(--amber); }
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.video-card video { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; background: #0C1710; }
.video-card .v-sound {
    position: absolute; right: 12px; bottom: 12px; z-index: 3;
    width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(255,255,255,.75);
    background: rgba(12,23,16,.6); color: #fff; cursor: pointer; display: grid; place-items: center;
    font-size: .95rem; backdrop-filter: blur(4px); transition: .25s;
}
.video-card .v-sound:hover { background: var(--green); border-color: var(--green); }
.video-card .v-cap {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
    padding: 42px 16px 14px; color: #fff; font-family: var(--ff-head); font-weight: 600; font-size: .95rem;
    background: linear-gradient(transparent, rgba(8,18,12,.85));
    pointer-events: none;
}

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 16px; max-width: 900px; margin: 0 auto; }
.faq-item { background: #fff; border: 2px solid var(--green-200); border-radius: var(--radius); overflow: hidden; transition: .3s; }
.faq-item.open { border-color: var(--green); box-shadow: var(--shadow-sm); }
.faq-q {
    width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
    padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
    font-family: var(--ff-head); font-weight: 600; font-size: 1.05rem; color: var(--ink);
}
.faq-q i { color: var(--green); transition: .3s; flex: 0 0 auto; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a div { padding: 0 26px 24px; font-size: .96rem; }

/* ---------- Testimonials ---------- */
.tsm-card {
    background: #fff; border: 2px solid var(--green-200); border-radius: var(--radius);
    padding: 28px; height: 100%; display: flex; flex-direction: column; gap: 14px;
}
.tsm-card .stars { color: var(--amber); font-size: .9rem; letter-spacing: 2px; }
.tsm-card p { font-size: .95rem; font-style: italic; color: #4C5A53; flex: 1; }
.tsm-who { display: flex; align-items: center; gap: 14px; border-top: 1px dashed var(--line); padding-top: 16px; }
.tsm-av {
    width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
    font-family: var(--ff-head); font-weight: 700; color: #fff; background: var(--green);
    flex: 0 0 auto;
}
.marquee-item:nth-child(even) .tsm-av { background: var(--amber); color: #2A1B03; }
.marquee-item:nth-child(3n) .tsm-card { border-color: var(--amber-200); }
.tsm-who strong { display: block; font-family: var(--ff-head); color: var(--ink); font-size: .98rem; }
.tsm-who span { font-size: .84rem; color: var(--muted); }

/* ---------- Quote / Company details ---------- */
.quote-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 54px; align-items: center; }
.co-card {
    background: #fff; border: 2px solid var(--green-200); border-radius: var(--radius);
    padding: 34px; box-shadow: var(--shadow-sm);
}
.co-card .co-logo { height: 58px; width: auto; margin-bottom: 20px; }
.co-list { display: grid; gap: 18px; margin-top: 24px; }
.co-list li { display: flex; gap: 16px; align-items: flex-start; }
.co-list .ic {
    width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
    background: var(--green-100); color: var(--green-700); border: 2px solid var(--green-200);
    flex: 0 0 auto;
}
.co-list li:nth-child(even) .ic { background: var(--amber-100); color: var(--amber-600); border-color: var(--amber-200); }
.co-list span { display: block; font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.co-list strong, .co-list a { font-family: var(--ff-head); color: var(--ink); font-size: 1.02rem; font-weight: 600; }
.co-list a:hover { color: var(--green); }
.co-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; padding-top: 24px; border-top: 1px dashed var(--line); }
.co-stats div { text-align: center; }
.co-stats strong { display: block; font-family: var(--ff-head); font-size: 1.5rem; color: var(--green-700); }
.co-stats span { font-size: .8rem; color: var(--muted); }

/* ---------- Map ---------- */
.map-wrap {
    border: 3px solid var(--green); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); background: #fff; line-height: 0;
}
.map-wrap iframe { width: 100%; height: 460px; border: 0; }
.map-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 30px; }
.map-card {
    background: #fff; border: 2px solid var(--green-200); border-radius: var(--radius);
    padding: 24px; display: flex; gap: 16px; align-items: flex-start; transition: .3s;
}
.map-card:hover { border-color: var(--green); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.map-card .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; border: 2px solid var(--green-200); flex: 0 0 auto; }
.map-card h4 { font-size: 1.05rem; margin-bottom: .2em; }
.map-card p { font-size: .92rem; margin: 0; }

/* ---------- CTA ---------- */
.cta-band {
    background: linear-gradient(115deg, var(--green-700), var(--green) 55%, #14A863);
    color: #fff; border-radius: 0; position: relative; overflow: hidden;
}
.cta-band::after {
    content: ""; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px;
    border-radius: 50%; background: rgba(255,255,255,.07);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-inner h2 { color: #fff; margin-bottom: .25em; }
.cta-inner p { color: #DDEFE5; margin: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #A9BCB1; padding: 78px 0 0; }
.footer h4 { color: #fff; font-size: 1.1rem; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 44px; height: 3px; background: var(--amber); border-radius: 2px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-logo { height: 60px; width: auto; margin-bottom: 20px; }
.footer p { font-size: .94rem; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: #A9BCB1; font-size: .94rem; display: inline-flex; align-items: center; gap: 9px; }
.footer-links a::before { content: "\f105"; font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free"; font-weight: 900; color: var(--amber); font-size: .8rem; }
.footer-links a:hover { color: #fff; padding-left: 5px; }
.footer-contact li { display: flex; gap: 13px; margin-bottom: 16px; font-size: .94rem; }
.footer-contact i { color: var(--green-400); margin-top: 6px; }
.footer-contact a { color: #A9BCB1; }
.footer-contact a:hover { color: var(--amber); }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
    background: rgba(255,255,255,.07); color: #fff; border: 1px solid rgba(255,255,255,.12);
}
.footer-social a:hover { background: var(--green); border-color: var(--green); transform: translateY(-3px); }
.footer-bottom {
    margin-top: 58px; border-top: 1px solid rgba(255,255,255,.10);
    padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    font-size: .9rem;
}
.footer-bottom a { color: var(--green-400); }

/* ---------- Floating side rail ---------- */
.side-rail {
    position: fixed; right: 0; top: 50%; transform: translateY(-50%);
    z-index: 120; display: flex; flex-direction: column; gap: 2px;
}
.side-rail a {
    width: 46px; height: 46px; display: grid; place-items: center;
    background: #fff; color: var(--green-700); font-size: 1.05rem;
    border: 1px solid var(--line); border-right: 0;
    transition: .25s ease; position: relative;
}
.side-rail a:first-child { border-radius: 12px 0 0 0; }
.side-rail a:last-child { border-radius: 0 0 0 12px; }
.side-rail a:hover { background: var(--green); color: #fff; padding-right: 6px; }
.side-rail a.wa { background: #25D366; color: #fff; border-color: #25D366; }
.side-rail a.wa:hover { background: #1DA851; }
.side-rail a.call { background: var(--amber); color: #2A1B03; border-color: var(--amber); }
.side-rail a.call:hover { background: var(--amber-600); color: #fff; }
.side-rail .tip {
    position: absolute; right: 56px; top: 50%; transform: translateY(-50%) translateX(8px);
    background: var(--ink); color: #fff; font-size: .78rem; font-family: var(--ff-head);
    padding: 5px 11px; border-radius: 6px; white-space: nowrap; opacity: 0; pointer-events: none; transition: .25s;
}
.side-rail a:hover .tip { opacity: 1; transform: translateY(-50%) translateX(0); }

.wa-float {
    position: fixed; right: 22px; bottom: 92px; z-index: 120;
    width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
    display: grid; place-items: center; font-size: 1.7rem; box-shadow: 0 10px 26px rgba(37,211,102,.45);
    animation: pulseWa 2.4s infinite;
}
.wa-float:hover { background: #1DA851; color: #fff; }
@keyframes pulseWa {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
    70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.scroll-top {
    position: fixed; right: 22px; bottom: 24px; z-index: 120;
    width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
    background: var(--green); color: #fff; opacity: 0; visibility: hidden; transition: .3s;
    box-shadow: var(--shadow-sm);
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--ink); }

/* ---------- Breadcrumb / page hero ---------- */
.page-hero {
    position: relative; background-size: cover; background-position: center;
    padding: 120px 0; text-align: center; color: #fff;
}
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(10,24,17,.82), rgba(10,24,17,.86)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: .3em; }
.crumb { display: flex; justify-content: center; gap: 10px; font-size: .95rem; color: #CFE0D6; }
.crumb a { color: var(--amber); }

/* ---------- Gallery ---------- */
.gal-filter { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 38px; }
.gal-filter button {
    border: 2px solid var(--green-200); background: #fff; color: var(--green-700);
    font-family: var(--ff-head); font-weight: 600; font-size: .9rem;
    padding: 9px 20px; border-radius: 999px; cursor: pointer; transition: .25s;
}
.gal-filter button.active, .gal-filter button:hover { background: var(--green); border-color: var(--green); color: #fff; }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gal-item {
    position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
    border: 2px solid var(--line); background: var(--green-50); aspect-ratio: 4/3;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.gal-item:hover img { transform: scale(1.08); }
.gal-item .ov {
    position: absolute; inset: 0; background: linear-gradient(transparent 45%, rgba(8,40,24,.86));
    color: #fff; display: flex; align-items: flex-end; padding: 18px; opacity: 0; transition: .35s;
    font-family: var(--ff-head); font-weight: 600; font-size: .95rem;
}
.gal-item:hover .ov { opacity: 1; }
.lightbox {
    position: fixed; inset: 0; background: rgba(6,16,11,.94); z-index: 300;
    display: none; align-items: center; justify-content: center; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; border-radius: 10px; border: 3px solid var(--green); }
.lb-close, .lb-prev, .lb-next {
    position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
    color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 1.1rem;
}
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--green); border-color: var(--green); }

/* ---------- Service detail ---------- */
.svc-detail { display: grid; grid-template-columns: 1.9fr 1fr; gap: 46px; align-items: start; }
.svc-hero-img { border-radius: var(--radius); overflow: hidden; border: 3px solid var(--green-200); margin-bottom: 32px; }
.svc-hero-img img { width: 100%; aspect-ratio: 16/8.5; object-fit: cover; }
.svc-detail h2 { font-size: 1.9rem; }
.svc-detail h3 { font-size: 1.35rem; margin-top: 34px; }
.svc-gal { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 26px 0; }
.svc-gal img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-sm); border: 2px solid var(--line); }
.check-list { display: grid; gap: 12px; margin: 20px 0; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list i { color: var(--green); margin-top: 6px; }
.sidebar { display: grid; gap: 26px; position: sticky; top: 100px; }
.side-box { background: #fff; border: 2px solid var(--green-200); border-radius: var(--radius); padding: 26px; }
.side-box h4 { margin-bottom: 18px; }
.side-nav li { margin-bottom: 8px; }
.side-nav a {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 11px 15px; border-radius: 10px; background: var(--green-50);
    color: var(--ink); font-family: var(--ff-head); font-weight: 600; font-size: .92rem;
}
.side-nav a:hover, .side-nav li.active a { background: var(--green); color: #fff; }
.side-cta {
    background: linear-gradient(160deg, var(--green-700), var(--green)); color: #fff; text-align: center;
    border-radius: var(--radius); padding: 32px 26px; border: 0;
}
.side-cta h4 { color: #fff; }
.side-cta p { color: #D6EBE0; font-size: .93rem; }
.side-cta .ic { font-size: 2rem; color: var(--amber); margin-bottom: 12px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 46px; align-items: start; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.contact-card {
    background: #fff; border: 2px solid var(--green-200); border-radius: var(--radius);
    padding: 30px 26px; text-align: center; transition: .3s;
}
.contact-card:hover { transform: translateY(-6px); border-color: var(--green); box-shadow: var(--shadow); }
.contact-card .ic {
    width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 16px; display: grid; place-items: center;
    background: var(--green-100); color: var(--green-700); border: 2px solid var(--green-200); font-size: 1.5rem;
}
.contact-card:nth-child(2) .ic { background: var(--amber-100); color: var(--amber-600); border-color: var(--amber-200); }
.contact-card h4 { margin-bottom: .3em; }
.contact-card a, .contact-card p { font-size: .96rem; color: var(--body); }
.contact-card a:hover { color: var(--green); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
    .video-grid, .gal-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1100px) {
    .nav-menu, .nav-call, .d-none-sm { display: none; }
    .nav-toggle { display: grid; place-items: center; }
    .about-grid, .quote-grid, .pmsg-top, .contact-grid, .svc-detail, .apply-grid { grid-template-columns: 1fr; gap: 44px; }
    .sidebar { position: static; grid-template-columns: 1fr 1fr; }
    .process-grid, .counter-wrap { grid-template-columns: repeat(2, 1fr); }
    .counter-item:nth-child(2) { border-right: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 30px; }
    .section { padding: 76px 0; }
}
@media (max-width: 860px) {
    .g-3, .g-4, .slab-grid, .systype-grid, .map-cards, .contact-cards, .video-grid, .gal-grid, .svc-gal,
    .info-grid, .pmsg-strip { grid-template-columns: repeat(2, 1fr); }
    .pmsg-strip figure:nth-child(3) { grid-column: 1 / -1; }
    .pmsg-strip figure:nth-child(3) img { aspect-ratio: 21/8; }
    .topbar .hide-sm { display: none; }
    .feature-strip { margin-top: 0; padding-top: 70px; }
    .hero-inner { padding: 90px 0 100px; }
    .marquee-item { width: 300px; }
}
@media (max-width: 640px) {
    .g-2, .g-3, .g-4, .slab-grid, .systype-grid, .map-cards, .contact-cards, .process-grid,
    .counter-wrap, .gal-grid, .form-grid, .svc-gal, .sidebar, .co-stats,
    .info-grid, .pmsg-strip, .footer-grid { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .video-card .v-sound { width: 30px; height: 30px; font-size: .72rem; right: 8px; bottom: 8px; }
    .video-card .v-cap { font-size: .78rem; padding: 30px 10px 10px; }
    .pmsg-strip figure:nth-child(3) img { aspect-ratio: 16/10; }
    .pmsg-strip { display: none; }
    .info-card-img {
        display: block; width: 100%; aspect-ratio: 16/10; object-fit: cover;
        border-radius: 14px; margin-bottom: 18px; border: 2px solid var(--green-200);
    }
    .apply-hero { padding: 32px 24px; }
    .slab-card { padding: 20px; }
    .counter-item { border-right: 0; border-bottom: 1px dashed rgba(255,255,255,.18); }
    .section { padding: 62px 0; }
    .topbar { font-size: .82rem; }
    .topbar ul { gap: 14px; }
    .about-stack { padding-bottom: 70px; }
    .exp-badge { bottom: 78px; padding: 14px 16px; }
    .exp-badge strong { font-size: 1.7rem; }
    .marquee::before, .marquee::after { width: 40px; }
    .side-rail { display: none; }
    .form-card, .co-card { padding: 24px; }
}
