
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Montserrat:wght@400;500;600&display=swap');


/* =====================================================
   GLOBAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brown: #49361f;
    --gold: #a06f35;
    --light-gold: #c9b99a;
    --cream: #f5f0df;
    --border: #e5ddd1;
    --heading: "Cormorant Garamond", serif;
    --body: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body);
    color: var(--brown);
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}


/* =====================================================
   TOP BAR
===================================================== */

.top-bar {
    width: 100%;
    background: var(--light-gold);
    color: #3d2e1d;
    text-align: center;
    padding: 8px 15px;
    font-family: var(--body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .5px;
}


/* =====================================================
   HEADER
===================================================== */

.main-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee8df;
    position: relative;
    z-index: 1000;
}

.header-inner {
    min-height: 90px;
    padding: 0 38px;
    display: flex;
    align-items: center;
    gap: 20px;
}


/* =====================================================
   LOGO
===================================================== */

.logo {
    width: 205px;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    flex-direction: column;
}

.logo span {
    font-family: var(--heading);
    font-size: 43px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -1px;
    color: var(--gold);
}

.logo small {
    display: block;
    margin-top: 9px;
    font-family: var(--body);
    font-size: 7px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #8a8175;
}


/* =====================================================
   MAIN MENU
===================================================== */

.main-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-left: 15px;
}

.main-menu > a,
.menu-dropdown > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brown);
    font-family: var(--body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    white-space: nowrap;
    padding: 8px 0;
    transition: color .3s ease;
}


/* =====================================================
   HOVER LINE
===================================================== */

.main-menu > a::after,
.menu-dropdown > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .3s ease;
}

.main-menu > a:hover,
.menu-dropdown > a:hover {
    color: var(--gold);
}

.main-menu > a:hover::after,
.menu-dropdown > a:hover::after {
    width: 100%;
}


/* =====================================================
   PLUS ICON
===================================================== */

.plus-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brown);
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    transition: .3s ease;
}

.menu-dropdown:hover .plus-icon {
    color: var(--gold);
    transform: rotate(45deg);
}


/* =====================================================
   DROPDOWN
===================================================== */

.menu-dropdown {
    position: relative;
}

.dropdown-menu-custom {
    position: absolute;
    top: 34px;
    left: 50%;
    width: 230px;
    padding: 12px 0;
    background: #fff;
    border-top: 2px solid var(--gold);
    box-shadow: 0 15px 35px rgba(73, 54, 31, .14);

    opacity: 0;
    visibility: hidden;

    transform: translate(-50%, 12px);

    transition:
        opacity .3s ease,
        transform .3s ease,
        visibility .3s ease;

    z-index: 9999;
}

.menu-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.dropdown-menu-custom a {
    display: block;
    padding: 12px 20px;
    color: var(--brown);
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: .3px;
    transition: .25s ease;
}

.dropdown-menu-custom a:hover {
    background: #f8f4ed;
    color: var(--gold);
    padding-left: 27px;
}


/* =====================================================
   HEADER ACTIONS
===================================================== */

.header-actions {
    width: 220px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 10px;
    margin-left: 10px;
}


/* =====================================================
   ROUND ICON
===================================================== */

.icon-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;

    border: 1px solid #d8cfc2;
    border-radius: 50%;

    background: #fff;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--brown);
    font-size: 14px;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.icon-btn:hover {
    background: var(--brown);
    color: #fff;
    border-color: var(--brown);

    transform: translateY(-2px);

    box-shadow: 0 7px 15px rgba(73,54,31,.18);
}

.whatsapp-icon {
    font-family: var(--body);
    font-size: 10px;
    font-weight: 600;
}


/* =====================================================
   QUOTE BUTTON
===================================================== */

.quote-btn {
    height: 44px;
    min-width: 125px;

    padding: 0 15px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: var(--brown);
    color: #fff;

    font-family: var(--body);
    font-size: 9px;
    font-weight: 600;

    letter-spacing: .8px;
    white-space: nowrap;

    transition: .3s ease;
}

.quote-btn:hover {
    background: var(--gold);
    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 8px 18px rgba(73,54,31,.2);
}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.mobile-menu-btn {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid #d8cfc2;
    border-radius: 50%;

    background: #fff;
    color: var(--brown);

    font-size: 21px;

    cursor: pointer;

    transition: .3s ease;
}

.mobile-menu-btn:hover {
    background: var(--brown);
    color: #fff;
}


/* =====================================================
   HERO SLIDER
===================================================== */

.hero-slider {
    width: 100%;
    overflow: hidden;
}

.hero-slider .carousel-item {
    height: 500px;
}

.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* =====================================================
   SLIDER ARROWS
===================================================== */

.carousel-control-prev,
.carousel-control-next {
    width: 65px;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;

    background-color: rgba(73,54,31,.55);

    border-radius: 50%;

    background-size: 40%;

    transition: .3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--brown);
    transform: scale(1.08);
}


/* =====================================================
   SLIDER DOTS
===================================================== */

.carousel-indicators {
    margin-bottom: 15px;
}

.carousel-indicators button {
    width: 8px !important;
    height: 8px !important;

    border-radius: 50%;

    margin: 0 4px !important;
}


/* =====================================================
   TRUSTED BY
===================================================== */

