@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

:root {
    /* Font Sizes */
    --h1-size: 2.5rem;
    --h2-size: 2rem;
    --h3-size: 1.5rem;
    --h4-size: 1.125rem;

    /* Color Palette */
    --background-color: #E7D7C9;
    --primary-color: #D4B2A7;
    --secondary-color: #A38F85;
    --tertiary-color: #CDC6C3;

    /* Fonts */
    --headings-font: "Playfair Display", sans-serif;
    --general-font: "Poppins", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
}

body {
    font-family: var(--general-font);
    min-height: 100vh;
    overflow-x: hidden;
}

h1 {
    font-size: var(--h1-size);
    color: var(--primary-color);
    font-family: var(--headings-font);
}

h2 {
    font-size: var(--h2-size);
    color: var(--secondary-color);
    font-family: var(--headings-font);
}

h3 {
    font-size: var(--h3-size);
    color: var(--tertiary-color);
    font-family: var(--headings-font);
}

p {
    font-size: var(--h4-size);
    color: var(--primary-color);
    font-family: var(--general-font);
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==================== NAVBAR - MOBILE FIRST ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.navbar.transparent {
    background: transparent;
    box-shadow: none;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(163, 143, 133, 0.1);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.4s ease;
}

.navbar.scrolled .nav-container {
    padding: 15px 20px;
}

/* LOGO - Mobile First */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    position: relative;
}

.logo img {
    height: 70px;
    width: 70px;
    transition: all 0.4s ease;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.3));
}

.navbar.scrolled .logo-image {
    height: 35px;
    filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
    font-size: 1.3em;
    font-weight: 300;
    letter-spacing: 3px;
    font-family: Georgia, serif;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.navbar.transparent .logo-text {
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .logo-text {
    color: var(--secondary-color);
    font-size: 1.2em;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.4s ease;
}

.logo:hover::after {
    width: 100%;
}

/* NAV LINKS - Hidden on Mobile */
.nav-links {
    display: none;
    list-style: none;
    gap: 45px;
    align-items: center;
}

.nav-links li {
    display: block;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.95em;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}

.navbar.transparent .nav-links a {
    color: #FFFFFF !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.navbar.scrolled .nav-links a {
    color: #A38F85 !important;
    text-shadow: none;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.navbar.scrolled .nav-links a::before {
    background: var(--primary-color);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    color: #FFFFFF !important;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
}

.navbar.scrolled .nav-links a:hover {
    color: #D4B2A7 !important;
    text-shadow: none;
}

/* CTA BUTTON */
.nav-cta {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 6px 20px rgba(212, 178, 167, 0.4);
    position: relative;
    overflow: hidden;
    text-align: center;
    font-size: 0.8em;
}

.navbar.transparent .nav-cta {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 178, 167, 0.5);
}

.navbar.transparent .nav-cta:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px) scale(1.05);
}

/* MOBILE MENU TOGGLE */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar.scrolled .mobile-toggle span {
    background: var(--secondary-color);
}

.mobile-toggle.active span {
    background: var(--secondary-color) !important;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F5F2 100%);
    padding: 100px 30px 40px 30px;
    transition: right 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: -10px 0 50px rgba(163, 143, 133, 0.3);
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.mobile-menu .nav-links {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    display: flex !important;
}

.mobile-menu .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--tertiary-color);
    padding: 0;
    display: block;
    transition: all 0.3s ease;
}

.mobile-menu .nav-links li:hover {
    background: rgba(212, 178, 167, 0.08);
    padding-left: 15px;
}

.mobile-menu .nav-links a {
    font-size: 1.1em !important;
    color: var(--secondary-color) !important;
    text-shadow: none !important;
    display: block !important;
    padding: 18px 0;
    font-weight: 600 !important;
    letter-spacing: 2px;
    position: relative;
}

.mobile-menu .nav-links a::after {
    content: '→';
    position: absolute;
    right: 0;
    opacity: 0;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.mobile-menu .nav-links a:hover::after {
    opacity: 1;
    right: -10px;
}

.mobile-menu .nav-links a::before {
    display: none;
}

.mobile-menu .nav-links a:hover {
    color: var(--primary-color) !important;
    text-shadow: none !important;
    transform: none;
}

.mobile-menu .nav-cta {
    margin-top: 30px;
    display: inline-block !important;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: white !important;
    border: none;
    box-shadow: 0 10px 30px rgba(163, 143, 133, 0.3);
    text-shadow: none !important;
    padding: 16px 35px;
    border-radius: 30px;
    font-size: 1em;
    width: 100%;
}

.mobile-menu .nav-cta:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)) !important;
    transform: translateY(-3px) translateX(0) !important;
    box-shadow: 0 15px 40px rgba(163, 143, 133, 0.4);
    
}

/* ==================== HERO SECTION - MOBILE FIRST ==================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 100px;
    overflow: hidden;
}

/* ANIMATED BACKGROUND LAYER */
.background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: background 1.5s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 0;
}

