        :root {
            --gold: #c69a5b;
            --gold-light: #e2c18a;
            --dark: #111111;
            --dark-2: #191919;
            --cream: #f7f4ef;
            --text: #555;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text);
            background: #fff;
            line-height: 1.7;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            color: var(--dark);
        }

        a {
            text-decoration: none;
        }

/* =========================
   NAVBAR
========================== */

.navbar {
    background: rgba(0, 0, 0, 0.96);
    padding: 10px 0;
    transition: 0.3s;
}

.navbar-brand img {
    height: 72px;
    width: auto;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 17px !important;
}

.navbar-nav .nav-link:hover {
    color: var(--gold-light) !important;
}

/* =========================
   ACTIVE MENU
========================== */

.navbar-nav .nav-link.active {
    color: var(--gold-light) !important;
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 17px;
    right: 17px;
    bottom: 3px;
    height: 2px;
    background: var(--gold-light);
}

/* =========================
   CALL BUTTON
========================== */

.nav-btn {
    background: var(--gold);
    color: #fff !important;
    border-radius: 3px;
    padding: 10px 20px !important;
}

.nav-btn:hover {
    background: #aa7d42;
}

        /* =========================
           HERO
        ========================== */

        .hero {
            min-height: 720px;
            position: relative;
            display: flex;
            align-items: center;
            background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.68) 42%, rgba(0,0,0,.15) 100%), url('https://softtouch.sreeit.com/assets/img/Sofa-7.jpg') center center / cover no-repeat;
        }

        .hero-content {
            max-width: 700px;
            color: #fff;
        }

        .hero-small {
            color: var(--gold-light);
            text-transform: uppercase;
            letter-spacing: 4px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .hero h1 {
            color: #fff;
            font-size: clamp(45px, 6vw, 78px);
            line-height: 1.05;
            margin-bottom: 25px;
        }

            .hero h1 span {
                color: var(--gold-light);
            }

        .hero p {
            font-size: 17px;
            color: #eee;
            max-width: 600px;
            margin-bottom: 35px;
        }

        .btn-gold {
            background: var(--gold);
            color: #fff;
            padding: 14px 30px;
            border-radius: 2px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: .3s;
            border: 1px solid var(--gold);
        }

            .btn-gold:hover {
                background: transparent;
                color: #fff;
                border-color: var(--gold-light);
            }

        .btn-outline-light-custom {
            border: 1px solid rgba(255,255,255,.6);
            color: #fff;
            padding: 14px 30px;
            margin-left: 10px;
            border-radius: 2px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

            .btn-outline-light-custom:hover {
                background: #fff;
                color: #111;
            }

        /* =========================
           SECTION
        ========================== */

        .section-padding {
            padding: 90px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 55px;
        }

            .section-title .subtitle {
                color: var(--gold);
                text-transform: uppercase;
                letter-spacing: 3px;
                font-size: 12px;
                font-weight: 700;
                margin-bottom: 10px;
            }

            .section-title h2 {
                font-size: 45px;
                margin-bottom: 15px;
            }

            .section-title p {
                max-width: 650px;
                margin: auto;
                color: #777;
            }

        /* =========================
           ABOUT
        ========================== */

        .about-section {
            background: var(--cream);
        }

        .about-image {
            position: relative;
        }

            .about-image img {
                width: 100%;
                height: 520px;
                object-fit: cover;
            }

        .about-badge {
            position: absolute;
            right: -20px;
            bottom: 25px;
            background: var(--dark);
            color: #fff;
            padding: 25px 35px;
            text-align: center;
        }

            .about-badge strong {
                display: block;
                font-size: 32px;
                color: var(--gold-light);
            }

        .about-content {
            padding-left: 45px;
        }

            .about-content .small-title {
                color: var(--gold);
                font-size: 12px;
                letter-spacing: 3px;
                text-transform: uppercase;
                font-weight: 700;
            }

            .about-content h2 {
                font-size: 45px;
                margin: 12px 0 20px;
            }

            .about-content p {
                color: #666;
            }

        .about-list {
            list-style: none;
            padding: 0;
            margin-top: 25px;
        }

            .about-list li {
                margin-bottom: 12px;
                font-size: 14px;
                color: #444;
            }

            .about-list i {
                color: var(--gold);
                margin-right: 10px;
            }

        /* =========================
           FEATURES
        ========================== */

        .feature-card {
            text-align: center;
            padding: 40px 25px;
            border: 1px solid #eee;
            height: 100%;
            transition: .35s;
            background: #fff;
        }

            .feature-card:hover {
                transform: translateY(-8px);
                border-color: var(--gold);
                box-shadow: 0 15px 40px rgba(0,0,0,.08);
            }

        .feature-icon {
            width: 75px;
            height: 75px;
            border-radius: 50%;
            background: var(--dark);
            color: var(--gold-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 25px;
        }

        .feature-card h4 {
            font-size: 24px;
            margin-bottom: 12px;
        }

        .feature-card p {
            font-size: 14px;
            color: #777;
        }

        /* =========================
           FEATURED PRODUCTS
        ========================== */

        .product-card {
            position: relative;
            overflow: hidden;
            background: #fff;
            border: 1px solid #eee;
        }

            .product-card img {
                width: 100%;
                height: 300px;
                object-fit: cover;
                transition: transform .5s ease;
            }

            .product-card:hover img {
                transform: scale(1.06);
            }

        .product-info {
            padding: 20px;
            text-align: center;
        }

            .product-info h4 {
                font-size: 22px;
                margin-bottom: 5px;
            }

            .product-info p {
                font-size: 13px;
                margin: 0;
                color: #777;
            }

        /* =========================
           CUSTOM SOFA
        ========================== */

        .custom-section {
            background: linear-gradient(rgba(0,0,0,.82), rgba(0,0,0,.82)), url('https://softtouch.sreeit.com/assets/img/Sofa-9.jpg') center / cover;
            color: #fff;
            padding: 110px 0;
            text-align: center;
        }

            .custom-section h2 {
                color: #fff;
                font-size: 50px;
            }

            .custom-section p {
                max-width: 700px;
                margin: 20px auto 30px;
                color: #ddd;
            }

        /* =========================
           GALLERY
        ========================== */

        .gallery-section {
            background: #fff;
        }

        .gallery-item {
            overflow: hidden;
            position: relative;
            height: 300px;
            margin-bottom: 24px;
        }

            .gallery-item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: .5s;
            }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient( transparent 50%, rgba(0,0,0,.85) );
            opacity: 0;
            transition: .4s;
            display: flex;
            align-items: flex-end;
            padding: 25px;
        }

            .gallery-overlay h5 {
                color: #fff;
                margin: 0;
                font-size: 15px;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        /* =========================
           WHY US
        ========================== */

        .why-section {
            background: var(--cream);
        }

        .why-box {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }

        .why-icon {
            min-width: 55px;
            height: 55px;
            background: var(--gold);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .why-box h4 {
            font-size: 22px;
            margin-bottom: 5px;
        }

        .why-box p {
            font-size: 14px;
            margin: 0;
        }

        /* =========================
           CTA
        ========================== */

        .cta-section {
            background: var(--dark);
            color: #fff;
            padding: 70px 0;
        }

            .cta-section h2 {
                color: #fff;
                font-size: 42px;
            }

            .cta-section p {
                color: #ccc;
            }

        /* =========================
           CONTACT
        ========================== */

      /* =====================================================
   PREMIUM CONTACT SECTION
===================================================== */
.contact-section {
    position: relative;
    background: #f8f5ef;
    overflow: hidden;
}

/* -------------------------
   Heading
------------------------- */

.contact-heading {
    margin-bottom: 55px;
}

.contact-heading .subtitle {
    color: #bd8d4c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact-heading h2 {
    color: #171717;
    font-family: 'Open Sans', sans-serif;
    font-size: 44px;
    font-weight: 400;
    margin-bottom: 15px;
}

.contact-heading p {
    max-width: 620px;
    margin: 0 auto;
    color: #777;
    font-size: 16px;
    line-height: 1.8;
}

/* =====================================================
   CONTACT DETAILS
===================================================== */

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 22px;
    height: 100%;
}

/* -------------------------
   Contact Card
------------------------- */

.contact-card {
    position: relative;
    display: flex;
    gap: 25px;
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e8dfd1;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.contact-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #c69a5b;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: #d5b37c;
    box-shadow: 0 18px 45px rgba(35, 28, 18, 0.09);
}

.contact-card:hover::before {
    transform: scaleY(1);
}

/* -------------------------
   Icon
------------------------- */

.contact-card-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #171717;
    color: #d2a15d;
    font-size: 19px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    background: #c69a5b;
    color: #ffffff;
}

/* -------------------------
   Content
------------------------- */
.contact-card-content {
    flex: 1;
}

.contact-label {
    display: block;
    margin-bottom: 7px;
    color: #bd8d4c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-card h4 {
    margin-bottom: 10px;
    color: #171717;
    font-family: 'Open Sans', sans-serif;
    font-size: 27px;
    font-weight: 400;
}

.contact-card p {
    margin-bottom: 0;
    color: #707070;
    font-size: 15px;
    line-height: 1.8;
}

.contact-card p a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card p a:hover {
    color: #bd8d4c;
}

/* -------------------------
   Get Directions
------------------------- */
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 15px;
    color: #171717;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.contact-link:hover {
    color: #bd8d4c;
}