.trusted-section {
    padding: 80px 30px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.trusted-heading {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.trusted-heading span {
    display: block;

    color: var(--gold);

    font-family: var(--body);
    font-size: 11px;
    font-weight: 600;

    letter-spacing: 2.5px;

    margin-bottom: 12px;
}

.trusted-heading h2 {
    margin: 0 0 15px;

    color: var(--brown);

    font-family: var(--heading);
    font-size: 46px;
    font-weight: 500;
}

.trusted-heading p {
    margin: 0;

    color: #777;

    font-family: var(--body);
    font-size: 13px;

    line-height: 1.8;
}

.trusted-logos {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 20px;

    align-items: center;
}

.trusted-logo {
    min-height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: #777;

    font-family: var(--body);
    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1.5px;

    opacity: .75;

    transition: .3s ease;
}

.trusted-logo:hover {
    color: var(--brown);
    opacity: 1;

    transform: translateY(-3px);
}


/* =====================================================
   WHATSAPP FLOATING
===================================================== */

.whatsapp-btn {
    position: fixed;

    left: 20px;
    bottom: 20px;

    width: 58px;
    height: 58px;

    background: #25d366;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: var(--body);
    font-size: 18px;
    font-weight: 600;

    box-shadow: 0 5px 18px rgba(0,0,0,.2);

    z-index: 9999;

    transition: .3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.08);
    color: #fff;
}


/* =====================================================
   MOBILE OFFCANVAS
===================================================== */

.offcanvas {
    background: #fff;
}

.offcanvas-header {
    border-bottom: 1px solid #eee;
}

.offcanvas-header h5 {
    color: var(--brown);

    font-family: var(--heading);
    font-size: 28px;
}

.offcanvas-body {
    display: flex;
    flex-direction: column;
}

.offcanvas-body > a {
    padding: 15px 5px;

    border-bottom: 1px solid #eee;

    color: var(--brown);

    font-family: var(--body);
    font-size: 13px;

    letter-spacing: .5px;

    transition: .25s ease;
}

.offcanvas-body > a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.mobile-quote {
    margin-top: 20px;

    background: var(--brown);
    color: #fff !important;

    text-align: center;

    border: 0 !important;
}


/* =====================================================
   FOOTER
===================================================== */

.main-footer {
background-image: url("../images/footer/1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}


/* =====================================================
   SOCIAL
===================================================== */

.footer-social {
    text-align: center;

    padding: 42px 20px 30px;
}

.footer-social > span {
    display: block;

    margin-bottom: 18px;

    font-family: var(--heading);
    font-size: 22px;
    font-weight: 500;

    color: var(--brown);
}

.social-icons {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;

    border: 1px solid #b9aa8b;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--brown);

    font-size: 16px;

    transition: .3s ease;
}

.social-icons a:hover {
    background: var(--brown);
    color: #fff;

    border-color: var(--brown);

    transform: translateY(-3px);
}


/* =====================================================
   FOOTER CONTENT
===================================================== */

.footer-content {
    max-width: 1250px;

    margin: auto;

    padding: 35px 30px 60px;

    display: grid;

    grid-template-columns:
        1.3fr
        1fr
        1.2fr
        1.2fr
        1.4fr;

    gap: 45px;
}


/* =====================================================
   FOOTER BRAND
===================================================== */

.footer-logo {
    display: inline-block;

    color: var(--gold);

    font-family: var(--heading);

    font-size: 48px;
    font-weight: 500;

    line-height: 1;

    margin-bottom: 15px;
}

.footer-logo:hover {
    color: var(--brown);
}

.footer-tagline {
    max-width: 220px;

    color: #756c5d;

    font-family: var(--body);

    font-size: 12px;

    line-height: 1.8;
}


/* =====================================================
   FOOTER COLUMNS
===================================================== */

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.footer-column h4 {
    margin-bottom: 20px;

    color: var(--brown);

    font-family: var(--body);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1.5px;
}

.footer-column a {
    color: #6c6253;

    font-family: var(--body);

    font-size: 12px;

    line-height: 1.7;

    margin-bottom: 9px;

    transition: .25s ease;
}

.footer-column a:hover {
    color: var(--gold);

    padding-left: 4px;
}


/* =====================================================
   CONTACT
===================================================== */

.footer-contact p {
    max-width: 230px;

    color: #6c6253;

    font-family: var(--body);

    font-size: 12px;

    line-height: 1.7;

    margin-bottom: 15px;
}

.footer-contact p i,
.footer-contact a i {
    margin-right: 8px;
    color: #8b6c40;
}

.footer-contact a {
    display: block;
}


/* =====================================================
   NEWSLETTER
===================================================== */

.footer-newsletter {
    max-width: 1250px;

    margin: auto;

    padding: 25px 30px 35px;

    border-top: 1px solid #ddd4bf;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.footer-newsletter h4 {
    margin: 0 0 7px;

    font-family: var(--heading);

    font-size: 25px;
    font-weight: 500;
}

.footer-newsletter p {
    margin: 0;

    color: #756c5d;

    font-family: var(--body);

    font-size: 11px;
}

.newsletter-form {
    display: flex;

    width: 430px;
    max-width: 100%;
}

.newsletter-form input {
    flex: 1;

    height: 46px;

    padding: 0 15px;

    background: #fff;

    border: 1px solid #d6ccb6;

    outline: none;

    color: var(--brown);

    font-family: var(--body);

    font-size: 11px;
}

.newsletter-form button {
    height: 46px;

    padding: 0 22px;

    border: 0;

    background: var(--brown);

    color: #fff;

    font-family: var(--body);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 1px;

    cursor: pointer;

    transition: .3s ease;
}

.newsletter-form button:hover {
    background: var(--gold);
}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {
    min-height: 55px;

    padding: 0 30px;

    border-top: 1px solid #ddd4bf;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;

    color: #756c5d;

    font-family: var(--body);

    font-size: 11px;
}

.footer-legal {
    display: flex;

    align-items: center;

    gap: 10px;
}

.footer-legal a {
    color: #756c5d;

    font-family: var(--body);

    font-size: 11px;
}

.footer-legal a:hover {
    color: var(--gold);
}

.footer-legal span {
    color: #b7aa92;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1200px) {

    .header-inner {
        padding: 0 22px;
        gap: 12px;
    }

    .logo {
        width: 180px;
    }

    .logo span {
        font-size: 37px;
    }

    .main-menu {
        gap: 18px;
        margin-left: 5px;
    }

    .main-menu > a,
    .menu-dropdown > a {
        font-size: 9px;
        letter-spacing: .6px;
    }

    .header-actions {
        width: 190px;
        margin-left: 5px;
    }

    .icon-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .quote-btn {
        min-width: 120px;
        height: 42px;
    }

    .trusted-logos {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 991px) {

    .header-inner {
        min-height: 76px;

        padding: 0 20px;

        justify-content: space-between;
    }

    .main-menu,
    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-flex;

        align-items: center;
        justify-content: center;
    }

    .logo {
        width: auto;
    }

    .logo span {
        font-size: 36px;
    }

    .hero-slider .carousel-item {
        height: 350px;
    }

    .trusted-section {
        padding: 60px 25px;
    }

    .trusted-heading h2 {
        font-size: 38px;
    }

    .trusted-logos {
        grid-template-columns: repeat(3, 1fr);

        gap: 15px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);

        gap: 35px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-newsletter {
        flex-direction: column;

        align-items: flex-start;
    }

    .newsletter-form {
        width: 100%;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 576px) {

    .top-bar {
        font-size: 10px;
        padding: 7px 10px;
    }

    .header-inner {
        min-height: 70px;

        padding: 0 15px;
    }

    .logo span {
        font-size: 32px;
    }

    .logo small {
        font-size: 6px;
        letter-spacing: 1px;
    }

    .mobile-menu-btn {
        width: 38px;
        height: 38px;

        font-size: 19px;
    }

    .hero-slider .carousel-item {
        height: 250px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 32px;
        height: 32px;
    }

    .trusted-section {
        padding: 50px 20px;
    }

    .trusted-heading {
        margin-bottom: 30px;
    }

    .trusted-heading h2 {
        font-size: 34px;
    }

    .trusted-heading p {
        font-size: 12px;
    }

    .trusted-logos {
        grid-template-columns: repeat(2, 1fr);

        gap: 10px;
    }

    .trusted-logo {
        min-height: 60px;

        font-size: 11px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;

        left: 15px;
        bottom: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;

        padding: 30px 25px 40px;

        gap: 30px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-logo {
        font-size: 40px;
    }

    .footer-newsletter {
        padding: 25px 20px 30px;
    }

    .newsletter-form {
        flex-direction: column;

        gap: 8px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .footer-bottom {
        padding: 18px 20px;

        flex-direction: column;

        gap: 8px;

        text-align: center;
    }
}











/* ================================
   TRUSTED CLIENTS
================================ */

.trusted-section {
    padding: 90px 0;
    background: #f8f5ef;
    overflow: hidden;
}

.trusted-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
}

.trusted-heading span {
    display: block;
    font-family: var(--body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 12px;
}

.trusted-heading h2 {
    font-family: var(--heading);
    font-size: 48px;
    font-weight: 600;
    color: var(--brown);
    margin: 0 0 12px;
}

.trusted-heading p {
    font-family: var(--body);
    font-size: 14px;
    line-height: 1.8;
    color: #777;
    margin: 0;
}


/* Logo Slider */

#trustedLogoSlider {
    padding: 0 70px;
}

.trusted-logo-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: center;
}

.trusted-logo {
    height: 130px;
    background: #fff;
    border: 1px solid #e8e1d7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 35px;
    transition: all 0.3s ease;
}

.trusted-logo img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: all 0.3s ease;
}

.trusted-logo:hover {
    transform: translateY(-5px);
    border-color: var(--light-gold);
    box-shadow: 0 12px 30px rgba(73, 54, 31, 0.08);
}

.trusted-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}


/* Arrows */

#trustedLogoSlider .carousel-control-prev,
#trustedLogoSlider .carousel-control-next {
    width: 45px;
    opacity: 1;
}

.trusted-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid #d8cdbd;
    border-radius: 50%;
    background: #fff;
    color: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.trusted-arrow:hover {
    background: var(--brown);
    color: #fff;
    border-color: var(--brown);
}


/* Mobile */

@media (max-width: 991px) {

    .trusted-section {
        padding: 70px 0;
    }

    .trusted-heading {
        margin-bottom: 40px;
    }

    .trusted-heading h2 {
        font-size: 40px;
    }

    #trustedLogoSlider {
        padding: 0 45px;
    }

    .trusted-logo-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .trusted-logo {
        height: 110px;
        padding: 20px;
    }

    .trusted-logo img {
        max-height: 55px;
    }
}