.background-layer.bg-1 {
    background: linear-gradient(135deg, #9e7f5f 0%, #c6a886 50%, #e2cbb3 100%);
}

.background-layer.bg-2 {
    background: linear-gradient(135deg, #ee9290 0%, #f5a9a7 50%, #ffc2c1 100%);
}

.background-layer.bg-3 {
    background: linear-gradient(135deg, #d2125b 0%, #e8477d 50%, #ff6b9d 100%);
}

/* ANIMATED MESH GRADIENT OVERLAY */
.background-layer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
    animation: meshMove 15s ease-in-out infinite;
}

@keyframes meshMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

/* FLOATING PARTICLES */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    10% { opacity: 0.6; }
    50% { transform: translateY(-100vh) translateX(50px) scale(1.5); opacity: 0.3; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-200vh) translateX(-30px) scale(0.8); opacity: 0; }
}

/* HERO CONTENT - Mobile First */
.hero-content {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* IMAGE CONTAINER - Mobile First */
.image-container {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* GLOW EFFECT */
.glow-effect {
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    transition: opacity 1.5s ease;
    pointer-events: none;
}

.glow-effect.active {
    opacity: 0.5;
    animation: pulse 4s ease-in-out infinite;
}

.glow-1 { background: radial-gradient(circle, rgba(225, 227, 224, 0.9) 0%, transparent 70%); }
.glow-2 { background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, transparent 70%); }
.glow-3 { background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, transparent 70%); }

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

/* SLIDING IMAGES - Mobile First */
.hero-image {
    position: absolute;
    width: 90%;
    height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    opacity: 0;
    transform: translateX(150%) rotate(45deg) scale(0.5);
    transition: all 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hero-image.active {
    opacity: 1;
    transform: translateX(0) rotate(0deg) scale(1);
    animation: floatImage 6s ease-in-out infinite;
}

.hero-image.exiting {
    opacity: 0;
    transform: translateX(-150%) rotate(-45deg) scale(0.5);
    transition: all 1s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* CONTENT CONTAINER - Mobile First */
.content-container {
    width: 100%;
    text-align: center;
    padding: 0 10px;
    position: relative;
}

/* SLIDING CONTENT */
.content-slide {
    position: absolute;
    width: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%) scale(0.8);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.content-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0) scale(1);
}

.content-slide.exiting {
    opacity: 0;
    transform: translateY(-100%) scale(0.8);
    transition: all 0.8s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

.collection-label {
    font-size: clamp(10px, 2.5vw, 13px);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.85;
    font-weight: 600;
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 2px solid currentColor;
}

.content-slide h1 {
    font-size: clamp(2em, 10vw, 5em);
    font-weight: 300;
    letter-spacing: clamp(4px, 2vw, 12px);
    margin-bottom: 20px;
    font-family: Georgia, serif;
    text-transform: uppercase;
    line-height: 1.1;
}

.content-slide p {
    font-size: clamp(0.95em, 3.5vw, 1.25em);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 100%;
    font-weight: 300;
}

/* CTA BUTTON - Mobile First */
.cta-button , .cta-button2:hover{
    position: relative;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: clamp(0.8em, 2.5vw, 1em);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-block;
    width: 100%;
    max-width: 280px;
}

 .cta-button2{
     position: relative;
    padding: 0;
    border: none;
    cursor: pointer;
    font-size: clamp(0.8em, 2.5vw, 1em);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-block;
    width: 100%;
    max-width: 280px;
 }

.cta-button-inner {
    position: relative;
    display: inline-block;
    padding: 16px 30px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
}

/* Animated border */
.cta-button::before,
.cta-button::after ,
.cta-button2:hover::before,
.cta-button2:hover::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid currentColor;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.cta-button::before,
.cta-button2:hover::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.cta-button::after,
.cta-button2:hover::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.cta-button:hover::before,
.cta-button2::before {
    width: 0;
    height: 0;
}

.cta-button:hover::after, 
.cta-button2::after {
    width: 0;
    height: 0;
}

/* Background fill effect */
.cta-button .fill , .cta-button2:hover .fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.cta-button:hover .fill , .cta-button2 .fill {
    transform: scaleX(1);
}

.cta-button:hover .cta-button-inner, .cta-button2 .cta-button-inner {
    transform: translateX(10px);
}

.cta-button:active {
    transform: scale(0.95);
}

/* Shimmer effect */
.cta-button .shimmer,  .cta-button2:hover .shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.cta-button:hover .shimmer, .cta-button2 .shimmer {
    left: 100%;
}

.slide-btns{
    display: flex;
    gap: 24px;
}



/* COLOR VARIANTS */
.content-1 .collection-label,
.content-1 h1,
.content-1 p {
    color: #e1e3e0;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
}

.content-1 .cta-button , .content-1 .cta-button2:hover {
    color: #e1e3e0;
}

.content-1 .cta-button .fill,  .content-1 .cta-button2:hover .fill {
    background: #e1e3e0;
}

/* .content-1 .cta-button:hover,   .content-1 .cta-button2 {
    color: #2A2626;
} */

.content-2 .collection-label,
.content-2 h1,
.content-2 p,
.content-2 .cta-button  {
    color: #FFFFFF;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
}

.content-2 .cta-button .fill {
    background: #FFFFFF;
}

.content-2 .cta-button:hover {
    color: #ee9290;
}

.content-3 .collection-label,
.content-3 h1,
.content-3 p,
.content-3 .cta-button {
    color: #FFFFFF;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
}

.content-3 .cta-button .fill {
    background: #FFFFFF;
}

.content-3 .cta-button:hover {
    color: #d2125b;
}

/* NAVIGATION - Mobile First */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(15px);
}

.arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.15);
    border-color: rgba(255, 255, 255, 0.6);
}

.arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.arrow-left { left: 15px; }
.arrow-right { right: 15px; }

.arrow::after {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transition: transform 0.3s ease;
}

.arrow-left::after { transform: rotate(-135deg); }
.arrow-right::after { transform: rotate(45deg); }

.arrow:hover::after {
    transform: rotate(-135deg) translateX(-3px);
}

.arrow-right:hover::after {
    transform: rotate(45deg) translateX(3px);
}

/* SLIDER NAVIGATION DOTS */
.slider-nav {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid transparent;
    position: relative;
}

.nav-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    border: 2px solid rgba(255, 255, 255, 0);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-dot.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.3);
}

.nav-dot.active::before {
    border-color: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%) scale(1.2);
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    fill: white;
    opacity: 0.8;
}

/* FLOATING BACKGROUND ELEMENTS */
.bg-decoration {
    position: fixed;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 186, 173, 0.1), transparent);
    pointer-events: none;
    animation: float 20s infinite ease-in-out;
}

.bg-decoration:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.bg-decoration:nth-child(2) {
    width: 250px;
    height: 250px;
    bottom: 20%;
    right: -80px;
    animation-delay: 5s;
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */

/* SMALL MOBILE - 375px and below */
@media (max-width: 375px) {
    .logo-text {
        font-size: 1.1em;
        letter-spacing: 2px;
    }

    .image-container {
        max-width: 260px;
    }

    .content-slide h1 {
        letter-spacing: 2px;
    }

    .cta-button-inner {
        padding: 14px 25px;
    }

    .mobile-menu {
        padding: 90px 25px 30px 25px;
    }
}

/* LANDSCAPE MOBILE - Critical Fix */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 60px 20px 80px;
    }

    .hero-content {
        flex-direction: row;
        gap: 30px;
        align-items: center;
    }

    .image-container {
        max-width: 250px;
        flex: 0 0 auto;
    }

    .content-container {
        flex: 1;
        text-align: left;
    }

    .content-slide h1 {
        font-size: clamp(1.5em, 6vw, 2.5em);
        margin-bottom: 15px;
    }

    .content-slide p {
        font-size: clamp(0.85em, 2.5vw, 1em);
        margin-bottom: 20px;
    }

    .collection-label {
        margin-bottom: 10px;
    }

    .cta-button-inner {
        padding: 12px 25px;
    }

    .slider-nav {
        bottom: 15px;
    }

    .arrow {
        width: 40px;
        height: 40px;
    }

    .arrow::after {
        width: 10px;
        height: 10px;
    }
}

/* TABLET - 768px */
@media (min-width: 768px) {
    .nav-container {
        padding: 25px 40px;
    }

    .navbar.scrolled .nav-container {
        padding: 18px 40px;
    }

    .logo img {
        height: 50px;
    }

    .navbar.scrolled .logo-image {
        height: 40px;
    }

    .logo-text {
        font-size: 1.6em;
        letter-spacing: 4px;
    }

    .navbar.scrolled .logo-text {
        font-size: 1.5em;
    }

    .hero-section {
        padding: 100px 40px 120px;
    }

    .hero-content {
        gap: 50px;
    }

    .image-container {
        max-width: 450px;
    }

    .content-container {
        padding: 0 20px;
    }

    .collection-label {
        margin-bottom: 20px;
    }

    .content-slide p {
        margin-bottom: 40px;
    }

    .cta-button {
        max-width: 320px;
    }

    .cta-button-inner {
        padding: 18px 40px;
    }

    .arrow {
        width: 55px;
        height: 55px;
    }

    .arrow::after {
        width: 14px;
        height: 14px;
    }

    .arrow-left {
        left: 25px;
    }

    .arrow-right {
        right: 25px;
    }

    .slider-nav {
        bottom: 40px;
        gap: 18px;
    }

    .nav-dot {
        width: 11px;
        height: 11px;
    }

    .mobile-menu {
        max-width: 400px;
        padding: 100px 40px 40px 40px;
    }

    .mobile-menu .nav-links a {
        font-size: 1.2em !important;
        padding: 20px 0;
    }

    .mobile-menu .nav-cta {
        width: auto;
        padding: 18px 40px;
    }

    .nav-cta {
        padding: 12px 26px;
        font-size: 0.85em;
    }

    .bg-decoration:nth-child(1) {
        width: 400px;
        height: 400px;
    }

    .bg-decoration:nth-child(2) {
        width: 300px;
        height: 300px;
    }
}

/* DESKTOP - 968px - Show Desktop Nav */
@media (min-width: 968px) {
    .mobile-toggle {
        display: none;
    }

    .nav-links {
        display: flex;
    }

    .nav-cta {
        padding: 12px 28px;
        font-size: 0.9em;
    }
}

