/* ─── COLOURS ─────────────────────────────────────────── */
:root {
    --primary:   #0d2137;
    --accent:    #5fb62f;
    --accent2:   #17c980;
    --blue:      #1ba4dc;
    --violet:    #7b5cf0;
    --light-bg:  #f3f8f4;
    --text-muted: #6b7a86;
    --grad-brand: linear-gradient(120deg, var(--accent2) 0%, var(--accent) 32%, var(--blue) 68%, var(--violet) 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    color: #3a3a3a;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
a { text-decoration: none; }
img { max-width: 100%; }
[id] { scroll-margin-top: 110px; }

/* ─── SHARED GLOSSY / ANIMATION HELPERS ───────────────── */
@keyframes gradientFlow { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes floatY { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-24px) translateX(12px); } }
@keyframes floatY2 { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(20px) translateX(-14px); } }
@keyframes pulseRing { 0% { box-shadow: 0 0 0 0 rgba(95,182,47,.55); } 70% { box-shadow: 0 0 0 16px rgba(95,182,47,0); } 100% { box-shadow: 0 0 0 0 rgba(95,182,47,0); } }
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

.blob {
    position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; z-index: 0; pointer-events: none;
}
.grad-text {
    background: var(--grad-brand); background-size: 300% 300%; -webkit-background-clip: text; background-clip: text;
    color: transparent; animation: gradientFlow 8s ease infinite;
}
.glass {
    background: rgba(255,255,255,.08); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.16);
}
.shine-btn { position: relative; overflow: hidden; }
.shine-btn::before {
    content: ''; position: absolute; top: 0; left: -75%; width: 50%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
    transform: skewX(-20deg);
}
.shine-btn:hover::before { left: 125%; transition: left .7s ease; }

/* ─── TOPBAR ──────────────────────────────────────────── */
.topbar {
    background: var(--primary);
    color: #cdd9e5;
    font-size: 12px;
    padding: 8px 0;
}
.topbar a { color: #cdd9e5; }
.topbar a:hover { color: var(--accent); }
.topbar .top-contact span { margin-right: 20px; }
.topbar .top-contact i { color: var(--accent); margin-right: 5px; }
.topbar .top-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px; border-radius: 50%;
    background: rgba(255,255,255,.08); margin-left: 6px; font-size: 12px;
}
.topbar .top-social a:hover { background: var(--accent); color: #fff; }

/* ─── HEADER ──────────────────────────────────────────── */
.site-header {
    background: rgba(255,255,255,.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,.06); padding: 14px 0; position: sticky; top: 0; z-index: 999;
    transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(13,33,55,.14); }
.site-header .logo img { height: 58px; }
.site-header .logo .brandname { font-size: 15px; font-weight: 800; color: var(--primary); letter-spacing: .5px; margin: 0; }
.site-header .logo small { font-size: 11px; color: var(--text-muted); display: block; letter-spacing: 1px; }
.main-nav .navbar-nav > .nav-item > .nav-link {
    font-size: 13px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
    color: var(--primary) !important; padding: 10px 16px !important; position: relative;
}
.main-nav .navbar-nav > .nav-item > .nav-link::after {
    content: ''; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
    background: var(--accent); transform: scaleX(0); transition: transform .3s;
}
.main-nav .navbar-nav > .nav-item:hover > .nav-link,
.main-nav .navbar-nav > .nav-item > .nav-link.active { color: var(--accent) !important; }
.main-nav .navbar-nav > .nav-item:hover > .nav-link::after,
.main-nav .navbar-nav > .nav-item > .nav-link.active::after { transform: scaleX(1); }
.main-nav .dropdown-menu {
    border: none; border-top: 3px solid var(--accent); border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0,0,0,.12); padding: 8px 0;
}
.main-nav .dropdown-item { font-size: 13px; font-weight: 500; color: var(--primary); padding: 10px 20px; }
.main-nav .dropdown-item:hover { background: var(--light-bg); color: var(--accent); }
.header-btn {
    background: var(--grad-brand); background-size: 250% 250%; animation: gradientFlow 6s ease infinite;
    color: #fff !important; padding: 12px 22px; border-radius: 30px;
    font-size: 13px; font-weight: 700; letter-spacing: .5px; box-shadow: 0 8px 20px rgba(95,182,47,.35);
    transition: transform .3s, box-shadow .3s;
}
.header-btn:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 12px 28px rgba(95,182,47,.5); color: #fff !important; }

