﻿/* =====================================================
   VERMA OVERSEAS CRAFT
   MAIN WEBSITE STYLESHEET
===================================================== */


/* =====================================================
   ROOT VARIABLES
===================================================== */

:root {
    --green-dark: #0f250d;
    --green-main: #163713;
    --green-light: #1d4318;
    --gold: #d4a63a;
    --gold-light: #e2b94f;
    --white: #ffffff;
    --black: #222222;
    --border-green: rgba(255, 255, 255, 0.18);
    --container-width: 1380px;
}


/* =====================================================
   GLOBAL RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    background: #ffffff;
    color: var(--black);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
}

.container {
    width: 92%;
    max-width: var(--container-width);
    margin: 0 auto;
}


/* =====================================================
   TOP BAR
===================================================== */

.top-bar {
    width: 100%;
    height: 44px;
    background: var(--green-dark);
    color: var(--white);
    border-bottom: 1px solid var(--border-green);
}

.top-bar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =====================================================
   TOP CONTACT
===================================================== */

.top-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .top-contact a {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--white);
        font-size: 12px;
        font-weight: 400;
        transition: color 0.3s ease;
    }

        .top-contact a:hover {
            color: var(--gold-light);
        }

    .top-contact i {
        color: var(--gold);
        font-size: 13px;
    }


/* =====================================================
   TOP DIVIDER
===================================================== */

.top-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.25);
}


/* =====================================================
   SOCIAL MEDIA
===================================================== */

.social-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 14px;
        transition: all 0.3s ease;
    }

        .social-icons a:hover {
            color: var(--gold-light);
            transform: translateY(-1px);
        }


/* =====================================================
   MAIN HEADER
===================================================== */

.main-header {
    width: 100%;
    height: 112px;
    background: var(--green-main);
    border-bottom: 3px solid var(--gold);
    position: relative;
    z-index: 1000;
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =====================================================
   LOGO
   IMPORTANT:
   Control logo by HEIGHT, not width.
===================================================== */

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    height: 100%;
    min-width: 0;
}

    .logo img {
        /*
       Main desktop logo height.
       Since the logo image is square,
       height control prevents overflow.
    */

        height: 86px;
        width: auto;
        max-width: 210px;
        object-fit: contain;
        display: block;
    }


/* =====================================================
   MAIN NAVIGATION
===================================================== */

.main-navigation {
    margin-left: auto;
    min-width: 0;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

    .main-nav > li {
        position: relative;
    }

        .main-nav > li > a {
            position: relative;
            display: flex;
            align-items: center;
            gap: 7px;
            color: var(--white);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            white-space: nowrap;
            padding: 15px 0;
            transition: color 0.3s ease;
        }

            .main-nav > li > a:hover {
                color: var(--gold-light);
            }


        /* =====================================================
   ACTIVE MENU
===================================================== */

        .main-nav > li.active > a {
            color: var(--gold-light);
        }

            .main-nav > li.active > a::after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: 3px;
                height: 3px;
                background: var(--gold);
            }


        /* =====================================================
   NAVIGATION ARROW
===================================================== */

        .main-nav > li > a i {
            font-size: 8px;
            margin-top: 1px;
        }


/* =====================================================
   DROPDOWN MENU
===================================================== */

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-top: 3px solid var(--gold);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: #333333;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}

    .dropdown-menu li a:hover {
        background: #f5f1e7;
        color: #987326;
        padding-left: 23px;
    }


/* =====================================================
   REQUEST A QUOTE
===================================================== */

.quote-btn {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 13px 19px !important;
    background: var(--gold);
    color: #16200f !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.3s ease, color 0.3s ease;
}

    .quote-btn:hover {
        background: var(--gold-light);
        color: #16200f !important;
    }

    .quote-btn i {
        font-size: 10px !important;
    }


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-size: 17px;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, color 0.3s ease;
}

    .mobile-menu-btn:hover {
        border-color: var(--gold);
        color: var(--gold);
    }


/* =====================================================
   MAIN CONTENT
===================================================== */

