@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Gothic+A1&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* ====== COLORS (UPDATED) ====== */
:root {
    --gold: #C5A059;
    --tex-bronze: #A07842;
    --wpaint-warm: #8C5A35;
    --navy: #1A2B48;
    --wp-water: #26466D;
    --dark-blue: #0F1A2A;
    --cream: #F5F1E6;
    --white: #FFFFFF;
    --es-gray: #f4f6f9;
    --vl-light: #fbf9f4;
    --hr-light: #F8F9FA;
    --hr-steel: #5c6c80;
    --tex-border: #2A323D;
    --hr-border: #E5E7EB;
    --pop-beige: #EBE5DB;
    --wp-danger: #e63946;
    --gold-glow: rgba(197, 160, 89, 0.25);
    --pop-blue-glow: rgba(26, 43, 72, 0.1);

}

/* ====== BODY ====== */
body {
    font-family: "Gothic A1", sans-serif;
    font-weight: 700;
    /* font-style: normal; */
}

/* ====== TOP BAR ====== */
.top-bar {
    background: linear-gradient(90deg, var(--navy), var(--dark-blue));
    color: var(--white);
    font-size: 14px;
    padding: 8px 0;
}

a {
    text-decoration: none;
}

.top-bar a {
    color: var(--white);
    transition: 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

.top-bar i {
    margin-right: 6px;
}

/* ====== NAVBAR ====== */
.navbar {
    background: #1A2B48;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.logo-circle {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.logo-circle img {
    height: 50px;
    width: auto;
}

/* Nav Links */
.navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: 0.3s;
    display: inline-block;
}

.navbar-nav .nav-link:hover {
    color: var(--gold);
}

/* Active Link */
.navbar-nav .nav-link.active {
    color: var(--gold);
}

/* HERO VIDEO SECTION */
.hero-video {
    position: relative;
    width: 100%;
    height: 90vh;
    /* Perfectly fills the screen below the header */
    max-height: 800px;
    min-height: 500px;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* VIDEO */
.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures no distortion or black bars */
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    /* Prevents unwanted interactions */
}

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

/* Tablets */
@media (max-width: 991px) {
    .hero-video {
        height: 60vh;
        min-height: 450px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-video {
        height: auto;
        aspect-ratio: 16/9;
        min-height: auto;
        max-height: none;
    }
}

@media (min-width: 992px) {
    .hero-video {
        height: auto;
        aspect-ratio: 16/9;
        min-height: 500px;
        max-height: none;
    }
}

/* Small Mobile Fix */
@media (max-width: 400px) {
    .hero-video {
        height: auto;
        aspect-ratio: 16/9;
        min-height: auto;
    }
}


/* whatsapp-icon */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 10px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    z-index: 999;
}


/* .dropdown-toggle::after {
    border-top: .3em solid #ffffff;
} */

/* ====== DROPDOWN ====== */
.dropdown-menu {
    background: #1A2B48;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown-item {
    color: #ffffff;
    font-size: 14px;
    padding: 10px 20px;
    transition: 0.3s;
}

.dropdown-item:hover {
    background: var(--gold);
    color: #ffffff;
}

/* ====== BUTTON ====== */
.btn-inspection {
    background: linear-gradient(90deg, #C5A059, #E6C97A, #A67C2D);
    color: #1A2B48;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-inspection:hover {
    opacity: 0.9;
}

@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}


/* .btn-inspection:hover {
    box-shadow: 0 0 10px #E6C97A,
        0 0 20px #C5A059,
        0 0 30px #A67C2D;
    transform: translateY(-2px);
} */

/* service-section */

.service-title {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 600;
    color: var(--navy);
}

.service-title::after {
    content: "";
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), #E6C97A, var(--gold));
    display: block;
    margin: 12px auto 0;
    border-radius: 50px;
}

/* ===== SERVICE CARD ===== */
.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: 0.4s ease;
}

/* IMAGE */
.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.6s ease;
}

/* DARK OVERLAY FULL */
.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    transition: 0.4s;
}

/* TEXT CONTAINER (CENTER STRIP STYLE) */
.service-overlay {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

/* TEXT DESIGN */
.service-overlay h4 {
    display: inline-block;
    padding: 12px 25px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 30px;

    /* GLASS + GRADIENT STRIP */
    background: linear-gradient(to right,
            rgba(26, 43, 72, 0),
            rgba(26, 43, 72, 0.9),
            rgba(26, 43, 72, 1),
            rgba(26, 43, 72, 0.9),
            rgba(26, 43, 72, 0));

    backdrop-filter: blur(6px);
}

/* HOVER EFFECT */
.service-card:hover img {
    transform: scale(1.1);
}

.service-card:hover::after {
    background: rgba(0, 0, 0, 0.4);
}

.service-card:hover {
    transform: translateY(-5px);
}

/* INITIAL STATE FOR GSAP */
.service-card {
    transform: translateY(80px) scale(0.95);
    opacity: 0;
    will-change: transform, opacity;
}

/* Overlay text bhi animate hoga */
.service-overlay h4 {
    transform: translateY(20px);
    opacity: 0;
}

@media (max-width: 576px) {
    .service-overlay h4 {
        font-size: 15px;
    }
}

/* work process */

.process-section {
    padding: 50px;
    background: linear-gradient(135deg, var(--navy), var(--dark-blue));
    color: #fff;
}

/* HEADER */
.header {
    text-align: center;

}

.header h2 {
    font-size: clamp(26px, 5vw, 44px);
    font-weight: 600;
    color: #fff;
}

.header-text {
    color: #fff;
    opacity: 0.75;

}

.header p {
    opacity: 0.75;
}

/* AREA */
.process-area {
    position: relative;
    max-width: 1400px;
    margin: auto;
    height: 600px;
}

/* SVG */
.process-path {
    position: absolute;
    top: 150px;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

/* STEPS */
.step {
    position: absolute;
    width: 190px;
    z-index: 3;
}

/* POSITIONS (SPACED PERFECTLY) */
.step1 {
    top: 120px;
    left: 2%;
}

.step2 {
    top: 270px;
    left: 22%;
}

.step3 {
    top: 90px;
    left: 42%;
}

.step4 {
    top: 270px;
    left: 62%;
}

.step5 {
    top: 120px;
    left: 82%;
}

/* NODE DOT */
.step::before {
    content: attr(data-step);
    position: absolute;
    top: 100%;
    left: 50%;
    width: 32px;
    height: 32px;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50%;
    transform: translate(-50%, 12px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
}

.step:hover::before {
    box-shadow: 0 0 20px var(--gold), 0 0 40px var(--gold);
    transform: translate(-50%, 12px) scale(1.1);
}

/* CARD */
.card {
    position: relative;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: 0.4s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* IMAGE */
.card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 12px;
}

/* NUMBER */
.card span {
    position: absolute;
    top: 10px;
    left: 10px;
    color: var(--gold);
    font-weight: 600;
}

/* TITLE */
.card h3 {
    margin-top: 10px;
    text-align: center;
    color: #fff;
    font-size: 18px;
}

/* HOVER */
.card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 25px 60px rgba(197, 160, 89, 0.3);
}

/* ================================
   LARGE SCREENS (1200px+)
   Slight spacing optimization
================================ */
@media (max-width: 1200px) {

    .process-area {
        max-width: 1000px;
        height: 550px;
    }

    .step {
        width: 170px;
    }

    .card img {
        height: 190px;
    }

}


/* ================================
   TABLET (992px)
   Reduce spread & scale layout
================================ */
@media (max-width: 992px) {

    .header h2 {
        font-size: 32px;
    }

    .process-area {
        height: 500px;
    }

    .step {
        width: 150px;
    }

    .card img {
        height: 320px;
    }

    .card h3 {
        font-size: 16px;
    }
}


/* ================================
   SMALL TABLET (768px)
   Convert to grid (IMPORTANT)
================================ */
@media (max-width: 768px) {

    .process-section {
        padding: 40px 20px;
    }

    .header h2 {
        font-size: 28px;
    }

    .header-text,
    .header p {
        font-size: 14px;
    }

    /* REMOVE SVG PATH */
    .process-path {
        display: none;
    }

    /* SWITCH TO GRID */
    .process-area {
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* RESET STEP POSITION */
    .step {
        position: relative;
        width: 100%;
        top: auto !important;
        left: auto !important;
    }

    .step::before {
        display: none;
    }

    .card img {
        height: 320px;
    }
}


/* ================================
   MOBILE (576px)
   Single column luxury layout
================================ */
@media (max-width: 576px) {

    .process-area {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .header h2 {
        font-size: 32px;
    }

    .card {
        padding: 10px;
    }

    .card img {
        height: 160px;
    }

    .card h3 {
        font-size: 13px;
        margin-top: 8px;
    }
}


/* about-us section */
.about-section {
    padding: 60px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

/* SUBTLE GOLD GLOW */
.about-section::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.2), transparent 70%);
    filter: blur(50px);
}

/* ===== HEADING ===== */
.about-heading h2 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    color: var(--navy);
}

.about-sub {
    color: #777;
    margin-top: 10px;
    font-size: 15px;
}

/* GOLD UNDERLINE */
.about-heading h2::after {
    content: "";
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, var(--gold), #E6C97A, var(--gold));
    display: block;
    margin: 12px auto;
    border-radius: 50px;
}

/* ===== CONTAINER ===== */
.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    position: relative;
}

/* ===== IMAGE ===== */
.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 650px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

/* PAINTER FRAME */
.about-image::before {
    content: "";
    position: absolute;
    top: -12px;
    left: -12px;
    width: 100%;
    height: 100%;
    border: 2px dashed var(--gold);
    border-radius: 25px;
    z-index: -1;
}

/* ===== DARK CARD ===== */
.about-card {
    position: absolute;
    right: 0;
    width: 420px;
    padding: 45px;

    background: linear-gradient(135deg, #1A2B48, #0F1A2A);
    color: #ffffff;

    border-radius: 20px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(197, 160, 89, 0.15);

    border-left: 5px solid var(--gold);
    transition: 0.3s;
}

/* TOP GOLD SHINE */
.about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* TAG */
.about-tag {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* TITLE */
.about-card h3 {
    font-size: 30px;
    color: #ffffff;
    margin: 10px 0 15px;
}

/* TEXT */
.about-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: linear-gradient(90deg, #C5A059, #E6C97A, #A67C2D);
    color: #1A2B48;
    font-weight: 600;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

/* BUTTON SHINE */
.about-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transition: 0.5s;
}

.about-btn:hover::after {
    left: 100%;
}

.about-btn:hover {
    transform: translateY(-2px);
}

/* HOVER */
.about-card:hover {
    transform: translateY(-6px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }

    .about-card {
        position: relative;
        width: 100%;
        margin-top: -60px;
    }
}

/* brands */

.logo-section {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #F5F1E6, #ffffff); */
    text-align: center;
    overflow: hidden;
}

.brand-title {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 50px;
}

.brand-title::after {
    content: "";
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), #E6C97A, var(--gold));
    display: block;
    margin: 12px auto 0;
    border-radius: 50px;
}

/* ===== SLIDER ===== */
.logo-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* TRACK */
.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 25s linear infinite;
}

/* LOGOS */
.logo-track img {
    width: 150px;
    margin: 0 25px;
    transition: 0.3s ease;
    padding: 8px;
}

/* HOVER EFFECT */
.logo-track img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ANIMATION */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* FADE EDGES (Premium look) */
.logo-slider::before,
.logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, #F5F1E6, transparent);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

/* testimonial */

.testmonial {
    background: linear-gradient(135deg, var(--navy), var(--dark-blue));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Luxury Glow Spots in background */
.testmonial::before {
    content: "";
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1), transparent 70%);
    filter: blur(100px);
    z-index: 0;
}

.testmonial::after {
    content: "";
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 43, 72, 0.5), transparent 70%);
    filter: blur(100px);
    z-index: 0;
}

.heading-title {
    color: #ffffff;
    /* White text for dark theme */
    font-weight: 600;
    font-size: 44px;
    margin-top: 7px;
}

/* ===== DARK GLASS CARD ===== */
.paint-review-item {
    background: rgba(255, 255, 255, 0.03);
    /* Translucent White */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 45px 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin: 20px;
    overflow: hidden;
    z-index: 1;
    height: 360px;
    display: flex;
    flex-direction: column;

}

/* Glowing Gold Border on Hover */
.paint-review-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    /* Border thickness */
    background: linear-gradient(135deg, transparent, var(--gold), transparent, var(--gold), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.2;
    /* Subtle visible border by default */
    transition: 0.5s;
}

.paint-review-item:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, var(--gold), #ffffff, var(--gold));
}

/* Quote Icon - Subtle in Dark Mode */
.paint-review-item::after {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 40px;
    color: rgba(197, 160, 89, 0.1);
}

.paint-review-item:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(197, 160, 89, 0.15);
}

/* ===== REVIEWER INFO ===== */
.reviewer-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #e6c97a);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--navy);
    /* Navy text on Gold background */
    font-weight: 800;
    font-size: 1.4rem;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

.reviewer-meta h5 {
    margin: 0;
    color: #ffffff;
    font-weight: 700;
}

.reviewer-meta span {
    color: var(--gold);
    /* Gold sub-title */
    font-size: 0.85rem;
    font-weight: 500;
}

.review-text {
    color: rgba(255, 255, 255, 0.8);
    /* Soft white text */
    line-height: 1.8;
    font-size: 1.05rem;
    margin-top: 15px;
}

.stars-wrap {
    margin-top: 20px;
    color: #FFD700;
    margin-top: auto;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.4));
}