@media (max-width: 575px) {

    .trusted-section {
        padding: 55px 0;
    }

    .trusted-heading h2 {
        font-size: 34px;
    }

    .trusted-heading p {
        font-size: 13px;
    }

    #trustedLogoSlider {
        padding: 0 35px;
    }

    .trusted-logo {
        height: 90px;
        padding: 15px;
    }

    .trusted-logo img {
        max-height: 45px;
    }

    #trustedLogoSlider .carousel-control-prev,
    #trustedLogoSlider .carousel-control-next {
        width: 30px;
    }

    .trusted-arrow {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}
/* ================================
   SHOP SECTION
================================ */

.shop-section {
    padding: 100px 0;
    background: #fff;
}

.shop-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.shop-heading span {
    display: block;
    font-family: var(--body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 12px;
}

.shop-heading h2 {
    font-family: var(--heading);
    font-size: 50px;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 12px;
}

.shop-heading p {
    font-family: var(--body);
    font-size: 14px;
    line-height: 1.8;
    color: #777;
    margin: 0;
}


/* Cards */

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.shop-card {
    position: relative;
    display: block;
    background: #f7f3ec;
    text-decoration: none;
    overflow: hidden;
}

.shop-card-image {
    height: 300px;
    overflow: hidden;
}

.shop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.shop-card:hover .shop-card-image img {
    transform: scale(1.06);
}

.shop-card-content {
    padding: 28px 30px 32px;
}

.shop-card-content > span {
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gold);
}