main {
    width: 100%;
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (max-width: 1350px) {

    .main-nav {
        gap: 22px;
    }

        .main-nav > li > a {
            font-size: 12px;
        }

    .logo img {
        height: 82px;
    }
}


/* =====================================================
   TABLET / SMALL DESKTOP
===================================================== */

@media (max-width: 1200px) {

    .container {
        width: 94%;
    }

    .logo img {
        height: 76px;
        max-width: 180px;
    }

    .main-nav {
        gap: 17px;
    }

        .main-nav > li > a {
            font-size: 11px;
        }

    .quote-btn {
        padding: 12px 15px !important;
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 992px) {

    .main-header {
        height: 90px;
    }

    .logo img {
        height: 70px;
        max-width: 170px;
    }

    .main-navigation {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .top-contact span {
        display: none;
    }

    .top-contact {
        gap: 15px;
    }

    .top-divider {
        display: none;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 576px) {

    .container {
        width: 90%;
    }


    /* -------------------------------
       TOP BAR
    -------------------------------- */

    .top-bar {
        height: 40px;
    }

    .top-contact {
        display: none;
    }

    .social-icons {
        width: 100%;
        justify-content: flex-end;
        gap: 14px;
    }

        .social-icons a {
            font-size: 13px;
        }


    /* -------------------------------
       MAIN HEADER
    -------------------------------- */

    .main-header {
        height: 78px;
        border-bottom-width: 3px;
    }

    .logo img {
        height: 58px;
        max-width: 150px;
    }

    .mobile-menu-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .logo img {
        height: 52px;
        max-width: 130px;
    }

    .mobile-menu-btn {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .social-icons {
        gap: 11px;
    }

        .social-icons a {
            font-size: 12px;
        }
}
/* =====================================================
   MOBILE NAVIGATION
===================================================== */

.mobile-navigation {
    display: none;
    position: absolute;
    top: 156px;
    left: 0;
    width: 100%;
    background: var(--green-main);
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    z-index: 999;
}


    .mobile-navigation.open {
        display: block;
    }


.mobile-navigation-inner {
    width: 100%;
}


.mobile-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
}


    /* =====================================================
   MOBILE NAV LINKS
===================================================== */

    .mobile-nav > li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.10);
    }


        .mobile-nav > li > a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 15px 5%;
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            transition: all 0.3s ease;
        }


            .mobile-nav > li > a:hover {
                background: rgba(255,255,255,0.05);
                color: var(--gold-light);
            }


/* =====================================================
   MOBILE COLLECTION BUTTON
===================================================== */

.mobile-dropdown-btn {
    width: 100%;
    padding: 15px 5%;
    border: none;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-align: left;
}


    .mobile-dropdown-btn:hover {
        color: var(--gold-light);
        background: rgba(255,255,255,0.05);
    }


    .mobile-dropdown-btn i {
        font-size: 10px;
        transition: transform 0.3s ease;
    }


.mobile-dropdown.open
.mobile-dropdown-btn i {
    transform: rotate(180deg);
}


/* =====================================================
   MOBILE SUBMENU
===================================================== */

.mobile-submenu {
    display: none;
    background: rgba(0,0,0,0.15);
    border-top: 1px solid rgba(255,255,255,0.08);
}


.mobile-dropdown.open .mobile-submenu {
    display: block;
}


.mobile-submenu li a {
    display: block;
    padding: 12px 5% 12px 9%;
    color: #eeeeee;
    font-size: 13px;
    transition: all 0.3s ease;
}


    .mobile-submenu li a:hover {
        color: var(--gold-light);
        background: rgba(255,255,255,0.05);
        padding-left: 10%;
    }


/* =====================================================
   MOBILE QUOTE BUTTON
===================================================== */

.mobile-nav .mobile-quote {
    border-bottom: none;
    padding: 18px 5%;
}


.mobile-quote a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 20px;
    background: var(--gold);
    color: #16200f !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}


    .mobile-quote a:hover {
        background: var(--gold-light) !important;
        color: #16200f !important;
    }
/* =====================================================
   MOBILE NAVIGATION POSITION
===================================================== */

@media (max-width: 992px) {

    .mobile-navigation {
        top: 134px;
    }
}


@media (max-width: 576px) {

    .mobile-navigation {
        top: 118px;
    }
}
/* =====================================================
   HERO / BANNER SECTION
===================================================== */

.hero-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}


/* =====================================================
   HERO SLIDER
===================================================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 680px;
    overflow: hidden;
    background: #111111;
}


/* =====================================================
   HERO SLIDE
===================================================== */

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}


    .hero-slide.active {
        opacity: 1;
        visibility: visible;
        z-index: 2;
    }


    /* =====================================================
   HERO IMAGE
===================================================== */

    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transform: scale(1);
        transition: transform 6s ease;
    }


    .hero-slide.active img {
        transform: scale(1.06);
    }


/* =====================================================
   HERO OVERLAY
===================================================== */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(8, 20, 7, 0.78) 0%, rgba(8, 20, 7, 0.52) 40%, rgba(8, 20, 7, 0.18) 75%, rgba(8, 20, 7, 0.05) 100% );
    z-index: 1;
}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 50px;
    color: #ffffff;
}


.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 22px;
}


    .hero-subtitle::before {
        content: "";
        width: 42px;
        height: 2px;
        background: var(--gold);
    }


.hero-content h1 {
    max-width: 760px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(46px, 5.2vw, 78px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -1px;
    color: #ffffff;
    margin-bottom: 25px;
}


.hero-content p {
    max-width: 590px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.90);
    margin-bottom: 35px;
}


/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}


.hero-btn {
    min-height: 52px;
    padding: 0 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}


/* Primary */

.hero-btn-primary {
    background: var(--gold);
    color: #15210f;
}


    .hero-btn-primary:hover {
        background: var(--gold-light);
        color: #15210f;
        transform: translateY(-2px);
    }


    .hero-btn-primary i {
        font-size: 11px;
        transition: transform 0.3s ease;
    }


    .hero-btn-primary:hover i {
        transform: translateX(4px);
    }