/* Owl Dots for Dark Theme */
.owl-dot span {
    background: rgba(255, 255, 255, 0.2) !important;
}

.owl-dot.active span {
    background: var(--gold) !important;
    box-shadow: 0 0 10px var(--gold);
}


@media (max-width: 576px) {
    .heading-title {
        font-size: 25px;
    }
}

/* why to choose us */

.why-section {
    background: var(--cream);
    padding: 80px 0;
    position: relative;
}

/* TITLE */
.why-title {
    font-size: 44px;
    font-weight: 600;
    color: var(--navy);
    position: relative;
}

/* underline */
.why-title::after {
    content: "";
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), #E6C97A, var(--gold));
    display: block;
    margin: 12px auto 0;
    border-radius: 50px;
}

/* CARD */
.why-card {
    position: relative;
    background: #fff;
    padding: 40px 25px;
    margin: 20px 10px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* UNIQUE CORNER BORDER DESIGN */
.why-card::before,
.why-card::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--navy);
}

/* top left */
.why-card::before {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
    border-radius: 12px 0 0 0;
}

/* bottom right */
.why-card::after {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 12px 0;
}

.why-card p {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    line-height: 1.6;
}

/* ICON */
.icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 12px;

    background: linear-gradient(135deg, var(--navy), var(--dark-blue));
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* TEXT */
.why-card h5 {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #666;
}

/* LINK */
.why-card a {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: var(--navy);
    font-weight: 500;
    transition: 0.3s;
}

.why-card a:hover {
    color: var(--gold);
}

/* HOVER EFFECT */
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.why-card:hover .icon-box {
    background: linear-gradient(135deg, var(--gold), #E6C97A);
    color: var(--navy);
}



.why-section .row>div {
    margin-bottom: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .why-title {
        font-size: 35px;
    }

    .why-card {
        margin-bottom: 30px;
        height: 300px;
    }

    .icon-box {
        height: 50px;
        width: 40px;
        font-size: 15px;
        padding: 5px;
    }
}

/* ====== FOOTER ====== */
.footer-section {
    background: linear-gradient(180deg, var(--navy), var(--dark-blue));
    color: var(--cream);
    padding: 60px 0 20px;
    position: relative;
}

/* subtle gold top border */
.footer-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
}

.footer-logo {
    height: 120px;
}

.footer-section h5 {
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 600;
}

/* links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--cream);
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* contact icons */
.footer-section p i {
    color: var(--gold);
    margin-right: 8px;
}

/* social icons */
.footer-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-align: center;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
}

/* CONTACT HOVER EFFECT */
.footer-contact-item {
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.footer-contact-item i {
    color: var(--gold);
    transition: 0.3s;
}

.footer-contact-item a,
.footer-contact-item p {
    color: var(--cream);
    margin: 0;
    transition: 0.3s;
}

/* HOVER EFFECT */
.footer-contact-item:hover i {
    transform: scale(1.2);
    color: var(--gold);
}

.footer-contact-item:hover a,
.footer-contact-item:hover p {
    color: var(--gold);
}

/* bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 15px;
    font-size: 14px;
}


/* ================================
   NEW WHEEL SECTION (OVERLAY LAYOUT)
   ================================ */
.wheel-section {
    padding: 60px 0 0 0;
    background: linear-gradient(135deg, #ffffff, var(--cream));
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

/* WHEEL SEMICIRCLE WRAPPER */
.wheel-wrapper-new {
    width: min(1200px, 100vw);
    aspect-ratio: 2 / 1;
    height: auto;
    position: relative;
}

/* MASK (Hides bottom half) */
.wheel-mask-new {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* ROTATING FULL WHEEL */
.wheel-full {
    width: 100%;
    height: 200%;
    position: absolute;
    bottom: -100%;
    left: 0;
    transform-origin: center center;
    will-change: transform;
}

.wheel-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 -15px 40px rgba(197, 160, 89, 0.25));
    pointer-events: none;
    user-select: none;
}

/* OVERLAY TEXT CARD */
.wheel-overlay-content {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    z-index: 10;
    padding: 0 20px 40px 20px;
    /* Space from bottom */
    display: flex;
    justify-content: center;
}

.glass-card {
    background: rgba(255, 255, 255, 0.65);
    /* Highly frosted white glass */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding: 50px 60px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(197, 160, 89, 0.15), inset 0 0 40px rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

/* Subtle Inner Shine */
.glass-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

/* Typography & Animations */
.premium-badge {
    color: var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 15px;
    background: rgba(197, 160, 89, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.luxury-title {
    margin-bottom: 25px;
    line-height: 1.2;
    font-size: 42px;
    color: var(--navy);
}

.luxury-title strong {
    color: var(--gold);
    font-family: 'Cardo', serif;
    font-style: italic;
    background: linear-gradient(90deg, #C5A059, #E6C97A, #A67C2D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wheel-desc {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 500;
}

.gold-text {
    color: var(--gold);
    font-weight: 800;
}

/* Gentle Floating Animation */
.floating-glass {
    animation: float-gentle 6s ease-in-out infinite;
}

@keyframes float-gentle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Premium Button */
.premium-btn-hover {
    display: inline-flex;
    align-items: center;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
    transition: all 0.4s ease;
    text-decoration: none;
    color: var(--navy);
    background: linear-gradient(90deg, #C5A059, #E6C97A, #A67C2D);
    font-weight: 700;
}

.premium-btn-hover:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.4);
    color: #fff;
}

/* TABLET RESPONSIVE */
@media (max-width: 991px) {
    .wheel-overlay-content {
        max-width: 90%;
        padding: 0 20px 30px 20px;
    }

    .luxury-title {
        font-size: 36px;
    }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .wheel-section {
        overflow: hidden;
        /* Prevent horizontal scroll */
    }

    .wheel-wrapper-new {
        aspect-ratio: auto;
        padding-bottom: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        overflow: hidden;
    }

    .wheel-mask-new {
        position: relative;
        aspect-ratio: 2/1;
        width: 100%;
        /* Full width without cropping */
        left: 0;
        /* Keep wheel centered perfectly */
        margin: 0 auto;
    }

    .wheel-overlay-content {
        position: relative;
        left: auto;
        right: auto;
        transform: none;
        padding: 0 15px;
        margin-top: -30px;
        /* Pull card up over the wheel slightly */
        width: 100%;
        box-sizing: border-box;
    }

    .glass-card {
        width: 100%;
        padding: 35px 25px;
        border-radius: 20px;
        box-sizing: border-box;
        /* Ensure padding doesn't cause overflow */
    }

    .wheel-desc {
        font-size: 15px;
    }

    .luxury-title {
        font-size: 28px;
    }
}




/* form-section */
.lux-contact {
    display: flex;
    min-height: 100vh;
    background: #0f1a2a;
    position: relative;
    overflow: hidden;

}

/* LEFT SIDE */
.visual-side {
    flex: 1;
    position: relative;
    background: url('../images/about/form.jpeg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15, 26, 42, 0.9), rgba(26, 43, 72, 0.6));
}

.visual-content {
    position: relative;
    color: #fff;
    text-align: center;
    max-width: 400px;
}

.visual-content h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.visual-content p {
    color: #ccc;
}

.floating-card {
    margin-top: 30px;
    padding: 15px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    animation: float 4s ease-in-out infinite;
}

/* RIGHT SIDE */
.form-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* CURSOR GLOW */
/* .cursor-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.25), transparent);
    filter: blur(80px);
    pointer-events: none;
} */

/* FORM CARD */
.form-card {
    width: 90%;
    max-width: 450px;
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s;
}

.form-card h2 {
    color: #fff;
    margin-bottom: 20px;
}

/* INPUT */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

input,
textarea,
select {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
}

label {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #777;
    transition: 0.3s;
}

input:focus+label,
input:valid+label,
textarea:focus+label,
textarea:valid+label,
select:valid+label {
    top: -8px;
    font-size: 12px;
    color: var(--gold);
    background: var(--dark-blue);
    padding: 0 5px;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
}

/* BUTTON */
button {
    /* width: 100%; */
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(45deg, #c5a059, #e0c27a);
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.6);
}

/* ERROR */
.error {
    font-size: 12px;
    color: #d6bfa3;
}

/* SUCCESS */
.success-msg {
    display: none;
    color: var(--gold);
    margin-top: 10px;
    text-align: center;
}

/* BACKGROUND WRAPPER */
.bg-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* BLOBS */
.blob {
    position: absolute;
    filter: blur(120px);
    opacity: 0.35;
    border-radius: 50%;
    animation: float 12s infinite ease-in-out alternate;
}

.blob1 {
    width: 400px;
    height: 400px;
    background: #c5a059;
    top: 10%;
    left: 5%;
}

.blob2 {
    width: 300px;
    height: 300px;
    background: #1a2b48;
    bottom: 10%;
    right: 5%;
}

.blob3 {
    width: 350px;
    height: 350px;
    background: #c5a059;
    bottom: 20%;
    left: 30%;
}

/* PARTICLES */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particles::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(197, 160, 89, 0.25) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: moveParticles 20s linear infinite;
}

/* ANIMATIONS */
@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(40px, -50px);
    }
}

@keyframes moveParticles {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-200px);
    }
}

.visual-side,
.form-side {
    position: relative;
    z-index: 2;
}

.form-group select {
    width: 100%;
    padding: 14px;

    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    appearance: none;
    cursor: pointer;
}

/* dropdown list styling (limited support) */
.form-group select option {
    background: #0f1a2a;
    color: #fff;
}

/* ANIMATION */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* MOBILE */
@media(max-width: 900px) {
    .lux-contact {
        flex-direction: column;
    }

    .form-card {
        margin-top: 25px;
    }
}

/* Breadcrumb area  */

/* SECTION */
.contact-banner-unique {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--navy), var(--dark-blue));
    overflow: hidden;
    color: #fff;
    text-align: center;
}

/* BACKGROUND IMAGE */
.bg-image {
    position: absolute;
    inset: 0;
    background: url('../images/about/contact.avif') center/cover no-repeat;
    opacity: 0.25;
    filter: blur(2px);
    transform: scale(1.1);
}

/* DARK + GOLD OVERLAY */
.contact-banner-unique::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(197, 160, 89, 0.2), transparent 60%),
        rgba(15, 26, 42, 0.55);
}

/* CENTER CONTENT */
.banner-center {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: auto;
}

/* BREADCRUMB */
.breadcrumb-pill {
    display: inline-flex;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.3);
    margin-bottom: 25px;
}

.breadcrumb-pill a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-pill a:hover {
    color: var(--gold);
}

.breadcrumb-pill .active {
    color: var(--gold);
}

/* TITLE */
.title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
}

.title span {
    color: var(--gold);
    position: relative;
}

/* GOLD LINE */
.title span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 60%;
    height: 2px;
    background: var(--gold);
    transform: translateX(-50%);
    box-shadow: 0 0 12px var(--gold);
}

/* SUBTITLE */
.subtitle {
    margin-top: 20px;
    color: #bbb;
}



/* RESPONSIVE */
@media(max-width: 768px) {
    .title {
        font-size: 40px;
    }

    .contact-banner-unique {
        padding: 120px 20px;
    }
}

/* contact-us page  */

.btc-contact-detail-wrapper {
    padding: 50px 20px;
    background: linear-gradient(135deg, var(--cream), #f1ece3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* HEADER */
/* .btc-contact-header h2 {
    font-size: 40px;
    color: var(--navy);
    margin-bottom: 10px;
} */

.btc-contact-header p {
    color: #666;
    margin-bottom: 40px;
}

/* GRID */
.btc-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.btc-contact-card-item {
    position: relative;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(120deg, var(--gold), #ffffff, var(--gold));
    background-size: 300% 300%;
    animation: btcBorderMove 6s linear infinite;
}

@keyframes btcBorderMove {
    0% {
        background-position: 0%
    }

    100% {
        background-position: 300%
    }
}

/* INNER GLASS */
.btc-card-inner-box {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 45px 30px;
    height: 100%;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.btc-contact-card-item:hover .btc-card-inner-box {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* ICON SYSTEM */
.btc-icon-container {
    width: 75px;
    height: 75px;
    margin: 0 auto 25px;
    perspective: 1000px;
}

.btc-icon-flipper {
    width: 100%;
    height: 100%;
    transition: transform 0.7s;
    transform-style: preserve-3d;
    position: relative;
}

.btc-contact-card-item:hover .btc-icon-flipper {
    transform: rotateY(180deg);
}

.btc-icon-front,
.btc-icon-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    backface-visibility: hidden;
}

.btc-icon-front {
    background: rgba(197, 160, 89, 0.15);
    color: var(--gold);
}

.btc-icon-back {
    background: var(--gold);
    color: #fff;
    transform: rotateY(180deg);
}

/* TEXT */
.btc-card-inner-box h3 {
    color: var(--navy);
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 700;
}

.btc-card-inner-box p {
    color: #000000;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

/* SUBTLE GLOW */
.btc-contact-card-item::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: radial-gradient(circle at top, rgba(197, 160, 89, 0.2), transparent);
    opacity: 0;
    transition: 0.4s;
}

.btc-contact-card-item:hover::before {
    opacity: 1;
}

@media(max-width:768px) {
    .btc-contact-header h2 {
        font-size: 32px;
    }
}

/* about-us page  */

/* ============================= */
/* HEADER */
/* ============================= */
.bcx-lux-mvv-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.bcx-lux-mvv-header h2 {
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

@media (max-width: 768px) {

    .bcx-lux-mvv-header h2 {
        font-size: 28px;
    }
}

/* GOLD LINE EFFECT */
.bcx-lux-mvv-header h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    margin: 15px auto 0;
    background: linear-gradient(90deg, transparent, #C5A059, transparent);
}

/* SUBTEXT */
.bcx-lux-mvv-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
}

.bcx-lux-mvv-wrapper {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(180deg, var(--dark-blue), var(--navy));
    overflow: hidden;
}

/* ============================= */
/* BACKGROUND SHAPES */
/* ============================= */
.bcx-lux-mvv-bgshape {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 0;
}

.shape-one {
    background: var(--gold);
    top: -100px;
    left: -100px;
}

.shape-two {
    background: var(--gold);
    bottom: -120px;
    right: -100px;
}

/* ============================= */
/* CARD BASE */
/* ============================= */
.bcx-lux-mvv-card {
    position: relative;
    padding: 45px;
    border-radius: 24px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.04);
    /* Very subtle white overlay */
    border: 1px solid var(--gold-glow);
    color: var(--white);
    z-index: 2;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
}

/* ============================= */
/* CENTER CARD HIGHLIGHT */
/* ============================= */
.vision-card {
    /* Using gold with more opacity for highlight */
    border: 1px solid rgba(197, 160, 89, 0.6);
    box-shadow: 0 20px 60px rgba(197, 160, 89, 0.2);
}

/* ============================= */
/* ICON */
/* ============================= */
.bcx-lux-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
    transition: 0.4s;
}

.bcx-lux-icon-wrap i {
    color: var(--gold);
    font-size: 26px;
}

/* ============================= */
/* TEXT */
/* ============================= */
.bcx-lux-mvv-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--gold);
}