.shop-card-content h3 {
    font-family: var(--heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--brown);
    margin: 8px 0 8px;
}

.shop-card-content p {
    font-family: var(--body);
    font-size: 13px;
    line-height: 1.7;
    color: #777;
    margin-bottom: 22px;
}

.shop-link {
    font-family: var(--body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--brown);
}

.shop-link i {
    margin-left: 8px;
    transition: 0.3s ease;
}

.shop-card:hover .shop-link i {
    margin-left: 14px;
}


/* Responsive */

@media (max-width: 991px) {

    .shop-section {
        padding: 75px 0;
    }

    .shop-heading h2 {
        font-size: 42px;
    }

    .shop-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .shop-card {
        display: grid;
        grid-template-columns: 40% 60%;
    }

    .shop-card-image {
        height: 100%;
        min-height: 250px;
    }
}


@media (max-width: 575px) {

    .shop-section {
        padding: 60px 0;
    }

    .shop-heading {
        margin-bottom: 35px;
    }

    .shop-heading h2 {
        font-size: 36px;
    }

    .shop-heading p {
        font-size: 13px;
    }

    .shop-card {
        display: block;
    }

    .shop-card-image {
        height: 230px;
        min-height: auto;
    }

    .shop-card-content {
        padding: 22px 22px 26px;
    }

    .shop-card-content h3 {
        font-size: 28px;
    }
}
/* ================================
   WHY DAFFODIL
================================ */

.why-daffodil {
    padding: 110px 0;
    background: #49361f;
    color: #fff;
}

.why-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 65px;
}

.why-heading span {
    display: block;
    font-family: var(--body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--light-gold);
    margin-bottom: 15px;
}

.why-heading h2 {
    font-family: var(--heading);
    font-size: 58px;
    line-height: 1.02;
    font-weight: 500;
    margin: 0;
    color: #fff;
}

.why-intro {
    max-width: 470px;
    margin-left: auto;
}

.why-intro p {
    font-family: var(--body);
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255,255,255,0.72);
    margin-bottom: 28px;
}

.why-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 22px;
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    text-decoration: none;
    font-family: var(--body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.why-btn:hover {
    background: #fff;
    color: var(--brown);
}

.why-btn i {
    transition: 0.3s ease;
}

.why-btn:hover i {
    transform: translate(3px, -3px);
}


/* Cards */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,0.18);
    border-bottom: 1px solid rgba(255,255,255,0.18);
}

.why-card {
    position: relative;
    padding: 38px 28px 42px;
    border-right: 1px solid rgba(255,255,255,0.18);
    transition: background 0.3s ease;
}

.why-card:last-child {
    border-right: none;
}

.why-card:hover {
    background: rgba(255,255,255,0.05);
}

.why-number {
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--light-gold);
    margin-bottom: 35px;
}

.why-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--light-gold);
    font-size: 18px;
}

.why-card h3 {
    font-family: var(--heading);
    font-size: 27px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
}

.why-card p {
    font-family: var(--body);
    font-size: 12px;
    line-height: 1.8;
    color: rgba(255,255,255,0.62);
    margin: 0;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {

    .why-daffodil {
        padding: 80px 0;
    }

    .why-top {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 45px;
    }

    .why-intro {
        margin-left: 0;
    }

    .why-heading h2 {
        font-size: 48px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-card:nth-child(2) {
        border-right: none;
    }

    .why-card:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,0.18);
    }
}


@media (max-width: 575px) {

    .why-daffodil {
        padding: 65px 0;
    }

    .why-heading h2 {
        font-size: 40px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.18);
        padding: 30px 20px;
    }

    .why-card:last-child {
        border-bottom: none;
    }

    .why-card:nth-child(2) {
        border-right: none;
    }

    .why-card:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,0.18);
    }
}
/* ================================
   CUSTOM BRANDING
================================ */

.custom-branding {
    padding: 110px 0;
    background: #f5f0e8;
}

.custom-branding-wrap {
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: stretch;
}


/* Image */

.custom-branding-image {
    min-height: 620px;
    overflow: hidden;
}

