/* ── TOKENS ── */
:root {
    --navy: #1a2332;
    --navy-mid: #2d3a4e;
    --sky: #EBF4FF;
    --gold: #C8972A;
    --gold-lt: #F5D98B;
    --gold-bg: #FDF8EE;
    --white: #FFFFFF;
    --off: #F7F8FA;
    --card: #FFFFFF;
    --border: #E2E8F0;
    --text: #1A202C;
    --muted: #64748B;
    --light-text: #94A3B8;
    --radius: 12px;
    --shadow: 0 2px 16px rgba(27, 59, 111, .08);
    --shadow-hover: 0 8px 40px rgba(27, 59, 111, .15);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins';
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins';
}

/* ── TOPBAR ── */
.topbar {
    background: var(--navy);
    padding: 8px 0;
    font-size: .75rem;
}

.topbar a,
.topbar span {
    color: #B8CDF0;
    text-decoration: none;
    transition: color .2s;
}

.topbar a:hover {
    color: var(--gold-lt);
}

.topbar .dot {
    color: #3A5FA0;
    margin: 0 8px;
}

/* ── NAVBAR ── */
.navbar {
    background: var(--white) !important;
    box-shadow: 0 1px 0 var(--border);
    padding: 0;
    top: 0;
    z-index: 1030;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    color: var(--navy) !important;
    padding: 0px 0;
    line-height: 1.15;
}

.brand-sub {
    display: block;
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 1px;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--text) !important;
    padding: 22px 14px !important;
    position: relative;
    transition: color .2s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.btn-quote {
    background: var(--navy);
    color: #fff !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .75rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 10px 22px !important;
    border-radius: 6px;
    margin-left: 10px;
    transition: all .2s;
}

.btn-quote:hover {
    background: var(--navy-mid);
    transform: translateY(-1px);
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
    box-shadow: none !important;
}

.tog-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    margin: 5px 0;
    border-radius: 1px;
    transition: all .3s;
}

/* ── OFFCANVAS ── */
.offcanvas {
    max-width: 300px;
}

.offcanvas-header {
    background: var(--navy);
}

.offcanvas .nav-link {
    border-bottom: 1px solid var(--border);
    font-size: .9rem;
    padding: 14px 20px !important;
    color: var(--text) !important;
}

.offcanvas .nav-link::after {
    display: none;
}

/* ── HERO ── */
.hero-wrap {
    position: relative;
    overflow: hidden;
}

.hero-carousel .carousel-item {
    height: 88vh;
    min-height: 520px;
}

.hero-carousel .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease;
}

.hero-carousel .carousel-item.active .slide-bg {
    transform: scale(1.04);
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgb(0 0 0 / 64%) 40%, rgba(13, 28, 60, .30) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
}

.hero-chip i {
    color: var(--gold-lt);
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: clamp(2.1rem, 5.5vw, 4rem);
    color: #fff;
    line-height: 1.08;
    margin-bottom: 16px;
    letter-spacing: -.5px;
}

.hero-title .gold {
    color: var(--gold-lt);
}

.hero-desc {
    color: rgba(255, 255, 255, .78);
    font-size: clamp(.9rem, 1.8vw, 1.05rem);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hbtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .4px;
    text-transform: uppercase;
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    transition: all .25s;
    border: 2px solid transparent;
}

.hbtn-gold {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.hbtn-gold:hover {
    background: #b8841e;
    border-color: #b8841e;
    color: #fff;
    transform: translateY(-2px);
}

.hbtn-wa {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.hbtn-wa:hover {
    background: #1ebe5a;
    border-color: #1ebe5a;
    color: #fff;
    transform: translateY(-2px);
}

.hbtn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .5);
}

.hbtn-outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff;
    color: #fff;
}

/* carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    margin: 0 20px;
    opacity: 1;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, .2);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--gold);
}

.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    border: none;
    margin: 0 4px;
}

.carousel-indicators .active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ── FLOATING STATS BAR ── */
.stats-bar {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    padding: 0;
    margin-top: -48px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid var(--border);
    position: relative;
}

.stat-cell:last-child {
    border-right: none;
}

.stat-cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: background .3s;
}

.stat-cell:hover::before {
    background: var(--gold);
}

.stat-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--navy);
    line-height: 1;
}

.stat-num sup {
    font-size: 1rem;
    vertical-align: super;
}

.stat-lbl {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 5px;
}

/* ── SECTION LABELS ── */
.eyebrow {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 2px solid var(--gold-lt);
    padding-bottom: 3px;
    margin-bottom: 12px;
}

.sec-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 14px;
}

.sec-desc {
    color: var(--muted);
    font-size: .93rem;
    line-height: 1.75;
    max-width: 560px;
}

.rule {
    width: 44px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 14px 0 28px;
}

section {
    padding: 88px 0;
}

.bg-off {
    background: var(--off);
}

/* ── ABOUT ── */
.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
}

.badge-years {
    position: absolute;
    bottom: 24px;
    right: -16px;
    background: var(--navy);
    color: #fff;
    padding: 22px 26px;
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(27, 59, 111, .25);
    text-align: center;
}

