/* --- Brand Customizations --- */
:root {
    --gold: #d59a5b;
    --light-grey: #fafafa;
    --grey: #7c7c7c;
    --black:#090807;
    --white:#fff;
}

body { font-family: 'Poppins', sans-serif; overflow-x: hidden; }

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none; /* Crucial: allows clicks to pass through to buttons */
    z-index: -1; /* Sits behind everything */
    background: radial-gradient(
        800px circle at var(--mouse-x) var(--mouse-y),
        rgba(230, 161, 93, 0.15), /* Subtle Teak/Gold color */
        transparent 80%
    );
}

/* Add this to your background setup */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.04; /* Very subtle */
    z-index: -1;
    pointer-events: none;
    animation: grainMovement 8s steps(10) infinite;
}

@keyframes grainMovement {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    30% { transform: translate(3%, -15%); }
    50% { transform: translate(12%, 9%); }
    70% { transform: translate(-9%, 4%); }
    90% { transform: translate(15%, -3%); }
}

/* Navbar — full-width strip */
.navbar-professional {
    width: 100%;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(213, 154, 91, 0.2);
    box-shadow: 0 4px 24px rgba(9, 8, 7, 0.06);
    z-index: 1030;
}

.navbar-wide {
    max-width: 100%;
    padding-left: clamp(1rem, 3vw, 3rem);
    padding-right: clamp(1rem, 3vw, 3rem);
}

.navbar-logo {
    display: block;
    max-height: 76px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 575px) {
    .navbar-logo {
        max-height: 64px;
    }
}

.navbar-toggler-professional {
    padding: 0.5rem 0.65rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.navbar-toggler-professional:focus {
    box-shadow: 0 0 0 0.15rem rgba(213, 154, 91, 0.35);
}

/* Navbar links */
#mainNav .nav-link-main {
    color: #3a3a3a !important;
    transition: color 0.25s ease;
    letter-spacing: 0.45px;
}

#mainNav .nav-link-main:hover,
#mainNav .nav-link-main:focus-visible {
    color: var(--gold) !important;
}

#mainNav .nav-link-phone {
    color: var(--grey) !important;
    font-weight: 500;
    letter-spacing: 0.35px;
    white-space: nowrap;
}

#mainNav .nav-link-phone:hover {
    color: var(--gold) !important;
}

#mainNav .nav-contact-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff !important;
    white-space: nowrap;
    border-radius: 999px;
    background: linear-gradient(145deg, #dca366 0%, var(--gold) 45%, #b8833d 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 4px 16px rgba(213, 154, 91, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

#mainNav .nav-contact-cta:hover {
    color: #fff !important;
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow:
        0 8px 24px rgba(213, 154, 91, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

#mainNav .nav-contact-cta:focus-visible {
    outline: 2px solid #8b5e2e;
    outline-offset: 3px;
    color: #fff !important;
}

#mainNav .nav-contact-icon {
    font-size: 0.95em;
    opacity: 0.95;
}

@media (max-width: 991px) {
    #mainNav .nav-item-contact .nav-contact-cta {
        width: 100%;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    #mainNav.navbar-collapse .navbar-nav-stack {
        padding-bottom: 0.75rem;
    }

    #mainNav .nav-item-phone .nav-link-phone {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 0.85rem;
        flex-wrap: wrap;
        row-gap: 0.25rem;
        text-align: center;
    }
}

#mainNav .dropdown-menu {
    border-radius: 12px;
    min-width: 12rem;
}

#mainNav .dropdown-item {
    font-size: 13px;
    letter-spacing: 0.03em;
    color: #444;
    transition: color 0.2s ease, background 0.2s ease;
}

#mainNav .dropdown-item:hover,
#mainNav .dropdown-item:focus {
    color: var(--gold);
    background: rgba(213, 154, 91, 0.1);
}

#mainNav .dropdown-toggle::after {
    margin-left: 0.35em;
    vertical-align: 0.1em;
}

/* --- Mega Menu Centering Fix --- */
.mega-menu-custom {
    left: 0 !important;
    right: 0 !important;
    width: 90% !important; /* Slightly narrower than full screen for elegance */
    margin: 0 auto !important;
    top: 60% !important;
    border-radius: 20px !important; /* Matches your rounded theme */
    padding: 40px 0 !important;
    border-top: 3px solid #b5832a !important; /* Gold accent top border */
}

/* Make it show on hover instead of just click (optional) */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: slideUp 0.3s ease-out;
    }
}

/* Titles inside the menu */
.mega-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
}

.mega-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #b5832a;
}