.bcx-lux-mvv-card p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    /* Semi-transparent white for readability */
    margin-bottom: 0;
}

/* ============================= */
/* HOVER EFFECT */
/* ============================= */
.bcx-lux-mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border-color: rgba(197, 160, 89, 0.8);
}

/* our projects page  */


/* gallery */
.gallery-section {
    background: linear-gradient(135deg, #f0f7fa 0%, #e2f0f7 100%);
    padding: 80px 0;
    position: relative;
    color: #014B8C;
}

/* Floating soft glows */
.gallery-section::before,
.gallery-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    opacity: 0.2;
}

.gallery-section::before {
    width: 300px;
    height: 300px;
    background: #0A9291;
    top: -80px;
    left: -80px;
}

.gallery_img {
    margin-bottom: 1rem;
}

/* .gallery-section::after {
  width: 350px;
  height: 350px;
  background: #014B8C;
  bottom: -120px;
  right: -100px;
} */

/* Section Titles */
.span-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0A9291;
    display: block;
}



/* Gallery items */
.gallery-item {
    padding: 10px;
    z-index: 1;
}

.zoom {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(1, 75, 140, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.zoom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.8s ease, filter 0.4s ease;
    filter: brightness(95%);
}

.zoom:hover img {
    transform: scale(1.15);
    filter: brightness(105%);
}

.zoom:hover {
    box-shadow: 0 20px 40px rgba(1, 75, 140, 0.15);
}

/* Service-detail pages  */

/* 1.Interior-Space  */

.bc-interior-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fdfaf6, #ffffff);
}

.bc-interior-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* IMAGE */
.bc-interior-image {
    flex: 1;
    position: relative;
}

.bc-interior-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* CONTENT */
.bc-interior-content {
    flex: 1;
}

.bc-tag {
    display: inline-block;
    background: #f5efe6;
    color: #b68c2a;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.bc-interior-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}

.bc-interior-content p {
    color: #666;
    margin-bottom: 25px;
}

/* FEATURES */
.bc-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.bc-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #333;
}

.bc-feature-item i {
    color: #b68c2a;
    font-size: 18px;
}

/* BUTTON */
.bc-btn {
    display: inline-block;
    background: #b68c2a;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.bc-btn:hover {
    background: #000;
}

/* Interior-space page css */

/* 1. Hero Section */
.is-hero-sec {
    position: relative;
    padding: 140px 20px 100px;
    background: linear-gradient(135deg, var(--navy), var(--dark-blue));
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.is-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/services/s1.png') center/cover no-repeat;
    opacity: 0.15;
    filter: blur(3px);
    transform: scale(1.05);
    z-index: 1;
}

.is-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
}

.is-breadcrumb {
    display: inline-flex;
    gap: 12px;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 160, 89, 0.3);
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
}

.is-breadcrumb a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.is-breadcrumb a:hover,
.is-breadcrumb .active {
    color: var(--gold);
}

.is-hero-title {
    font-size: 65px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.is-hero-title span {
    color: var(--gold);
    position: relative;
}

.is-hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.is-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* 2. Intro Layout */
.is-intro-sec {
    padding: 80px 0;
    background: var(--cream);
    overflow: hidden;
}

.is-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.is-intro-images {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

.is-img-main {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.is-img-overlap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border: 10px solid var(--cream);
    border-radius: 20px;
    z-index: 3;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.is-intro-tag {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
}

.is-intro-title {
    font-size: 46px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 25px;
    line-height: 1.2;
}

.is-intro-text {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.is-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 45px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.is-feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--navy);
    font-weight: 600;
    font-size: 16px;
}

.is-feature-list i {
    color: var(--gold);
    font-size: 18px;
    background: rgba(197, 160, 89, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* 3. Offerings / Services Breakdown */
.is-offer-sec {
    padding: 120px 0;
    background: #ffffff;
}

.is-section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.is-section-head h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.is-section-head p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.is-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.is-offer-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.is-offer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.is-offer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 26, 42, 0.95) 0%, rgba(15, 26, 42, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    transition: 0.5s;
}

.is-offer-card:hover img {
    transform: scale(1.1);
}

.is-offer-card:hover .is-offer-overlay {
    background: linear-gradient(to top, rgba(15, 26, 42, 0.98) 0%, rgba(15, 26, 42, 0.8) 60%, rgba(15, 26, 42, 0.4) 100%);
}

.is-offer-icon {
    width: 55px;
    height: 55px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.4s ease;
}

.is-offer-card:hover .is-offer-icon {
    transform: translateY(0);
    opacity: 1;
}

.is-offer-title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.is-offer-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: 0.5s ease;
}

.is-offer-card:hover .is-offer-desc {
    max-height: 150px;
    opacity: 1;
    margin-top: 10px;
}

/* 4. Why Choose Us (Unique Staggered Layout) */
.is-why-sec {
    padding: 120px 0;
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.is-why-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}

.is-why-container {
    position: relative;
    z-index: 2;
}

.is-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.is-why-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.is-why-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
    backdrop-filter: blur(10px);
}

.is-why-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: rgba(197, 160, 89, 0.4);
}

.is-why-num {
    font-size: 48px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--gold);
    line-height: 1;
    font-family: serif;
}

.is-why-content h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.is-why-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin: 0;
    line-height: 1.7;
}

.is-why-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;

}

.is-why-image img {
    width: 100%;
    border-radius: 24px;
    display: block;
    margin-top: 150px;
}

.is-why-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: linear-gradient(135deg, var(--gold), #e0c27a);
    padding: 30px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--navy);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.4);
}

.is-why-badge span {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.is-why-badge small {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 5px;
}

/* 5. Work Process Flow */
.is-process-sec {
    padding: 120px 0;
    background: var(--cream);
}

.is-process-wrap {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.is-process-line {
    position: absolute;
    top: 45px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: rgba(197, 160, 89, 0.3);
    z-index: 1;
}

.is-process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 20%;
    padding: 0 15px;
}

.is-process-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: #fff;
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--navy);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.is-process-icon::after {
    content: attr(data-step);
    position: absolute;
    top: 0;
    right: 0;
    background: var(--navy);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.is-process-step:hover .is-process-icon {
    background: var(--gold);
    color: #fff;
    transform: translateY(-10px);
}

.is-process-step h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.is-process-step p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* 6. Materials / Premium Quality Parallax */
.is-quality-sec {
    padding: 150px 0;
    background: url('../images/services/s12.png') center/cover fixed;
    position: relative;
    text-align: center;
    color: #fff;
}

.is-quality-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 26, 42, 0.9) 0%, rgba(15, 26, 42, 0.7) 100%);
}

.is-quality-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
}

.is-quality-content h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.is-quality-content h2 span {
    color: var(--gold);
}

.is-quality-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #ddd;
}

.is-brand-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.is-brand-logos img {
    height: 110px;
    background: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.is-brand-logos img:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

/* 7. Showcase Gallery */
.is-gallery-sec {
    padding: 120px 0;
    background: #fff;
}

.is-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.is-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
}

.is-gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1;
}

.is-gallery-item:nth-child(4) {
    grid-column: span 2;
    aspect-ratio: 2/0.95;
}

.is-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.is-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(197, 160, 89, 0.4);
    opacity: 0;
    transition: 0.4s;
}

.is-gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #fff;
    font-size: 35px;
    z-index: 2;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.is-gallery-item:hover img {
    transform: scale(1.1);
}

.is-gallery-item:hover::after {
    opacity: 1;
}

.is-gallery-item:hover .is-gallery-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* --- Lightbox Gallery Modal CSS --- */
.is-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 26, 42, 0.92);
    /* Dark navy matching --dark-blue overlay */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.is-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.is-lightbox-content {
    position: relative;
    max-width: 85%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.is-lightbox.active .is-lightbox-content {
    transform: scale(1);
}

.is-lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    object-fit: contain;
}

.is-lightbox-caption {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px;
    text-align: center;
    background: rgba(15, 26, 42, 0.6);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    letter-spacing: 0.5px;
}

/* Lightbox Controls */
.is-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 35px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.is-lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.1);
}

.is-lightbox-prev,
.is-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 10000;
    outline: none;
}

.is-lightbox-prev {
    left: 40px;
}

.is-lightbox-next {
    right: 40px;
}

.is-lightbox-prev:hover,
.is-lightbox-next:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

/* Clickable gallery items styling */
.is-gallery-item {
    cursor: pointer;
}

/* Lightbox Mobile Adjustments */
@media (max-width: 768px) {
    .is-lightbox-prev {
        left: 15px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .is-lightbox-next {
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .is-lightbox-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .is-lightbox-content {
        max-width: 95%;
    }

    .is-lightbox-content img {
        max-height: 60vh;
    }
}

/* 8. Custom CTA Section */
.is-cta-sec {
    padding: 0 0 100px;
    background: #fff;
}

.is-cta-wrapper {
    background: linear-gradient(135deg, var(--navy), var(--dark-blue));
    border-radius: 30px;
    padding: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.is-cta-wrapper::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.is-cta-wrapper::after {
    content: '';
    position: absolute;
    left: -50px;
    bottom: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.is-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.is-cta-content h2 {
    font-size: 42px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.is-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin: 0;
}

.is-cta-action {
    position: relative;
    z-index: 2;
}

.is-cta-btn {
    background: var(--gold);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3);
    text-decoration: none;
}

.is-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.5);
    color: #fff;
}

/* Responsive */
@media(max-width: 1199px) {

    .is-intro-grid,
    .is-why-grid {
        gap: 40px;
    }

    .is-offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .is-gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .is-gallery-item:nth-child(4) {
        grid-column: span 1;
        aspect-ratio: 1;
    }
}

@media(max-width: 991px) {

    .is-intro-grid,
    .is-why-grid {
        grid-template-columns: 1fr;
    }

    .is-why-image {
        order: -1;
        margin-bottom: 40px;
    }

    .is-img-overlap {
        width: 60%;
    }

    .is-process-wrap {
        flex-direction: column;
        gap: 40px;
    }

    .is-process-line {
        display: none;
    }

    .is-process-step {
        width: 100%;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 25px;
    }

    .is-process-icon {
        margin: 0;
        flex-shrink: 0;
    }

    .is-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .is-cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 50px 30px;
    }
}

@media(max-width: 768px) {
    .is-hero-title {
        font-size: 42px;
    }

    .is-intro-title,
    .is-section-head h2,
    .is-quality-content h2,
    .is-cta-content h2 {
        font-size: 34px;
    }

    .is-offer-grid,
    .is-gallery-grid {
        grid-template-columns: 1fr;
    }

    .is-feature-list {
        grid-template-columns: 1fr;
    }

    .is-why-badge {
        width: 120px;
        height: 120px;
        padding: 20px;
    }

    .is-why-badge span {
        font-size: 24px;
    }

    .is-brand-logos {
        gap: 30px;
    }
}

/* 2. Exterior space  */



/* 2. Intro Section */
.es-intro-sec {
    padding: 130px 0;
    background: #fff;
    position: relative;
}

.es-intro-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
}

.es-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.es-intro-image-wrapper {
    position: relative;
    padding-left: 30px;
    padding-top: 30px;
}

.es-intro-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 4px solid var(--gold);
    z-index: 1;
}

.es-intro-img {
    width: 100%;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    aspect-ratio: 4/5;
    object-fit: cover;
}

.es-intro-stats {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--navy);
    color: #fff;
    padding: 35px 30px;
    z-index: 3;
    box-shadow: 0 15px 30px rgba(26, 43, 72, 0.3);
    text-align: center;
    border-bottom: 4px solid var(--gold);
}

.es-intro-stats h3 {
    font-size: 46px;
    font-weight: 800;
    color: var(--gold);
    margin: 0;
    line-height: 1;
}

