/* ============================================
   HOME DECORATION HUB - Main Stylesheet
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
    --navy:        #123C70;
    --royal:       #174F91;
    --yellow:      #FFD800;
    --red:         #B93422;
    --white:       #FFFFFF;
    --light:       #F7F8FA;
    --dark:        #171A1F;
    --grey:        #6b7280;

    --font-heading: 'Playfair Display', serif;
    --font-body:    'Poppins', sans-serif;

    --shadow-sm: 0 4px 14px rgba(18, 60, 112, 0.08);
    --shadow-md: 0 12px 30px rgba(18, 60, 112, 0.12);
    --shadow-lg: 0 20px 50px rgba(18, 60, 112, 0.18);

    --radius: 18px;
    --radius-lg: 26px;

    --header-h: 78px;
    --header-h-scrolled: 62px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1320px; }
.container-wide { max-width: 1420px; }

::selection { background: var(--yellow); color: var(--navy); }

/* Accessibility: skip link & focus */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    padding: 12px 18px;
    background: var(--yellow);
    color: var(--navy);
    z-index: 9999;
    font-weight: 600;
    border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 2px;
}

/* ---------- Buttons ---------- */
.btn-primary-cta {
    background: var(--yellow);
    color: var(--navy);
    border: none;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 16px rgba(255, 216, 0, 0.35);
}
.btn-primary-cta:hover {
    transform: translateY(-2px);
    background: var(--royal);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(23, 79, 145, 0.35);
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    font-weight: 500;
    padding: 11px 26px;
    border-radius: 50px;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline-light:hover {
    background: #fff;
    color: var(--navy);
}

.btn-navy {
    background: var(--navy);
    color: #fff;
    font-weight: 600;
    padding: 11px 26px;
    border-radius: 50px;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-navy:hover { background: var(--royal); color: #fff; transform: translateY(-2px); }

.btn-outline-navy {
    border: 2px solid var(--navy);
    color: var(--navy);
    background: transparent;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* ---------- Header / Navbar ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all .35s ease;
}

.main-nav {
    padding: 18px 0;
    transition: all .35s ease;
}

.site-header.scrolled .main-nav {
    background: rgba(18, 60, 112, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    padding: 10px 0;
}

.navbar-brand { display: flex; align-items: center; line-height: 1; }
.brand-logo {
    height: 78px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    transition: height .35s ease;
}
.site-header.scrolled .brand-logo { height: 64px; }

@media (max-width: 991.98px) {
    .brand-logo { height: 60px; max-width: 180px; }
    .site-header.scrolled .brand-logo { height: 56px; }
}
@media (max-width: 575.98px) {
    .brand-logo { height: 54px; max-width: 160px; }
    .site-header.scrolled .brand-logo { height: 52px; }
}

.brand-text {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}
.brand-text span { color: var(--yellow); }

.nav-container { padding: 0 20px; }

.main-nav .navbar-nav { gap: 4px; align-items: center; }

.main-nav .nav-link {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 14px;
    border-radius: 30px;
    transition: all .25s ease;
    position: relative;
}
.main-nav .nav-link:hover { color: var(--yellow); }
.main-nav .nav-link.active { color: var(--yellow); }

.nav-cta { margin-left: 12px; padding: 10px 24px !important; }

.menu-icon { width: 24px; height: 18px; position: relative; display: inline-block; }
.menu-icon span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: #fff;
    margin: 5px 0;
    border-radius: 3px;
    transition: all .3s ease;
}
.navbar-toggler { border: none; outline: none; }
.navbar-toggler:focus { box-shadow: none; }
.menu-toggle .menu-icon span { color: #fff; }

.header-whatsapp {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: var(--navy);
        padding: 90px 24px 30px;
        transition: right .4s cubic-bezier(.77,0,.18,1);
        z-index: 1001;
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
        overflow-y: auto;
    }
    .navbar-collapse.show { right: 0; }
    .navbar-collapse .navbar-nav { flex-direction: column; gap: 8px; align-items: flex-start; }
    .navbar-collapse .nav-link { font-size: 17px; padding: 12px 14px; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .nav-cta { margin-left: 0; margin-top: 18px; width: 100%; justify-content: center; }
    body.menu-open { overflow: hidden; }
    .menu-backdrop {
        position: fixed; inset: 0; background: rgba(0,0,0,0.5);
        z-index: 1000; display: none;
    }
    .menu-backdrop.show { display: block; }
}

/* ---------- Hero Slider ---------- */
.hero {
    position: relative;
    min-height: 86vh;
    overflow: hidden;
}
.hero-slide {
    position: relative;
    height: 86vh;
    min-height: 560px;
    display: flex;
    align-items: center;
}
.hero-slide .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    animation: heroZoom 8s ease forwards;
    z-index: 0;
}
@keyframes heroZoom {
    0% { transform: scale(1.08); }
    100% { transform: scale(1); }
}
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18,60,112,0.85) 0%, rgba(18,60,112,0.55) 45%, rgba(18,60,112,0.2) 100%);
    z-index: 1;
}
.hero-slide.text-center .hero-bg::after,
.hero-slide.text-center::after {
    background: linear-gradient(180deg, rgba(18,60,112,0.6) 0%, rgba(18,60,112,0.45) 100%);
}
.hero-slide.text-right::after {
    background: linear-gradient(270deg, rgba(18,60,112,0.85) 0%, rgba(18,60,112,0.5) 60%, rgba(18,60,112,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    color: #fff;
    padding: 120px 0 60px;
}
.hero-small {
    color: var(--yellow);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
    animation: fadeUp .8s ease both;
}
.hero-title {
    font-size: clamp(32px, 5vw, 58px);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeUp .8s ease .15s both;
}
.hero-title .highlight { color: var(--yellow); }
.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.92);
    max-width: 560px;
    margin-bottom: 30px;
    animation: fadeUp .8s ease .3s both;
}
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeUp .8s ease .45s both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}
.hero-dots button {
    width: 30px;
    height: 5px;
    border-radius: 4px;
    border: none;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all .3s ease;
}
.hero-dots button.active { background: var(--yellow); width: 42px; }

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all .3s ease;
}
.hero-arrow:hover { background: var(--yellow); border-color: var(--yellow); color: var(--navy); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

@media (max-width: 767.98px) {
    .hero, .hero-slide { height: 72vh; min-height: 480px; }
    .hero-small { font-size: 12px; letter-spacing: 2px; }
    .hero-desc { font-size: 15px; }
    .hero-arrow { display: none; }
}

/* ---------- Section Common ---------- */
.section { padding: 90px 0; }
.section-light { background: var(--light); }
.section-navy { background: var(--navy); color: #fff; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-eyebrow {
    display: inline-block;
    color: var(--royal);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    background: rgba(23,79,145,0.08);
    padding: 6px 18px;
    border-radius: 30px;
}
.section-navy .section-eyebrow { background: rgba(255,216,0,0.15); color: var(--yellow); }
.section-title { font-size: clamp(28px, 4vw, 44px); margin-bottom: 14px; }
.section-title .highlight { color: var(--yellow); }
.section-sub { color: var(--grey); font-size: 17px; }

/* ---------- Introduction ---------- */
.intro-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.intro-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: rotate(-2deg);
}
.intro-image img { width: 100%; height: 520px; object-fit: cover; }
.intro-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 5px solid var(--yellow);
    border-radius: inherit;
    transform: translate(18px, 18px);
    z-index: -1;
    opacity: 0.6;
}
.intro-content h2 { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 20px; }
.intro-content .lead { font-size: 17px; color: var(--grey); }
.intro-points { margin: 24px 0; list-style: none; padding: 0; }
.intro-points li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-weight: 500; }
.intro-points li i { color: var(--yellow); background: var(--navy); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }

@media (max-width: 991.98px) {
    .intro-wrap { grid-template-columns: 1fr; gap: 40px; }
    .intro-image img { height: 380px; }
}

/* ---------- Service Cards ---------- */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.service-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .35s ease;
    border: 1px solid #eef0f3;
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.service-card-media { position: relative; overflow: hidden; height: 240px; }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card-media img { transform: scale(1.08); }
.service-card-icon {
    position: absolute;
    bottom: -26px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: var(--yellow);
    color: var(--navy);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}
.service-card-body { padding: 42px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-title { font-family: var(--font-body); font-weight: 600; font-size: 18px; margin-bottom: 10px; }
.service-card-title a { color: var(--navy); }
.service-card-title a:hover { color: var(--royal); }
.service-card-desc { color: var(--grey); font-size: 14px; flex: 1; }
.service-card-link {
    color: var(--royal);
    font-weight: 600;
    font-size: 14px;
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap .3s ease;
}
.service-card-link:hover { gap: 14px; color: var(--red); }

@media (max-width: 1199px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767.98px) { .service-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px) { .service-grid { grid-template-columns: 1fr; } }

/* ---------- Why Choose Us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.why-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 26px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all .35s ease;
    border: 1px solid #eef0f3;
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.why-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 20px;
    border-radius: 22px;
    background: var(--navy);
    color: var(--yellow);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
}
.why-card:hover .why-icon { background: var(--yellow); color: var(--navy); transform: rotate(-8deg) scale(1.05); }
.why-card h3 { font-family: var(--font-body); font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.why-card p { color: var(--grey); font-size: 15px; margin: 0; }

@media (max-width: 991.98px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- Featured Collections ---------- */
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.featured-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    display: block;
    box-shadow: var(--shadow-sm);
    height: 320px;
}
.featured-media { position: absolute; inset: 0; }
.featured-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.featured-card:hover .featured-media img { transform: scale(1.1); }
.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(18,60,112,0.85));
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 24px;
    color: #fff;
}
.featured-overlay span { font-family: var(--font-heading); font-size: 20px; font-weight: 600; }
.featured-overlay i {
    width: 44px; height: 44px; background: var(--yellow); color: var(--navy);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    transition: all .3s ease;
}
.featured-card:hover .featured-overlay i { transform: translateX(6px); }