/* Outline */

.hero-btn-outline {
    border: 1px solid rgba(255,255,255,0.75);
    color: #ffffff;
    background: rgba(255,255,255,0.04);
}


    .hero-btn-outline:hover {
        background: #ffffff;
        color: #16200f;
        border-color: #ffffff;
    }


/* =====================================================
   HERO ARROWS
===================================================== */

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,0.45);
    background: rgba(0,0,0,0.20);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}


    .hero-arrow:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: #16200f;
    }


.hero-prev {
    left: 30px;
}


.hero-next {
    right: 30px;
}


/* =====================================================
   HERO DOTS
===================================================== */

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 8px;
}


.hero-dot {
    width: 28px;
    height: 3px;
    padding: 0;
    border: none;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: all 0.3s ease;
}


    .hero-dot.active {
        width: 55px;
        background: var(--gold);
    }


/* =====================================================
   HERO RESPONSIVE
===================================================== */

@media (max-width: 1200px) {

    .hero-slider {
        height: 600px;
    }


    .hero-content h1 {
        max-width: 650px;
    }


    .hero-content p {
        font-size: 17px;
    }
}


@media (max-width: 992px) {

    .hero-slider {
        height: 560px;
    }


    .hero-content {
        padding-left: 3%;
        padding-right: 3%;
    }


        .hero-content h1 {
            font-size: clamp(40px, 6vw, 62px);
            max-width: 650px;
        }


        .hero-content p {
            max-width: 520px;
            font-size: 16px;
        }


    .hero-arrow {
        width: 44px;
        height: 44px;
    }


    .hero-prev {
        left: 18px;
    }


    .hero-next {
        right: 18px;
    }
}


@media (max-width: 576px) {

    .hero-slider {
        height: 620px;
    }


    .hero-slide img {
        object-position: center;
    }


    .hero-overlay {
        background: linear-gradient( 90deg, rgba(8,20,7,0.78), rgba(8,20,7,0.38) );
    }


    .hero-content {
        justify-content: center;
        padding-left: 7%;
        padding-right: 7%;
        padding-bottom: 55px;
    }


    .hero-subtitle {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }


        .hero-subtitle::before {
            width: 28px;
        }


    .hero-content h1 {
        font-size: 40px;
        line-height: 1.12;
        letter-spacing: -0.5px;
        margin-bottom: 18px;
    }


    .hero-content p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
    }


    .hero-buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }


    .hero-btn {
        width: 100%;
        min-height: 48px;
        padding: 0 20px;
        font-size: 12px;
    }


    .hero-arrow {
        width: 38px;
        height: 38px;
        font-size: 11px;
    }


    .hero-prev {
        left: 10px;
    }


    .hero-next {
        right: 10px;
    }


    .hero-dots {
        bottom: 18px;
    }
}


@media (max-width: 380px) {

    .hero-slider {
        height: 590px;
    }


    .hero-content h1 {
        font-size: 34px;
    }


    .hero-content p {
        font-size: 14px;
    }
}
/* =========================================
   ABOUT / INTRODUCTION SECTION
========================================= */

.about-intro-section {
    width: 100%;
    padding: 110px 0;
    background: #ffffff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 90px;
}


/* -----------------------------------------
   IMAGE AREA
----------------------------------------- */
/* -----------------------------------------
   ABOUT IMAGE AREA
----------------------------------------- */

.about-intro-image {
    position: relative;
    min-height: 570px;
    padding-right: 70px;
    padding-bottom: 55px;
}


/* MAIN IMAGE */

.about-image-main {
    width: 82%;
    height: auto;
    position: relative;
    overflow: hidden;
    background: #f5f1e7;
}

    .about-image-main img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
        transition: transform .6s ease;
    }

    .about-image-main:hover img {
        transform: scale(1.02);
    }


/* SMALL IMAGE */

.about-image-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    height: auto;
    padding: 8px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

    .about-image-small img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }
/* -----------------------------------------
   EXPERIENCE BOX
----------------------------------------- */

.about-experience {
    position: absolute;
    left: -25px;
    bottom: 75px;
    min-width: 180px;
    padding: 22px 25px;
    background: var(--green-main);
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .18);
}

.experience-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    line-height: 1;
    color: var(--gold-light);
}