.es-intro-stats p {
    margin: 5px 0 0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.es-tag {
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 20px;
    display: inline-block;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 5px;
}

.es-title {
    font-size: 46px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: uppercase;
}

.es-text {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.es-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.es-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 17px;
    color: var(--navy);
    font-weight: 600;
}

.es-check-list i {
    color: var(--gold);
    font-size: 22px;
    margin-top: 1px;
}

/* 3. Why Choose Us (Architectural Cards) */
.es-why-sec {
    padding: 100px 0;
    background: var(--es-gray);
    border-top: 1px solid #e5e5e5;
}

.es-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.es-why-card {
    background: #fff;
    padding: 50px 40px;
    border-bottom: 4px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.es-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--navy);
    transition: 0.4s;
    z-index: 1;
}

.es-why-card:hover::before {
    height: 100%;
}

.es-why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.es-why-content {
    position: relative;
    z-index: 2;
}

.es-why-icon {
    font-size: 45px;
    color: var(--gold);
    margin-bottom: 25px;
    transition: 0.4s;
    display: block;
}

.es-why-card:hover .es-why-icon {
    transform: scale(1.1) translateY(-5px);
}

.es-why-card h4 {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 15px;
    transition: 0.4s;
    text-transform: uppercase;
}

.es-why-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    transition: 0.4s;
    margin: 0;
}

.es-why-card:hover h4,
.es-why-card:hover p {
    color: #fff;
}

/* 4. Services Breakdown */
.es-serv-sec {
    padding: 130px 0;
    background: var(--navy);
    color: #fff;
    position: relative;
}

.es-serv-sec::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.es-section-head {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.es-section-head .es-tag {
    border-color: rgba(197, 160, 89, 0.5);
}

.es-section-head h2 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.es-section-head p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

.es-serv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.es-serv-card {
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
}

.es-serv-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.es-serv-img {
    width: 40%;
    background-size: cover;
    background-position: center;
}

.es-serv-info {
    width: 60%;
    padding: 40px 35px;
}

.es-serv-info h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.es-serv-info p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.es-serv-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.es-serv-info ul li {
    color: #fff;
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.es-serv-info ul li i {
    color: var(--gold);
    font-size: 14px;
}

/* 5. Work Process */
.es-process-sec {
    padding: 130px 0;
    background: #fff;
    overflow: hidden;
}

.es-timeline {
    position: relative;
    max-width: 900px;
    margin: 80px auto 0;
}

.es-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: rgba(197, 160, 89, 0.2);
}

.es-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.es-step:nth-child(even) {
    flex-direction: row-reverse;
}

.es-step-content {
    width: 45%;
    background: var(--cream);
    padding: 35px;
    border-left: 5px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: 0.3s;
}

.es-step:hover .es-step-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.es-step:nth-child(even) .es-step-content {
    border-left: none;
    border-right: 5px solid var(--gold);
    text-align: right;
}

.es-step-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--navy);
    border: 5px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 26px;
    font-weight: 900;
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(197, 160, 89, 0.2);
}

.es-step-content h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.es-step-content p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* 6. Materials / Quality Parallax */
.es-quality-sec {
    padding: 140px 0;
    background: url('../images/services/s1.png') center/cover fixed;
    position: relative;
    color: #fff;
}

.es-quality-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 26, 42, 0.88);
}

.es-quality-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.es-quality-text {
    width: 55%;
}

.es-quality-text h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 1.1;
}

.es-quality-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 35px;
}

.es-shield {
    width: 40%;
    display: flex;
    justify-content: center;
}

.es-shield-inner {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.5);
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.es-shield-inner i {
    font-size: 70px;
    color: var(--gold);
    margin-bottom: 25px;
    display: inline-block;
}

.es-shield-inner h3 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.es-shield-inner p {
    color: #bbb;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* 7. Showcase / Before After */
.es-gallery-sec {
    padding: 130px 0;
    background: var(--es-gray);
}

.es-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.es-gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--navy);
}

.es-gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.es-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.es-gallery-item:hover img {
    transform: scale(1.15);
    opacity: 0.4;
}

.es-gallery-content {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    padding: 35px;
    transition: 0.5s ease;
    opacity: 0;
    background: linear-gradient(to top, rgba(15, 26, 42, 0.95), transparent);
}

.es-gallery-item:hover .es-gallery-content {
    bottom: 0;
    opacity: 1;
}

.es-gallery-content h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.es-gallery-content span {
    color: var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* 8. FAQ Section */
.es-faq-sec {
    padding: 100px 0;
    background: #fff;
}

.es-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 10px;
}

.es-accordion .accordion-button {
    font-size: 19px;
    font-weight: 800;
    color: var(--navy);
    padding: 25px 0;
    background: transparent;
    box-shadow: none;
}

.es-accordion .accordion-button:not(.collapsed) {
    color: var(--gold);
    background: transparent;
}

.es-accordion .accordion-body {
    padding: 0 0 25px 0;
    color: #555;
    line-height: 1.8;
    font-size: 17px;
}

/* 9. Premium CTA */
.es-cta-sec {
    padding: 0 0 100px;
    background: #fff;
}

.es-cta-box {
    background: url('../images/services/s12.png') center/cover;
    position: relative;
    padding: 100px 60px;
    text-align: center;
}

.es-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 43, 72, 0.96), rgba(15, 26, 42, 0.92));
}

.es-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
}

.es-cta-inner h2 {
    font-size: 46px;
    color: #fff;
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 1.1;
}

.es-cta-inner p {
    color: #ccc;
    font-size: 19px;
    margin-bottom: 45px;
    line-height: 1.6;
}

.es-btn {
    background: var(--gold);
    color: #fff;
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    border: 2px solid var(--gold);
}

.es-btn:hover {
    background: transparent;
    color: var(--gold);
}

/* Responsive */
@media(max-width: 991px) {
    .es-intro-grid {
        grid-template-columns: 1fr;
    }

    .es-intro-image-wrapper {
        margin-bottom: 50px;
    }

    .es-why-grid {
        grid-template-columns: 1fr;
    }

    .es-serv-grid {
        grid-template-columns: 1fr;
    }

    .es-serv-card {
        flex-direction: column;
    }

    .es-serv-img {
        width: 100%;
        height: 300px;
    }

    .es-serv-info {
        width: 100%;
    }

    .es-timeline::before {
        left: 35px;
    }

    .es-step {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 90px;
    }

    .es-step:nth-child(even) {
        flex-direction: column;
    }

    .es-step-number {
        left: 35px;
    }

    .es-step-content,
    .es-step:nth-child(even) .es-step-content {
        width: 100%;
        border-left: 4px solid var(--gold);
        border-right: none;
        text-align: left;
    }

    .es-quality-content {
        flex-direction: column;
        text-align: center;
    }

    .es-quality-text,
    .es-shield {
        width: 100%;
    }

    .es-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .es-gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 4/3;
    }
}

@media(max-width: 768px) {
    .es-hero-title {
        font-size: 50px;
    }

    .es-title,
    .es-section-head h2,
    .es-quality-text h2,
    .es-cta-inner h2 {
        font-size: 38px;
    }

    .es-gallery-grid {
        grid-template-columns: 1fr;
    }

    .es-cta-box {
        padding: 80px 20px;
    }

    .es-shield-inner {
        padding: 40px 20px;
    }
}

/* 3. Villas Page */


/* Generic Typography */
.vl-tag {
    color: var(--gold);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.vl-title {
    font-size: 52px;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 25px;
    line-height: 1.15;
}

.vl-title strong {
    font-weight: 800;
}

.vl-text {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

/* 2. Intro Section */
.vl-intro-sec {
    padding: 140px 0;
    background: var(--vl-light);
    position: relative;
}

.vl-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vl-intro-images {
    position: relative;
}

.vl-img-main {
    width: 85%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.vl-img-sub {
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 55%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 10px solid var(--vl-light);
}

.vl-intro-content {
    padding-left: 20px;
}

/* 3. Why Choose Us (Luxury Detail) */
.vl-why-sec {
    padding: 120px 0;
    background: #fff;
}

.vl-center-head {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.vl-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.vl-why-card {
    text-align: center;
    padding: 50px 35px;
    transition: 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
}

.vl-why-card:hover {
    border-color: rgba(197, 160, 89, 0.4);
    background: var(--vl-light);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.vl-why-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 160, 89, 0.08);
    border-radius: 50%;
    color: var(--gold);
    font-size: 36px;
    transition: 0.4s;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.vl-why-card:hover .vl-why-icon {
    background: var(--gold);
    color: #fff;
    transform: scale(1.1);
}

.vl-why-card h4 {
    font-size: 24px;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 15px;
}

.vl-why-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* 4. Signature Finishes */
.vl-signature-sec {
    padding: 140px 0;
    background: var(--dark-blue);
    color: #fff;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

.vl-sig-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.vl-sig-text .vl-title {
    color: #fff;
}

.vl-sig-list {
    list-style: none;
    padding: 0;
    margin: 50px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vl-sig-list li {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 24px;
    font-weight: 300;
    transition: 0.4s;
    cursor: crosshair;
}

.vl-sig-list li:hover {
    color: var(--gold);
    padding-left: 15px;
}

.vl-sig-list li i {
    color: var(--gold);
    font-size: 20px;
    opacity: 0;
    transition: 0.4s;
    transform: translateX(-10px);
}

.vl-sig-list li:hover i {
    opacity: 1;
    transform: translateX(0);
}

.vl-sig-images {
    position: relative;
    height: 550px;
}

.vl-sig-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(197, 160, 89, 0.3);
    transform: scale(1.05);
}

.vl-sig-img.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}

/* 5. Services Breakdown */
.vl-serv-sec {
    padding: 140px 0;
    background: var(--vl-light);
}

.vl-serv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vl-serv-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.vl-serv-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.vl-serv-card:hover img {
    transform: scale(1.15);
}

.vl-serv-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 19, 30, 0.98) 0%, rgba(11, 19, 30, 0.5) 40%, transparent 100%);
    transition: 0.4s;
}

.vl-serv-content {
    position: relative;
    z-index: 2;
    padding: 50px 40px;
    width: 100%;
    transform: translateY(30px);
    transition: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.vl-serv-card:hover .vl-serv-content {
    transform: translateY(0);
}

.vl-serv-content h3 {
    color: var(--gold);
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.vl-serv-content p {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0;
    transition: 0.6s ease 0.1s;
}

.vl-serv-card:hover .vl-serv-content p {
    opacity: 1;
}

.vl-serv-link {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 5px;
    opacity: 0;
    transition: 0.6s ease 0.2s;
}

.vl-serv-card:hover .vl-serv-link {
    opacity: 1;
}

/* 6. Work Process (Elegant Vertical) */
.vl-process-sec {
    padding: 140px 0;
    background: #fff;
}

.vl-proc-container {
    max-width: 850px;
    margin: 80px auto 0;
    position: relative;
}

.vl-proc-container::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(197, 160, 89, 0.3);
}

.vl-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 70px;
}

.vl-step:last-child {
    margin-bottom: 0;
}

.vl-step-dot {
    position: absolute;
    left: 26px;
    top: 5px;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 3px solid var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(197, 160, 89, 0.1);
    transition: 0.4s;
}

.vl-step:hover .vl-step-dot {
    background: var(--gold);
    box-shadow: 0 0 0 8px rgba(197, 160, 89, 0.2);
}

.vl-step-num {
    font-size: 15px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 5px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.vl-step h4 {
    font-size: 26px;
    color: var(--navy);
    font-weight: 300;
    margin-bottom: 15px;
}

.vl-step p {
    color: #666;
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
}

/* 7. Materials Quality */
.vl-quality-sec {
    padding: 140px 0;
    background: var(--navy);
    position: relative;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.vl-quality-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/services/s1.png') center/cover;
    opacity: 0.08;
}

.vl-q-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.vl-q-content i {
    font-size: 55px;
    color: var(--gold);
    margin-bottom: 25px;
    display: inline-block;
}

.vl-q-content h2 {
    font-size: 46px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.vl-q-content p {
    font-size: 19px;
    color: #ddd;
    line-height: 1.8;
    font-weight: 300;
}

/* 8. Gallery */
.vl-gallery-sec {
    padding: 140px 0;
    background: var(--vl-light);
}

.vl-gal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vl-gal-item {
    height: 400px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.vl-gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.vl-gal-item:hover img {
    transform: scale(1.15);
    filter: brightness(0.6);
}

/* 9. Premium CTA */
.vl-cta-sec {
    padding: 140px 0;
    background: var(--dark-blue);
    position: relative;
    overflow: hidden;
}

.vl-cta-sec::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, transparent 70%);
}

.vl-cta-sec::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, transparent 70%);
}

.vl-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.vl-cta-content h2 {
    font-size: 52px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.1;
}

.vl-cta-content p {
    color: #bbb;
    font-size: 19px;
    margin-bottom: 45px;
    font-weight: 300;
}

.vl-btn {
    background: transparent;
    color: var(--gold);
    padding: 20px 50px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    display: inline-block;
    border: 1px solid var(--gold);
    transition: 0.4s;
}

.vl-btn:hover {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.25);
    transform: translateY(-3px);
}

/* Responsive */
@media(max-width: 991px) {
    .vl-hero-title {
        font-size: 52px;
    }

    .vl-intro-grid,
    .vl-sig-grid,
    .vl-serv-grid,
    .vl-why-grid,
    .vl-gal-grid {
        grid-template-columns: 1fr;
    }

    .vl-sig-images {
        display: none;
    }

    .vl-img-sub {
        display: none;
    }

    .vl-img-main {
        width: 100%;
    }

    .vl-serv-card {
        height: 400px;
    }

    .vl-gal-item {
        height: 300px;
    }
}