/* DESKTOP - 1024px */
@media (min-width: 1024px) {
    .nav-container {
        padding: 25px 60px;
    }

    .navbar.scrolled .nav-container {
        padding: 18px 60px;
    }

    .logo img {
        height: 60px;
    }

    .navbar.scrolled .logo-image {
        height: 45px;
    }

    .logo-text {
        font-size: 2em;
        letter-spacing: 6px;
    }

    .navbar.scrolled .logo-text {
        font-size: 1.8em;
    }

    .hero-section {
        padding: 60px 60px 80px;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 80px;
    }

    .image-container {
        flex: 1;
        max-width: 550px;
        margin: 0;
    }

    .content-container {
        flex: 1;
        text-align: left;
        padding: 0;
    }

    .collection-label {
        margin-bottom: 25px;
    }

    .content-slide h1 {
        margin-bottom: 30px;
    }

    .content-slide p {
        max-width: 520px;
        margin-bottom: 50px;
    }

    .cta-button {
        max-width: 350px;
    }

    .cta-button-inner {
        padding: 22px 55px;
    }

    .cta-button::before,
    .cta-button::after {
        border-width: 3px;
    }

    .arrow {
        width: 65px;
        height: 65px;
    }

    .arrow::after {
        width: 16px;
        height: 16px;
        border-width: 3px;
    }

    .arrow-left {
        left: 40px;
    }

    .arrow-right {
        right: 40px;
    }

    .slider-nav {
        bottom: 50px;
        gap: 22px;
    }

    .nav-dot {
        width: 12px;
        height: 12px;
    }

    .nav-dot::before {
        width: 30px;
        height: 30px;
    }

    .glow-effect {
        filter: blur(120px);
    }
}

/* LARGE DESKTOP - 1440px */
@media (min-width: 1440px) {
    .hero-section {
        padding: 80px 80px 100px;
    }

    .hero-content {
        gap: 120px;
    }

    .image-container {
        max-width: 650px;
    }

    .content-slide p {
        max-width: 600px;
    }

    .arrow {
        width: 70px;
        height: 70px;
    }

    .arrow::after {
        width: 18px;
        height: 18px;
    }

    .arrow-left {
        left: 60px;
    }

    .arrow-right {
        right: 60px;
    }
}

/* EXTRA LARGE SCREENS - 1920px */
@media (min-width: 1920px) {
    .hero-content {
        gap: 150px;
    }

    .image-container {
        max-width: 750px;
    }

    .content-slide h1 {
        font-size: 6em;
        letter-spacing: 16px;
    }

    .content-slide p {
        font-size: 1.4em;
        max-width: 650px;
    }

    .cta-button-inner {
        padding: 26px 65px;
        font-size: 1.1em;
    }
}
/* Collections */
.collections img{
    width: 100vw;
    
}