.experience-text {
    font-size: 12px;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* -----------------------------------------
   CONTENT
----------------------------------------- */

.about-intro-content {
    max-width: 650px;
}

.section-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #a27b20;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

    .section-label::before {
        content: "";
        width: 38px;
        height: 2px;
        background: var(--gold);
    }


.about-intro-content h2 {
    max-width: 620px;
    margin-bottom: 25px;
    color: var(--green-main);
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 4vw, 58px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -.8px;
}

    .about-intro-content h2 span {
        color: #b58a29;
    }


.about-intro-content p {
    margin-bottom: 17px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.about-intro-content .about-lead {
    color: #333;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 22px;
}


/* -----------------------------------------
   FEATURES
----------------------------------------- */

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
    margin-top: 32px;
    padding-top: 30px;
    border-top: 1px solid #e6e2d9;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-feature-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f0e3;
    color: #a27b20;
    font-size: 15px;
    border-radius: 50%;
}

.about-feature h4 {
    margin: 0 0 5px;
    color: var(--green-main);
    font-size: 14px;
    font-weight: 700;
}

.about-feature p {
    margin: 0;
    color: #777;
    font-size: 12px;
    line-height: 1.5;
}


/* -----------------------------------------
   BUTTON
----------------------------------------- */

.about-intro-button {
    margin-top: 35px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 50px;
    padding: 0 25px;
    background: var(--green-main);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: all .3s ease;
}

    .about-btn:hover {
        background: var(--gold);
        color: #16200f;
        transform: translateY(-2px);
    }

    .about-btn i {
        font-size: 11px;
        transition: transform .3s ease;
    }

    .about-btn:hover i {
        transform: translateX(4px);
    }


/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1200px) {

    .about-intro-section {
        padding: 90px 0;
    }

    .about-intro-grid {
        gap: 55px;
    }

    .about-intro-image {
        min-height: 0;
    }

    .about-image-main {
        height: auto;
    }
}


@media (max-width: 992px) {

    .about-intro-section {
        padding: 80px 0;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-intro-image {
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
        min-height: 0;
    }

    .about-image-main {
        width: 82%;
        height: auto;
    }

    .about-intro-content {
        max-width: 750px;
    }

        .about-intro-content h2 {
            font-size: 48px;
        }
}


@media (max-width: 576px) {

    .about-intro-section {
        padding: 65px 0;
    }

    .about-intro-grid {
        gap: 45px;
    }

    .about-intro-image {
        min-height: 0;
        padding-right: 25px;
        padding-bottom: 35px;
    }

    .about-image-main {
        width: 88%;
        height: auto;
    }

    .about-image-small {
        width: 48%;
        height: auto;
        padding: 6px;
    }

    .about-experience {
        left: -5px;
        bottom: 45px;
        min-width: 145px;
        padding: 15px 16px;
        gap: 10px;
    }

    .experience-number {
        font-size: 32px;
    }

    .experience-text {
        font-size: 9px;
    }

    .section-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .about-intro-content h2 {
        font-size: 38px;
    }

    .about-intro-content .about-lead {
        font-size: 16px;
    }

    .about-intro-content p {
        font-size: 14px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-btn {
        width: 100%;
        justify-content: center;
    }
}


@media (max-width: 380px) {

    .about-intro-content h2 {
        font-size: 33px;
    }

    .about-image-main {
        width: 90%;
        height: auto;
    }

    .about-image-small {
        width: 48%;
        height: auto;
    }
}
/* =========================================
   OUR COLLECTIONS SECTION
========================================= */

.collections-section {
    width: 100%;
    padding: 110px 0;
    background: #f7f4ed;
}


/* -----------------------------------------
   SECTION HEADING
----------------------------------------- */

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

    .section-heading .section-label {
        justify-content: center;
    }

    .section-heading h2 {
        margin-bottom: 20px;
        color: var(--green-main);
        font-family: 'Playfair Display', serif;
        font-size: clamp(40px, 4vw, 58px);
        font-weight: 600;
        line-height: 1.12;
    }

        .section-heading h2 span {
            color: #b58a29;
        }

    .section-heading p {
        max-width: 650px;
        margin: 0 auto;
        color: #6d6d6d;
        font-size: 15px;
        line-height: 1.8;
    }


/* -----------------------------------------
   COLLECTION GRID
----------------------------------------- */

.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


/* -----------------------------------------
   COLLECTION CARD
----------------------------------------- */

.collection-card {
    display: block;
    position: relative;
    overflow: hidden;
}

.collection-image {
    position: relative;
    width: 100%;
    height: 470px;
    overflow: hidden;
    background: #ddd;
}

    .collection-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .7s ease;
    }

.collection-card:hover .collection-image img {
    transform: scale(1.07);
}


/* -----------------------------------------
   OVERLAY
----------------------------------------- */

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(7, 20, 8, .88) 0%, rgba(7, 20, 8, .40) 45%, rgba(7, 20, 8, .05) 100% );
    transition: background .4s ease;
}

.collection-card:hover .collection-overlay {
    background: linear-gradient( to top, rgba(7, 20, 8, .92) 0%, rgba(7, 20, 8, .48) 55%, rgba(7, 20, 8, .10) 100% );
}


/* -----------------------------------------
   CARD CONTENT
----------------------------------------- */

.collection-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    color: #ffffff;
}

.collection-number {
    display: block;
    margin-bottom: 10px;
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-style: italic;
}

.collection-content h3 {
    margin-bottom: 18px;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.15;
}