@media(max-width: 768px) {
    .vl-hero-title {
        font-size: 42px;
    }

    .vl-title {
        font-size: 38px;
    }

    .vl-cta-content h2 {
        font-size: 38px;
    }

    .vl-hero-content {
        padding: 40px 20px;
    }

    .vl-cta-content {
        padding: 50px 20px;
    }

    .vl-step {
        padding-left: 70px;
    }

    .vl-proc-container::before {
        left: 20px;
    }

    .vl-step-dot {
        left: 11px;
    }
}

/* 4. High Rise Apartments  */


/* Generic Typography */
.hr-tag {
    color: var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    display: block;
    margin-bottom: 15px;
}

.hr-title {
    font-size: 46px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: uppercase;
}

.hr-title strong {
    color: var(--gold);
}

.hr-text {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

/* 2. Intro Section */
.hr-intro-sec {
    padding: 140px 0;
    background: #fff;
}

.hr-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hr-img-wrapper {
    position: relative;
}

.hr-img-main {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border: 1px solid var(--hr-border);
}

.hr-stats-box {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--navy);
    padding: 40px;
    color: #fff;
    border-top: 5px solid var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hr-stats-box h3 {
    font-size: 48px;
    font-weight: 900;
    margin: 0;
    color: var(--gold);
}

.hr-stats-box p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 5px 0 0;
    font-weight: 700;
}

.hr-feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.hr-feature-list li {
    font-size: 18px;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hr-feature-list i {
    color: var(--gold);
    font-size: 24px;
}

/* 3. Safety & Equipment (Dark Structural) */
.hr-safety-sec {
    padding: 140px 0;
    background: var(--dark-blue);
    color: #fff;
    border-top: 5px solid var(--gold);
}

.hr-safety-sec .hr-title {
    color: #fff;
}

.hr-safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.hr-safety-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.hr-safety-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transition: 0.4s;
    transform-origin: bottom;
}

.hr-safety-card:hover::before {
    transform: scaleY(1);
}

.hr-safety-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-10px);
    border-color: rgba(197, 160, 89, 0.4);
}

.hr-safety-icon {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 25px;
}

.hr-safety-card h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hr-safety-card p {
    color: #aaa;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* 4. Services Breakdown */
.hr-serv-sec {
    padding: 140px 0;
    background: var(--hr-light);
}

.hr-center-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.hr-serv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.hr-serv-card {
    background: #fff;
    display: flex;
    border: 1px solid var(--hr-border);
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.hr-serv-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.hr-serv-img {
    width: 45%;
    position: relative;
    overflow: hidden;
}

.hr-serv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.hr-serv-card:hover .hr-serv-img img {
    transform: scale(1.1);
}

.hr-serv-info {
    width: 55%;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hr-serv-info h3 {
    font-size: 26px;
    color: var(--navy);
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hr-serv-info p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hr-serv-link {
    color: var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hr-serv-link i {
    transition: 0.3s;
}

.hr-serv-link:hover i {
    transform: translateX(5px);
}

/* 5. Work Process (Structural Ascent) */
.hr-process-sec {
    padding: 140px 0;
    background: #fff;
    border-top: 1px solid var(--hr-border);
}

.hr-process-wrapper {
    display: flex;
    align-items: stretch;
    margin-top: 60px;
}

.hr-process-image {
    width: 40%;
    background: url('../images/services/s10.png') center/cover;
    min-height: 600px;
    position: relative;
}

.hr-process-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 43, 72, 0.8);
}

.hr-process-content {
    width: 60%;
    padding: 60px 80px;
    background: var(--hr-light);
}

.hr-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.hr-step:last-child {
    margin-bottom: 0;
}

.hr-step-num {
    font-size: 40px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px var(--gold);
    line-height: 1;
}

.hr-step-info h4 {
    font-size: 22px;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hr-step-info p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* 6. Materials Quality */
.hr-quality-sec {
    padding: 140px 0;
    background: var(--navy);
    position: relative;
    color: #fff;
    overflow: hidden;
}

.hr-quality-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/services/s1.png') center/cover;
    opacity: 0.1;
}

.hr-q-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hr-q-img {
    border: 1px solid rgba(197, 160, 89, 0.5);
    padding: 15px;
}

.hr-q-img img {
    width: 100%;
    height: auto;
}

/* 7. Gallery */
.hr-gallery-sec {
    padding: 140px 0;
    background: var(--hr-light);
}

.hr-gal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.hr-gal-item {
    height: 350px;
    position: relative;
    overflow: hidden;
}

.hr-gal-item:nth-child(1),
.hr-gal-item:nth-child(4) {
    grid-column: span 2;
}

.hr-gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hr-gal-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.6);
}

/* 8. FAQ Section */
.hr-faq-sec {
    padding: 120px 0;
    background: #fff;
    border-bottom: 1px solid var(--hr-border);
}

.hr-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid var(--hr-border);
    margin-bottom: 10px;
    border-radius: 0;
}

.hr-accordion .accordion-button {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    padding: 25px 0;
    background: transparent;
    box-shadow: none;
    text-transform: uppercase;
}

.hr-accordion .accordion-button:not(.collapsed) {
    color: var(--gold);
    background: transparent;
}

.hr-accordion .accordion-body {
    padding: 0 0 25px 0;
    color: #555;
    line-height: 1.8;
    font-size: 17px;
}

/* 9. Heavy CTA */
.hr-cta-sec {
    padding: 0;
    position: relative;
    background: var(--navy);
}

.hr-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hr-cta-img {
    background: url('../images/services/s11.png') center/cover;
    min-height: 500px;
    position: relative;
}

.hr-cta-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 17, 26, 0.3);
}

.hr-cta-content {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hr-cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 60%);
}

.hr-cta-content h2 {
    font-size: 52px;
    color: #fff;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.hr-cta-content p {
    color: #ccc;
    font-size: 19px;
    margin-bottom: 40px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.hr-btn {
    background: var(--gold);
    color: #fff;
    padding: 20px 45px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
    border: 2px solid var(--gold);
    transition: 0.4s;
    position: relative;
    z-index: 2;
}

.hr-btn:hover {
    background: transparent;
    color: var(--gold);
}

/* Responsive */
@media(max-width: 1199px) {
    .hr-serv-card {
        flex-direction: column;
    }

    .hr-serv-img {
        width: 100%;
        height: 250px;
    }

    .hr-serv-info {
        width: 100%;
    }
}

@media(max-width: 991px) {
    .hr-hero-title {
        font-size: 65px;
    }

    .hr-intro-grid,
    .hr-safety-grid,
    .hr-serv-grid,
    .hr-q-grid,
    .hr-cta-grid {
        grid-template-columns: 1fr;
    }

    .hr-stats-box {
        position: relative;
        left: 0;
        bottom: 0;
        width: 100%;
        border-top: none;
        border-left: 5px solid var(--gold);
    }

    .hr-process-wrapper {
        flex-direction: column;
    }

    .hr-process-image {
        width: 100%;
        height: 300px;
        min-height: auto;
    }

    .hr-process-content {
        width: 100%;
        padding: 50px 30px;
    }

    .hr-gal-item:nth-child(1),
    .hr-gal-item:nth-child(4) {
        grid-column: span 1;
    }

    .hr-gal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hr-cta-content {
        padding: 70px 30px;
    }
}

@media(max-width: 768px) {
    .hr-hero-title {
        font-size: 48px;
    }

    .hr-title {
        font-size: 36px;
    }

    .hr-cta-content h2 {
        font-size: 40px;
    }

    .hr-hero-content {
        margin-left: 0;
        border-left: none;
        padding-left: 0;
        text-align: center;
    }

    .hr-gal-grid {
        grid-template-columns: 1fr;
    }
}

/* 5. Waterproofing PAGE */


/* Generic Typography */
.wp-tag {
    color: var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    display: block;
    margin-bottom: 15px;
}

.wp-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 25px;
    line-height: 1.2;
}

.wp-title strong {
    color: var(--wp-water);
}

.wp-text {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

/* 2. The Threat (Problem Section) */
.wp-threat-sec {
    padding: 120px 0;
    background: #fff;
}

.wp-threat-intro {
    max-width: 700px;
    margin-bottom: 60px;
}

.wp-threat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.wp-threat-card {
    background: var(--es-gray);
    padding: 40px 30px;
    border-radius: 4px;
    border-top: 3px solid var(--wp-danger);
    transition: 0.4s;
}

.wp-threat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.1);
}

.wp-threat-icon {
    font-size: 40px;
    color: var(--wp-danger);
    margin-bottom: 20px;
    opacity: 0.8;
}

.wp-threat-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.wp-threat-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 3. The Defense (Solutions/Services) */
.wp-def-sec {
    padding: 120px 0;
    background: var(--dark-blue);
    color: #fff;
}

.wp-def-sec .wp-title {
    color: #fff;
}

.wp-def-sec .wp-title strong {
    color: var(--gold);
}

.wp-def-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.wp-def-card {
    display: flex;
    gap: 30px;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
}

.wp-def-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.wp-def-icon-box {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: rgba(38, 70, 109, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--gold);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.wp-def-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.wp-def-info p {
    color: #aaa;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* 4. The Process (Visual Layers) */
.wp-process-sec {
    padding: 140px 0;
    background: var(--es-gray);
    overflow: hidden;
}

.wp-proc-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Vertical Line */
.wp-proc-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: 2px;
    height: 100%;
    background: var(--hr-border);
}

.wp-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 60px;
}

.wp-step:last-child {
    margin-bottom: 0;
}

.wp-step-icon {
    position: absolute;
    left: 20px;
    top: 0;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 2px solid var(--wp-water);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--wp-water);
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 0 0 10px var(--es-gray);
    transition: 0.4s;
}

.wp-step:hover .wp-step-icon {
    background: var(--wp-water);
    color: #fff;
    border-color: var(--wp-water);
}

.wp-step-content {
    background: #fff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--hr-border);
    transition: 0.4s;
}

.wp-step:hover .wp-step-content {
    border-color: rgba(38, 70, 109, 0.3);
    transform: translateX(10px);
}

.wp-step-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.wp-step-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* 5. Technology & Materials */
.wp-tech-sec {
    padding: 120px 0;
    background: #fff;
}

.wp-tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wp-tech-img {
    position: relative;
}

.wp-tech-img img {
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.wp-tech-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--wp-water);
    color: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 15px 30px rgba(38, 70, 109, 0.3);
    max-width: 250px;
}

.wp-tech-badge h5 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 5px;
    color: var(--gold);
}

.wp-tech-badge p {
    font-size: 14px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.wp-tech-list {
    margin-top: 30px;
    list-style: none;
    padding: 0;
}

.wp-tech-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.wp-tech-list i {
    color: var(--gold);
    font-size: 20px;
    margin-top: 2px;
}

.wp-tech-list h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}

.wp-tech-list p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* 6. FAQ Section */
.wp-faq-sec {
    padding: 120px 0;
    background: var(--es-gray);
}

.wp-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.wp-accordion .accordion-button {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    padding: 25px 30px;
    background: #fff;
    box-shadow: none;
}

.wp-accordion .accordion-button:not(.collapsed) {
    color: #fff;
    background: var(--wp-water);
}

.wp-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.wp-accordion .accordion-body {
    padding: 30px;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    background: #fff;
}

/* 7. Action CTA */
.wp-cta-sec {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.wp-cta-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/services/s12.png') center/cover;
    opacity: 0.1;
}