.contact-link:hover i {
    transform: translateX(5px);
}

/* =====================================================
   CONTACT ACTION BUTTONS
===================================================== */

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.contact-call-btn,
.contact-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 17px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-call-btn {
    background: #171717;
    color: #ffffff;
    border: 1px solid #171717;
}

.contact-call-btn:hover {
    background: #c69a5b;
    border-color: #c69a5b;
    color: #ffffff;
}

.contact-whatsapp-btn {
    background: #ffffff;
    color: #444;
    border: 1px solid #d8d0c4;
}

.contact-whatsapp-btn i {
    color: #25d366;
}

.contact-whatsapp-btn:hover {
    background: #25d366;
    border-color: #25d366;
    color: #ffffff;
}

.contact-whatsapp-btn:hover i {
    color: #ffffff;
}


/* =====================================================
   MAP
===================================================== */

.contact-map {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 530px;
    overflow: hidden;
    background: #ddd;
    border: 1px solid #e5ddd0;
    box-shadow: 0 18px 45px rgba(35, 28, 18, 0.07);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 530px;
    display: block;
    border: 0;
}

/* -------------------------
   Map Floating Label
------------------------- */

.map-label {
    position: absolute;
    left: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(5px);
}

.map-label-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #171717;
    color: #d2a15d;
    font-size: 14px;
}