.custom-branding-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.custom-branding-wrap:hover .custom-branding-image img {
    transform: scale(1.03);
}


/* Content */

.custom-branding-content {
    background: #49361f;
    padding: 75px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-eyebrow {
    font-family: var(--body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--light-gold);
    margin-bottom: 18px;
}

.custom-branding-content h2 {
    font-family: var(--heading);
    font-size: 57px;
    line-height: 1.02;
    font-weight: 500;
    color: #fff;
    margin: 0 0 22px;
}

.custom-intro {
    max-width: 500px;
    font-family: var(--body);
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255,255,255,0.7);
    margin-bottom: 38px;
}


/* Features */

.custom-features {
    border-top: 1px solid rgba(255,255,255,0.18);
    margin-bottom: 35px;
}

.custom-feature {
    display: flex;
    gap: 25px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.18);
}

.custom-feature > span {
    font-family: var(--body);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--light-gold);
    padding-top: 4px;
}

.custom-feature h4 {
    font-family: var(--heading);
    font-size: 23px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 4px;
}

.custom-feature p {
    font-family: var(--body);
    font-size: 11px;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
    margin: 0;
}


/* Button */

.custom-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    text-decoration: none;
    font-family: var(--body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    background: #fff;
    color: var(--brown);
}

.custom-btn i {
    transition: 0.3s ease;
}

.custom-btn:hover i {
    transform: translate(3px, -3px);
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {

    .custom-branding {
        padding: 80px 0;
    }

    .custom-branding-wrap {
        grid-template-columns: 1fr;
    }

    .custom-branding-image {
        min-height: 450px;
    }

    .custom-branding-content {
        padding: 55px 45px;
    }

    .custom-branding-content h2 {
        font-size: 48px;
    }
}


@media (max-width: 575px) {

    .custom-branding {
        padding: 60px 0;
    }

    .custom-branding-image {
        min-height: 320px;
    }

    .custom-branding-content {
        padding: 42px 25px;
    }

    .custom-branding-content h2 {
        font-size: 40px;
    }

    .custom-intro {
        font-size: 13px;
    }

    .custom-feature {
        gap: 15px;
    }

    .custom-feature h4 {
        font-size: 21px;
    }
}
/* ================================
   FESTIVAL COLLECTIONS
================================ */

.festival-section {
    padding: 110px 0;
    background: #fff;
}

.festival-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.festival-heading span {
    display: block;
    font-family: var(--body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 12px;
}

.festival-heading h2 {
    font-family: var(--heading);
    font-size: 52px;
    line-height: 1.05;
    font-weight: 600;
    color: var(--brown);
    margin: 0;
}

.festival-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border: 1px solid #d8cdbd;
    color: var(--brown);
    text-decoration: none;
    font-family: var(--body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s ease;
}

.festival-view-btn:hover {
    background: var(--brown);
    color: #fff;
}


/* Grid */

.festival-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 20px;
}

.festival-card {
    position: relative;
    height: 520px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    background: #eee;
}

.festival-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.festival-card:hover img {
    transform: scale(1.06);
}


/* Overlay */

.festival-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(30, 20, 10, 0.82) 0%,
        rgba(30, 20, 10, 0.15) 55%,
        rgba(30, 20, 10, 0) 100%
    );
}


/* Content */

.festival-content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    color: #fff;
}

.festival-content span {
    font-family: var(--body);
    font-size: 10px;
    letter-spacing: 2px;
    color: #d8c7aa;
}

.festival-content h3 {
    font-family: var(--heading);
    font-size: 42px;
    font-weight: 500;
    margin: 8px 0 5px;
    color: #fff;
}

.festival-content p {
    font-family: var(--body);
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    margin: 0;
    max-width: 280px;
}

.festival-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.festival-card:hover .festival-arrow {
    background: #fff;
    color: var(--brown);
    transform: rotate(45deg);
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {

    .festival-section {
        padding: 80px 0;
    }

    .festival-heading h2 {
        font-size: 44px;
    }

    .festival-grid {
        grid-template-columns: 1fr 1fr;
    }

    .festival-card {
        height: 430px;
    }

    .festival-card:first-child {
        grid-column: span 2;
    }
}


@media (max-width: 575px) {

    .festival-section {
        padding: 60px 0;
    }

    .festival-heading {
        display: block;
        margin-bottom: 35px;
    }

    .festival-heading h2 {
        font-size: 38px;
    }

    .festival-view-btn {
        margin-top: 20px;
    }

    .festival-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .festival-card,
    .festival-card:first-child {
        grid-column: auto;
        height: 400px;
    }

    .festival-content {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .festival-content h3 {
        font-size: 36px;
    }
}
/* ================================
   SELECTED WORK
================================ */

.selected-work {
    padding: 110px 0;
    background: #f8f5ef;
}

.work-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    margin-bottom: 55px;
}

.work-heading span {
    display: block;
    font-family: var(--body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 12px;
}

.work-heading h2 {
    font-family: var(--heading);
    font-size: 54px;
    line-height: 1;
    font-weight: 600;
    color: var(--brown);
    margin: 0;
}

.work-heading p {
    max-width: 430px;
    margin: 0;
    font-family: var(--body);
    font-size: 13px;
    line-height: 1.8;
    color: #777;
}


/* Grid */

.work-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 22px;
}

.work-card {
    position: relative;
    display: block;
    text-decoration: none;
    overflow: hidden;
    background: #ddd;
}

.work-main {
    grid-row: span 2;
}

.work-wide {
    grid-column: span 1;
}

.work-image {
    height: 330px;
    overflow: hidden;
}

.work-main .work-image {
    height: 685px;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.work-card:hover .work-image img {
    transform: scale(1.05);
}


/* Dark bottom info */

.work-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    padding: 28px 30px;

    background: linear-gradient(
        to top,
        rgba(30,20,10,0.9),
        rgba(30,20,10,0)
    );
}

.work-info span {
    font-family: var(--body);
    font-size: 9px;
    letter-spacing: 2px;
    color: #d8c7aa;
}

.work-info h3 {
    font-family: var(--heading);
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    margin: 5px 0 0;
}

.work-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    transition: all 0.3s ease;
}