/* Link Styling */
.mega-links li a {
    display: block;
    padding: 8px 0;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.mega-links li a:hover {
    color: #b5832a;
    transform: translateX(5px);
}

/* Smooth Animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mega Menu Links */
.mega-links li a {
    text-decoration: none;
    color: #777;
    font-size: 13px;
    display: block;
    padding: 5px 0;
    transition: 0.2s;
}
.mega-links li a:hover { color: var(--gold); padding-left: 5px; }

/* Newsletter Fix */
.newsletter-card {
    transform: translateY(-50px);
    z-index: 5;
}
.newsletter-form {
    min-width: 380px;
}
.btn-gold {
    background-color: var(--gold);
    color: white;
    border: none;
    font-weight: 600;
}
.btn-gold:hover { background-color: #222; color: white; }

/* --- Premium Hero Section Styles --- */

/* Parent Container */
.hero-container {
    width: 100%;
    margin: auto;
    padding-bottom: 250px; 
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 80vh;
    border-radius: 40px;
}

/* --- High-End Transition Effects --- */

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000; /* Create depth for transitions */
}

.slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* Framer Motion style clip-path transition */
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 1.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide.active {
    z-index: 2;
    clip-path: circle(150% at 50% 50%);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Initial state for zoom */
    transform: scale(1.2) rotate(0.01deg); 
    transition: transform 1.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* The Ken Burns Effect (Slow, Elegant Zoom Out) */
.slide.active img {
    transform: scale(1) rotate(0.01deg);
    animation: luxuryZoom 12s linear infinite alternate;
}

@keyframes luxuryZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

/* Modernizing the Navigation Arrows */
.slider-nav {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slider-nav:hover {
    background: #fff;
    transform: scale(1.1) translateY(-50%);
}

.slider-nav:hover i { color: #000; }

/* THE OVERLAY PILL (Build Your Team Style) */
.hero-info-wrapper {
    position: absolute;
    bottom: -85px;
    left: 50%;
    transform: translate(-50%, 50%); /* This pushes exactly half of the card below the slider edge */
    background: #fff;
    padding: 25px; /* Border around the dark pill */
    border-radius: 50px;
    z-index: 100;
    display: flex;
    align-items: center;
}

/* Inner Content Card */
.modern-pill-card {
    padding: 25px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
}

.card-title { 
    font-weight: 700;
    display: block; 
     font-size: 32px; 
     color: var(--black); 
    }

.card-subtitle { 
    font-size: 18px; 
    color: #666; 
    display: block; 
    margin-top: 4px;
    margin-bottom: 30px;
 }

/* Call Button */
.modern-circle-btn {
    width: 42%;
    margin: auto;
    background: var(--gold); /* Gold/Teak tone */
    color: #fff;
    text-decoration: none;
    padding: 8px 8px 8px 25px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.modern-circle-btn:hover { background-color: #222;}

.icon-circle {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* NAV ARROWS */
/* .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.slider-nav:hover { background: rgba(255,255,255,0.3); } */
.slider-nav.prev { left: 30px; }
.slider-nav.next { right: 30px; }

/* --- RESPONSIVENESS --- */

/* Tablet & Smaller Desktops */
@media (max-width: 1200px) {
    .card-title { font-size: 26px; }
    .card-subtitle { font-size: 16px; }
    .modern-pill-card { gap: 20px; padding: 20px; }
}

/* Tablets (iPad/Portrait) */
@media (max-width: 992px) {
    .hero-container { width: 98%; 
        padding-bottom: 250px;
     }
    .hero-slider-wrapper { height: 60vh; }
    
    .modern-pill-card {
        padding: 25px 25px 25px 45px;
        white-space: normal; /* Allow text to wrap */
        text-align: center;
    }

        .hero-info-wrapper {
        margin: auto;
        padding: 10px;
        bottom: -115px;
        width: 90%;
        border-radius: 30px; 
        transform: translate(-50%, 30%);
    }
    
    .modern-circle-btn { width: 53%; }
}

/* Mobile Phones (iPhone/Android) */
@media (max-width: 768px) {
        .hero-container { width: 98%; 
        padding-bottom: 320px;
     }

    .hero-slider-wrapper { 
        height: 50vh; 
        border-radius: 20px; 
    }
    .slider-track { border-radius: 20px; }

    /* The Overlay Pill - adjust shift for mobile */
    .hero-info-wrapper {
        padding: 10px;
        bottom: -175px;
        width: 90%;
        border-radius: 30px; 
        transform: translate(-50%, 30%);
    }

    .modern-pill-card {
        flex-direction: column; /* Stack Title, Subtitle, and Button */
        gap: 15px;
        padding: 15px;
        border-radius: 30px;
    }

    .card-title { 
        font-size: 24px; 
        line-height: 1.2;
    }

    .card-subtitle { 
        font-size: 14px; 
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .modern-circle-btn {
        width: 93%; /* Full width button for easy tapping */
        font-size: 14px;
        padding: 6px 6px 6px 15px;
    }

    .icon-circle {
        width: 35px;
        height: 35px;
    }

    /* Adjust Navigation Arrows for Mobile */
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    .slider-nav.prev { left: 10px; }
    .slider-nav.next { right: 10px; }
}


/* Category Section */

.category-section {
    padding: 80px 0;
    background-color: transparent; /* No border, blends with page */
}

.category-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 15px;
}

.main-title{
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

@media (max-width: 768px){
         .main-title {
        font-size: 22px;
    }
}

.category-grid {
    display: grid;
    /* Forces exactly 5 columns on desktop */
    grid-template-columns: repeat(5, 1fr); 
    gap: 40px 20px;
    justify-items: center;
}

.category-link{
    text-decoration: none;
    color: var(--black);
}

.category-icon-box {
    width: 100px;
    height: 100px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 24px; /* Matches your rounded theme */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
}

.category-icon-box {
    width: 100px;
    height: 100px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
    position: relative; /* Required for absolute child */
}

.category-name {
    text-align: center;
}

/* Base style for both images */
.category-icon-box img {
    width: 50px; /* Adjust size based on your icons */
    height: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
}

/* Initially hide the hover icon */
.icon-hover {
    opacity: 0;
}

/* --- HOVER STATES --- */

.category-card:hover .category-icon-box {
    transform: translateY(-12px) rotate(3deg);
    border-color: var(--gold);
}

/* Hide the default icon on hover */
.category-card:hover .icon-default {
    opacity: 0;
}

/* Show the white/outline icon on hover */
.category-card:hover .icon-hover {
    opacity: 1;
}

.category-name {
    transition: color 0.3s ease;
}

.category-card:hover .category-name {
    color: var(--gold);
}

/* Product tab */

.showcase-section {
    padding: 60px 0;
}

/* Tab Button Styling */
/* 1. Base Styling for all buttons */
#showcaseTabs .nav-link {
    background: transparent;
    color: var(--grey);
    border: 1px solid #eee;
    margin: 0 8px;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    transition: 0.3s;
}

/* 2. Hover for INACTIVE buttons only */
#showcaseTabs .nav-link:not(.active):hover {
    background-color: rgba(213, 154, 91, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* 3. Active State (Locked styles) */
#showcaseTabs .nav-link.active {
    background-color: var(--gold) !important; /* Forces color to stay gold */
    color: #fff !important; /* Forces text to stay white */
    border-color: var(--gold) !important;
    box-shadow: 0 8px 20px rgba(213, 154, 91, 0.3);
    cursor: default;
}

/* 4. Explicitly prevent ANY changes when hovering on the active button */
#showcaseTabs .nav-link.active:hover {
    background-color: var(--gold) !important;
    color: #fff !important;
    transform: none !important; /* Stops the button from moving up */
    box-shadow: 0 8px 20px rgba(213, 154, 91, 0.3) !important;
}

/* 1. Fix the Image Sizing in the Grid */
.showcase-card {
    position: relative;
    border-radius: 20px; /* Matching your rounded theme */
    overflow: hidden;
    height: 300px; /* Set a fixed height for a uniform grid */
    background: #f9f9f9;
    transition: transform 0.3s ease;
}

.prod-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This prevents the "too big" stretching/warping */
    transition: transform 0.5s ease;
}

/* 2. Create the Overlay Effect */
.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(213, 154, 91, 0.7); /* Using your --gold color with transparency */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* Hidden by default */
    transition: all 0.3s ease-in-out;
}

.showcase-overlay i {
    color: #fff;
    font-size: 24px;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
}

/* 3. Hover Interactions */
.showcase-card:hover .showcase-overlay {
    opacity: 1; /* Fade in */
}

.showcase-card:hover .showcase-overlay i {
    transform: translateY(0); /* Icon slides up slightly */
}

.showcase-card:hover .prod-image {
    transform: scale(1.1); /* Subtle zoom effect on the image */
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Styling the Lightbox Toolbar to match your reference */
.gtoolbar {
    background: rgba(0, 0, 0, 0.7) !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 20px !important;
}

/* Style for the injected download button */
.gdownload-link {
    color: white !important;
    font-size: 20px !important;
    margin-left: 20px !important;
    order: 10; /* Keeps it to the right */
    transition: color 0.3s;
}

.gdownload-link:hover {
    color: var(--gold) !important;
}

/* Style for the Slide Counter (1/6) */
.gcounter {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
}

/* Making Navigation Arrows larger and more visible */
.gnext, .gprev {
    background: rgba(255, 255, 255, 0.1) !important;
    transition: 0.3s !important;
}

.gnext:hover, .gprev:hover {
    background: rgba(213, 154, 91, 0.5) !important; /* Uses your --gold color */
}

/* Grid logic ensuring 3 images per row */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

/* Ensure the lightbox controls (arrows) are visible */
.gnext, .gprev {
    background: rgba(0,0,0,0.5) !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
}

@media (max-width: 991px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 on tablets */
    }

    .category-grid  {
        grid-template-columns: repeat(3, 1fr); /* 2 on tablets */
    }
}

@media (max-width: 576px) {
    .showcase-grid {
        grid-template-columns: 1fr; /* 1 on mobile */
    }

     ..category-grid  {
        grid-template-columns: repeat(2, 1fr); /* 1 on mobile */
    }
}

/* Custom Lightbox Background */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
}

/* Ensure the toolbar spreads content to both ends */
.modal-toolbar {
    width: 100%; /* Ensure it spans the full width */
    height: 60px;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: space-between; /* Pushes info LEFT, controls RIGHT */
    align-items: center;
    padding: 0 25px;
    position: relative; /* Keep autoplay bar anchored here */
    z-index: 100;
}
/* Grouping the buttons on the right */
.modal-controls {
    display: flex;
    align-items: center;
    gap: 10px; /* Spacing between your icons */
}

.modal-controls button, 
.modal-controls a {
    background: transparent;
    border: none;
    color: #ffffff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px; /* Subtle rounding to match your theme */
}

.modal-controls button:hover, 
.modal-controls a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
}

/* Special styling for the close button to make it stand out */
.close-btn {
    margin-left: 10px;
    font-size: 22px !important;
}

/* Stage and Navigation */
.modal-stage {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.image-container {
    max-width: 80%;
    max-height: 80%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

/* Autoplay Progress Bar */
.autoplay-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
}

.autoplay-bar {
    height: 100%;
    width: 0%;
    background: var(--gold);
    transition: width 0.1s linear;
}

/* Image Viewport for Resizing */
.image-viewport {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

#modalImg {
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
    cursor: grab;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 10px 13px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
}

.nav-btn:hover { background: var(--gold); }

/* Contact Section Styles */

.contact-section { padding: 80px 0; }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: #fff;
    border-radius: 40px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.contact-card-container {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.07);
    border: 1px solid #f0f0f0;
}

.contact-para{
    color: var(--grey);
}

/* Sidebar Styling */
.contact-sidebar {
    background: #fafafa;
    padding: 40px;
    border-right: 1px solid #eee;
}

.location-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.loc-link {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.loc-link .loc-name {
    font-weight: 700;
    font-size: 18px;
    color: #222;
}

.loc-link .loc-tag {
    font-size: 12px;
    color: var(--grey);
    text-transform: uppercase;
    margin-top: 5px;
}

.loc-link.active {
    border-color: var(--gold);
    background: var(--gold);
}

.loc-link.active .loc-name,
.loc-link.active .loc-tag {
    color: #fff;
}

/* Main Content Area */
.contact-main {
    padding: 60px;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.detail-item h6 {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 5px;
}

/* Form Styling */
.modern-form label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
}

.form-input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fafafa;
    transition: 0.3s;
}

.form-input:focus {
    border-color: var(--gold);
    background: #fff;
    outline: none;
}

.modern-form .btn-pill {
    background-color: #222; /* Same as your hero .btn-pill */
    color: #fff;
    padding: 15px 45px;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: fit-content;
}

.modern-form .btn-pill:hover {
    background-color: var(--gold); /* Changes to gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

#locAddress, #locPhone, #locEmail {
    transition: opacity 0.3s ease;
    color: var(--grey);
}

.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.info-item i {
    font-size: 1.5rem;
    color: #c18e59; /* Matching your gold/brown accent */
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

input, textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.btn-primary {
    background: #000;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #c18e59;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .input-group {
        grid-template-columns: 1fr;
    }
}

/* Footer Links */

.main-footer{
    background-color: #fafafa;
}

.footer-links a {
    text-decoration: none;
    color: #666;
    transition: 0.3s;
}
.footer-links a:hover { color: var(--gold); }

/* Social Icons */
.social-btn {
    width: 35px;
    height: 35px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #444;
    font-size: 10px;
    font-weight: 800;
    transition: 0.3s;
}
.social-btn:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .newsletter-card {
        border-radius: 25px !important;
        transform: translateY(-30px);
    }
    .newsletter-form {
        min-width: 100%;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background-color: #fff; /* White background like your screenshot */
    color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: relative;
    transition: transform 0.3s ease;
}

.whatsapp-icon:hover { transform: scale(1.1); }

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff0000;
    color: white;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid #fff;
}

/* Random collection slider */
.collection-slider-section {
    padding: 64px 0 40px;
}

.collection-slider-wrap {
    background: #fff;
    border: 1px solid rgba(213, 154, 91, 0.2);
    border-radius: 22px;
    box-shadow: 0 12px 36px rgba(9, 8, 7, 0.08);
    padding: clamp(18px, 3vw, 28px);
}

.collection-slider-head {
    margin-bottom: 20px;
}

.collection-slider-kicker {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.collection-slider-main {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f3f3 0%, #e9e9e9 100%);
}

.collection-slider-image {
    width: 100%;
    height: clamp(280px, 55vw, 520px);
    object-fit: contain;
    object-position: center;
    display: block;
}

.collection-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    z-index: 2;
    transition: background 0.2s ease;
}

.collection-slider-nav:hover {
    background: rgba(213, 154, 91, 0.9);
}

.collection-slider-nav.prev {
    left: 14px;
}

.collection-slider-nav.next {
    right: 14px;
}

.collection-slider-footer {
    margin-top: 18px;
}

.collection-slider-label {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.collection-slider-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.collection-slider-thumb {
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    background: #fff;
    line-height: 0;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.collection-slider-thumb img {
    width: 100%;
    height: 74px;
    object-fit: contain;
    object-position: center;
    background: #f7f7f7;
}

.collection-slider-thumb:hover {
    transform: translateY(-2px);
}

.collection-slider-thumb.active {
    border-color: var(--gold);
}

@media (max-width: 767px) {
    .collection-slider-section {
        padding-top: 48px;
    }

    .collection-slider-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    .collection-slider-thumb img {
        height: 64px;
    }
}

/* --- Upcoming offers (sofa) --- */
.upcoming-offers-section {
    padding: 72px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 45%, #fafafa 100%);
}

.upcoming-offers-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(9, 8, 7, 0.06);
    border: 1px solid rgba(213, 154, 91, 0.15);
}

.upcoming-offers-content {
    padding: clamp(28px, 5vw, 52px) clamp(24px, 4vw, 48px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.upcoming-offers-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.upcoming-offers-title {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 700;
    text-transform: none;
    letter-spacing: -0.02em;
    color: #222;
    margin-bottom: 16px;
    line-height: 1.25;
}

.upcoming-offers-lead {
    font-size: 15px;
    line-height: 1.7;
    color: var(--grey);
    margin-bottom: 22px;
    max-width: 34rem;
}

.upcoming-offers-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.upcoming-offers-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.55;
    color: #444;
    margin-bottom: 12px;
}

.upcoming-offers-list li:last-child {
    margin-bottom: 0;
}

.upcoming-offers-check {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
    font-size: 16px;
}

.upcoming-offers-note {
    font-size: 13px;
    line-height: 1.55;
    color: #888;
    margin-bottom: 24px;
    padding: 14px 16px;
    background: rgba(213, 154, 91, 0.08);
    border-radius: 12px;
    border-left: 3px solid var(--gold);
}

.upcoming-offers-note i {
    margin-right: 8px;
    color: var(--gold);
}

.upcoming-offers-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.upcoming-offers-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    background: var(--gold);
    color: #fff;
    border: 2px solid var(--gold);
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.upcoming-offers-btn-primary:hover {
    background: #222;
    border-color: #222;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.upcoming-offers-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    background: transparent;
    color: #333;
    border: 2px solid #e5e5e5;
    text-decoration: none;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.upcoming-offers-btn-secondary:hover {
    border-color: #25d366;
    color: #128c7e;
    background: rgba(37, 211, 102, 0.06);
}

.upcoming-offers-media {
    position: relative;
    min-height: 280px;
    height: 100%;
}

.upcoming-offers-img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.upcoming-offers-media-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    max-width: calc(100% - 40px);
}

.upcoming-offers-badge-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.upcoming-offers-badge-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

@media (max-width: 991px) {
    .upcoming-offers-section {
        padding: 56px 0;
    }

    .upcoming-offers-media {
        min-height: 240px;
    }

    .upcoming-offers-img {
        min-height: 240px;
    }

    .upcoming-offers-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .upcoming-offers-btn-primary,
    .upcoming-offers-btn-secondary {
        width: 100%;
    }
}
