
        * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f5efe9;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* ---------------- NAVBAR ---------------- */

.navbar {
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background: rgb(243 216 188 / 50%);;
    backdrop-filter: blur(12px);
    z-index: 50;
    transition: 0.4s ease;
}
.navbar.scrolled {
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
    padding: 12px 5%;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);  /* Glass effect */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
}
.navbar.scrolled a,
.navbar.scrolled .logo {
    color: black;
}

.navbar.scrolled .contact-btn {
    background: rgba(255,255,255,0.3);
    color: black;
}
.navbar.scrolled {
    background: #ffd2a51a;
    border: 1px solid rgba(255, 255, 255, 0.829);
}


.navbar.transparent {
    background: transparent;
}

.navbar a {
    margin: 0 12px;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: 0.3s;
    font-size: 14px;
}

.navbar.transparent a {
    color: #fff;
}

.logo {
    font-size: 20px;
    font-weight: 600;
}

.navbar.transparent .logo {
    color: #fff;
}

.contact-btn {
    background: #c8b8a6;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    color: white;
    font-weight: 600;
    transition: 0.3s;
}

.navbar.transparent .contact-btn {
    background: rgba(255,255,255,0.3);
}

/* Mobile menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #222;
}

.navbar.transparent .nav-toggle {
    color: #fff;
}



/* ---------------- HERO SECTION ---------------- */

.hero-section {
    padding-top: 120px;
    text-align: center;
}

/* Rounded Image Box */
.hero-image {
    width: 90%;
    max-width: 1400px;
    height: 300px;   /* Adjusted for mobile */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 150px;
    transition: all 0.6s ease;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;     
    object-position: top center;
}

/* FULL SCREEN ON SCROLL */
.hero-image.fullscreen {
    width: 100%;
    height: 100vh;   /* ⭐ FULL SCREEN HEIGHT FIX */
    max-width: 100%;
    border-radius: 0;
}

/* Text under hero image */
.hero-subtext {
    margin-top: 25px;
    font-size: 2rem;
    font-family: initial;
    line-height: 1.2;
    font-weight: 800;
    color: black;
    padding: 0 5%;
    transition: 0.4s ease;
}

.hero-subtext.hide {
    opacity: 0;
    transform: translateY(30px);
}

/* For scrolling */
.dummy-section {
    height: 120vh;
    background: #fff;
}

/* SECTION BASE */
.info-section {
    padding: 80px 0;
    text-align: center;
    background: #f5efe9;
}

.info-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #222;
    line-height: 1.2;
    margin-bottom: 60px;
    padding: 0 5%;
}

/* CARD CONTAINER */
.info-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 0 5%;
    transition: 0.7s ease;
}

/* SINGLE CARD */
.info-card {
    width: 100%;
    max-width: 400px;
    background: #f1e9e0;
    padding: 30px 20px;
    border-radius: 35px;
    text-align: center;
    transition: 0.7s ease;
}

/* CIRCLE IMAGE */
.card-image {
    width: 200px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: 20px auto 30px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CARD DESC */
.info-card p {
    font-size: 16px;
    color: #444;
    line-height: 1.5;
}

/* ⭐ BEFORE SCROLL — STAGGER EFFECT */
.card1 {
    transform: translateY(0);
}

.card2 {
    transform: translateY(80px);
}

.card3 {
    transform: translateY(160px);
}

/* ⭐ AFTER SCROLL — ALL ALIGN CENTER */
.info-cards.scrolled .card1,
.info-cards.scrolled .card2,
.info-cards.scrolled .card3 {
    transform: translateY(0);
}


/* PRODUCT SECTION */
.product-section {
    background: #f5efe9;
    padding: 60px 0;
    text-align: center;
}

/* TOP SMALL BUTTON */
.collection-btn {
    background: #e8dfd8;
    border: none;
    padding: 10px 26px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #222;
    cursor: pointer;
    margin-bottom: 20px;
}

/* MAIN TITLE */
.product-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 40px;
    padding: 0 5%;
}

/* SLIDER WRAPPER */
.product-slider {
    display: flex;
    gap: 20px;
    padding: 0 5%;
    margin: 30px 0;
    overflow-x: auto;
    scroll-behavior: smooth;  /* Firefox hide scrollbar */
}