@media (max-width: 991.98px) { .featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) { .featured-grid { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.filter-buttons { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn {
    border: 2px solid #e2e5ea;
    background: #fff;
    color: var(--navy);
    font-weight: 500;
    padding: 9px 22px;
    border-radius: 40px;
    cursor: pointer;
    transition: all .3s ease;
    font-size: 14px;
}
.filter-btn:hover { border-color: var(--royal); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    height: 260px;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18,60,112,0.7);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity .4s ease;
    color: #fff;
    padding: 16px;
    text-align: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-view {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--yellow); color: var(--navy);
    display: flex; align-items: center; justify-content: center; font-size: 20px;
    transform: scale(0.6); transition: transform .3s ease;
}
.gallery-item:hover .gallery-view { transform: scale(1); }
.gallery-title { font-weight: 600; font-size: 15px; }
.gallery-hidden { display: none; }

@media (max-width: 991.98px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767.98px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-item { height: 180px; } }

.gallery-more { text-align: center; margin-top: 40px; }

/* ---------- CTA Banner ---------- */
.cta-banner {
    position: relative;
    border-radius: var(--radius-lg);
    background: linear-gradient(120deg, var(--navy), var(--royal));
    padding: 60px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.15;
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -80px; left: 20%;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.1;
}
.cta-banner-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-banner h2 { color: #fff; font-size: clamp(26px, 3.5vw, 40px); }
.cta-banner p { color: rgba(255,255,255,0.85); margin: 12px 0 0; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 767.98px) { .cta-banner { padding: 36px 24px; } }

/* ---------- Trust Bar ---------- */
.trust-bar { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 8px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 28px 30px; }
.trust-item { flex: 1 1 150px; min-width: 150px; max-width: 190px; display: flex; align-items: center; gap: 12px; padding: 8px 10px; }
.trust-item i { color: var(--yellow); background: var(--navy); width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.trust-item span { color: var(--navy); font-weight: 600; font-size: 14px; line-height: 1.3; }
@media (max-width: 767.98px) { .trust-bar { justify-content: flex-start; } .trust-item { flex: 0 0 50%; min-width: 0; max-width: none; } }
@media (max-width: 480px) { .trust-item { flex: 0 0 100%; } }

/* ---------- Wall Calculation CTA ---------- */
.wall-calc { display: flex; align-items: center; gap: 28px; position: relative; border-radius: var(--radius-lg); background: linear-gradient(120deg, var(--navy), var(--royal)); padding: 46px 50px; overflow: hidden; box-shadow: var(--shadow-lg); flex-wrap: wrap; }
.wall-calc::before { content: ''; position: absolute; top: -50px; right: -50px; width: 220px; height: 220px; border-radius: 50%; background: var(--yellow); opacity: 0.15; }
.wall-calc-icon { flex-shrink: 0; width: 78px; height: 78px; border-radius: 50%; background: var(--yellow); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 32px; position: relative; z-index: 2; }
.wall-calc-text { flex: 1 1 320px; position: relative; z-index: 2; }
.wall-calc-text h2 { color: #fff; font-size: clamp(24px, 3.5vw, 38px); }
.wall-calc-text p { color: rgba(255,255,255,0.85); margin: 12px 0 0; }
.wall-calc-btns { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 2; }
@media (max-width: 767.98px) { .wall-calc { padding: 34px 26px; } }

.wall-calc-fields { margin-top: 2px; padding: 16px; border: 1px dashed var(--royal); border-radius: var(--radius); background: #fff; }
.wall-calc-note { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; color: var(--navy); font-weight: 600; }
.wall-calc-note i { color: var(--yellow); background: var(--navy); width: 30px; height: 30px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; }



/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(18,60,112,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 85vh; display: flex; flex-direction: column; align-items: center; }
.lightbox-content img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: 12px; }
.lightbox-caption { color: #fff; text-align: center; margin-top: 14px; font-size: 16px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: var(--yellow);
    color: var(--navy);
    border: none;
    width: 48px; height: 48px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 5;
    transition: all .3s ease;
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-close:hover { background: var(--red); color: #fff; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
@media (max-width: 767.98px) {
    .lightbox-prev { left: 8px; } .lightbox-next { right: 8px; }
}

/* ---------- About Page ---------- */
.page-hero {
    background: linear-gradient(120deg, var(--navy), var(--royal));
    color: #fff;
    padding: 160px 0 70px;
    text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(30px, 4.5vw, 52px); }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 640px; margin: 14px auto 0; font-size: 17px; }

.breadcrumbs { justify-content: center; margin-top: 18px; }
.breadcrumbs ol { list-style: none; display: flex; gap: 8px; padding: 0; margin: 0; flex-wrap: wrap; justify-content: center; }
.breadcrumbs li { color: rgba(255,255,255,0.7); font-size: 14px; display: flex; align-items: center; gap: 8px; }
.breadcrumbs li::after { content: '/'; color: rgba(255,255,255,0.4); }
.breadcrumbs li:last-child::after { content: ''; }
.breadcrumbs a { color: var(--yellow); }
.breadcrumbs .current { color: #fff; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 34px 26px;
    text-align: center;
    border: 1px solid #eef0f3;
    box-shadow: var(--shadow-sm);
    transition: all .35s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-icon {
    width: 68px; height: 68px; margin: 0 auto 18px;
    background: var(--yellow); color: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.value-card h3 { font-family: var(--font-body); font-size: 18px; font-weight: 600; }
.value-card p { color: var(--grey); font-size: 14.5px; margin: 0; }

@media (max-width: 991.98px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) { .values-grid { grid-template-columns: 1fr; } }

.about-blocks { max-width: 860px; margin: 0 auto; }
.about-block { margin-bottom: 44px; }
.about-block h2 { display: flex; align-items: center; gap: 14px; font-size: 28px; }
.about-block h2 .num {
    width: 44px; height: 44px; background: var(--yellow); color: var(--navy);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-body); font-size: 20px; font-weight: 700; flex-shrink: 0;
}
.about-block p { color: var(--grey); font-size: 16px; }

.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.vm-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid #eef0f3;
    position: relative;
    overflow: hidden;
}
.vm-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 5px;
    background: var(--yellow);
}
.vm-icon {
    width: 76px; height: 76px; margin: 0 auto 20px;
    background: var(--navy); color: var(--yellow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 32px;
}
.vm-card h3 { font-size: 26px; margin-bottom: 16px; }
.vm-card p { color: var(--grey); font-size: 16px; }
@media (max-width: 767.98px) { .vm-grid { grid-template-columns: 1fr; } }

/* ---------- Service Detail ---------- */
.detail-hero {
    background: linear-gradient(120deg, var(--navy), var(--royal));
    color: #fff;
    padding: 150px 0 60px;
    position: relative;
    overflow: hidden;
}
.detail-hero::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px; border-radius: 50%;
    background: var(--yellow); right: -80px; bottom: -80px; opacity: 0.12;
}
.detail-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 48px); max-width: 700px; }
.detail-hero .detail-desc { color: rgba(255,255,255,0.85); max-width: 640px; margin-top: 14px; font-size: 17px; }

.detail-body { padding: 70px 0; }
.detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 50px; }
.detail-main { min-width: 0; }
.detail-main img.detail-image { border-radius: var(--radius); width: 100%; max-height: 460px; object-fit: cover; margin-bottom: 30px; box-shadow: var(--shadow-md); }
.detail-content { color: #444; font-size: 16px; line-height: 1.85; }
.detail-content h2, .detail-content h3 { margin-top: 28px; }

.detail-side .side-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 26px;
    margin-bottom: 24px;
    border: 1px solid #e8eaee;
}
.detail-side h3 { font-family: var(--font-body); font-size: 17px; font-weight: 600; margin-bottom: 16px; }
.side-services li { margin-bottom: 8px; }
.side-services a {
    display: flex; align-items: center; justify-content: space-between;
    background: #fff; padding: 12px 16px; border-radius: 12px;
    color: var(--navy); font-weight: 500; font-size: 14.5px;
    border: 1px solid #e8eaee; transition: all .3s ease;
}
.side-services a:hover { background: var(--navy); color: #fff; }
.side-services i { color: var(--yellow); }

@media (max-width: 991.98px) { .detail-layout { grid-template-columns: 1fr; } }

/* ---------- Contact Page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; }
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 30px; }
.contact-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 26px;
    display: flex;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eef0f3;
    transition: all .3s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card-icon {
    width: 52px; height: 52px; flex-shrink: 0;
    background: var(--navy); color: var(--yellow);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.contact-card h3 { font-family: var(--font-body); font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--grey); font-size: 14px; word-break: break-word; }
.contact-card a:hover { color: var(--royal); }

.contact-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid #eef0f3;
}
.contact-form-card h2 { font-size: 26px; margin-bottom: 24px; }
.form-control, .form-select {
    border-radius: 12px;
    padding: 13px 16px;
    border: 1.5px solid #e2e5ea;
    font-size: 15px;
}
.form-control:focus, .form-select:focus {
    border-color: var(--royal);
    box-shadow: 0 0 0 3px rgba(23,79,145,0.12);
}
.form-label { font-weight: 500; color: var(--navy); font-size: 14px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 50px; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

@media (max-width: 991.98px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575.98px) { .contact-cards { grid-template-columns: 1fr; } .contact-form-card { padding: 26px 20px; } }

/* ---------- Income/Form helpers ---------- */
.form-status { margin-bottom: 20px; }

/* ---------- Floating Contacts ---------- */
.floating-contact {
    position: fixed;
    bottom: 104px;
    right: 20px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.float-btn {
    width: 54px; height: 54px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 24px;
    box-shadow: var(--shadow-md);
    transition: all .3s ease;
    position: relative;
}
.float-btn:hover { transform: scale(1.1); }
.float-whatsapp { background: #25D366; }
.float-call { background: var(--navy); }
.float-btn .tooltip-label {
    position: absolute; right: 64px; top: 50%; transform: translateY(-50%);
    background: var(--navy); color: #fff; padding: 6px 14px; border-radius: 8px;
    font-size: 13px; white-space: nowrap; opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
}
.float-btn:hover .tooltip-label { opacity: 1; }

@media (max-width: 991.98px) {
    .floating-contact { bottom: 90px; right: 14px; }
}

/* ---------- Mobile Bottom Nav ---------- */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    justify-content: space-around;
    padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 24px rgba(18,60,112,0.14);
    z-index: 950;
    border-top: 1px solid #eef0f3;
}
@media (max-width: 991.98px) {
    .mobile-bottom-nav {
        display: flex;
    }
}
@media (min-width: 992px) {
    .mobile-bottom-nav {
        display: none !important;
    }
}
.mnav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 10.5px;
    font-weight: 500;
    color: var(--grey);
    padding: 4px 12px;
    border-radius: 14px;
    transition: all .25s ease;
    flex: 1;
}
.mnav-item i { font-size: 19px; }
.mnav-item.active, .mnav-item:hover { color: var(--navy); }
.mnav-item.active i { color: var(--yellow); text-shadow: 0 0 1px var(--navy); }

body { padding-bottom: 0; }
@media (max-width: 991.98px) {
    body { padding-bottom: 75px; }
}
@media (min-width: 992px) {
    body { padding-bottom: 0; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); padding-top: 70px; }
.footer-grid { padding-bottom: 40px; }
.footer-logo { height: 48px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-logo-text { font-family: var(--font-heading); font-size: 22px; color: #fff; font-weight: 700; display: block; margin-bottom: 14px; }
.footer-desc { font-size: 14.5px; margin: 0; max-width: 320px; }
.footer-heading {
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 40px; height: 3px;
    background: var(--yellow);
    border-radius: 3px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a {
    color: rgba(255,255,255,0.75);
    font-size: 14.5px;
    transition: all .25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-links a::before { content: '\2192'; color: var(--yellow); font-size: 12px; }
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; margin: 0 0 20px; }
.footer-contact li { margin-bottom: 13px; font-size: 14.5px; display: flex; gap: 10px; }
.footer-contact i { color: var(--yellow); margin-top: 4px; width: 16px; text-align: center; }
.footer-contact a:hover { color: var(--yellow); }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 16px;
    transition: all .3s ease;
}
.footer-social a:hover { background: var(--yellow); color: var(--navy); transform: translateY(-3px); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; }
.footer-bottom p { margin: 0; font-size: 14px; color: rgba(255,255,255,0.55); }

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

/* ---------- Pagination ---------- */
.pagination-wrap { margin-top: 40px; }
.pagination { gap: 6px; }
.pagination .page-link {
    border-radius: 10px;
    color: var(--navy);
    border: 1px solid #e2e5ea;
    padding: 9px 16px;
    font-weight: 500;
}
.pagination .page-item.active .page-link { background: var(--navy); border-color: var(--navy); color: #fff; }
.pagination .page-item.disabled .page-link { color: #ccc; }

/* ---------- Empty state ---------- */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--grey);
}
.empty-state i { font-size: 50px; color: var(--royal); opacity: 0.4; margin-bottom: 16px; }
.empty-state p { max-width: 440px; margin: 0 auto; }

/* ---------- Social share ---------- */
.share-links { display: flex; gap: 10px; margin-top: 20px; }
.share-links a {
    width: 42px; height: 42px; border-radius: 12px;
    background: var(--light); border: 1px solid #e8eaee;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy); transition: all .3s ease;
}
.share-links a:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
    .hero-bg { animation: none; transform: scale(1); }
}

/* ---------- Breadcrumb & sub pages fixes ---------- */
.text-muted { color: var(--grey) !important; }

/* ---------- Intro checkmarks accent ---------- */
.intro-stats { display: flex; gap: 40px; margin-top: 28px; }
.intro-stat h4 { font-size: 32px; margin: 0; }
.intro-stat span { color: var(--grey); font-size: 14px; }
@media (max-width: 575.98px) { .intro-stats { gap: 24px; } }