.work-card:hover .work-arrow {
    background: #fff;
    color: var(--brown);
    transform: rotate(45deg);
}


/* Bottom Button */

.work-bottom {
    text-align: center;
    margin-top: 45px;
}

.work-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 25px;

    border: 1px solid #cfc4b4;
    color: var(--brown);
    text-decoration: none;

    font-family: var(--body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    transition: 0.3s ease;
}

.work-view-btn:hover {
    background: var(--brown);
    color: #fff;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {

    .selected-work {
        padding: 80px 0;
    }

    .work-heading {
        display: block;
    }

    .work-heading p {
        margin-top: 20px;
    }

    .work-grid {
        grid-template-columns: 1fr 1fr;
    }

    .work-main {
        grid-column: span 2;
        grid-row: auto;
    }

    .work-main .work-image {
        height: 500px;
    }

    .work-image {
        height: 320px;
    }
}


@media (max-width: 575px) {

    .selected-work {
        padding: 60px 0;
    }

    .work-heading h2 {
        font-size: 40px;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .work-main {
        grid-column: auto;
    }

    .work-main .work-image,
    .work-image {
        height: 360px;
    }

    .work-info {
        padding: 22px;
    }

    .work-info h3 {
        font-size: 28px;
    }
}
/* ================================
   BRANDS SECTION
================================ */

.brands-section {
    padding: 110px 0;
    background: #fff;
}

.brands-heading {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.brands-heading span {
    display: block;
    font-family: var(--body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 14px;
}

.brands-heading h2 {
    font-family: var(--heading);
    font-size: 52px;
    line-height: 1;
    font-weight: 600;
    color: var(--brown);
    margin: 0 0 18px;
}

.brands-heading p {
    font-family: var(--body);
    font-size: 13px;
    line-height: 1.8;
    color: #777;
    margin: 0;
}


/* Logo Area */

.brands-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #e5ddd1;
    border-left: 1px solid #e5ddd1;
}

.brand-item {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 40px;
    border-right: 1px solid #e5ddd1;
    border-bottom: 1px solid #e5ddd1;
    transition: 0.3s ease;
}

.brand-item:hover {
    background: #f8f5ef;
}

.brand-item img {
    max-width: 150px;
    max-height: 65px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}


/* Bottom Note */

.brands-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 35px;
}

.brands-note span {
    width: 45px;
    height: 1px;
    background: #d8cdbd;
}

.brands-note p {
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 0.5px;
    color: #888;
    margin: 0;
    text-align: center;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {

    .brands-section {
        padding: 80px 0;
    }

    .brands-heading h2 {
        font-size: 44px;
    }

    .brands-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 575px) {

    .brands-section {
        padding: 60px 0;
    }

    .brands-heading {
        margin-bottom: 40px;
    }

    .brands-heading h2 {
        font-size: 38px;
    }

    .brands-heading p {
        font-size: 12px;
    }

    .brand-item {
        height: 110px;
        padding: 20px;
    }

    .brand-item img {
        max-width: 110px;
        max-height: 50px;
    }

    .brands-note span {
        width: 20px;
    }

    .brands-note p {
        font-size: 10px;
    }
}
/* ================================
   NUMBERS SECTION
================================ */

.numbers-section {
    padding: 105px 0;
    background: #49361f;
}

.numbers-heading {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 65px;
}

.numbers-heading span {
    display: block;
    font-family: var(--body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--light-gold);
    margin-bottom: 15px;
}

.numbers-heading h2 {
    font-family: var(--heading);
    font-size: 52px;
    line-height: 1.05;
    font-weight: 500;
    color: #fff;
    margin: 0;
}


/* Numbers */

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.number-item {
    min-height: 180px;
    padding: 35px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s ease;
}

.number-item:last-child {
    border-right: none;
}

.number-item:hover {
    background: rgba(255,255,255,0.05);
}

.number-item strong {
    font-family: var(--heading);
    font-size: 52px;
    line-height: 1;
    font-weight: 500;
    color: #fff;
}

.number-item strong sup {
    font-family: var(--body);
    font-size: 20px;
    vertical-align: top;
    margin-left: 2px;
    color: var(--light-gold);
}

.number-item span {
    margin-top: 14px;
    font-family: var(--body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {

    .numbers-section {
        padding: 80px 0;
    }

    .numbers-heading h2 {
        font-size: 44px;
    }

    .numbers-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .number-item:nth-child(3) {
        border-right: none;
    }

    .number-item:nth-child(-n+3) {
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
}


@media (max-width: 575px) {

    .numbers-section {
        padding: 65px 0;
    }

    .numbers-heading {
        margin-bottom: 45px;
    }

    .numbers-heading h2 {
        font-size: 38px;
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .number-item {
        min-height: 145px;
        padding: 25px 15px;
    }

    .number-item strong {
        font-size: 40px;
    }

    .number-item span {
        font-size: 9px;
        line-height: 1.5;
    }

    .number-item:nth-child(2) {
        border-right: none;
    }

    .number-item:nth-child(3) {
        border-right: 1px solid rgba(255,255,255,0.2);
    }

    .number-item:nth-child(4) {
        border-right: none;
    }
}
/* =========================================
   TESTIMONIAL SECTION
========================================= */

.testimonial-section {
    padding: 110px 0 120px;
    background: #f5f0e8;
    position: relative;
}

.testimonial-heading {
    max-width: 720px;
    margin: 0 auto 55px;
}

.testimonial-heading .section-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #8c6b3e;
}

.testimonial-heading h2 {
    margin: 0 0 18px;
    font-family: "Cormorant Garamond", serif;
    font-size: 52px;
    line-height: 1.05;
    font-weight: 600;
    color: #3d2d1d;
}

.testimonial-heading p {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #756a5d;
}


/* Testimonial Slider */

#testimonialSlider {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 55px;
}

.testimonial-card {
    max-width: 760px;
    min-height: 390px;
    margin: 0 auto;
    padding: 65px 80px;
    background: #fffdf9;
    border: 1px solid rgba(73, 54, 31, 0.12);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quote-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 25px;
    border-radius: 50%;
    background: #49361f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.testimonial-text {
    max-width: 620px;
    margin: 0 auto 35px;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    line-height: 1.45;
    font-weight: 500;
    font-style: italic;
    color: #49361f;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
}

.client-initial {
    width: 48px;
    height: 48px;
    border: 1px solid #b59a70;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    font-weight: 700;
    color: #49361f;
}

.testimonial-client h5 {
    margin: 0 0 3px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #49361f;
}

.testimonial-client span {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    color: #8c6b3e;
}


/* Arrows */

#testimonialSlider .carousel-control-prev,
#testimonialSlider .carousel-control-next {
    width: 48px;
    opacity: 1;
}

.testimonial-arrow {
    width: 45px;
    height: 45px;
    border: 1px solid #b59a70;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #49361f;
    font-size: 17px;
    transition: all 0.3s ease;
}

.testimonial-arrow:hover {
    background: #49361f;
    color: #fff;
}


/* Indicators */

#testimonialSlider .carousel-indicators {
    bottom: 0;
    margin-bottom: 0;
    gap: 7px;
}

#testimonialSlider .carousel-indicators button {
    width: 25px;
    height: 2px;
    margin: 0;
    background-color: #9d8b73;
    border: 0;
    opacity: 0.5;
}

#testimonialSlider .carousel-indicators button.active {
    opacity: 1;
    background-color: #49361f;
}