.collection-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color .3s ease;
}

    .collection-link i {
        font-size: 10px;
        transition: transform .3s ease;
    }

.collection-card:hover .collection-link {
    color: var(--gold-light);
}

    .collection-card:hover .collection-link i {
        transform: translateX(5px);
    }


/* -----------------------------------------
   BOTTOM BUTTON
----------------------------------------- */

.collections-button {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

/* =========================================
   CRAFTSMANSHIP SECTION
========================================= */

.craftsmanship-section {
    width: 100%;
    padding: 115px 0;
    background: #ffffff;
}


.craftsmanship-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
}


/* -----------------------------------------
   CONTENT
----------------------------------------- */

.craftsmanship-content {
    max-width: 650px;
}


    .craftsmanship-content h2 {
        margin-bottom: 25px;
        color: var(--green-main);
        font-family: 'Playfair Display', serif;
        font-size: clamp(40px, 4vw, 58px);
        font-weight: 600;
        line-height: 1.12;
    }


        .craftsmanship-content h2 span {
            color: #b58a29;
        }


    .craftsmanship-content p {
        margin-bottom: 17px;
        color: #686868;
        font-size: 15px;
        line-height: 1.8;
    }


    .craftsmanship-content .craftsmanship-lead {
        color: #333333;
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 22px;
    }


/* -----------------------------------------
   CRAFT POINTS
----------------------------------------- */

.craft-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 30px;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid #e6e2d9;
}


.craft-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}


.craft-point-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f0e3;
    color: #a27b20;
    border-radius: 50%;
    font-size: 15px;
}


.craft-point h4 {
    margin: 0 0 5px;
    color: var(--green-main);
    font-size: 14px;
    font-weight: 700;
}


.craft-point p {
    margin: 0;
    color: #777777;
    font-size: 12px;
    line-height: 1.5;
}


/* -----------------------------------------
   BUTTON
----------------------------------------- */

.craftsmanship-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 50px;
    padding: 0 25px;
    margin-top: 35px;
    background: var(--green-main);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: all .3s ease;
}


    .craftsmanship-btn:hover {
        background: var(--gold);
        color: #16200f;
        transform: translateY(-2px);
    }


    .craftsmanship-btn i {
        font-size: 11px;
        transition: transform .3s ease;
    }


    .craftsmanship-btn:hover i {
        transform: translateX(4px);
    }


/* -----------------------------------------
   IMAGE
----------------------------------------- */

.craftsmanship-image {
    position: relative;
    width: 100%;
    min-height: 620px;
    overflow: hidden;
    background: #eee;
}


    .craftsmanship-image img {
        width: 100%;
        height: 100%;
        min-height: 620px;
        display: block;
        object-fit: cover;
        transition: transform .8s ease;
    }


    .craftsmanship-image:hover img {
        transform: scale(1.04);
    }


/* -----------------------------------------
   IMAGE OVERLAY
----------------------------------------- */

.craftsmanship-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(8, 25, 9, .88) 0%, rgba(8, 25, 9, .35) 45%, rgba(8, 25, 9, .05) 100% );
}


/* -----------------------------------------
   IMAGE CAPTION
----------------------------------------- */

.craftsmanship-caption {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 40px;
    z-index: 2;
}


    .craftsmanship-caption span {
        display: block;
        margin-bottom: 12px;
        color: var(--gold-light);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
    }


    .craftsmanship-caption h3 {
        margin: 0;
        color: #ffffff;
        font-family: 'Playfair Display', serif;
        font-size: 42px;
        font-weight: 500;
        line-height: 1.12;
    }
@media (max-width: 1200px) {

    .why-us-section {
        padding: 90px 0;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-card {
        min-height: 280px;
    }
}


@media (max-width: 576px) {

    .why-us-section {
        padding: 65px 0;
    }

    .why-heading {
        margin-bottom: 40px;
    }

        .why-heading h2 {
            font-size: 38px;
        }

        .why-heading p {
            font-size: 14px;
        }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .why-card {
        min-height: 250px;
        padding: 30px 25px;
    }

    .why-card-top {
        margin-bottom: 25px;
    }

    .why-card h3 {
        font-size: 23px;
    }

    .why-bottom-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        margin-top: 35px;
        padding: 25px;
    }

    .why-bottom-divider {
        width: 100%;
        height: 1px;
    }
}
/* =========================================
   WHY VERMA OVERSEAS SECTION
========================================= */

.why-us-section {
    width: 100%;
    padding: 110px 0;
    background: var(--green-main);
}


/* -----------------------------------------
   HEADING
----------------------------------------- */

.why-heading {
    max-width: 720px;
    margin-bottom: 60px;
}

    .why-heading .section-label {
        color: var(--gold-light);
    }

    .why-heading h2 {
        color: #ffffff;
    }

        .why-heading h2 span {
            color: var(--gold-light);
        }

    .why-heading p {
        color: rgba(255,255,255,.72);
    }


/* -----------------------------------------
   GRID
----------------------------------------- */

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.15);
}