.badge-years .n {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 2.6rem;
    color: var(--gold-lt);
    line-height: 1;
}

.badge-years .l {
    font-size: .65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #93B4D8;
    margin-top: 3px;
}

.feat-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feat-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feat-text h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    color: var(--navy);
    margin-bottom: 3px;
}

.feat-text p {
    font-size: .8rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.55;
}

/* ── SERVICES ── */
.svc-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all .35s;
    height: 100%;
}

.svc-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
    border-color: #C5D5EE;
}

.svc-img {
    height: 210px;
    overflow: hidden;
    position: relative;
}

.svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s;
}

.svc-card:hover .svc-img img {
    transform: scale(1.07);
}

.svc-tag-chip {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--white);
    color: var(--navy);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .65rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.svc-body {
    padding: 22px;
}

.svc-body h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: .98rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.svc-body p {
    font-size: .81rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.pill {
    display: inline-block;
    background: var(--sky);
    color: var(--navy-mid);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .65rem;
    padding: 3px 10px;
    border-radius: 3px;
    margin: 2px 2px 2px 0;
}

.svc-link {
    color: var(--gold);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .8rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 12px;
    transition: gap .2s;
}

.svc-link:hover {
    gap: 9px;
    color: var(--navy);
}

/* ── ATTRACTIVE STRIP – "WHY US" ── */
.strip-section {
    background: linear-gradient(135deg, var(--navy) 0%, #2B4D8A 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.strip-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
}

.strip-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 2;
}

.why-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    padding: 26px 20px;
    text-align: center;
    transition: all .3s;
    backdrop-filter: blur(4px);
}

.why-card:hover {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(200, 151, 42, .5);
    transform: translateY(-4px);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(200, 151, 42, .18);
    border: 1px solid rgba(200, 151, 42, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.3rem;
    color: var(--gold-lt);
    transition: all .3s;
}

.why-card:hover .why-icon {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.why-card h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    color: #fff;
    margin-bottom: 5px;
}

.why-card p {
    font-size: .78rem;
    color: #93B4D8;
    margin: 0;
    line-height: 1.55;
}

/* ── FINISHES ── */
.finish-section {
    background: var(--gold-bg);
}

.finish-card {
    background: var(--white);
    border: 1px solid #F0E0BC;
    border-radius: var(--radius);
    padding: 26px 20px;
    text-align: center;
    transition: all .3s;
    box-shadow: 0 2px 12px rgba(200, 151, 42, .07);
}

.finish-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(200, 151, 42, .15);
    transform: translateY(-4px);
}

.finish-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.finish-card h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.finish-card p {
    font-size: .78rem;
    color: var(--muted);
    margin: 0;
}

.hindi-note {
    background: var(--white);
    border-left: 4px solid var(--gold);
    border-radius: 0 8px 8px 0;
    padding: 16px 22px;
    color: var(--navy);
    font-size: .9rem;
    font-style: italic;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}

/* ── GALLERY ── */
.gal-tabs .nav-tabs {
    border: none;
    gap: 6px;
    flex-wrap: wrap;
}

.gal-tabs .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .73rem;
    letter-spacing: .4px;
    text-transform: uppercase;
    padding: 8px 10px !important;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--muted);
    transition: all .2s;
}

.gal-tabs .nav-link.active,
.gal-tabs .nav-link:hover {
    background: var(--navy);
    color: #fff !important;
    border-color: var(--navy);
}

.gal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
    gap: 10px;
    margin-top: 26px;
}

.gal-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 2/3;
    background: var(--off);
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.gal-item:hover img {
    transform: scale(1.07);
}

.gal-over {
    position: absolute;
    inset: 0;
    background: rgba(27, 59, 111, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}

.gal-item:hover .gal-over {
    opacity: 1;
}

.gal-over i {
    font-size: 1.8rem;
    color: #fff;
}

.gal-lbl {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .65));
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .75rem;
    transform: translateY(100%);
    transition: transform .3s;
}

.gal-item:hover .gal-lbl {
    transform: translateY(0);
}

/* ── PROCESS ── */
.proc-section {
    background: var(--off);
}

.proc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    position: relative;
}

.proc-connector {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 10px, transparent 10px, transparent 18px);
    z-index: 0;
}

.proc-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 20px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
    border: 1px solid var(--border);
    transition: all .3s;
}

.proc-card:hover {
    border-color: #C5D5EE;
    box-shadow: var(--shadow-hover);
}

.proc-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 4px solid var(--white);
    box-shadow: 0 4px 16px rgba(27, 59, 111, .2);
    transition: background .3s;
}

.proc-card:hover .proc-num {
    background: var(--gold);
}

.proc-card h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.proc-card p {
    font-size: .78rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.55;
}

/* ── CTA BAND ── */
.cta-band {
    background: var(--gold-bg);
    border-top: 1px solid #F0E0BC;
    border-bottom: 1px solid #F0E0BC;
    padding: 48px 0;
}

.cta-band h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--navy);
}

.cta-band p {
    color: var(--muted);
    font-size: .9rem;
    margin: 0;
}