/* Responsive */

@media (max-width: 991px) {

    .testimonial-section {
        padding: 80px 0 90px;
    }

    .testimonial-heading h2 {
        font-size: 44px;
    }

    .testimonial-card {
        padding: 55px 60px;
    }

    .testimonial-text {
        font-size: 27px;
    }
}

@media (max-width: 767px) {

    .testimonial-section {
        padding: 65px 15px 75px;
    }

    .testimonial-heading {
        margin-bottom: 35px;
    }

    .testimonial-heading h2 {
        font-size: 38px;
    }

    .testimonial-heading p {
        font-size: 14px;
    }

    .testimonial-card {
        min-height: 360px;
        padding: 45px 30px 55px;
    }

    .testimonial-text {
        font-size: 24px;
        line-height: 1.4;
    }

    #testimonialSlider .carousel-control-prev {
        left: -10px;
    }

    #testimonialSlider .carousel-control-next {
        right: -10px;
    }

    .testimonial-arrow {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}
/* =========================================
   REQUEST A QUOTE
========================================= */

.quote-section {
    padding: 110px 0;
    background: #49361f;
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;
}


/* LEFT CONTENT */

.quote-info {
    color: #fff;
}

.quote-info .section-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #d2b47b;
}

.quote-info h2 {
    margin: 0 0 22px;
    font-family: "Cormorant Garamond", serif;
    font-size: 56px;
    line-height: 1.05;
    font-weight: 600;
    color: #fff;
}

.quote-intro {
    max-width: 500px;
    margin-bottom: 35px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255,255,255,0.72);
}


/* RESPONSE */

.quote-response {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
}

.quote-response > i {
    font-size: 25px;
    color: #d2b47b;
}

.quote-response div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quote-response strong {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    color: #fff;
}

.quote-response span {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}


/* CONTACT */

.quote-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.quote-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #fff;
}

.quote-contact > i {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d2b47b;
}

.quote-contact div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.quote-contact small {
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.5);
}

.quote-contact span {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: #fff;
}

.quote-contact:hover {
    color: #fff;
}


/* FORM BOX */

.quote-form-box {
    padding: 45px;
    background: #f8f4ed;
}

.quote-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #49361f;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #d9d0c2;
    border-radius: 0;
    outline: none;
    background: #fffdf9;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    color: #49361f;
    transition: 0.3s ease;
}

.form-group input,
.form-group select {
    height: 48px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #8c6b3e;
    box-shadow: none;
}

.quote-message {
    margin-top: 22px;
}


/* BUTTON */