/* -----------------------------------------
   CARD
----------------------------------------- */

.why-card {
    position: relative;
    min-height: 310px;
    padding: 35px 30px;
    background: var(--green-main);
    transition: background .35s ease, transform .35s ease;
}

    .why-card:hover {
        background: var(--green-light);
        transform: translateY(-5px);
    }


/* -----------------------------------------
   CARD TOP
----------------------------------------- */

.why-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}

.why-number {
    color: rgba(255,255,255,.35);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
}


.why-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212,166,58,.55);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 17px;
    transition: all .35s ease;
}

.why-card:hover .why-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--green-dark);
}


/* -----------------------------------------
   CONTENT
----------------------------------------- */

.why-card h3 {
    margin-bottom: 15px;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    font-weight: 500;
}

.why-card p {
    color: rgba(255,255,255,.68);
    font-size: 13px;
    line-height: 1.75;
}


/* -----------------------------------------
   GOLD LINE
----------------------------------------- */

.why-line {
    position: absolute;
    left: 30px;
    bottom: 28px;
    width: 35px;
    height: 2px;
    background: var(--gold);
    transition: width .35s ease;
}

.why-card:hover .why-line {
    width: 65px;
}


/* -----------------------------------------
   BOTTOM STRIP
----------------------------------------- */

.why-bottom-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 55px;
    padding: 28px 35px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(0,0,0,.10);
}


.why-bottom-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .why-bottom-item strong {
        color: var(--gold-light);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.5px;
    }

    .why-bottom-item span {
        color: rgba(255,255,255,.62);
        font-size: 12px;
    }


.why-bottom-divider {
    width: 1px;
    height: 35px;
    background: rgba(255,255,255,.20);
}
/* =========================================
   GLOBAL EXPORT RESPONSIVE
========================================= */

@media (max-width: 1200px) {

    .global-export-section {
        padding: 90px 0;
    }

    .global-export-grid {
        gap: 40px;
    }

    .global-export-visual {
        height: 500px;
    }

    .world-map {
        width: 370px;
        height: 370px;
        font-size: 370px;
    }
}


@media (max-width: 992px) {

    .global-export-section {
        padding: 80px 0;
    }

    .global-export-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .global-export-content {
        max-width: 750px;
    }

    .global-export-visual {
        height: 500px;
    }
}


@media (max-width: 576px) {

    .global-export-section {
        padding: 65px 0;
    }

    .global-export-content h2 {
        font-size: 38px;
    }

    .global-export-content .global-export-lead {
        font-size: 16px;
    }

    .global-export-content p {
        font-size: 14px;
    }

    .global-export-visual {
        height: 360px;
    }

    .world-map {
        width: 270px;
        height: 270px;
        font-size: 270px;
    }

    .export-route {
        display: none;
    }

    .export-pin {
        font-size: 7px;
    }

    .pin-india {
        top: 51%;
        left: 57%;
    }

    .pin-europe {
        top: 29%;
        left: 40%;
    }

    .pin-usa {
        top: 38%;
        left: 14%;
    }

    .pin-middle-east {
        top: 43%;
        left: 47%;
    }

    .export-badge {
        right: 5px;
        bottom: 5px;
        padding: 12px 15px;
    }

    .global-export-btn {
        width: 100%;
    }
}
/* =========================================
   GLOBAL EXPORT SECTION
========================================= */

.global-export-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 115px 0;
    background: radial-gradient( circle at 80% 50%, rgba(48, 91, 42, .35), transparent 40% ), var(--green-dark);
    color: #ffffff;
}


/* -----------------------------------------
   BACKGROUND
----------------------------------------- */

.global-export-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(8, 24, 8, .98), rgba(8, 24, 8, .88) );
    pointer-events: none;
}


/* -----------------------------------------
   GRID
----------------------------------------- */

.global-export-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    align-items: center;
    gap: 70px;
}


/* -----------------------------------------
   CONTENT
----------------------------------------- */

.global-export-content {
    max-width: 650px;
}

    .global-export-content .section-label {
        color: var(--gold-light);
    }

    .global-export-content h2 {
        margin-bottom: 25px;
        color: #ffffff;
        font-family: 'Playfair Display', serif;
        font-size: clamp(40px, 4vw, 58px);
        font-weight: 600;
        line-height: 1.12;
    }

        .global-export-content h2 span {
            color: var(--gold-light);
        }


    .global-export-content p {
        margin-bottom: 17px;
        color: rgba(255,255,255,.68);
        font-size: 15px;
        line-height: 1.8;
    }

    .global-export-content .global-export-lead {
        color: rgba(255,255,255,.90);
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 22px;
    }


/* -----------------------------------------
   EXPORT POINTS
----------------------------------------- */

.global-export-points {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.15);
}


.global-export-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}


.global-export-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212,166,58,.55);
    color: var(--gold-light);
    border-radius: 50%;
    font-size: 15px;
}


.global-export-point h4 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}