.btn-navy {
    background: var(--navy);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .8rem;
    padding: 13px 28px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    letter-spacing: .4px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s;
}

.btn-navy:hover {
    background: var(--navy-mid);
    color: #fff;
    transform: translateY(-1px);
}

.btn-wa {
    background: #25D366;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .8rem;
    padding: 13px 28px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    letter-spacing: .4px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s;
}

.btn-wa:hover {
    background: #1ebe5a;
    color: #fff;
    transform: translateY(-1px);
}

/* ── CONTACT ── */
.form-wrap {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 36px;
    box-shadow: var(--shadow);
}

.form-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .75rem;
    letter-spacing: .3px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-control,
.form-select {
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: .87rem;
    padding: 12px 16px;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    transition: border-color .2s, box-shadow .2s;
    background: var(--off);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--navy-mid);
    box-shadow: 0 0 0 3px rgba(44, 82, 130, .1);
    background: var(--white);
    outline: none;
}

.btn-submit {
    background: var(--navy);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    padding: 14px;
    border-radius: 8px;
    border: none;
    letter-spacing: .4px;
    text-transform: uppercase;
    width: 100%;
    transition: all .25s;
}

.btn-submit:hover {
    background: var(--navy-mid);
    transform: translateY(-1px);
}

.info-card {
    background: var(--navy);
    border-radius: 16px;
    padding: 36px 30px;
    height: 100%;
}

.info-card h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.info-card>p {
    color: #93B4D8;
    font-size: .85rem;
    margin-bottom: 30px;
}

.info-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-lt);
    font-size: .95rem;
    flex-shrink: 0;
}

.info-row h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .8rem;
    color: #fff;
    margin-bottom: 2px;
}

.info-row p,
.info-row a {
    font-size: .82rem;
    color: #93B4D8;
    margin: 0;
    text-decoration: none;
}

.info-row a:hover {
    color: var(--gold-lt);
}

.hours-box {
    margin-top: 28px;
    background: rgba(255, 255, 255, .07);
    border-radius: 8px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, .1);
}

.hours-box p {
    color: #93B4D8;
    font-size: .8rem;
    margin: 0;
    line-height: 1.65;
}

.map-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ── FOOTER ── */
footer {
    background: #1a2332;
    color: #ffffff;
    padding: 64px 0 0;
}

.foot-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: #fff;
}

.foot-brand span {
    color: var(--gold-lt);
}

.foot-desc {
    font-size: .81rem;
    color: #fff;
    line-height: 1.7;
    margin-top: 12px;
}

.foot-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
}

.foot-links {
    list-style: none;
    padding: 0;
}

.foot-links li {
    margin-bottom: 8px;
}

.foot-links a {
    color: #fff;
    font-size: .81rem;
    text-decoration: none;
    transition: color .2s;
}

.foot-links a:hover {
    color: var(--gold-lt);
}

.foot-contact {
    font-size: .81rem;
    color: #fff;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.foot-contact i {
    color: var(--gold-lt);
    flex-shrink: 0;
    margin-top: 2px;
}

.foot-contact a {
    color: #fff;
    text-decoration: none;
}

.foot-contact a:hover {
    color: var(--gold-lt);
}

.foot-social a {
    width: 34px;
    height: 34px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    margin-right: 6px;
    transition: all .2s;
}

.foot-social a:hover {
    border-color: var(--gold);
    color: var(--gold-lt);
}

.foot-bottom {
    margin-top: 48px;
    border-top: 1px solid #ffffff;
    padding: 18px 0;
    text-align: center;
}

.foot-bottom p {
    font-size: .75rem;
    color: #ffffff;
    margin: 0;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 1060;
}

.wa-float a {
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    animation: wapulse 2.5s infinite;
}

.wa-float a i {
    font-size: 1.65rem;
    color: #fff;
}

@keyframes wapulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .4), 0 0 0 0 rgba(37, 211, 102, .35)
    }

    55% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .4), 0 0 0 12px rgba(37, 211, 102, 0)
    }
}

/* ── LIGHTBOX ── */
#lbModal .modal-content {
    background: #090e18;
    border: none;
    border-radius: 0;
}

#lbModal .modal-body {
    padding: 0;
    position: relative;
    min-height: 200px;
}

#lbModal img {
    width: 100%;
    max-height: 84vh;
    object-fit: contain;
    display: block;
}

.lb-btn {
    position: absolute;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    z-index: 5;
}

.lb-btn:hover {
    background: var(--gold);
}

/* ── RESPONSIVE ── */
@media(max-width:991px) {
    .proc-connector {
        display: none;
    }
}

@media(max-width:767px) {
    .hero-carousel .carousel-item {
        height: 72vh;
    }

    section {
        padding: 60px 0;
    }

    .stats-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-cell:nth-child(2) {
        border-right: none;
    }

    .stat-cell:nth-child(3) {
        border-bottom: none;
    }

    .form-wrap {
        padding: 24px 18px;
    }

    .badge-years {
        display: none;
    }
}

@media(max-width:576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .gal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}