.quote-submit {
    width: 100%;
    margin-top: 25px;
    padding: 16px 25px;
    border: 0;
    background: #49361f;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
}

.quote-submit i {
    margin-left: 8px;
}

.quote-submit:hover {
    background: #6a5030;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .quote-section {
        padding: 80px 0;
    }

    .quote-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .quote-info h2 {
        font-size: 48px;
    }

    .quote-form-box {
        padding: 35px;
    }
}

@media (max-width: 767px) {

    .quote-section {
        padding: 65px 15px;
    }

    .quote-info h2 {
        font-size: 40px;
    }

    .quote-form-box {
        padding: 25px 20px;
    }

    .quote-form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .quote-message {
        margin-top: 18px;
    }
}
/* =========================================
   PARTNER WITH US
========================================= */

.partner-section {
    position: relative;
    padding: 120px 20px;
    background-image: url("https://www.r-casa.in/cdn/shop/files/Rcasa-2-Beige-Aesthetic-Fashion-Blog-Banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.partner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(73, 54, 31, 0.82);
}

.partner-section .container {
    position: relative;
    z-index: 2;
}

.partner-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.partner-content .section-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #d2b47b;
}

.partner-content h2 {
    margin: 0 0 22px;
    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    line-height: 1;
    font-weight: 600;
    color: #fff;
}

.partner-content p {
    max-width: 650px;
    margin: 0 auto 38px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255,255,255,0.78);
}

.partner-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.partner-btn {
    min-width: 190px;
    padding: 15px 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.partner-btn.primary {
    background: #fff;
    color: #49361f;
}

.partner-btn.primary:hover {
    background: #d2b47b;
    color: #fff;
}

.partner-btn.secondary {
    border: 1px solid rgba(255,255,255,0.55);
    color: #fff;
    background: transparent;
}

.partner-btn.secondary:hover {
    background: #fff;
    color: #49361f;
}


/* Mobile */

@media (max-width: 767px) {

    .partner-section {
        padding: 80px 15px;
    }

    .partner-content h2 {
        font-size: 45px;
    }

    .partner-content p {
        font-size: 13px;
    }

    .partner-buttons {
        flex-direction: column;
    }

    .partner-btn {
        width: 100%;
        max-width: 280px;
    }
}













/* =========================================
   MOBILE + ANIMATION FIXES
========================================= */

/* HERO MOBILE */
@media (max-width: 767px) {
    .hero-slider .carousel-item {
        height: 520px;
    }

    .hero-slider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
}


/* TRUSTED LOGOS MOBILE */
.trusted-logo img {
    display: block;
    width: auto;
    max-width: 150px;
    height: 55px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .trusted-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .trusted-logo {
        min-height: 80px;
    }

    .trusted-logo img {
        max-width: 120px;
        height: 45px;
    }
}


/* FOOTER NEWSLETTER MOBILE */
@media (max-width: 767px) {
    .footer-newsletter {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 30px 20px;
    }

    .newsletter-form {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        height: 50px;
    }
}


/* =========================================
   PREMIUM SCROLL ANIMATION
========================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* IMAGE HOVER */
.trusted-logo img,
.shop-card img,
.festival-card img,
.work-card img,
.brand-card img {
    transition: transform .6s ease;
}

.trusted-logo:hover img,
.shop-card:hover img,
.festival-card:hover img,
.work-card:hover img,
.brand-card:hover img {
    transform: scale(1.06);
}


/* CARD HOVER */
.shop-card,
.festival-card,
.work-card,
.brand-card {
    transition: transform .4s ease, box-shadow .4s ease;
}

.shop-card:hover,
.festival-card:hover,
.work-card:hover {
    transform: translateY(-6px);
}


/* BUTTON HOVER */
.quote-btn,
.partner-btn,
.quote-submit {
    transition: all .3s ease;
}

.quote-btn:hover,
.partner-btn:hover,
.quote-submit:hover {
    transform: translateY(-2px);
}


/* WHATSAPP LOOP */
.whatsapp-btn {
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}




/* ================================
   PREMIUM SECTION ANIMATION
================================ */

section {
    animation: sectionFade 0.9s ease both;
}

@keyframes sectionFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* IMAGE HOVER */

.shop-card img,
.festival-card img,
.work-card img,
.brand-item img,
.custom-branding-image img {
    transition: transform 0.6s ease;
}

.shop-card:hover img,
.festival-card:hover img,
.work-card:hover img,
.brand-item:hover img,
.custom-branding-image:hover img {
    transform: scale(1.05);
}


/* CARD HOVER */

.shop-card,
.festival-card,
.work-card,
.brand-item {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.shop-card:hover,
.festival-card:hover,
.work-card:hover,
.brand-item:hover {
    transform: translateY(-6px);
}


/* BUTTON HOVER */

.quote-btn,
.quote-submit,
.partner-btn,
.custom-btn,
.festival-view-btn,
.work-view-btn {
    transition: all 0.3s ease;
}

.quote-btn:hover,
.quote-submit:hover,
.partner-btn:hover,
.custom-btn:hover,
.festival-view-btn:hover,
.work-view-btn:hover {
    transform: translateY(-3px);
}


/* WHATSAPP LOOP */

.whatsapp-btn {
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}






@media (max-width: 767px) {
    .hero-slider img
Specificity: (0,1,1)
 {

        height: auto !important;
  
     
    }
    
}




@media (max-width: 767px) {
    .hero-slider img {
      
        height: auto !important;
     
    }
}