.map-label strong {
    display: block;
    color: #222;
    font-size: 13px;
    font-weight: 700;
}

.map-label span {
    display: block;
    margin-top: 3px;
    color: #777;
    font-size: 11px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {
    .contact-heading {
        margin-bottom: 40px;
    }
    .contact-heading h2 {
        font-size: 38px;
    }
    .contact-map {
        min-height: 450px;
    }
    .contact-map iframe {
        min-height: 450px;
    }

}


@media (max-width: 767px) {
    .contact-heading {
        margin-bottom: 35px;
    }

    .contact-heading h2 {
        font-size: 32px;
    }

    .contact-heading p {
        font-size: 14px;
    }

    .contact-card {
        padding: 25px;
        gap: 18px;
    }

    .contact-card-icon {
        flex: 0 0 50px;

        width: 50px;
        height: 50px;
    }

    .contact-card h4 {
        font-size: 24px;
    }

    .contact-card p {
        font-size: 14px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-call-btn,
    .contact-whatsapp-btn {
        width: 100%;
    }

    .contact-map {
        min-height: 380px;
    }

    .contact-map iframe {
        min-height: 380px;
    }

    .map-label {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

}


        /* =========================
           FOOTER
        ========================== */

        footer {
            background: #0b0b0b;
            color: #aaa;
            padding: 65px 0 25px;
        }

        .footer-logo {
            width: 130px;
            margin-bottom: 20px;
        }

        footer h5 {
            color: #fff;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        footer p,
        footer li {
            font-size: 13px;
        }

        footer ul {
            list-style: none;
            padding: 0;
        }

            footer ul li {
                margin-bottom: 10px;
            }

        footer a {
            color: #aaa;
        }

            footer a:hover {
                color: var(--gold-light);
            }

        .social-icons a {
            display: inline-flex;
            width: 38px;
            height: 38px;
            align-items: center;
            justify-content: center;
            border: 1px solid #444;
            margin-right: 7px;
            color: #fff;
        }

            .social-icons a:hover {
                background: var(--gold);
                border-color: var(--gold);
            }

        .copyright {
            border-top: 1px solid #2a2a2a;
            padding-top: 20px;
            margin-top: 40px;
            font-size: 12px;
            text-align: center;
        }

        /* =========================
           FLOATING BUTTONS
        ========================== */

        .floating-buttons {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

            .floating-buttons a {
                width: 52px;
                height: 52px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                font-size: 21px;
                box-shadow: 0 5px 20px rgba(0,0,0,.2);
            }

        .whatsapp {
            background: #25D366;
        }

        .call {
            background: var(--gold);
        }

        /* =========================
           RESPONSIVE
        ========================== */

        @media (max-width: 991px) {

            .navbar-brand img {
                height: 58px;
            }

            .hero {
                min-height: 650px;
            }

            .about-content {
                padding-left: 0;
                margin-top: 40px;
            }

            .about-image img {
                height: 420px;
            }

            .about-badge {
                right: 10px;
            }
        }

        @media (max-width: 767px) {

            .hero {
                min-height: 620px;
                background-position: center;
            }

                .hero h1 {
                    font-size: 48px;
                }

                .hero p {
                    font-size: 15px;
                }

            .btn-outline-light-custom {
                margin-left: 0;
                margin-top: 12px;
            }

            .section-padding {
                padding: 65px 0;
            }

            .section-title h2 {
                font-size: 36px;
            }

            .about-content h2 {
                font-size: 36px;
            }

            .custom-section h2 {
                font-size: 38px;
            }

            .gallery-item {
                height: 260px;
            }
        }