.product-slider::-webkit-scrollbar {
    display: none;   /* Chrome hide scrollbar */
}

/* CARD */
.product-card {
    width: 280px;      /* Adjusted for mobile */
    height: 420px;     /* Adjusted for mobile */
    overflow: hidden;
    background: #f1e9e0;
    flex-shrink: 0;
    position: relative;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;         /* Perfect fill */
    object-position: center;   /* Face Center */
    display: block;
    aspect-ratio: 4 / 5;  
}



/* MAIN SECTION */
.testimonial-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    color: #fff;
}

/* BACKGROUND */
.testimonial-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(30px) brightness(0.5);
    z-index: -1;
    transition: .6s ease;
}

/* HEADER */
.testimonial-header {
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.section-badge {
    background: #ffffff33;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
}

.testimonial-header h1 {
    flex: 1;
    padding-left: 0;
    font-size: 2.5rem;
    text-align: center;
}

/* BUTTONS */
.ts-buttons button {
    width: 45px;
    height: 45px;
    background: #ffffff44;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    font-size: 22px;
}

/* MAIN CARD */
.testimonial-card {
    margin-top: 60px;
    width: 90%;
    background: #fff;
    border-radius: 25px;
    color: #000;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    min-height: 420px;
    transition: .6s ease;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card .left {
    width: 100%;
}

.testimonial-card .right {
    width: 100%;
}

.testimonial-card img {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    object-fit: contain;
}

/* ANIMATION */
.slide {
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.factory-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #e8ddd3, #e3d7cb);
}

.factory-container {
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* LEFT TEXT */
.factory-text {
    width: 100%;
}

.factory-text h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.factory-text p {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 22px;
}

/* RIGHT IMAGES EXACT LAYOUT */
.factory-images-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.factory-images-row img {
    width: 48%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
}

/* MAIN SECTION */
.auto-gallery {
    width: 100%;
    padding: 80px 0;
    background: #f0e7dd;
    position: relative;
    overflow: hidden;
}

/* BIG BACKGROUND TEXT */
.big-bg-text {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15vw;
    font-weight: 700;
    opacity: 0.45;
    color: #e2d7cd;
    pointer-events: none;
    white-space: nowrap;
    z-index: 1;
}

/* SLIDER CONTAINER */
.slider-container {
    width: 90%;
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 5;
}

/* SLIDER ROW */
.gallery-slider {
    display: flex;
    gap: 20px;
    overflow: hidden;
    scroll-behavior: smooth;
    width: 100%;
}

/* IMAGES */
.gallery-slider img {
    flex-shrink: 0;
    width: 48%;
    height: 250px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
}

/* NAV BUTTON */
.slide-btn {
    width: 40px;
    height: 40px;
    background: #ffffffaa;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: 0.2s;
    display: none; /* Hide on mobile, show on larger screens */
}

.slide-btn:hover {
    background: #ffffffee;
}

.threebox-slider-section {
    text-align: center;
    padding: 70px 0;
    background: #f9f4ef;
}

.threebox-badge {
    background: #e8e1d8;
    display: inline-block;
    padding: 6px 20px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.threebox-title {
    font-size: 2.2rem;
    margin: 25px 0 50px;
    padding: 0 5%;
}

.threebox-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 60px;
    padding: 0 5%;
}

.tline {
    width: 28%;
    height: 2px;
    background: #e7dfd6;
}

.tdot {
    width: 12px;
    height: 12px;
    background: #e7dfd6;
    border-radius: 50%;
}

/* SLIDER */
.threebox-wrapper {
    width: 90%;
    margin: auto;
    overflow: hidden;
}

.threebox-track {
    display: flex;
    gap: 30px;
    transition: transform .4s ease;
}

.threebox-card {
    min-width: calc(100% - 20px);
    background: transparent;
    text-align: center;
    padding: 0 20px;
}

.threebox-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.threebox-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* BUTTONS */
.threebox-controls {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.threebox-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #222;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
}



/* MAIN SECTION */
.review-section-2 {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    color: #fff;
}

/* BACKGROUND */
.review-bg-2 {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(30px) brightness(0.5);
    z-index: -1;
    transition: 0.6s ease;
}

/* HEADER */
.review-header-2 {
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.review-badge-2 {
    background: #ffffff33;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
}

.review-header-2 h1 {
    flex: 1;
    padding-left: 0;
    font-size: 2.5rem;
    text-align: center;
}

/* BUTTONS */
.review-buttons-2 button {
    width: 45px;
    height: 45px;
    background: #ffffff44;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 22px;
}

/* CARD */
.review-card-2 {
    margin-top: 60px;
    width: 90%;
    background: #fff;
    border-radius: 25px;
    color: #000;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    min-height: 420px;
    transition: 0.6s ease;
    margin-left: auto;
    margin-right: auto;
}

.review-left-2 {
    width: 100%;
}

.review-right-2 {
    width: 100%;
}

.review-card-2 img {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
}

.review-brand-2 {
    font-size: 14px;
    letter-spacing: 2px;
    color: #6a5acd;
}

.review-user-2 {
    margin-top: 40px;
}

/* ANIMATION */
.review-slide-2 {
    animation: reviewSlideIn2 0.5s ease;
}

@keyframes reviewSlideIn2 {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}




/* MAIN SECTION */
.cream-review-section {
    width: 100%;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    background: #f6f0e9; /* cream background */
}

/* LEFT CONTENT */
.cr-left {
    width: 100%;
    text-align: center;
}

.cr-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2e2e2e;
    line-height: 1.3;
}

.cr-desc {
    margin: 20px 0 30px;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.cr-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cr-buy {
    background: #ff5b2e;
    border: none;
    padding: 12px 25px;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 6px 15px rgba(255, 91, 46, 0.4);
}

.cr-free {
    background: #fff;
    border: 1px solid #c6c6c6;
    padding: 12px 25px;
    color: #444;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

/* RIGHT SIDE */
.cr-right {
    width: 100%;
}

/* REVIEW CARD */
.cr-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
}

.cr-quote {
    font-size: 50px;
    color: #ff5a2e;
    margin-bottom: 20px;
}

.cr-review {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}

/* USER SECTION */
.cr-user {
    display: flex;
    align-items: center;
    margin-top: 25px;
    gap: 15px;
}

.cr-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.cr-user h4 {
    margin: 0;
    font-size: 17px;
}

.cr-user p {
    margin: 0;
    font-size: 13px;
    color: #777;
}

/* STARS */
.cr-stars {
    margin-top: 20px;
    color: #ff8c00;
    font-size: 18px;
}

/* ARROWS */
.cr-arrows {
    display: flex;
    justify-content: flex-end;
    margin: 20px 0;
    gap: 10px;
}

.cr-arrow {
    width: 35px;
    height: 35px;
    background: #ffffff;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
}

/* DOTS */
.cr-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.cr-dots span {
    width: 8px;
    height: 8px;
    background: #bbb;
    border-radius: 50%;
}

.cr-dots .active-dot {
    background: #ff5a2e;
    width: 22px;
    height: 8px;
    border-radius: 10px;
}


/* MAIN WRAPPER */
.cta-section {
    width: 100%;
    padding: 100px 0;
    background-color: #ff5a2e;
    background-position: center;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CENTER CONTENT */
.cta-content {
    text-align: center;
    color: #ffffff;
    width: 90%;
}

/* BADGE */
.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 8px 18px;
    font-size: 12px;
    border-radius: 8px;
    letter-spacing: 1px;
    font-weight: 600;
}

/* MAIN HEADING */
.cta-title {
    margin-top: 28px;
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 600;
}

/* DESCRIPTION */
.cta-text {
    margin: 25px auto;
    font-size: 16px;
    width: 90%;
    line-height: 1.6;
}

/* BUTTON */
.cta-btn {
    margin-top: 18px;
    background: black;
    color: white;
    padding: 14px 30px;
    border-radius: 28px;
    border: none;
    font-size: 15px;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #ffffff;
    color: #000;
}

/* ========== MEDIA QUERIES ========== */

/* Tablet Styles */
@media (min-width: 768px) {
    .navbar {
        padding: 20px 5%;
    }
    
    .navbar.scrolled {
        width: 80%;
    }
    
    .hero-image {
        height: 380px;
        border-radius: 200px;
    }
    
    .hero-subtext {
        font-size: 3.5rem;
    }
    
    .info-title {
        font-size: 3rem;
    }
    
    .info-card {
        width: 45%;
    }
    
    .product-title {
        font-size: 3rem;
    }
    
    .testimonial-header,
    .review-header-2 {
        flex-direction: row;
    }
    
    .testimonial-header h1,
    .review-header-2 h1 {
        padding-left: 40px;
        text-align: left;
    }
    
    .testimonial-card,
    .review-card-2 {
        flex-direction: row;
    }
    
    .testimonial-card .left,
    .review-left-2 {
        width: 60%;
    }
    
    .testimonial-card .right,
    .review-right-2 {
        width: 40%;
    }
    
    .testimonial-card img,
    .review-card-2 img {
        height: 100%;
    }
    
    .factory-container {
        flex-direction: row;
    }
    
    .factory-text {
        width: 55%;
    }
    
    .factory-images-row {
        width: 45%;
    }
    
    .gallery-slider img {
        width: 32%;
    }
    
    .slide-btn {
        display: block;
    }
    
    .threebox-card {
        min-width: calc(50% - 20px);
    }
    
    .cream-review-section {
        flex-direction: row;
    }
    
    .cr-left {
        width: 42%;
        text-align: left;
    }
    
    .cr-right {
        width: 50%;
    }
    
    .cr-buttons {
        justify-content: flex-start;
    }
    
    .cta-title {
        font-size: 3.5rem;
    }
    
    .cta-text {
        width: 80%;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .navbar {
        padding: 10px 30px;
    }
    
    .navbar.scrolled {
        width: 70%;
        padding: 4px 24px;
    }
    
    .navbar a {
        margin: 0 18px;
        font-size: 16px;
    }
    
    .hero-image {
        height: 420px;
        border-radius: 300px;
    }
    
    .hero-subtext {
        font-size: 4rem;
        line-height: 7rem;
    }
    
    .info-section {
        padding: 100px 0;
    }
    
    .info-title {
        font-size: 48px;
        margin-bottom: 80px;
    }
    
    .info-cards {
        flex-wrap: nowrap;
        padding: 0 40px;
        gap: 40px;
    }
    
    .info-card {
        width: 30%;
        padding: 40px 30px;
    }
    
    .card-image {
        width: 250px;
        height: 320px;
    }
    
    .product-section {
        padding: 80px 0;
    }
    
    .product-title {
        font-size: 48px;
    }
    
    .product-slider {
        padding: 0 40px;
    }
    
    .product-card {
        width: 350px;
        height: 355px;
    }
    
    .testimonial-section,
    .review-section-2 {
        padding: 140px 0;
    }
    
    .testimonial-header,
    .review-header-2 {
        padding: 0 80px;
    }
    
    .testimonial-header h1,
    .review-header-2 h1 {
        font-size: 54px;
    }
    
    .testimonial-card,
    .review-card-2 {
        width: 75%;
        padding: 40px;
        gap: 40px;
        height: 420px;
    }
    
    .factory-section {
        padding: 120px 0;
    }
    
    .factory-container {
        width: 85%;
    }
    
    .factory-text h1 {
        font-size: 60px;
    }
    
    .factory-text p {
        font-size: 18px;
    }
    
    .factory-images-row img {
        height: 330px;
    }
    
    .auto-gallery {
        padding: 100px 0;
    }
    
    .big-bg-text {
        font-size: 18vw;
    }
    
    .gallery-slider img {
        width: 24%;
        height: 330px;
    }
    
    .threebox-slider-section {
        padding: 90px 0;
    }
    
    .threebox-title {
        font-size: 48px;
    }
    
    .threebox-wrapper {
        width: 85%;
    }
    
    .threebox-track {
        gap: 40px;
    }
    
    .threebox-card {
        min-width: calc(33.33% - 20px);
    }
    
    .threebox-card h3 {
        font-size: 28px;
    }
    
    .cream-review-section {
        padding: 100px 8%;
    }
    
    .cr-title {
        font-size: 42px;
    }
    
    .cr-desc {
        font-size: 16px;
    }
    
    .cr-review {
        font-size: 17px;
    }
    
    .cta-section {
        padding: 140px 0;
        max-width: 98%;
        border-radius: 18px;
    }
    
    .cta-content {
        width: 70%;
    }
    
    .cta-title {
        font-size: 58px;
    }
    
    .cta-text {
        font-size: 18px;
        width: 60%;
    }
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .navbar nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(245, 239, 233, 0.95);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    
    .navbar nav.active {
        display: flex;
    }
    
    .navbar nav a {
        margin: 10px 0;
        font-size: 16px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .navbar.scrolled nav {
        background: rgba(255, 255, 255, 0.95);
    }
}
 








/* LUXURY FONT IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Playfair+Display:wght@400;500;600&display=swap');

.luxury-footer {
    background: #f8f4f0;
    color: #8B7355;
    padding: 70px 0 30px;
    border-top: 1px solid #e8dfd6;
    font-family: 'Playfair Display', serif;
}

.footer-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 40px;
}

/* BRAND SECTION */
.footer-brand {
    text-align: center;
}

.luxury-logo {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 3px;
}

.luxury-desc {
    max-width: 500px;
    margin: 15px auto 30px;
    color: #A08C6D;
    font-style: italic;
    line-height: 1.8;
}

/* SOCIAL ICONS FIXED */
.luxury-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    font-size: 22px;
    padding: 12px;
    color: #8B7355;
    border-radius: 50%;
    border: 1px solid #8B7355;
    transition: 0.3s ease;
}

.social-icon:hover {
    background: #8B7355;
    color: #fff;
}

/* FOOTER NAVIGATION */
.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
}

.nav-column h3 {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.nav-column a {
    color: #A08C6D;
    text-decoration: none;
    margin-bottom: 12px;
    display: block;
    transition: 0.3s ease;
}

.nav-column a:hover {
    color: #6B5B3D;
    transform: translateX(5px);
}

/* CONTACT COLUMN FIX */
.contact-elegant p {
    margin-bottom: 12px;
    color: #A08C6D;
    line-height: 1.6;
}

.contact-elegant i {
    margin-right: 8px;
    color: #8B7355;
}

/* CTA BUTTON */
.luxury-cta {
    margin-top: 20px;
    padding: 14px 25px;
    background: transparent;
    border: 1px solid #8B7355;
    color: #8B7355;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: 0.3s ease;
}

.luxury-cta:hover {
    background: #8B7355;
    color: #fff;
}

/* FOOTER BOTTOM */
.footer-elegant {
    border-top: 1px solid #e8dfd6;
    padding-top: 30px;
    text-align: center;
}

.footer-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.ornament-left,
.ornament-right {
    flex: 1;
    height: 1px;
    background: #e8dfd6;
}

.divider-dot {
    width: 6px;
    height: 6px;
    background: #8B7355;
    border-radius: 50%;
    margin: 0 15px;
}

/* LEGAL SECTION */
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.legal-elegant {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.legal-elegant a {
    font-size: 12px;
    color: #A08C6D;
    text-transform: uppercase;
}

.legal-elegant a:hover {
    color: #8B7355;
}

/* RESPONSIVE BREAKPOINTS */
@media (min-width: 768px) {
    .footer-main {
        flex-direction: row;
    }
    .footer-brand {
        text-align: left;
        flex: 1;
    }
    .luxury-social {
        justify-content: flex-start;
    }
    .footer-nav {
        flex: 2;
    }
}



/* LUXURY FLOATING BAR */
.luxury-floating {
    position: fixed;
    top: 65%;
    right: 25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 10000;
}

/* INDIVIDUAL ICONS */
.lux-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    border: 1px solid rgba(255, 215, 160, 0.5);
    box-shadow: 0px 6px 20px rgba(0,0,0,0.15);
    color: #8B7355;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.35s ease;
    cursor: pointer;
}

/* MODERN LUXURY HOVER EFFECT */
.lux-icon:hover {
    background: #8B7355;
    color: #fff;
    transform: translateX(-8px) scale(1.08);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.45);
    border-color: #8B7355;
}

/* CUSTOM COLORS */
.lux-icon.whatsapp:hover { background: #25D366; box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5); }
.lux-icon.call:hover { background: #226a33; box-shadow: 0 8px 25px rgba(34, 106, 51, 0.5); }
.lux-icon.email:hover { background: #c78827; box-shadow: 0 8px 25px rgba(199, 136, 39, 0.5); }
.lux-icon.location:hover { background: #b83232; box-shadow: 0 8px 25px rgba(184, 50, 50, 0.5); }