/* About Us */
/* ABOUT US SECTION */
.about-us-section {
    padding: 120px 60px;
    background: white;
    position: relative;
    overflow: hidden;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(195, 194, 189, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(139, 134, 134, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.about-us-section h2 {
            font-family: var(--headings-font);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            color: var(--secondary-color);
            letter-spacing: 0.15em;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            text-align: center;
}

.about-us-section h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.about-us {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-us > p {
    font-size: 1.3em;
    line-height: 2;
    color: var(--secondary-color);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px auto;
    font-weight: 300;
    /* padding: 0 20px; */
}

/* MEDIA SECTION */
.about-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* VIDEO STYLING */
.about-media video, .big-pic {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-media video:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

/* IMAGES GRID */
.about-images1 , .about-images2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.about-images1 img, .about-images2 img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    filter: grayscale(20%);
}

.about-images1 img:hover, .about-images2 img:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
    filter: grayscale(0%);
}

.about-images1 img:nth-child(2):hover, .about-images2 img:nth-child(2):hover {
    transform: translateX(-15px) scale(1.02);
}

.order-p{
    padding-top: 6rem;
}
/* RESPONSIVE DESIGN */
@media (min-width: 769px) {
    .about-us-section {
        padding: 100px 40px;
    }

    .about-us-section h2 {
        font-size: 3em;
        letter-spacing: 8px;
    }

    .about-us > p {
        font-size: 1.2em;
    }

    .about-media {
        gap: 30px;
    }

    .about-media video {
        height: 400px;
    }

    .about-images1 img , .about-images2 img {
        height: 195px;
    }

.about-images1{
    display: none;
}

}

@media (max-width: 768px) {
    .about-us-section {
        padding: 80px 30px;
    }

    .about-us-section h2 {
        font-size: 2.5em;
        letter-spacing: 6px;
        margin-bottom: 50px;
    }

    .about-us > p {
        font-size: 1.1em;
        margin-bottom: 50px;
    }

    .about-media {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-media video {
        height: 350px;
    }

    .about-images1 , .about-images2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-images1 img , .about-images2 img {
        height: 200px;
    }

    .about-images2{
    display: none;
}
}

@media (max-width: 480px) {
    .about-us-section {
        padding: 60px 20px;
    }

    .about-us-section h2 {
        font-size: 2em;
        letter-spacing: 4px;
    }

    .about-us > p {
        font-size: 1em;
        line-height: 1.8;
    }

    .about-media video {
        height: 280px;
    }

    .about-images1 ,.about-images2 {
        grid-template-columns: 1fr;
    }

    .about-images1 img, .about-images2 img {
        height: 250px;
    }
        .about-images2{
    display: none;
}
}

 /* GALLERY SECTION */
        .gallery-section {
            padding: 120px 60px;
            background: linear-gradient(180deg, var(--background-color) 0%, #f5ebe3 50%, var(--background-color) 100%);
            position: relative;
            overflow: hidden;
        }

        /* Animated background elements */
        .gallery-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 30%, rgba(212, 178, 167, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 80% 70%, rgba(163, 143, 133, 0.1) 0%, transparent 50%);
            animation: pulseGlow 8s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes pulseGlow {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        /* HEADER */
        .gallery-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .gallery-section h2 {
            font-size: 5em;
            font-weight: 300;
            letter-spacing: 18px;
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-family: var(--headings-font);
            text-transform: uppercase;
            position: relative;
            display: inline-block;
        }

        .gallery-section h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
            animation: expandLine 3s ease-in-out infinite;
        }

        @keyframes expandLine {
            0%, 100% { width: 150px; }
            50% { width: 250px; }
        }

        .gallery-subtitle {
            font-size: 1.4em;
            color: var(--secondary-color);
            opacity: 0.8;
            letter-spacing: 3px;
            margin-top: 30px;
            font-style: var(--general-font);
        }

        /* GALLERY GRID */
        .gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* VIDEO CONTAINERS */
        .video-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 25px 70px rgba(163, 143, 133, 0.3);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            opacity: 0;
            transform: translateY(50px) scale(0.95);
            animation: videoReveal 1s ease-out forwards;
            background: linear-gradient(135deg, var(--tertiary-color), var(--primary-color));
        }

        
        .video-wrapper:nth-child(2) { animation-delay: 0.4s; }
        

        @keyframes videoReveal {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .video-wrapper:hover {
            transform: translateY(-20px) scale(1.02);
            box-shadow: 0 35px 90px rgba(163, 143, 133, 0.4);
            z-index: 10;
        }

        .gallery img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
            transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            filter: brightness(0.95) contrast(1.05);
        }

        .video-wrapper:hover img {
            transform: scale(1.1);
            filter: brightness(1) contrast(1.1);
        }

        /* PLAY OVERLAY */
        /* .play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 178, 167, 0.7) 0%, rgba(163, 143, 133, 0.7) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        } */

        .video-wrapper:hover .play-overlay {
            opacity: 1;
        }

        /* .play-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            color: var(--secondary-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            animation: pulse 2s ease-in-out infinite;
        } */

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* VIDEO BADGE */
        .video-badge {
            font-family: var(--general-font);
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.8em;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--secondary-color);
            z-index: 3;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            animation: badgePop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
            opacity: 0;
            transform: scale(0);
        }

        .video-wrapper:nth-child(1) .video-badge { animation-delay: 0.5s; }
        .video-wrapper:nth-child(2) .video-badge { animation-delay: 0.7s; }
        .video-wrapper:nth-child(3) .video-badge { animation-delay: 0.9s; }
        .video-wrapper:nth-child(4) .video-badge { animation-delay: 1.1s; }

        @keyframes badgePop {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* CTA SECTION */
        .gallery-cta {
            text-align: center;
            margin-top: 80px;
            padding: 60px 40px;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 2px solid rgba(205, 198, 195, 0.3);
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 2;
            box-shadow: 0 20px 60px rgba(163, 143, 133, 0.2);
        }

        .gallery-cta h3 {
            font-size: 2.8em;
            font-weight: 300;
            letter-spacing: 8px;
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-family: var(--headings-font);
            text-transform: uppercase;
        }

        .gallery-cta p {
            font-size: 1.3em;
            color: var(--secondary-color);
            opacity: 0.85;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 22px 55px;
            font-size: 1em;
            letter-spacing: 3px;
            text-transform: uppercase;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            text-decoration: none;
            border: none;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: 8px;
        }

        /* Primary CTA Button */
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            box-shadow: 0 10px 35px rgba(163, 143, 133, 0.4);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 50px rgba(163, 143, 133, 0.5);
        }

        /* WhatsApp Button */
        .btn-whatsapp {
            background: transparent;
            color: var(--secondary-color);
            border: 2px solid var(--secondary-color);
            box-shadow: 0 10px 35px rgba(102, 81, 15, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }

        .btn-whatsapp::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s;
        }

        .btn-whatsapp:hover::before {
            left: 100%;
        }

        .btn-whatsapp:hover {
            background: transparent;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 50px rgba(21, 20, 18, 0.4);
        }

        .whatsapp-icon {
            width: 24px;
            height: 24px;
        }

        /* FLOATING PARTICLES */
        .particle {
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--primary-color);
            border-radius: 50%;
            opacity: 0.3;
            animation: floatParticle 15s infinite ease-in-out;
        }

        @keyframes floatParticle {
            0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
            10% { opacity: 0.3; }
            50% { transform: translateY(-100vh) translateX(50px); opacity: 0.2; }
            90% { opacity: 0.3; }
            100% { transform: translateY(-200vh) translateX(-30px); opacity: 0; }
        }

        .particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { top: 40%; left: 20%; animation-delay: 3s; }
        .particle:nth-child(3) { top: 60%; left: 80%; animation-delay: 6s; }
        .particle:nth-child(4) { top: 30%; right: 15%; animation-delay: 9s; }

        /* RESPONSIVE */
        @media (max-width: 1200px) {
            .gallery-section h2 {
                font-size: 4em;
                letter-spacing: 12px;
            }

            .gallery {
                gap: 30px;
            }

            .gallery video {
                height: 400px;
            }
        }

        @media (max-width: 968px) {
            .gallery-section {
                padding: 80px 40px;
            }

            .gallery-section h2 {
                font-size: 3em;
                letter-spacing: 8px;
            }

            .gallery {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .gallery video {
                height: 350px;
            }

            .gallery-cta h3 {
                font-size: 2em;
                letter-spacing: 4px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .gallery-section {
                padding: 60px 20px;
            }

            .gallery-section h2 {
                font-size: 2.2em;
                letter-spacing: 4px;
            }

            .gallery-subtitle {
                font-size: 1.1em;
            }

            .gallery video {
                height: 280px;
            }

            .btn {
                padding: 18px 40px;
                font-size: 0.9em;
            }
        }
/* Reviews */

 /* Section Header */
        .reviews-section {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
             padding: 120px 60px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            animation: fadeInDown 1s ease both;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-header::before {
            content: '✦';
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 2rem;
            color: var(--tertiary-color);
            opacity: 0.5;
            animation: sparkle 3s ease-in-out infinite;
        }

        @keyframes sparkle {
            0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
            50% { opacity: 0.8; transform: translateX(-50%) scale(1.2); }
        }

        .section-header h2 {
            font-family: var(--headings-font);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            color: var(--primary-color);
            letter-spacing: 0.15em;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
            animation: expandWidth 1.5s ease 0.5s both;
        }

        @keyframes expandWidth {
            from { width: 0; }
            to { width: 80px; }
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--secondary-color);
            font-weight: 300;
            letter-spacing: 0.05em;
            margin-top: 20px;
        }

        /* Floating background elements */
        .bg-decoration {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(200, 186, 173, 0.15), transparent);
            pointer-events: none;
            animation: float 20s infinite ease-in-out;
        }

        .bg-decoration:nth-child(1) {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .bg-decoration:nth-child(2) {
            width: 400px;
            height: 400px;
            top: 50%;
            right: 0;
            animation-delay: 5s;
        }

        .bg-decoration:nth-child(3) {
            width: 250px;
            height: 250px;
            bottom: 10%;
            left: 40%;
            animation-delay: 10s;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(30px, -30px) scale(1.1);
            }
            66% {
                transform: translate(-20px, 20px) scale(0.9);
            }
        }

        /* Reviews Grid */
        .reviews {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
            background-color: white;
        }

        /* Individual Review Card */
        .review {
           
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 2px solid transparent;
            border-radius: 20px;
            padding: 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            animation: fadeInUp 0.8s ease both;
            animation-delay: calc(var(--index) * 0.1s);
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        }

        .review:nth-child(1) { --index: 1; }
        .review:nth-child(2) { --index: 2; }
        .review:nth-child(3) { --index: 3; }
        .review:nth-child(4) { --index: 4; }
        .review:nth-child(5) { --index: 5; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Gradient border effect */
        .review::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            padding: 2px;
            background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color), var(--primary-color));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .review:hover::before {
            opacity: 1;
        }

        /* Shine effect on hover */
        .review::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent 30%,
                rgba(255, 255, 255, 0.3) 50%,
                transparent 70%
            );
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }

        .review:hover::after {
            opacity: 1;
            animation: shine 1.5s ease;
        }

        @keyframes shine {
            0% {
                transform: translateX(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) rotate(45deg);
            }
        }

        .review:hover {
            transform: translateY(-12px) scale(1.02);
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 
                0 20px 60px rgba(77, 59, 45, 0.15),
                0 0 0 1px rgba(77, 59, 45, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }

        /* Reviewer Info */
        .reviewer {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
            flex-wrap: wrap;
        }

        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--headings-font);
            font-size: 1.3rem;
            color: var(--tertiary-color);
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(77, 59, 45, 0.2);
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .review:hover .reviewer-avatar {
            transform: rotate(360deg) scale(1.1);
        }

        .reviewer h3 {
            font-family: var(--headings-font);
            font-size: 1.2rem;
            color: var(--primary-color);
            font-weight: 600;
            letter-spacing: 0.03em;
            flex: 1;
            min-width: 0;
        }

        .verified-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: var(--primary-color);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .verified-badge::before {
            content: '✓';
            font-weight: bold;
        }

        /* Quote Section */
        .quote {
            position: relative;
            z-index: 2;
        }

        .quote-icon {
            position: absolute;
            top: -10px;
            left: -5px;
            width: 40px;
            height: 40px;
            opacity: 0.15;
            z-index: 1;
            transition: all 0.4s ease;
        }

        .review:hover .quote-icon {
            opacity: 0.25;
            transform: scale(1.2) rotate(-5deg);
        }

        .quote p {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--secondary-color);
            margin: 15px 0;
            position: relative;
            z-index: 2;
            font-weight: 400;
        }

        /* Rating Stars */
        .rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 20px;
            position: relative;
            z-index: 2;
        }

        .stars {
            display: flex;
            gap: 3px;
        }

        .star {
            color: var(--primary-color);
            font-size: 18px;
            display: inline-block;
            animation: starPop 0.5s ease both;
            animation-delay: calc(var(--star-index) * 0.1s);
            transition: transform 0.2s ease;
        }

        .review:hover .star {
            animation: starBounce 0.6s ease;
        }

        .star:nth-child(1) { --star-index: 0; }
        .star:nth-child(2) { --star-index: 1; }
        .star:nth-child(3) { --star-index: 2; }
        .star:nth-child(4) { --star-index: 3; }
        .star:nth-child(5) { --star-index: 4; }

        @keyframes starPop {
            0% {
                transform: scale(0) rotate(-180deg);
                opacity: 0;
            }
            70% {
                transform: scale(1.2) rotate(10deg);
            }
            100% {
                transform: scale(1) rotate(0);
                opacity: 1;
            }
        }

        @keyframes starBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .rating-text {
            font-size: 0.85rem;
            color: var(--secondary-color);
            font-weight: 500;
            margin-left: 5px;
        }

        /* Decorative elements */
        .review-decoration {
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(200, 186, 173, 0.2), transparent);
            pointer-events: none;
            transition: all 0.5s ease;
        }

        .review-decoration.top-right {
            top: -30px;
            right: -30px;
        }

        .review-decoration.bottom-left {
            bottom: -30px;
            left: -30px;
        }

        .review:hover .review-decoration {
            transform: scale(1.5);
            opacity: 0.5;
        }

        /* Call to Action */
        .reviews-cta {
            text-align: center;
            margin-top: 60px;
            animation: fadeInUp 1s ease 0.8s both;
        }

        /* .cta-button {
            display: inline-block;
            padding: 18px 45px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            font-family: var(--general-font);
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-decoration: none;
            border-radius: 50px;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(77, 59, 45, 0.2);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(77, 59, 45, 0.3);
            border-color: var(--primary-color);
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        } */

        /* Responsive Design */
        @media (max-width: 768px) {
            .reviews-section {
                padding: 60px 20px;
            }

            .reviews {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .section-header {
                margin-bottom: 50px;
            }

            .section-header h2 {
                font-size: 2rem;
                letter-spacing: 0.1em;
            }

            .section-header p {
                font-size: 0.95rem;
            }

            .review {
                padding: 20px;
                border-radius: 16px;
            }

            .review::before {
                border-radius: 16px;
            }

            .reviewer {
                gap: 10px;
            }

            .reviewer-avatar {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .reviewer h3 {
                font-size: 1.1rem;
            }

            .verified-badge {
                padding: 4px 10px;
                font-size: 0.65rem;
            }

            .quote p {
                font-size: 0.95rem;
                line-height: 1.7;
            }

            .quote-icon {
                width: 35px;
                height: 35px;
            }

            .rating {
                margin-top: 15px;
            }

            .star {
                font-size: 16px;
            }

            .review-decoration {
                width: 80px;
                height: 80px;
            }

            .review-decoration.top-right {
                top: -20px;
                right: -20px;
            }

            .review-decoration.bottom-left {
                bottom: -20px;
                left: -20px;
            }

            /* Reduce hover effects on mobile for better performance */
            .review:hover {
                transform: translateY(-5px) scale(1.01);
            }
        }

        /* Extra small mobile devices */
        @media (max-width: 480px) {
            .reviews-section {
                padding: 40px 15px;
            }

            .section-header h2 {
                font-size: 1.75rem;
            }

            .review {
                padding: 18px;
                border-radius: 14px;
            }

            .review::before {
                border-radius: 14px;
            }

            .reviewer {
                gap: 8px;
            }

            .reviewer-avatar {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .reviewer h3 {
                font-size: 1rem;
            }

            .verified-badge {
                padding: 3px 8px;
                font-size: 0.6rem;
            }

            .quote p {
                font-size: 0.9rem;
            }

            .star {
                font-size: 15px;
            }

            .rating-text {
                font-size: 0.8rem;
            }
        }

        /* Scroll-triggered animations */
        @media (prefers-reduced-motion: no-preference) {
            .review {
                opacity: 0;
                animation: fadeInUp 0.8s ease forwards;
            }
        }
/* Footer */
        footer {
            background: var(--secondary-color);
            position: relative;
            overflow: hidden;
            padding: 80px 40px 0;
        }

        /* Animated background particles */
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(200, 186, 173, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(200, 186, 173, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(200, 186, 173, 0.06) 0%, transparent 50%);
            animation: backgroundShift 20s ease infinite;
            pointer-events: none;
        }

        @keyframes backgroundShift {
            0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
            50% { transform: scale(1.1) rotate(5deg); opacity: 0.8; }
        }

        /* Floating particles */
        .particle {
            position: absolute;
            background: radial-gradient(circle, rgba(200, 186, 173, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: float 15s infinite ease-in-out;
        }

        .particle:nth-child(1) { width: 100px; height: 100px; top: 10%; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { width: 150px; height: 150px; top: 60%; right: 10%; animation-delay: 3s; }
        .particle:nth-child(3) { width: 80px; height: 80px; bottom: 20%; left: 50%; animation-delay: 6s; }

        @keyframes float {
            0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
            50% { transform: translateY(-30px) scale(1.1); opacity: 0.6; }
        }

        .footer-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Brand Name */
        .brand-container {
            text-align: center;
            margin-bottom: 60px;
            perspective: 1000px;
        }

        .brand-name {
            font-family: var(--headings-font);
            font-size: clamp(3rem, 8vw, 7rem);
            font-weight: 900;
            color: var(--background-color);
            letter-spacing: 0.3em;
            text-shadow: 0 0 30px rgba(200, 186, 173, 0.3);
            animation: brandGlow 4s ease-in-out infinite;
            display: inline-block;
            background: var(--background-color);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s linear infinite, float 6s ease-in-out infinite;
        }

        @keyframes shimmer {
            to { background-position: 200% center; }
        }

        @keyframes brandGlow {
            0%, 100% { filter: drop-shadow(0 0 20px rgba(200, 186, 173, 0.4)); }
            50% { filter: drop-shadow(0 0 40px rgba(200, 186, 173, 0.6)); }
        }

        .brand-tagline {
            font-family: var(--general-font);
            font-size: 0.9rem;
            letter-spacing: 0.2em;
            color: var(--background-color);
            opacity: 0.7;
            margin-top: 10px;
            animation: fadeInUp 1s ease 0.5s both;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Main Footer Grid */
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 60px;
            margin-bottom: 60px;
        }

        /* Quick Links */
        .quick-links {
            animation: slideInLeft 0.8s ease both;
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .quick-links h3 {
            font-family: var(--headings-font);
            font-size: 1.4rem;
            color: var(--background-color);
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }

        .quick-links h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, var(--background-color), transparent);
            animation: expandLine 1s ease 0.5s both;
        }

        @keyframes expandLine {
            from { width: 0; }
            to { width: 50px; }
        }

        .quick-links ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .quick-links ul li {
            overflow: hidden;
        }

        .quick-links ul li p {
            color: var(--background-color);
            font-size: 0.95rem;
            font-weight: 300;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
            position: relative;
            padding-left: 0;
        }

        .quick-links ul li p::before {
            content: '→';
            position: absolute;
            left: -20px;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .quick-links ul li:hover p {
            color: #EDE3DA;
            transform: translateX(20px);
            letter-spacing: 0.15em;
        }

        .quick-links ul li:hover p::before {
            left: -15px;
            opacity: 1;
        }

        /* Socials Section */
        .socials-section {
            text-align: center;
            animation: slideInRight 0.8s ease both;
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .socials-section h3 {
            font-family: var(--headings-font);
            font-size: 1.4rem;
            color: var(--background-color);
            margin-bottom: 25px;
        }

        .socials {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .socials a {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 55px;
            height: 55px;
            background: rgba(200, 186, 173, 0.1);
            border: 1px solid rgba(200, 186, 173, 0.2);
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        .socials a::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle, rgba(200, 186, 173, 0.3) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .socials a:hover {
            transform: translateY(-8px) scale(1.1);
            background: rgba(200, 186, 173, 0.2);
            border-color: var(--background-color);
            box-shadow: 0 10px 30px rgba(200, 186, 173, 0.3);
        }

        .socials a:hover::before {
            opacity: 1;
            animation: ripple 0.6s ease;
        }

        @keyframes ripple {
            0% { transform: scale(0); opacity: 1; }
            100% { transform: scale(2); opacity: 0; }
        }

        .socials img {
            width: 24px;
            height: 24px;
            filter: brightness(0) invert(1) opacity(0.7);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .socials a:hover img {
            filter: brightness(0) invert(1) opacity(1);
            transform: rotate(360deg) scale(1.1);
        }

        
        /* Divider Wave */
        .wave-divider {
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--tertiary-color), transparent);
            margin: 60px 0 40px;
            position: relative;
            animation: waveFlow 3s ease-in-out infinite;
        }

        @keyframes waveFlow {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

        /* Copyright */
        .copyright {
            text-align: center;
            padding: 30px 0;
            border-top: 1px solid rgba(200, 186, 173, 0.2);
        }

        .copyright p {
            color: var(--background-color);
            opacity: 0.6;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
        }

        /* Responsive */
        @media (max-width: 768px) {
            footer {
                padding: 60px 20px 0;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .quick-links ul {
                align-items: center;
            }

            .brand-name {
                font-size: clamp(2rem, 10vw, 4rem);
                letter-spacing: 0.2em;
            }

            .newsletter-form {
                flex-direction: column;
            }
        }

        /* Scroll Animation */
        @keyframes scrollReveal {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


                .background-layer.bg-1 {
          background: linear-gradient(135deg, #5c4433 0%, #a98b70 50%, #d8c3b1 100%);


        }

           .background-layer.bg-2 {
            background: linear-gradient(135deg, #f5f1ea 0%, #d8c9b8 50%, #b7bfa6 100%);
/* background: linear-gradient(135deg, #fbf8f4 0%, #e2d3c2 50%, #bfae9c 100%); */
/* background: linear-gradient(135deg, #e9ebe3 0%, #cfd5c3 50%, #aeb79d 100%); */


        }

        .background-layer.bg-3{
        /* background: linear-gradient(135deg, #fff8f9 0%, #f8d7e3 50%, #f3b6cd 100%); */
        background: linear-gradient(135deg, #fffdfd 0%, #fde8ef 35%, #f7c9d9 65%, #eea5bf 100%);
        }

           .content-1 .cta-button:hover {
            color: #a98b70;
        }

           .content-2 .cta-button:hover {
            color: #b7bfa6;
        }
           .content-3 .cta-button:hover {
            color: #eea5bf;
        }