.wp-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.wp-cta-content h2 {
    font-size: 46px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

.wp-cta-content p {
    color: #dbe2ea;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.wp-btn {
    background: var(--gold);
    color: #fff;
    padding: 20px 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    transition: 0.4s;
}

.wp-btn:hover {
    background: #fff;
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media(max-width: 1199px) {


    .wp-def-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 991px) {
    .wp-hero-title {
        font-size: 56px;
    }

    .wp-tech-grid {
        grid-template-columns: 1fr;
    }

    .wp-tech-badge {
        right: 20px;
        bottom: -20px;
    }
}

@media(max-width: 768px) {
    .wp-hero-title {
        font-size: 42px;
    }

    .wp-title {
        font-size: 34px;
    }

    .wp-hero-content {
        padding-left: 15px;
        border-left-width: 3px;
    }

    .wp-threat-grid {
        grid-template-columns: 1fr;
    }

    .wp-def-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .wp-step {
        padding-left: 60px;
    }

    .wp-proc-container::before {
        left: 19px;
    }

    .wp-step-icon {
        left: 0;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .wp-step-content {
        padding: 30px 20px;
    }

    .wp-cta-content h2 {
        font-size: 36px;
    }
}

/* 6. Wallpaper Page  */


/* Generic Typography */
.wall-tag {
    color: var(--gold);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.wall-title {
    font-size: 46px;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 25px;
    line-height: 1.2;
}

.wall-title strong {
    font-weight: 800;
}

.wall-text {
    color: #666;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

/* 2. Intro Section */
.wall-intro-sec {
    padding: 140px 0;
    background: #fff;
}

.wall-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.wall-intro-img {
    position: relative;
}

.wall-intro-img img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.wall-intro-box {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--cream);
    padding: 40px;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.wall-intro-box h4 {
    font-family: serif;
    font-style: italic;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 10px;
}

.wall-intro-box p {
    margin: 0;
    font-size: 15px;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* 3. Why Choose Wallpaper */
.wall-why-sec {
    padding: 100px 0 140px;
    background: #fff;
}

.wall-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.wall-why-card {
    text-align: center;
    padding: 50px 40px;
    background: var(--vl-light);
    border: 1px solid var(--hr-border);
    transition: 0.4s;
}

.wall-why-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--gold);
}

.wall-why-icon {
    font-size: 45px;
    color: var(--gold);
    margin-bottom: 25px;
}

.wall-why-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.wall-why-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* 4. Wallpaper Collections (Types) */
.wall-types-sec {
    padding: 140px 0;
    background: var(--navy);
    color: #fff;
}

.wall-types-sec .wall-title {
    color: #fff;
}

.wall-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.wall-type-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 2px;
}

.wall-type-img {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wall-type-card:hover .wall-type-img {
    transform: scale(1.15);
}

.wall-type-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(17, 24, 34, 0.9) 0%, rgba(17, 24, 34, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 30px;
}

.wall-type-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: 0.4s;
}

.wall-type-overlay p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
    transition-delay: 0.1s;
    margin: 0;
}

.wall-type-card:hover .wall-type-overlay h3 {
    transform: translateY(0);
    color: var(--gold);
}

.wall-type-card:hover .wall-type-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* 5. Design Styles (Masonry-like) */
.wall-styles-sec {
    padding: 140px 0;
    background: var(--vl-light);
}

.wall-styles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.wall-style-item {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.wall-style-item.large {
    height: 720px;
    grid-row: span 2;
}

.wall-style-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.wall-style-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

.wall-style-cap {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    padding: 15px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.wall-style-item:hover .wall-style-cap {
    transform: translateY(-5px);
    background: var(--navy);
}

.wall-style-cap h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    transition: 0.4s;
}

.wall-style-item:hover .wall-style-cap h5 {
    color: #fff;
}

/* 6. The Process */
.wall-process-sec {
    padding: 140px 0;
    background: #fff;
    border-top: 1px solid var(--hr-border);
}

.wall-proc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.wall-proc-grid::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: dashed 1px var(--hr-border);
    z-index: 1;
    border-top: 2px dashed #ddd;
}

.wall-proc-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.wall-proc-num {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
    background: #fff;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-family: serif;
    font-style: italic;
    color: var(--gold);
    font-weight: 700;
    transition: 0.4s;
}

.wall-proc-step:hover .wall-proc-num {
    background: var(--gold);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.wall-proc-step h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.wall-proc-step p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* 7. Materials & Quality */
.wall-mat-sec {
    padding: 120px 0;
    background: var(--cream);
}

.wall-mat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wall-mat-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.wall-mat-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.wall-mat-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.wall-mat-info h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.wall-mat-info p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* 8. FAQ & Action */
.wall-faq-sec {
    padding: 120px 0;
    background: #fff;
}

.wall-accordion .accordion-item {
    border: 1px solid var(--hr-border);
    margin-bottom: 15px;
    border-radius: 0;
}

.wall-accordion .accordion-button {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    padding: 25px 30px;
    background: #fff;
    box-shadow: none;
}

.wall-accordion .accordion-button:not(.collapsed) {
    color: var(--gold);
    background: var(--vl-light);
}

.wall-accordion .accordion-body {
    padding: 0 30px 30px;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    background: var(--vl-light);
}

.wall-cta-box {
    background: var(--navy);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.wall-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/services/s4.png') center/cover;
    opacity: 0.1;
}

.wall-cta-box h2 {
    position: relative;
    z-index: 2;
    font-size: 42px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 25px;
}

.wall-cta-box h2 strong {
    font-weight: 800;
    font-family: serif;
    font-style: italic;
    color: var(--gold);
}

.wall-cta-box p {
    position: relative;
    z-index: 2;
    color: #ddd;
    font-size: 18px;
    margin-bottom: 40px;
}

/* Responsive */
@media(max-width: 1199px) {
    .wall-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wall-proc-grid::before {
        display: none;
    }
}

@media(max-width: 991px) {
    .wall-hero-pattern {
        width: 100%;
        right: 0;
        border-radius: 0;
        opacity: 0.2;
    }

    .wall-hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .wall-hero-title {
        font-size: 60px;
    }

    .wall-intro-grid,
    .wall-why-grid,
    .wall-proc-grid,
    .wall-mat-grid {
        grid-template-columns: 1fr;
    }

    .wall-intro-box {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: -50px;
        text-align: center;
    }

    .wall-styles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wall-style-item.large {
        height: 350px;
        grid-row: span 1;
    }

    .wall-cta-box {
        padding: 60px 30px;
    }
}

@media(max-width: 768px) {
    .wall-hero-title {
        font-size: 48px;
    }

    .wall-title {
        font-size: 36px;
    }

    .wall-types-grid {
        grid-template-columns: 1fr;
    }

    .wall-styles-grid {
        grid-template-columns: 1fr;
    }

    .wall-cta-box h2 {
        font-size: 32px;
    }
}

/* 7. Texture Desing  */


/* Generic Typography */
.tex-tag {
    color: var(--gold);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.tex-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--dark-blue);
    margin-bottom: 25px;
    line-height: 1.15;
}

.tex-title strong {
    font-weight: 800;
}

.tex-text {
    color: #666;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

/* 2. Intro Section */
.tex-intro-sec {
    padding: 140px 0;
    background: var(--hr-light);
    position: relative;
}

.tex-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tex-intro-img {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

.tex-intro-img img {
    width: 100%;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.tex-intro-img::after {
    content: '';
    position: absolute;
    top: 40px;
    right: 0;
    bottom: 0;
    left: 40px;
    background: var(--gold);
    z-index: 1;
    opacity: 0.15;
}

/* 3. Texture Types (Expanding Flex Cards) */
.tex-types-sec {
    padding: 140px 0;
    background: var(--dark-blue);
    overflow: hidden;
}

.tex-types-sec .tex-title {
    color: #fff;
}

.tex-flex-container {
    display: flex;
    height: 500px;
    gap: 10px;
    margin-top: 60px;
}

.tex-flex-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    transition: flex 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
}

.tex-flex-card:hover {
    flex: 3;
}

.tex-flex-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    filter: grayscale(50%) brightness(0.6);
    transition: 0.6s;
}

.tex-flex-card:hover .tex-flex-bg {
    filter: grayscale(0%) brightness(0.9);
    transform: scale(1.05);
}

.tex-flex-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(0deg, rgba(10, 13, 16, 0.95) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tex-flex-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    transition: 0.4s;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    position: absolute;
    bottom: 40px;
    left: 50%;
    margin-left: -15px;
}

.tex-flex-card:hover .tex-flex-title {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    position: relative;
    bottom: auto;
    left: auto;
    margin-left: 0;
    color: var(--gold);
    margin-bottom: 15px;
}

.tex-flex-desc {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s;
}

.tex-flex-card:hover .tex-flex-desc {
    opacity: 1;
    max-height: 200px;
    transition-delay: 0.2s;
}

/* 4. Why Choose Texture */
.tex-why-sec {
    padding: 120px 0;
    background: #fff;
}

.tex-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.tex-why-card {
    padding: 50px 40px;
    background: var(--hr-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.tex-why-card:hover {
    background: var(--dark-blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tex-why-icon {
    font-size: 45px;
    color: var(--gold);
    margin-bottom: 25px;
    transition: 0.4s;
}

.tex-why-card h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 15px;
    transition: 0.4s;
}

.tex-why-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    transition: 0.4s;
}

.tex-why-card:hover h4,
.tex-why-card:hover p {
    color: #fff;
}

/* 5. Process (Sleek Columns) */
.tex-process-sec {
    padding: 140px 0;
    background: var(--dark-blue);
    color: #fff;
}

.tex-process-sec .tex-title {
    color: #fff;
}

.tex-proc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.tex-proc-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 12.5%;
    width: 75%;
    height: 1px;
    background: rgba(197, 160, 89, 0.3);
    z-index: 1;
}

.tex-proc-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.tex-proc-dot {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    background: var(--dark-blue);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    transition: 0.4s;
}

.tex-proc-step:hover .tex-proc-dot {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.5);
}

.tex-proc-step h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.tex-proc-step p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.7;
}

/* 6. Gallery (Shine Effect) */
.tex-gal-sec {
    padding: 140px 0;
    background: var(--hr-light);
}

.tex-gal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tex-gal-item {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.tex-gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.8s;
}

.tex-gal-item:hover img {
    opacity: 1;
    transform: scale(1.1);
}

/* The Shine */
.tex-gal-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: 0.6s;
    z-index: 2;
    pointer-events: none;
}

.tex-gal-item:hover::after {
    left: 150%;
    transition: 0.6s ease-in-out;
}

.tex-gal-overlay {
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    transition: 0.4s;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.tex-gal-item:hover .tex-gal-overlay {
    border-color: rgba(197, 160, 89, 0.8);
    inset: 15px;
}

.tex-gal-overlay h5 {
    color: transparent;
    font-size: 20px;
    font-weight: 700;
    transform: translateY(20px);
    transition: 0.4s;
    margin: 0;
}

.tex-gal-item:hover .tex-gal-overlay h5 {
    color: #fff;
    transform: translateY(0);
}

/* 7. FAQ & CTA */
.tex-faq-sec {
    padding: 120px 0;
    background: #fff;
}

.tex-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid var(--tex-border);
    margin-bottom: 5px;
    border-radius: 0;
}

.tex-accordion .accordion-button {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
    padding: 25px 0;
    background: transparent;
    box-shadow: none;
    text-transform: uppercase;
}

.tex-accordion .accordion-button:not(.collapsed) {
    color: var(--gold);
    background: transparent;
}

.tex-accordion .accordion-body {
    padding: 0 0 25px 0;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.tex-cta-sec {
    background: var(--gold);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.tex-cta-sec h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.tex-cta-sec p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tex-btn {
    background: var(--dark-blue);
    color: var(--gold);
    padding: 20px 50px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    display: inline-block;
    transition: 0.4s;
    border: 1px solid var(--dark-blue);
}

.tex-btn:hover {
    background: #fff;
    color: var(--dark-blue);
    border-color: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media(max-width: 1199px) {
    .tex-flex-container {
        flex-direction: column;
        height: 800px;
    }

    .tex-flex-card {
        flex: 1;
    }

    .tex-flex-card:hover {
        flex: 2;
    }

    .tex-flex-title {
        writing-mode: horizontal-tb;
        transform: rotate(0deg);
        position: relative;
        bottom: auto;
        left: auto;
        margin-left: 0;
    }

    .tex-proc-grid::before {
        display: none;
    }
}

@media(max-width: 991px) {
    .tex-hero-title {
        font-size: 55px;
    }

    .tex-intro-grid {
        grid-template-columns: 1fr;
    }

    .tex-intro-img {
        padding: 0;
        margin-top: 40px;
    }

    .tex-intro-img::after {
        display: none;
    }

    .tex-why-grid,
    .tex-proc-grid {
        grid-template-columns: 1fr;
    }

    .tex-gal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tex-cta-sec h2 {
        font-size: 38px;
    }
}

@media(max-width: 768px) {
    .tex-hero-title {
        font-size: 42px;
    }

    .tex-hero-content {
        padding: 40px 20px;
    }

    .tex-title {
        font-size: 36px;
    }

    .tex-flex-container {
        height: 1000px;
    }

    .tex-gal-grid {
        grid-template-columns: 1fr;
    }
}

/* 8. Metal Coating Page */



/* Shine Animation Keyframes */
@keyframes metallicShine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* Generic Typography */
.mc-tag {
    color: var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    display: block;
    margin-bottom: 15px;
}

.mc-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 25px;
    line-height: 1.2;
}

.mc-title strong {
    color: var(--gold);
}

.mc-text {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

/* 2. Intro Section */
.mc-intro-sec {
    padding: 120px 0;
    background: #fff;
}

.mc-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.mc-intro-img {
    position: relative;
}

.mc-intro-img img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* 3. The Problem (Threats) */
.mc-threat-sec {
    padding: 120px 0;
    background: var(--es-gray);
}

.mc-threat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.mc-threat-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 4px;
    border: 1px solid var(--hr-border);
    border-top: 3px solid var(--wp-danger);
    transition: 0.4s;
}

.mc-threat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.1);
}

.mc-threat-icon {
    font-size: 40px;
    color: var(--wp-danger);
    margin-bottom: 20px;
    opacity: 0.8;
}

.mc-threat-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.mc-threat-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 4. Services / Solutions (Dark Navy for contrast) */
.mc-serv-sec {
    padding: 120px 0;
    background: var(--navy);
    color: #fff;
}

.mc-serv-sec .mc-title {
    color: #fff;
}

.mc-serv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.mc-serv-card {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
    overflow: hidden;
}

.mc-serv-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.mc-serv-img {
    width: 40%;
    position: relative;
}

.mc-serv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mc-serv-info {
    width: 60%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mc-serv-info h3 {
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.mc-serv-info p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* 5. Work Process */
.mc-process-sec {
    padding: 120px 0;
    background: #fff;
}

.mc-proc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.mc-proc-grid::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: var(--hr-border);
    z-index: 1;
}

.mc-proc-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.mc-proc-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: #fff;
    border: 2px solid var(--gold);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--navy);
    font-weight: 800;
    transition: 0.4s;
    transform: rotate(45deg);
    box-shadow: 0 0 0 10px #fff;
}

.mc-proc-icon i {
    transform: rotate(-45deg);
    font-style: normal;
}

.mc-proc-step:hover .mc-proc-icon {
    background: var(--gold);
    color: #fff;
}

.mc-proc-step h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.mc-proc-step p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* 6. Technology & Materials */
.mc-tech-sec {
    padding: 120px 0;
    background: var(--es-gray);
}