.global-export-point p {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 12px;
    line-height: 1.5;
}


/* -----------------------------------------
   BUTTON
----------------------------------------- */

.global-export-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 26px;
    margin-top: 38px;
    background: var(--gold);
    color: #16200f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: all .3s ease;
}


    .global-export-btn:hover {
        background: var(--gold-light);
        transform: translateY(-2px);
    }


    .global-export-btn i {
        font-size: 10px;
        transition: transform .3s ease;
    }


    .global-export-btn:hover i {
        transform: translateX(5px);
    }


/* =========================================
   WORLD MAP VISUAL
========================================= */

.global-export-visual {
    position: relative;
    width: 100%;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* -----------------------------------------
   EARTH ICON
----------------------------------------- */

.world-map {
    position: relative;
    width: 430px;
    height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.055);
    font-size: 430px;
    line-height: 1;
}

    .world-map i {
        display: block;
    }


/* -----------------------------------------
   ROUTES
----------------------------------------- */

.export-route {
    position: absolute;
    height: 1px;
    background: linear-gradient( 90deg, transparent, var(--gold), transparent );
    transform-origin: left center;
    opacity: .75;
}


.route-one {
    width: 230px;
    top: 45%;
    left: 38%;
    transform: rotate(-22deg);
}


.route-two {
    width: 190px;
    top: 48%;
    left: 39%;
    transform: rotate(15deg);
}


.route-three {
    width: 210px;
    top: 47%;
    left: 39%;
    transform: rotate(35deg);
}


/* -----------------------------------------
   EXPORT PINS
----------------------------------------- */

.export-pin {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}


    .export-pin span {
        width: 9px;
        height: 9px;
        background: var(--gold);
        border: 2px solid rgba(255,255,255,.5);
        border-radius: 50%;
        box-shadow: 0 0 0 5px rgba(212,166,58,.12), 0 0 15px rgba(212,166,58,.45);
    }


.pin-india {
    top: 50%;
    left: 55%;
}


.pin-europe {
    top: 29%;
    left: 43%;
}


.pin-usa {
    top: 38%;
    left: 18%;
}


.pin-middle-east {
    top: 43%;
    left: 48%;
}


/* -----------------------------------------
   BADGE
----------------------------------------- */

.export-badge {
    position: absolute;
    right: 25px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 20px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
}


    .export-badge > i {
        color: var(--gold-light);
        font-size: 22px;
    }


    .export-badge div {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }


    .export-badge strong {
        color: #ffffff;
        font-size: 12px;
        letter-spacing: 1px;
    }


    .export-badge span {
        color: rgba(255,255,255,.55);
        font-size: 9px;
        letter-spacing: 1.5px;
    }

/* =========================================
   FEATURED PRODUCTS SECTION
========================================= */

.featured-products-section {
    width: 100%;
    padding: 110px 0;
    background: #ffffff;
}


/* -----------------------------------------
   HEADING
----------------------------------------- */

.featured-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

    .featured-heading h2 span {
        color: #b58a29;
    }


/* -----------------------------------------
   PRODUCT GRID
----------------------------------------- */

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 25px;
}


/* -----------------------------------------
   PRODUCT CARD
----------------------------------------- */

.featured-product-card {
    display: block;
    position: relative;
}


.featured-product-image {
    position: relative;
    width: 100%;
    height: 390px;
    overflow: hidden;
    background: #f2f0ea;
}


    .featured-product-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .7s ease;
    }


.featured-product-card:hover
.featured-product-image img {
    transform: scale(1.06);
}


/* -----------------------------------------
   CATEGORY
----------------------------------------- */

.product-category {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 7px 11px;
    background: var(--green-main);
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    z-index: 3;
}


/* -----------------------------------------
   OVERLAY
----------------------------------------- */

.product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 25px;
    background: linear-gradient( to top, rgba(8, 25, 9, .78), transparent 50% );
    opacity: 0;
    transition: opacity .35s ease;
}


.featured-product-card:hover .product-overlay {
    opacity: 1;
}


.product-overlay span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.product-overlay i {
    color: var(--gold-light);
    font-size: 10px;
    transition: transform .3s ease;
}


.featured-product-card:hover
.product-overlay i {
    transform: translateX(4px);
}


/* -----------------------------------------
   PRODUCT INFORMATION
----------------------------------------- */

.featured-product-info {
    padding: 18px 3px 0;
}


    .featured-product-info h3 {
        margin-bottom: 6px;
        color: var(--green-main);
        font-family: 'Playfair Display', serif;
        font-size: 21px;
        font-weight: 500;
    }


    .featured-product-info p {
        margin: 0;
        color: #888;
        font-size: 12px;
        line-height: 1.5;
    }


/* -----------------------------------------
   BUTTON
----------------------------------------- */