/* ─── HERO / SLIDER ───────────────────────────────────── */
.hero-carousel { position: relative; }
.hero-carousel .carousel-item { height: 640px; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.hero-carousel .carousel-item::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(120deg, rgba(13,33,55,.88) 0%, rgba(15,60,60,.55) 45%, rgba(20,50,90,.65) 100%);
}
.hero-carousel .blob-1 { width: 340px; height: 340px; background: var(--accent2); top: -80px; right: 8%; animation: floatY 9s ease-in-out infinite; }
.hero-carousel .blob-2 { width: 260px; height: 260px; background: var(--violet); bottom: -60px; left: 4%; animation: floatY2 11s ease-in-out infinite; }
.hero-carousel .blob-3 { width: 200px; height: 200px; background: var(--blue); top: 40%; right: 28%; animation: floatY 7s ease-in-out infinite; }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.hero-content .eyebrow {
    display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; letter-spacing: 2px; font-size: 12.5px;
    text-transform: uppercase; margin-bottom: 18px; padding: 8px 16px; border-radius: 30px; width: fit-content;
}
.hero-content .eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent2); animation: pulseRing 1.8s infinite; }
.hero-content h1 { color: #fff; font-size: 50px; line-height: 1.2; max-width: 660px; margin-bottom: 18px; text-shadow: 0 4px 30px rgba(0,0,0,.25); }
.hero-content p { color: #dfe8ef; font-size: 16px; max-width: 560px; margin-bottom: 28px; }
.hero-btns .btn-hero-primary {
    background: var(--grad-brand); background-size: 250% 250%; animation: gradientFlow 6s ease infinite;
    color: #fff; padding: 15px 34px; border-radius: 30px; font-weight: 700; font-size: 13px; letter-spacing: .5px;
    margin-right: 12px; display: inline-block; box-shadow: 0 10px 30px rgba(23,201,128,.4); transition: transform .3s;
}
.hero-btns .btn-hero-primary:hover { transform: translateY(-3px) scale(1.03); color: #fff; }
.hero-btns .btn-hero-secondary {
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.4); color: #fff; padding: 15px 34px;
    border-radius: 30px; font-weight: 700; font-size: 13px; letter-spacing: .5px; display: inline-block;
    backdrop-filter: blur(6px); transition: all .3s;
}
.hero-btns .btn-hero-secondary:hover { background: rgba(255,255,255,.24); color: #fff; transform: translateY(-3px); }
.hero-carousel .carousel-indicators { z-index: 3; }
.hero-carousel .carousel-indicators [data-bs-target] { background: var(--accent2); width: 34px; height: 4px; border-radius: 2px; }

/* ─── PAGE BANNER (inner pages) ────────────────────────── */
.page-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #133a2b 60%, #1a4a7a 100%);
    background-size: 200% 200%; animation: gradientFlow 12s ease infinite;
    padding: 70px 0 56px; position: relative; overflow: hidden;
}
.page-banner .blob { opacity: .35; }
.page-banner .blob-1 { width: 300px; height: 300px; background: var(--accent2); top: -100px; right: 10%; animation: floatY 9s ease-in-out infinite; }
.page-banner .blob-2 { width: 220px; height: 220px; background: var(--violet); bottom: -80px; left: 6%; animation: floatY2 11s ease-in-out infinite; }
.page-banner .container { position: relative; z-index: 2; }
.page-banner .eyebrow { color: var(--accent2); }
.page-banner h1 { color: #fff; font-size: 38px; margin: 4px 0 12px; }
.page-banner p.lead-line { color: #cdd9e5; font-size: 15px; max-width: 620px; margin: 0 0 18px; }
.breadcrumb-bar { display: flex; gap: 8px; align-items: center; font-size: 13px; }
.breadcrumb-bar a { color: var(--accent2); }
.breadcrumb-bar span { color: #a8c4df; }

/* ─── SERVICE CATEGORY STRIP ──────────────────────────── */
.cat-strip { margin-top: -70px; position: relative; z-index: 5; }
.cat-card {
    background: #fff; border-radius: 14px; padding: 34px 22px; text-align: center; position: relative; overflow: hidden;
    box-shadow: 0 15px 40px rgba(13,33,55,.12); transition: transform .35s, box-shadow .35s; height: 100%;
    border: 1px solid transparent;
}
.cat-card::before {
    content: ''; position: absolute; inset: 0; border-radius: 14px; padding: 2px;
    background: var(--grad-brand); background-size: 250% 250%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: opacity .35s;
}
.cat-card:hover { transform: translateY(-10px); box-shadow: 0 24px 55px rgba(13,33,55,.2); }
.cat-card:hover::before { opacity: 1; animation: gradientFlow 4s ease infinite; }
.cat-card .cat-icon {
    width: 68px; height: 68px; border-radius: 50%; background: var(--grad-brand); background-size: 250% 250%; color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 18px;
    box-shadow: 0 10px 24px rgba(95,182,47,.35); transition: transform .35s;
}
.cat-card:hover .cat-icon { transform: scale(1.12) rotate(-6deg); animation: gradientFlow 4s ease infinite; }
.cat-card h3 { font-size: 15px; color: var(--primary); margin-bottom: 10px; letter-spacing: .3px; }
.cat-card p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.7; }

/* ─── SECTION GENERIC ─────────────────────────────────── */
.section { padding: 110px 0 90px; }
.section-sm { padding: 60px 0; }
.section-bg { background: var(--light-bg); }
.eyebrow-center { text-align: center; color: var(--accent); font-weight: 700; letter-spacing: 3px; font-size: 13px; text-transform: uppercase; margin-bottom: 8px; }
.eyebrow { color: var(--accent); font-weight: 700; letter-spacing: 3px; font-size: 13px; text-transform: uppercase; margin-bottom: 8px; }
.section-title { font-size: 34px; color: var(--primary); margin-bottom: 10px; }
.section-subtitle { color: var(--text-muted); font-size: 15px; margin-bottom: 40px; }
.title-underline { width: 54px; height: 4px; background: var(--accent); border-radius: 2px; margin: 0 0 44px; }
.title-underline.center { margin-left: auto; margin-right: auto; }

/* ─── STATS BAND ──────────────────────────────────────── */
.stats-band {
    background: var(--grad-brand); background-size: 300% 300%; animation: gradientFlow 10s ease infinite;
    padding: 50px 0; position: relative; overflow: hidden;
}
.stat-item { text-align: center; color: #fff; position: relative; z-index: 2; }
.stat-item .stat-icon { font-size: 22px; margin-bottom: 10px; opacity: .9; }
.stat-item .stat-num { font-size: 46px; font-weight: 800; line-height: 1; font-family: 'Montserrat', sans-serif; text-shadow: 0 4px 20px rgba(0,0,0,.15); }
.stat-item .stat-label { font-size: 13px; letter-spacing: .5px; text-transform: uppercase; margin-top: 8px; opacity: .95; }

/* ─── ABOUT STRIP ─────────────────────────────────────── */
.about-strip { background: linear-gradient(135deg, var(--primary) 45%, #133a2b 100%); color: #fff; padding: 100px 0; position: relative; overflow: hidden; }
.about-strip .blob-a1 { width: 420px; height: 420px; background: var(--accent2); right: -140px; top: -140px; animation: floatY 10s ease-in-out infinite; }
.about-strip .blob-a2 { width: 300px; height: 300px; background: var(--violet); left: -100px; bottom: -100px; animation: floatY2 12s ease-in-out infinite; }
.about-strip h2 { color: #fff; font-size: 34px; }
.about-strip .lead-line { font-size: 15px; color: #a8c4df; margin: 10px 0 22px; line-height: 1.9; }
.about-strip ul.check-list { list-style: none; padding: 0; margin: 26px 0; }
.about-strip ul.check-list li { padding: 8px 0; font-size: 14px; color: #dfe8ef; display: flex; align-items: center; gap: 10px; }
.about-strip ul.check-list li i { color: var(--accent); font-size: 15px; }
.about-panel {
    background: rgba(255,255,255,.07); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.16); border-radius: 16px; padding: 34px; position: relative; z-index: 2;
    box-shadow: 0 20px 60px rgba(0,0,0,.25); transition: transform .3s;
}
.about-panel:hover { transform: translateY(-6px); }
.about-panel h4 { color: #fff; font-size: 16px; margin-bottom: 6px; }
.about-panel p { color: #a8c4df; font-size: 13px; line-height: 1.8; margin-bottom: 22px; }

/* ─── CORE VALUES ─────────────────────────────────────── */
.value-card { text-align: center; padding: 30px 18px; border-radius: 14px; transition: transform .35s, box-shadow .35s; }
.value-card:hover { transform: translateY(-8px); box-shadow: 0 20px 45px rgba(13,33,55,.1); }
.value-card .value-num {
    width: 62px; height: 62px; border-radius: 50%; border: 2px solid var(--accent); color: var(--accent);
    display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px;
    margin: 0 auto 18px; font-family: 'Montserrat', sans-serif; transition: all .35s;
}
.value-card:hover .value-num { background: var(--grad-brand); color: #fff; border-color: transparent; transform: rotate(-8deg) scale(1.08); box-shadow: 0 10px 24px rgba(95,182,47,.4); }
.value-card h4 { font-size: 15px; color: var(--primary); }
.value-card p { font-size: 13px; color: var(--text-muted); }

/* ─── TEAM ─────────────────────────────────────────────── */
.team-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 10px 30px rgba(13,33,55,.08); transition: transform .35s, box-shadow .35s; text-align: center; }
.team-card:hover { transform: translateY(-8px); box-shadow: 0 22px 45px rgba(13,33,55,.16); }
.team-card .team-avatar {
    width: 92px; height: 92px; border-radius: 50%; background: var(--grad-brand); background-size: 250% 250%;
    color: #fff; display: flex; align-items: center; justify-content: center; font-size: 34px; margin: 30px auto 16px;
    box-shadow: 0 10px 24px rgba(95,182,47,.35);
}
.team-card h4 { font-size: 15px; color: var(--primary); margin-bottom: 4px; }
.team-card span { font-size: 12px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: 16px; }

/* ─── SERVICE CARDS ───────────────────────────────────── */
.service-card { border-radius: 14px; overflow: hidden; background: #fff; box-shadow: 0 8px 30px rgba(13,33,55,.08); transition: transform .35s, box-shadow .35s; height: 100%; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 26px 55px rgba(13,33,55,.18); }
.service-card .sc-img { height: 210px; overflow: hidden; position: relative; }
.service-card .sc-img::after {
    content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13,33,55,.55) 0%, transparent 55%);
}
.service-card .sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.service-card:hover .sc-img img { transform: scale(1.12) rotate(1deg); }
.service-card .sc-icon {
    position: absolute; bottom: -22px; left: 22px; width: 48px; height: 48px; border-radius: 12px; z-index: 2;
    background: var(--grad-brand); background-size: 250% 250%; color: #fff; display: flex; align-items: center;
    justify-content: center; font-size: 19px; box-shadow: 0 10px 24px rgba(95,182,47,.45); transition: transform .35s;
}
.service-card:hover .sc-icon { transform: scale(1.1) rotate(-8deg); animation: gradientFlow 4s ease infinite; }
.service-card .sc-body { padding: 34px 22px 22px; }
.service-card .sc-body h4 { font-size: 16px; color: var(--primary); margin-bottom: 10px; }
.service-card .sc-body p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.btn-more { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--accent); letter-spacing: .5px; text-transform: uppercase; transition: gap .25s, color .25s; }
.btn-more:hover { color: var(--blue); gap: 10px; }

/* ─── SERVICE DETAIL ROWS (services.html) ─────────────── */
.service-detail { padding: 70px 0; border-bottom: 1px solid #eef2ef; }
.service-detail:last-child { border-bottom: none; }
.service-detail .sd-img { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 50px rgba(13,33,55,.14); }
.service-detail .sd-img img { width: 100%; height: 340px; object-fit: cover; transition: transform .6s; }
.service-detail .sd-img:hover img { transform: scale(1.06); }
.service-detail .sd-icon {
    width: 58px; height: 58px; border-radius: 14px; background: var(--grad-brand); background-size: 250% 250%; color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px;
    box-shadow: 0 10px 24px rgba(95,182,47,.35);
}
.service-detail h2 { font-size: 28px; color: var(--primary); margin-bottom: 14px; }
.service-detail p.sd-desc { color: var(--text-muted); font-size: 14.5px; line-height: 1.9; margin-bottom: 20px; }
.service-detail ul.sd-scope { list-style: none; padding: 0; margin: 0 0 26px; }
.service-detail ul.sd-scope li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #3a3a3a; padding: 6px 0; }
.service-detail ul.sd-scope li i { color: var(--accent); font-size: 15px; }

/* ─── PROJECT CLIENTS MARQUEE ─────────────────────────── */
.clients-strip { background: linear-gradient(135deg, var(--primary) 0%, #142d4a 100%); padding: 50px 0; position: relative; overflow: hidden; }
.client-pill {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 10px;
    padding: 16px 14px; text-align: center; color: #cdd9e5; font-size: 12.5px; font-weight: 600;
    height: 100%; display: flex; align-items: center; justify-content: center; letter-spacing: .3px;
    transition: all .3s;
}
.client-pill:hover { background: var(--grad-brand); color: #fff; transform: translateY(-4px); box-shadow: 0 12px 26px rgba(95,182,47,.3); }

/* ─── PROJECT GALLERY ─────────────────────────────────── */
.project-card { position: relative; border-radius: 14px; overflow: hidden; height: 260px; box-shadow: 0 10px 30px rgba(13,33,55,.1); transition: transform .35s, box-shadow .35s; }
.project-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(13,33,55,.22); }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.project-card:hover img { transform: scale(1.12); }
.project-overlay {
    position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13,33,55,.92) 0%, rgba(13,33,55,.1) 60%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; color: #fff;
}
.project-overlay .tag {
    color: #fff; background: var(--grad-brand); background-size: 250% 250%; font-size: 10.5px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; padding: 4px 10px; border-radius: 20px; width: fit-content;
}
.project-overlay h5 { color: #fff; font-size: 14px; margin: 0; }
.project-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.project-filter button {
    background: #fff; border: 1px solid #e2e8e4; color: var(--primary); font-size: 12.5px; font-weight: 600;
    padding: 9px 20px; border-radius: 30px; transition: all .3s; cursor: pointer;
}
.project-filter button:hover, .project-filter button.active { background: var(--grad-brand); color: #fff; border-color: transparent; }

/* ─── CTA ──────────────────────────────────────────────── */
.cta-band {
    background: var(--grad-brand); background-size: 300% 300%; animation: gradientFlow 8s ease infinite;
    padding: 55px 0; position: relative; overflow: hidden;
}
.cta-band h3 { color: #fff; font-size: 27px; margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 15px; margin: 0; }
.cta-btn { background: #fff; color: var(--accent); padding: 16px 38px; border-radius: 30px; font-weight: 700; font-size: 14px; letter-spacing: .5px; display: inline-block; transition: all .3s; box-shadow: 0 10px 26px rgba(0,0,0,.15); }
.cta-btn:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }

/* ─── CONTACT PAGE ─────────────────────────────────────── */
.contact-card {
    background: #fff; border-radius: 14px; padding: 30px 26px; text-align: center; height: 100%;
    box-shadow: 0 10px 30px rgba(13,33,55,.08); transition: transform .35s, box-shadow .35s;
}
.contact-card:hover { transform: translateY(-8px); box-shadow: 0 22px 45px rgba(13,33,55,.16); }
.contact-card .cc-icon {
    width: 62px; height: 62px; border-radius: 50%; background: var(--grad-brand); background-size: 250% 250%; color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 18px;
    box-shadow: 0 10px 24px rgba(95,182,47,.35);
}
.contact-card h4 { font-size: 15px; color: var(--primary); margin-bottom: 8px; }
.contact-card p { font-size: 13.5px; color: var(--text-muted); margin: 0; line-height: 1.7; }
.contact-card a { color: var(--text-muted); }
.contact-card a:hover { color: var(--accent); }
.map-wrap { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 50px rgba(13,33,55,.14); height: 100%; min-height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.contact-form-wrap { background: #fff; border-radius: 16px; padding: 40px; box-shadow: 0 20px 50px rgba(13,33,55,.1); }
.contact-form-wrap .form-label { font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.contact-form-wrap .form-control, .contact-form-wrap .form-select {
    border: 1px solid #e2e8e4; border-radius: 8px; padding: 12px 16px; font-size: 14px;
}
.contact-form-wrap .form-control:focus, .contact-form-wrap .form-select:focus {
    border-color: var(--accent); box-shadow: 0 0 0 3px rgba(95,182,47,.12);
}
.btn-submit {
    background: var(--grad-brand); background-size: 250% 250%; animation: gradientFlow 6s ease infinite;
    color: #fff; border: none; padding: 14px 36px; border-radius: 30px; font-weight: 700; font-size: 13px;
    letter-spacing: .5px; box-shadow: 0 10px 26px rgba(95,182,47,.35); transition: transform .3s;
}
.btn-submit:hover { transform: translateY(-3px); color: #fff; }

/* ─── FOOTER ──────────────────────────────────────────── */
.site-footer { background: var(--primary); color: #a8c4df; padding: 80px 0 0; }
.site-footer .footer-logo img { height: 60px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.site-footer h5 { color: #fff; font-size: 16px; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.site-footer h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 36px; height: 3px; background: var(--accent); border-radius: 2px; }
.site-footer p { font-size: 13px; line-height: 1.9; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center; color: #cdd9e5; transition: all .3s;
}
.footer-social a:hover { background: var(--grad-brand); color: #fff; transform: translateY(-3px); }
.footer-badge { margin-top: 22px; display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); padding: 10px 16px; border-radius: 8px; font-size: 12px; transition: transform .3s; }
.footer-badge:hover { transform: translateY(-3px); }
.footer-badge i { color: var(--accent); font-size: 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { padding: 6px 0; font-size: 13px; }
.footer-links li a { color: #a8c4df; display: flex; align-items: center; gap: 8px; }
.footer-links li a:hover { color: var(--accent); padding-left: 4px; }
.footer-links li a i { color: var(--accent); font-size: 11px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; font-size: 13px; }
.footer-contact li i { color: var(--accent); margin-top: 3px; flex-shrink: 0; width: 16px; }
.footer-contact li a { color: #a8c4df; }
.footer-contact li a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 55px; padding: 20px 0; text-align: center; font-size: 12px; }
.footer-bottom a { color: var(--accent); }

/* ─── WHATSAPP FLOAT ───────────────────────────────────── */
.whatsapp-float {
    position: fixed; bottom: 26px; right: 26px; width: 58px; height: 58px; border-radius: 50%;
    background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 28px; box-shadow: 0 8px 24px rgba(37,211,102,.5); z-index: 998;
    animation: pulseRingWA 2.4s infinite; transition: transform .3s;
}
@keyframes pulseRingWA { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); } 70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
.whatsapp-float:hover { color: #fff; transform: scale(1.1); }

/* ─── SCROLL-TOP BTN ───────────────────────────────────── */
.scrolltop-btn {
    position: fixed; bottom: 96px; right: 30px; width: 44px; height: 44px; border-radius: 50%;
    background: var(--grad-brand); background-size: 250% 250%; color: #fff; display: flex; align-items: center;
    justify-content: center; box-shadow: 0 8px 20px rgba(13,33,55,.25); z-index: 998; opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: all .3s;
}
.scrolltop-btn.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scrolltop-btn:hover { color: #fff; animation: gradientFlow 3s ease infinite; }

@media (max-width: 991px) {
    .hero-content h1 { font-size: 32px; }
    .cat-strip { margin-top: 30px; }
    .about-panel { margin-top: 40px; }
    .page-banner h1 { font-size: 28px; }
    .service-detail .sd-img { margin-bottom: 30px; }
}