.mc-tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mc-tech-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.mc-tech-list li {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.mc-tech-list i {
    color: var(--gold);
    font-size: 20px;
    margin-top: 2px;
}

.mc-tech-list h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}

.mc-tech-list p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* 7. Gallery / Case Study */
.mc-gal-sec {
    padding: 120px 0;
    background: #fff;
}

.mc-gal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.mc-gal-item {
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.mc-gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.mc-gal-item:hover img {
    transform: scale(1.1);
}

.mc-gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26, 43, 72, 0.9) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: 0.4s;
}

.mc-gal-item:hover .mc-gal-overlay {
    opacity: 1;
}

.mc-gal-overlay h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    transform: translateY(10px);
    transition: 0.4s;
}

.mc-gal-item:hover .mc-gal-overlay h5 {
    transform: translateY(0);
    color: var(--gold);
}

/* 8. FAQ Section */
.mc-faq-sec {
    padding: 120px 0;
    background: var(--es-gray);
}

.mc-accordion .accordion-item {
    border: 1px solid var(--hr-border);
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}

.mc-accordion .accordion-button {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    padding: 25px 30px;
    background: #fff;
    box-shadow: none;
}

.mc-accordion .accordion-button:not(.collapsed) {
    color: var(--gold);
    background: #fff;
}

.mc-accordion .accordion-body {
    padding: 0 30px 30px 30px;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    background: #fff;
}

/* 9. Action CTA */
.mc-cta-sec {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.mc-cta-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/services/s12.png') center/cover;
    opacity: 0.1;
}

.mc-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.mc-cta-content h2 {
    font-size: 46px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

.mc-cta-content p {
    color: #dbe2ea;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.mc-btn {
    background: var(--gold);
    color: #fff;
    padding: 20px 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.mc-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: 0s;
}

.mc-btn:hover {
    background: #fff;
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.mc-btn:hover::after {
    left: 200%;
    transition: 0.6s ease-in-out;
}

/* Responsive */
@media(max-width: 1199px) {
    .mc-threat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mc-proc-grid::before {
        display: none;
    }

    .mc-proc-icon {
        box-shadow: none;
    }
}

@media(max-width: 991px) {
    .mc-hero-title {
        font-size: 56px;
    }

    .mc-intro-grid,
    .mc-serv-grid,
    .mc-proc-grid,
    .mc-tech-grid {
        grid-template-columns: 1fr;
    }

    .mc-serv-card {
        flex-direction: column;
    }

    .mc-serv-img,
    .mc-serv-info {
        width: 100%;
    }

    .mc-serv-img {
        height: 250px;
    }

    .mc-gal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .mc-hero-title {
        font-size: 42px;
    }

    .mc-title {
        font-size: 34px;
    }

    .mc-hero-content {
        padding-left: 15px;
        border-left-width: 3px;
    }

    .mc-threat-grid {
        grid-template-columns: 1fr;
    }

    .mc-gal-grid {
        grid-template-columns: 1fr;
    }

    .mc-cta-content h2 {
        font-size: 36px;
    }
}

/* 9. Wooden-Paint page  */


/* Generic Typography */
.wpaint-tag {
    color: var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    display: block;
    margin-bottom: 15px;
}

.wpaint-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 25px;
    line-height: 1.2;
}

.wpaint-title strong {
    color: var(--gold);
    font-family: serif;
    font-style: italic;
    font-weight: 800;
}

.wpaint-text {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

/* 2. Intro Section */
.wpaint-intro-sec {
    padding: 120px 0;
    background: #fff;
}

.wpaint-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.wpaint-intro-img {
    position: relative;
}

.wpaint-intro-img img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wpaint-intro-box {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--navy);
    padding: 40px;
    color: #fff;
    border-bottom: 4px solid var(--gold);
}

.wpaint-intro-box h4 {
    font-family: serif;
    font-style: italic;
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 10px;
}

.wpaint-intro-box p {
    margin: 0;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* 3. The Threats (Why Polish is Needed) */
.wpaint-threat-sec {
    padding: 120px 0;
    background: var(--hr-light);
}

.wpaint-threat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.wpaint-threat-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 4px;
    border: 1px solid var(--hr-border);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.wpaint-threat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--wpaint-warm);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s;
}

.wpaint-threat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.wpaint-threat-card:hover::before {
    transform: scaleX(1);
}

.wpaint-threat-icon {
    font-size: 40px;
    color: var(--wpaint-warm);
    margin-bottom: 20px;
}

.wpaint-threat-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.wpaint-threat-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 4. Services (Finishes) */
.wpaint-serv-sec {
    padding: 120px 0;
    background: var(--navy);
    color: #fff;
}

.wpaint-serv-sec .wpaint-title {
    color: #fff;
}

.wpaint-serv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.wpaint-serv-card {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
    overflow: hidden;
}

.wpaint-serv-card:hover {
    border-color: rgba(197, 160, 89, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.wpaint-serv-img {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.wpaint-serv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.wpaint-serv-card:hover .wpaint-serv-img img {
    transform: scale(1.1);
}

.wpaint-serv-info {
    width: 60%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wpaint-serv-info h3 {
    font-size: 22px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 15px;
    font-family: serif;
    font-style: italic;
}

.wpaint-serv-info p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* 5. Work Process */
.wpaint-process-sec {
    padding: 120px 0;
    background: #fff;
}

.wpaint-proc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.wpaint-proc-grid::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: dashed 2px var(--hr-border);
    z-index: 1;
}

.wpaint-proc-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.wpaint-proc-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: #fff;
    border: 2px solid var(--wpaint-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--wpaint-warm);
    font-weight: 800;
    transition: 0.4s;
    font-family: serif;
    font-style: italic;
}

.wpaint-proc-step:hover .wpaint-proc-icon {
    background: var(--wpaint-warm);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(140, 90, 53, 0.2);
}

.wpaint-proc-step h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.wpaint-proc-step p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* 6. Benefits / Quality */
.wpaint-ben-sec {
    padding: 120px 0;
    background: var(--hr-light);
}

.wpaint-ben-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wpaint-ben-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.wpaint-ben-list li {
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.wpaint-ben-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.wpaint-ben-info h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}

.wpaint-ben-info p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* 7. Gallery */
.wpaint-gal-sec {
    padding: 120px 0;
    background: #fff;
}

.wpaint-gal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.wpaint-gal-item {
    height: 320px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.wpaint-gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.wpaint-gal-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.wpaint-gal-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.wpaint-gal-item:hover .wpaint-gal-overlay {
    opacity: 1;
}

.wpaint-gal-overlay i {
    font-size: 40px;
    color: #fff;
}

/* 8. FAQ Section */
.wpaint-faq-sec {
    padding: 120px 0;
    background: var(--hr-light);
}

.wpaint-accordion .accordion-item {
    border: 1px solid var(--hr-border);
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}

.wpaint-accordion .accordion-button {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    padding: 25px 30px;
    background: #fff;
    box-shadow: none;
}

.wpaint-accordion .accordion-button:not(.collapsed) {
    color: var(--gold);
    background: #fff;
}

.wpaint-accordion .accordion-body {
    padding: 0 30px 30px 30px;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    background: #fff;
}

/* 9. Action CTA */
.wpaint-cta-sec {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.wpaint-cta-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/services/s12.png') center/cover;
    opacity: 0.05;
}

.wpaint-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.wpaint-cta-content h2 {
    font-size: 46px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

.wpaint-cta-content p {
    color: #dbe2ea;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.wpaint-btn {
    background: var(--gold);
    color: #fff;
    padding: 20px 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    transition: 0.4s;
}

.wpaint-btn:hover {
    background: #fff;
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media(max-width: 1199px) {
    .wpaint-threat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wpaint-proc-grid::before {
        display: none;
    }
}

@media(max-width: 991px) {
    .wpaint-hero-title {
        font-size: 56px;
    }

    .wpaint-intro-grid,
    .wpaint-serv-grid,
    .wpaint-proc-grid,
    .wpaint-ben-grid {
        grid-template-columns: 1fr;
    }

    .wpaint-intro-box {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: -30px;
    }

    .wpaint-serv-card {
        flex-direction: column;
    }

    .wpaint-serv-img,
    .wpaint-serv-info {
        width: 100%;
    }

    .wpaint-serv-img {
        height: 250px;
    }

    .wpaint-gal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .wpaint-hero-title {
        font-size: 42px;
    }

    .wpaint-title {
        font-size: 34px;
    }

    .wpaint-hero-content {
        padding-left: 15px;
        border-left-width: 3px;
    }

    .wpaint-threat-grid {
        grid-template-columns: 1fr;
    }

    .wpaint-gal-grid {
        grid-template-columns: 1fr;
    }

    .wpaint-cta-content h2 {
        font-size: 36px;
    }
}

/* 10. Grouting Services */

/* Generic Typography */
.grt-tag {
    color: var(--gold);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.grt-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 25px;
    line-height: 1.2;
}

.grt-title strong {
    color: var(--gold);
}

.grt-text {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

/* 2. Intro Section */
.grt-intro-sec {
    padding: 120px 0;
    background: #fff;
}

.grt-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.grt-intro-img {
    position: relative;
    padding: 20px;
}

.grt-intro-img::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--hr-border);
    z-index: 1;
}

.grt-intro-img img {
    width: 100%;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* 3. The Problem (Dirty Joints) */
.grt-prob-sec {
    padding: 120px 0;
    background: var(--hr-light);
}

.grt-prob-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.grt-prob-card {
    background: #fff;
    padding: 40px 30px;
    border: 1px solid var(--hr-border);
    transition: 0.4s;
    position: relative;
}

.grt-prob-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
    border-color: #ddd;
}

.grt-prob-icon {
    font-size: 35px;
    color: #DC3545;
    margin-bottom: 20px;
    opacity: 0.8;
}

.grt-prob-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.grt-prob-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 4. Services (The Clean Lines) */
.grt-serv-sec {
    padding: 120px 0;
    background: var(--navy);
    color: #fff;
}

.grt-serv-sec .grt-title {
    color: #fff;
}

.grt-serv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.grt-serv-card {
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
}

.grt-serv-card:hover {
    border-color: rgba(197, 160, 89, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.grt-serv-icon-box {
    width: 80px;
    min-width: 80px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--gold);
}

.grt-serv-info {
    padding: 40px 30px;
}

.grt-serv-info h3 {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.grt-serv-info p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* 5. Work Process */
.grt-process-sec {
    padding: 120px 0;
    background: #fff;
}

.grt-proc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.grt-proc-step {
    padding: 40px 30px;
    background: var(--hr-light);
    border: 1px solid var(--hr-border);
    text-align: center;
    position: relative;
    transition: 0.4s;
}

.grt-proc-step:hover {
    background: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--gold);
}

.grt-proc-num {
    width: 40px;
    height: 40px;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.grt-proc-step:hover .grt-proc-num {
    background: var(--gold);
}

.grt-proc-step h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-top: 10px;
    margin-bottom: 15px;
}

.grt-proc-step p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* 6. Benefits */
.grt-ben-sec {
    padding: 120px 0;
    background: var(--hr-light);
    border-top: 1px solid var(--hr-border);
}

.grt-ben-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.grt-ben-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.grt-ben-list li {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--hr-border);
    border-left: 3px solid var(--gold);
}

.grt-ben-icon {
    font-size: 24px;
    color: var(--gold);
}

.grt-ben-info h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}

.grt-ben-info p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* 7. Gallery (Clean finish effect) */
.grt-gal-sec {
    padding: 120px 0;
    background: #fff;
}

.grt-gal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 50px;
}

.grt-gal-item {
    height: 300px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.grt-gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.0);
    transition: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Clean Finish Hover Effect */
.grt-gal-item:hover img {
    filter: brightness(1.15) contrast(1.1);
    transform: scale(1.05);
}

.grt-gal-overlay {
    position: absolute;
    inset: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.4s;
    pointer-events: none;
}

.grt-gal-item:hover .grt-gal-overlay {
    border-color: #fff;
    inset: 10px;
}

/* 8. FAQ Section */
.grt-faq-sec {
    padding: 120px 0;
    background: var(--hr-light);
    border-top: 1px solid var(--hr-border);
}

.grt-accordion .accordion-item {
    border: 1px solid var(--hr-border);
    margin-bottom: 10px;
    border-radius: 0;
    background: #fff;
}

.grt-accordion .accordion-button {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    padding: 25px 30px;
    background: #fff;
    box-shadow: none;
}

.grt-accordion .accordion-button:not(.collapsed) {
    color: var(--gold);
}

.grt-accordion .accordion-body {
    padding: 0 30px 25px 30px;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    background: #fff;
}

/* 9. Action CTA */
.grt-cta-sec {
    padding: 100px 0;
    background: var(--navy);
    text-align: center;
}

.grt-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.grt-cta-content h2 {
    font-size: 42px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

.grt-cta-content p {
    color: #dbe2ea;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.grt-btn {
    background: var(--gold);
    color: #fff;
    padding: 18px 45px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
    border: 1px solid var(--gold);
}

.grt-btn:hover {
    background: transparent;
    color: var(--gold);
}

/* Responsive */
@media(max-width: 1199px) {
    .grt-prob-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grt-proc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

@media(max-width: 991px) {
    .grt-hero-title {
        font-size: 56px;
    }

    .grt-intro-grid,
    .grt-serv-grid,
    .grt-ben-grid {
        grid-template-columns: 1fr;
    }

    .grt-intro-img {
        padding: 0;
    }

    .grt-intro-img::before {
        display: none;
    }

    .grt-gal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .grt-hero-title {
        font-size: 42px;
    }

    .grt-title {
        font-size: 34px;
    }

    .grt-hero-content {
        padding-left: 15px;
        border-left-width: 3px;
    }

    .grt-prob-grid {
        grid-template-columns: 1fr;
    }

    .grt-proc-grid {
        grid-template-columns: 1fr;
    }

    .grt-gal-grid {
        grid-template-columns: 1fr;
    }

    .grt-cta-content h2 {
        font-size: 32px;
    }
}

/* 11. Pigeon Net  */


/* Generic Typography */
.pnet-tag {
    color: var(--gold);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.pnet-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 25px;
    line-height: 1.2;
}

.pnet-title strong {
    color: var(--gold);
}

.pnet-text {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

/* 2. Intro Section */
.pnet-intro-sec {
    padding: 120px 0;
    background: #fff;
}

.pnet-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

.pnet-intro-img {
    position: relative;
    padding: 15px;
    background: var(--es-gray);
    border-radius: 8px;
}

.pnet-intro-img img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* 3. The Problem */
.pnet-prob-sec {
    padding: 120px 0;
    background: var(--es-gray);
}

.pnet-prob-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.pnet-prob-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 6px;
    border: 1px solid var(--hr-border);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.pnet-prob-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
    border-color: #ddd;
}

.pnet-prob-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--wp-danger);
    opacity: 0.8;
}

.pnet-prob-icon {
    font-size: 35px;
    color: var(--wp-danger);
    margin-bottom: 20px;
    opacity: 0.8;
}

.pnet-prob-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.pnet-prob-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 4. Services / Protection Zones */
.pnet-serv-sec {
    padding: 120px 0;
    background: var(--navy);
    color: #fff;
}

.pnet-serv-sec .pnet-title {
    color: #fff;
}

.pnet-serv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.pnet-serv-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
    padding: 40px 30px;
    text-align: center;
    border-radius: 6px;
}

.pnet-serv-card:hover {
    border-color: rgba(197, 160, 89, 0.4);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.pnet-serv-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--gold);
}