.featured-products-button {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* =========================================
   FEATURED PRODUCTS RESPONSIVE
========================================= */

@media (max-width: 992px) {

    .featured-products-section {
        padding: 80px 0;
    }

    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .featured-product-image {
        height: 400px;
    }
}


@media (max-width: 576px) {

    .featured-products-section {
        padding: 65px 0;
    }

    .featured-heading {
        margin-bottom: 40px;
    }

        .featured-heading h2 {
            font-size: 38px;
        }

    .featured-products-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .featured-product-image {
        height: 420px;
    }

    .featured-product-info h3 {
        font-size: 20px;
    }

    .featured-products-button {
        margin-top: 40px;
    }

        .featured-products-button .about-btn {
            width: 100%;
            justify-content: center;
        }
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
    width: 100%;
    background: var(--green-dark);
    color: #ffffff;
}


/* =========================================
   MAIN FOOTER
========================================= */

.footer-main {
    padding: 80px 0 65px;
    border-top: 3px solid var(--gold);
}


.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 60px;
}


/* =========================================
   FOOTER BRAND
========================================= */

.footer-brand {
    max-width: 360px;
}


.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 25px;
}


    .footer-logo img {
        width: auto;
        height: 78px;
        max-width: 190px;
        object-fit: contain;
    }


.footer-brand > p {
    margin-bottom: 25px;
    color: rgba(255,255,255,.62);
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================
   SOCIAL ICONS
========================================= */

.footer-social {
    display: flex;
    align-items: center;
    gap: 9px;
}


    .footer-social a {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255,255,255,.18);
        color: rgba(255,255,255,.75);
        font-size: 12px;
        transition: all .3s ease;
    }


        .footer-social a:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--green-dark);
            transform: translateY(-2px);
        }


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column h3 {
    position: relative;
    margin: 7px 0 25px;
    padding-bottom: 13px;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
}


    .footer-column h3::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 32px;
        height: 2px;
        background: var(--gold);
    }


.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


    .footer-column ul li a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: rgba(255,255,255,.60);
        font-size: 12px;
        transition: all .3s ease;
    }


        .footer-column ul li a i {
            color: var(--gold);
            font-size: 8px;
            transition: transform .3s ease;
        }


        .footer-column ul li a:hover {
            color: var(--gold-light);
            padding-left: 4px;
        }


            .footer-column ul li a:hover i {
                transform: translateX(2px);
            }


/* =========================================
   CONTACT
========================================= */

.footer-contact {
    max-width: 320px;
}


.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 19px;
}


.footer-contact-icon {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,166,58,.10);
    color: var(--gold-light);
    font-size: 12px;
}


.footer-contact-item strong {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.footer-contact-item p,
.footer-contact-item a {
    color: rgba(255,255,255,.60);
    font-size: 12px;
    line-height: 1.5;
}


    .footer-contact-item a:hover {
        color: var(--gold-light);
    }


/* =========================================
   QUOTE BUTTON
========================================= */

.footer-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 20px;
    margin-top: 5px;
    background: var(--gold);
    color: #16200f;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .3s ease;
}


    .footer-quote-btn:hover {
        background: var(--gold-light);
        color: #16200f;
        transform: translateY(-2px);
    }


    .footer-quote-btn i {
        font-size: 9px;
        transition: transform .3s ease;
    }


    .footer-quote-btn:hover i {
        transform: translateX(4px);
    }


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    background: rgba(0,0,0,.16);
}


.footer-bottom-inner {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,.45);
    font-size: 11px;
}


    .footer-bottom p strong {
        color: rgba(255,255,255,.70);
    }


.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}


    .footer-bottom-links a {
        color: rgba(255,255,255,.45);
        font-size: 10px;
        transition: color .3s ease;
    }


        .footer-bottom-links a:hover {
            color: var(--gold-light);
        }


    .footer-bottom-links span {
        width: 3px;
        height: 3px;
        background: var(--gold);
        border-radius: 50%;
    }


.footer-credit {
    color: var(--gold) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================
   FOOTER RESPONSIVE
========================================= */

@media (max-width: 1200px) {

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 45px;
    }

    .footer-contact {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-contact {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        align-items: start;
    }

        .footer-contact h3 {
            grid-column: 1 / -1;
        }

    .footer-quote-btn {
        width: fit-content;
    }
}


@media (max-width: 768px) {

    .footer-main {
        padding: 65px 0 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 600px;
    }

    .footer-contact {
        grid-column: 1 / -1;
        display: block;
        max-width: 100%;
    }

    .footer-contact-item {
        margin-bottom: 18px;
    }

    .footer-bottom-inner {
        min-height: auto;
        padding: 22px 0;
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        order: 2;
    }

    .footer-credit {
        order: 3;
    }
}


@media (max-width: 576px) {

    .footer-main {
        padding: 55px 0 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-logo img {
        height: 65px;
    }

    .footer-brand > p {
        font-size: 12px;
    }

    .footer-column h3 {
        font-size: 19px;
    }

    .footer-column ul {
        gap: 11px;
    }

    .footer-bottom-inner {
        gap: 13px;
    }

    .footer-bottom p {
        font-size: 10px;
        line-height: 1.6;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}