.pnet-serv-card h3 {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.pnet-serv-card p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* 5. Work Process */
.pnet-process-sec {
    padding: 120px 0;
    background: #fff;
}

.pnet-proc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    position: relative;
}

.pnet-proc-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: var(--es-gray);
    z-index: 1;
}

.pnet-proc-step {
    text-align: center;
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 20px;
}

.pnet-proc-num {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #fff;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    border-radius: 50%;
    border: 2px solid var(--hr-border);
    transition: 0.4s;
    box-shadow: 0 0 0 10px #fff;
}

.pnet-proc-step:hover .pnet-proc-num {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.pnet-proc-step h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.pnet-proc-step p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* 6. Materials / Quality */
.pnet-mat-sec {
    padding: 120px 0;
    background: var(--es-gray);
    border-top: 1px solid var(--hr-border);
}

.pnet-mat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.pnet-mat-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.pnet-mat-list li {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--hr-border);
    border-radius: 6px;
}

.pnet-mat-icon {
    font-size: 24px;
    color: var(--gold);
}

.pnet-mat-info h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}

.pnet-mat-info p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* 7. Before / After Hover Effect */
.pnet-ba-sec {
    padding: 120px 0;
    background: #fff;
}

.pnet-ba-container {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.pnet-img-before,
.pnet-img-after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* The Dirty Image (Before) */
.pnet-img-before {
    background-image: url('../images/services/s11.png');
    z-index: 1;
    filter: sepia(0.3) brightness(0.8);
}

.pnet-before-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--wp-danger);
    color: #fff;
    padding: 5px 15px;
    font-weight: 700;
    border-radius: 4px;
    z-index: 3;
}

/* The Clean Image (After) */
.pnet-img-after {
    background-image: url('../images/services/s10.png');
    z-index: 2;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pnet-after-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #28A745;
    color: #fff;
    padding: 5px 15px;
    font-weight: 700;
    border-radius: 4px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.8s;
}

/* The Reveal on Hover */
.pnet-ba-container:hover .pnet-img-after {
    clip-path: inset(0 0 0 0);
}

.pnet-ba-container:hover .pnet-after-badge {
    opacity: 1;
}

.pnet-swipe-hint {
    text-align: center;
    margin-top: 20px;
    color: #888;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* 8. FAQ Section */
.pnet-faq-sec {
    padding: 120px 0;
    background: var(--es-gray);
    border-top: 1px solid var(--hr-border);
}

.pnet-accordion .accordion-item {
    border: 1px solid var(--hr-border);
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.pnet-accordion .accordion-button {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    padding: 25px 30px;
    background: #fff;
    box-shadow: none;
}

.pnet-accordion .accordion-button:not(.collapsed) {
    color: var(--gold);
}

.pnet-accordion .accordion-body {
    padding: 0 30px 25px 30px;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    background: #fff;
}

/* 9. Action CTA */
.pnet-cta-sec {
    padding: 100px 0;
    background: var(--navy);
    text-align: center;
}

.pnet-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.pnet-cta-content h2 {
    font-size: 42px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

.pnet-cta-content p {
    color: #dbe2ea;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.pnet-btn {
    background: var(--gold);
    color: #fff;
    padding: 18px 45px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
    border-radius: 4px;
}

.pnet-btn:hover {
    background: #fff;
    color: var(--navy);
}

/* Responsive */
@media(max-width: 1199px) {
    .pnet-prob-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pnet-serv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 991px) {
    .pnet-hero-title {
        font-size: 56px;
    }

    .pnet-intro-grid,
    .pnet-mat-grid {
        grid-template-columns: 1fr;
    }

    .pnet-intro-img {
        order: -1;
        margin-bottom: 30px;
    }

    .pnet-proc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .pnet-proc-grid::before {
        display: none;
    }

    .pnet-ba-container {
        height: 350px;
    }
}

@media(max-width: 768px) {
    .pnet-hero-title {
        font-size: 42px;
    }

    .pnet-title {
        font-size: 34px;
    }

    .pnet-hero-content {
        padding-left: 15px;
        border-left-width: 3px;
    }

    .pnet-prob-grid {
        grid-template-columns: 1fr;
    }

    .pnet-serv-grid {
        grid-template-columns: 1fr;
    }

    .pnet-proc-grid {
        grid-template-columns: 1fr;
    }

    .pnet-cta-content h2 {
        font-size: 32px;
    }

    .pnet-ba-container {
        height: 250px;
    }
}

/* 11. Pop-Forseiling  */


/* Generic Typography */
.pop-tag {
    color: var(--gold);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    display: block;
    margin-bottom: 15px;
}

.pop-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 25px;
    line-height: 1.2;
}

.pop-title strong {
    color: var(--gold);
}

.pop-text {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

/* 2. Intro Section */
.pop-intro-sec {
    padding: 120px 0;
    background: #fff;
}

.pop-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.pop-intro-img {
    position: relative;
    padding-bottom: 40px;
    padding-right: 40px;
}

.pop-intro-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background: var(--hr-light);
    z-index: 1;
    border: 1px solid var(--pop-beige);
}

.pop-intro-img img {
    width: 100%;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* 3. Why Choose False Ceiling (Benefits) */
.pop-ben-sec {
    padding: 120px 0;
    background: var(--es-gray);
}

.pop-ben-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.pop-ben-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 4px;
    border: 1px solid var(--hr-border);
    transition: 0.4s;
    text-align: center;
}

.pop-ben-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--pop-blue-glow);
    border-color: var(--navy);
}

.pop-ben-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.pop-ben-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.pop-ben-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 4. Ceiling Types */
.pop-type-sec {
    padding: 120px 0;
    background: var(--navy);
    color: #fff;
}

.pop-type-sec .pop-title {
    color: #fff;
}

.pop-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pop-type-card {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
    overflow: hidden;
}

.pop-type-card:hover {
    border-color: rgba(197, 160, 89, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.pop-type-img {
    width: 45%;
    position: relative;
    overflow: hidden;
}

.pop-type-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.pop-type-card:hover .pop-type-img img {
    transform: scale(1.1);
}

.pop-type-info {
    width: 55%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pop-type-info h3 {
    font-size: 22px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
    font-family: serif;
    font-style: italic;
}

.pop-type-info p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* 5. Design Styles */
.pop-style-sec {
    padding: 120px 0;
    background: #fff;
}

.pop-style-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.pop-style-item {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 4px;
}

.pop-style-item.large {
    grid-column: span 2;
}

.pop-style-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.pop-style-item:hover img {
    transform: scale(1.05);
}

.pop-style-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26, 43, 72, 0.9) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: 0.4s;
}

.pop-style-item:hover .pop-style-overlay {
    opacity: 1;
}

.pop-style-overlay h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    transform: translateY(10px);
    transition: 0.4s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pop-style-item:hover .pop-style-overlay h5 {
    transform: translateY(0);
    color: var(--gold);
}

/* 6. Work Process */
.pop-process-sec {
    padding: 120px 0;
    background: var(--hr-light);
    border-top: 1px solid var(--pop-beige);
    border-bottom: 1px solid var(--pop-beige);
}

.pop-proc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    position: relative;
}

.pop-proc-grid::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: var(--gold);
    z-index: 1;
    opacity: 0.3;
}

.pop-proc-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.pop-proc-num {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #fff;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    transition: 0.4s;
    box-shadow: 0 0 0 10px var(--hr-light);
    font-family: serif;
    font-style: italic;
}

.pop-proc-step:hover .pop-proc-num {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 10px 20px var(--gold-glow);
}

.pop-proc-step h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.pop-proc-step p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* 7. Materials / Quality */
.pop-mat-sec {
    padding: 120px 0;
    background: #fff;
}

.pop-mat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.pop-mat-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.pop-mat-list li {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.pop-mat-icon {
    font-size: 24px;
    color: var(--gold);
}

.pop-mat-info h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}

.pop-mat-info p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* 8. Before / After Reveal Effect */
.pop-ba-sec {
    padding: 120px 0;
    background: var(--es-gray);
    border-top: 1px solid var(--hr-border);
}

.pop-ba-container {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
    height: 500px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.pop-img-before,
.pop-img-after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* The Plain Ceiling (Before) */
.pop-img-before {
    background-image: url('../images/services/s1.png');
    z-index: 1;
    filter: grayscale(50%) brightness(0.9);
}

.pop-before-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 15px;
    font-weight: 700;
    border-radius: 4px;
    z-index: 3;
}

/* The Modern Ceiling (After) */
.pop-img-after {
    background-image: url('../images/services/s12.png');
    z-index: 2;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pop-after-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: #fff;
    padding: 5px 15px;
    font-weight: 700;
    border-radius: 4px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.8s;
}

/* The Reveal on Hover */
.pop-ba-container:hover .pop-img-after {
    clip-path: inset(0 0 0 0);
}

.pop-ba-container:hover .pop-after-badge {
    opacity: 1;
}

.pop-swipe-hint {
    text-align: center;
    margin-top: 20px;
    color: #888;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* 9. FAQ Section */
.pop-faq-sec {
    padding: 120px 0;
    background: #fff;
}

.pop-accordion .accordion-item {
    border: 1px solid var(--hr-border);
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.pop-accordion .accordion-button {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    padding: 25px 30px;
    background: #fff;
    box-shadow: none;
}

.pop-accordion .accordion-button:not(.collapsed) {
    color: var(--gold);
    background: var(--es-gray);
}

.pop-accordion .accordion-body {
    padding: 0 30px 25px 30px;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    background: var(--es-gray);
}

/* 10. Action CTA */
.pop-cta-sec {
    padding: 100px 0;
    background: var(--navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pop-cta-sec::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 60%);
    transform: translateX(-50%);
}

.pop-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.pop-cta-content h2 {
    font-size: 42px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

.pop-cta-content p {
    color: #dbe2ea;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.pop-btn {
    background: var(--gold);
    color: #fff;
    padding: 18px 45px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
    border-radius: 4px;
}

.pop-btn:hover {
    background: #fff;
    color: var(--navy);
}

/* Responsive */
@media(max-width: 1199px) {
    .pop-ben-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pop-type-grid {
        grid-template-columns: 1fr;
    }

    .pop-proc-grid::before {
        display: none;
    }
}

@media(max-width: 991px) {
    .pop-hero-title {
        font-size: 56px;
    }

    .pop-intro-grid,
    .pop-mat-grid {
        grid-template-columns: 1fr;
    }

    .pop-intro-img {
        order: -1;
        margin-bottom: 30px;
        padding: 0;
    }

    .pop-intro-img::after {
        display: none;
    }

    .pop-style-grid {
        grid-template-columns: 1fr;
    }

    .pop-style-item.large {
        grid-column: span 1;
    }

    .pop-proc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .pop-ba-container {
        height: 350px;
    }
}

@media(max-width: 768px) {
    .pop-hero-title {
        font-size: 42px;
    }

    .pop-title {
        font-size: 34px;
    }

    .pop-hero-content {
        padding-left: 15px;
        border-left-width: 3px;
    }

    .pop-ben-grid {
        grid-template-columns: 1fr;
    }

    .pop-type-card {
        flex-direction: column;
    }

    .pop-type-img {
        width: 100%;
        height: 250px;
    }

    .pop-type-info {
        width: 100%;
    }

    .pop-proc-grid {
        grid-template-columns: 1fr;
    }

    .pop-cta-content h2 {
        font-size: 32px;
    }

    .pop-ba-container {
        height: 250px;
    }
}