/* ========================================
   BOCHABERY BEAUTY - ULTRA LUXURY STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #2c1810;
    background: #f7f5f4;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, .logo h1 {
    font-family: 'Playfair Display', serif;
}

img {
    max-width: 100%;
    display: block;
}

/* ---------- ULTRA LOADER ---------- */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2c1810;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

#loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: #d4a574;
}

.loader-logo {
    font-size: 64px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    letter-spacing: 8px;
    margin-top: 20px;
    color: #faf6f2;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: #3d2c2c;
    margin: 20px auto 0;
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #d4a574;
    animation: loadBar 1.5s ease-in-out infinite;
}

@keyframes loadBar {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

/* ---------- MOUSE TRAIL ---------- */
#mouseTrail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.trail-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.6), transparent);
    border-radius: 50%;
    pointer-events: none;
    animation: trailFade 0.8s ease-out forwards;
}

@keyframes trailFade {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(0); opacity: 0; }
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #d4a574;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.4);
}

.cursor-ring {
    position: fixed;
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(212, 165, 116, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.4s, height 0.4s, border-color 0.4s;
}

/* ---------- BACKGROUND SHAPES ---------- */
.shape {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
    animation: morphShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: #d4a574;
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #8b5e5e;
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: #c4956a;
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes morphShape {
    0%, 100% { border-radius: 50%; transform: scale(1) rotate(0deg); }
    33% { border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%; transform: scale(1.1) rotate(120deg); }
    66% { border-radius: 60% 40% 40% 60% / 40% 60% 50% 60%; transform: scale(0.9) rotate(240deg); }
}

/* ---------- PARTICLES ---------- */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.4), transparent);
    border-radius: 50%;
    animation: floatParticle linear infinite;
    pointer-events: none;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ---------- FLOATING ELEMENTS ---------- */
.floating-element {
    position: fixed;
    font-size: 28px;
    color: rgba(212, 165, 116, 0.15);
    pointer-events: none;
    z-index: 0;
    animation: floatAround 25s ease-in-out infinite;
}

.floating-1 { top: 15%; left: 5%; font-size: 50px; animation-delay: 0s; }
.floating-2 { top: 60%; right: 3%; font-size: 40px; animation-delay: -7s; }
.floating-3 { bottom: 20%; left: 10%; font-size: 45px; animation-delay: -14s; }
.floating-4 { top: 40%; left: 50%; font-size: 60px; animation-delay: -21s; }
.floating-5 { bottom: 40%; right: 15%; font-size: 35px; animation-delay: -28s; }

@keyframes floatAround {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(50px, -50px) rotate(90deg) scale(1.1); }
    50% { transform: translate(-40px, 60px) rotate(180deg) scale(0.9); }
    75% { transform: translate(60px, 40px) rotate(270deg) scale(1.05); }
}

/* ---------- 3D PARALLAX ---------- */
.parallax-element {
    position: fixed;
    font-size: 40px;
    color: rgba(212, 165, 116, 0.04);
    pointer-events: none;
    z-index: 0;
    transition: transform 0.1s ease-out;
}

.p1 { top: 20%; left: 10%; font-size: 80px; }
.p2 { top: 70%; right: 8%; font-size: 60px; }
.p3 { bottom: 30%; left: 20%; font-size: 70px; }

/* ---------- CONFETTI ---------- */
#confettiContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    animation: confettiFall linear forwards;
}

@keyframes confettiFall {
    0% { transform: translateY(-20px) rotate(0deg) scale(1); opacity: 1; }
    100% { transform: translateY(110vh) rotate(720deg) scale(0); opacity: 0; }
}

/* ---------- BACK TO TOP ---------- */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4a574, #c4956a);
    color: #2c1810;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 25px rgba(212, 165, 116, 0.3);
}

#back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

#back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 40px rgba(212, 165, 116, 0.5);
}

/* ---------- HEADER ---------- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
}

#main-header.scrolled {
    background: rgba(44, 24, 16, 0.95);
    backdrop-filter: blur(30px);
    padding: 10px 0;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(212, 165, 116, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    color: #d4a574;
    font-size: 20px;
}

.logo-icon.pulse {
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); color: #e8c9a8; }
}

.logo h1 {
    font-size: 20px;
    font-weight: 400;
    color: #faf6f2;
    letter-spacing: 4px;
}

.logo-light {
    font-weight: 300;
    color: #d4a574;
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(250, 246, 242, 0.6);
    text-decoration: none;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4a574;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover {
    color: #faf6f2;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 28px;
    background: linear-gradient(135deg, #d4a574, #c4956a);
    color: #2c1810;
    text-decoration: none;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.2);
}

.nav-cta:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 35px rgba(212, 165, 116, 0.4);
}

/* ---------- HAMBURGER ---------- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 1.5px;
    background: #faf6f2;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- HERO ---------- */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 40px;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 50%, #2c1810 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 28px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 30px;
    color: #d4a574;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease forwards;
    background: rgba(26, 15, 10, 0.3);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 74px;
    font-weight: 400;
    color: #faf6f2;
    line-height: 1.08;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-line {
    display: block;
}

.hero-line.highlight {
   color: #d4a574;
    font-style: italic;
}

@keyframes goldShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ---------- TYPING ---------- */
.hero-typing {
    font-size: 20px;
    font-weight: 300;
    color: rgba(250, 246, 242, 0.6);
    margin-bottom: 40px;
    min-height: 40px;
    animation: fadeInUp 1s ease 0.4s forwards;
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 28px;
    background: #d4a574;
    margin-left: 4px;
    vertical-align: middle;
    animation: blinkCursor 0.8s step-end infinite;
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ---------- BUTTONS ---------- */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.btn-primary {
    display: inline-block;
    padding: 16px 44px;
    background: linear-gradient(135deg, #d4a574, #c4956a);
    color: #2c1810;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary:hover::before {
    transform: scale(1);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(212, 165, 116, 0.4);
}

.btn-glow {
    box-shadow: 0 4px 30px rgba(212, 165, 116, 0.3);
    animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 4px 30px rgba(212, 165, 116, 0.3); }
    50% { box-shadow: 0 4px 60px rgba(212, 165, 116, 0.6); }
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #faf6f2;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    border: 1px solid rgba(250, 246, 242, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-secondary:hover {
    background: rgba(250, 246, 242, 0.1);
    border-color: #d4a574;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.15);
}

/* ---------- HERO STATS ---------- */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: #d4a574;
    text-shadow: 0 0 40px rgba(212, 165, 116, 0.15);
}

.stat-label {
    font-size: 12px;
    color: rgba(250, 246, 242, 0.4);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ---------- HERO SCROLL ---------- */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(250, 246, 242, 0.2);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(250, 246, 242, 0.2), transparent);
    margin: 10px auto 0;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- SECTION HEADER ---------- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: block;
    font-size: 11px;
    color: #d4a574;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 400;
    color: #2c1810;
    margin-bottom: 15px;
}

.gradient-text {
    background: linear-gradient(135deg, #d4a574, #c4956a, #e8c9a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 16px;
    color: #999;
    max-width: 500px;
    margin: 0 auto;
}

/* ---------- SERVICES WITH FLIP ---------- */
#services {
    padding: 100px 40px;
    background: #faf6f2;
}

.service-category {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 400;
    color: #2c1810;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(212, 165, 116, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 3D Flip Card */
.premium-card {
    perspective: 1000px;
    height: 480px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.premium-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.service-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
}

.premium-card:hover .service-flip-inner {
    transform: rotateY(180deg);
}

.service-flip-front,
.service-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.06);
}

.service-flip-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, #2c1810, #4a2c1a);
    color: #faf6f2;
}

.flip-icon {
    font-size: 40px;
    color: #d4a574;
    margin-bottom: 16px;
}

.service-flip-back h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #faf6f2;
}

.service-flip-back p {
    font-size: 14px;
    color: rgba(250, 246, 242, 0.6);
    line-height: 1.8;
    margin-bottom: 20px;
}

.flip-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.flip-features span {
    font-size: 13px;
    color: rgba(250, 246, 242, 0.5);
    letter-spacing: 1px;
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.premium-card:hover .service-image img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
}

.service-duration {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(26, 15, 10, 0.8);
    backdrop-filter: blur(10px);
    color: #faf6f2;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 1px;
}

.service-luxury {
    display: inline-block;
    padding: 4px 14px;
    background: linear-gradient(135deg, #d4a574, #c4956a);
    color: #2c1810;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-content {
    padding: 24px 28px 28px;
}

.service-category-label {
    display: inline-block;
    font-size: 10px;
    color: #d4a574;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: #2c1810;
    margin-bottom: 8px;
}

.service-content p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #2c1810;
}

.shimmer-price {
    background: linear-gradient(120deg, #2c1810 30%, #d4a574 50%, #2c1810 70%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s ease-in-out infinite;
}

@keyframes shimmerText {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.btn-book {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: #2c1810;
    color: #faf6f2;
    border: none;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-book:hover {
    background: #d4a574;
    color: #2c1810;
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.btn-arrow {
    display: inline-block;
    transition: transform 0.3s;
}

.btn-book:hover .btn-arrow {
    transform: translateX(5px);
}

/* ---------- GALLERY ---------- */
#gallery {
    padding: 100px 40px;
    background: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    aspect-ratio: 4/3;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item.revealed {
    opacity: 1;
    transform: scale(1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 15, 10, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #faf6f2;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span:first-child {
    font-size: 32px;
    margin-bottom: 8px;
}

.gallery-overlay span:last-child {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ---------- GALLERY MODAL ---------- */
#galleryModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

#galleryModal img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    animation: zoomIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.gallery-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #faf6f2;
    font-size: 32px;
    cursor: pointer;
    transition: transform 0.4s;
}

.gallery-close:hover {
    transform: rotate(90deg);
}

/* ---------- TESTIMONIALS ---------- */
#testimonials {
    padding: 100px 40px;
    background: #faf6f2;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    min-width: 100%;
    padding: 44px;
    text-align: center;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.06);
}

.testimonial-stars {
    color: #d4a574;
    font-size: 24px;
    letter-spacing: 6px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-author strong {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #2c1810;
}

.testimonial-author span {
    font-size: 13px;
    color: #999;
    letter-spacing: 1px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.testimonial-controls button {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(44, 24, 16, 0.08);
    border-radius: 50%;
    background: #ffffff;
    color: #2c1810;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-controls button:hover {
    background: #d4a574;
    color: #faf6f2;
    border-color: #d4a574;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dots .dot.active {
    background: #d4a574;
    width: 30px;
    border-radius: 5px;
}

/* ---------- ABOUT ---------- */
#about {
    padding: 100px 40px;
    background: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #2c1810, #4a2c1a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-image-placeholder {
    text-align: center;
    color: rgba(250, 246, 242, 0.6);
}

.placeholder-icon {
    display: block;
    font-size: 64px;
    color: #d4a574;
    margin-bottom: 16px;
    animation: pulse 2s ease-in-out infinite;
}

.placeholder-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    letter-spacing: 6px;
    color: #faf6f2;
}

.placeholder-sub {
    display: block;
    font-size: 12px;
    letter-spacing: 4px;
    color: rgba(212, 165, 116, 0.4);
    margin-top: 8px;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(26, 15, 10, 0.3) 100%);
}

.about-content {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-content.revealed {
    opacity: 1;
    transform: translateX(0);
}

.about-content .section-tag {
    text-align: left;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 400;
    color: #2c1810;
    margin-bottom: 20px;
}

.about-content h2 .highlight {
    background: linear-gradient(135deg, #d4a574, #c4956a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.about-content p {
    font-size: 16px;
    color: #666;
    line-height: 2;
    margin-bottom: 16px;
}

.about-features {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: #2c1810;
}

.about-feature span:first-child {
    color: #d4a574;
    font-size: 16px;
}

/* ---------- CONTACT ---------- */
#contact {
    padding: 100px 40px;
    background: #faf6f2;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.contact-card {
    padding: 40px 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(30px);
}

.contact-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(44, 24, 16, 0.08);
    border-color: rgba(212, 165, 116, 0.3);
}

.contact-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: #2c1810;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 15px;
    color: #888;
    line-height: 1.6;
}

/* ---------- WHATSAPP ---------- */
.contact-whatsapp {
    text-align: center;
    margin-top: 40px;
}

.whatsapp-float {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.3);
}

.whatsapp-float:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 50px rgba(37, 211, 102, 0.4);
}

/* ---------- FOOTER ---------- */
footer {
    background: #1a0f0a;
    color: rgba(250, 246, 242, 0.4);
    padding: 60px 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(250, 246, 242, 0.04);
}

.footer-brand .footer-logo {
    font-size: 36px;
    color: #d4a574;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: #faf6f2;
    margin: 8px 0 4px;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(250, 246, 242, 0.2);
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(250, 246, 242, 0.3);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: #d4a574;
}

.footer-social {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(250, 246, 242, 0.06);
    border-radius: 50%;
    color: rgba(250, 246, 242, 0.2);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.social-link:hover {
    border-color: #d4a574;
    color: #d4a574;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    font-size: 12px;
    letter-spacing: 1px;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- DESKTOP RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    .about-image {
        height: 300px;
    }
    .hero-title {
        font-size: 52px;
    }
    .service-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }

    nav {
        display: none !important;
        flex-direction: column !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: rgba(26, 15, 10, 0.98) !important;
        padding: 24px 32px !important;
        gap: 16px !important;
        backdrop-filter: blur(20px) !important;
        border-top: 1px solid rgba(212, 165, 116, 0.05) !important;
    }

    nav.active {
        display: flex !important;
    }

    .nav-link {
        font-size: 13px !important;
        letter-spacing: 2px !important;
        padding: 6px 0 !important;
    }

    .nav-cta {
        width: 100% !important;
        text-align: center !important;
        padding: 10px !important;
        font-size: 12px !important;
    }

    .header-container {
        padding: 0 20px !important;
    }

    #main-header {
        padding: 12px 0 !important;
    }

    /* HERO */
    #hero {
        padding: 80px 20px 50px !important;
        min-height: 90vh !important;
    }

    .hero-title {
        font-size: 34px !important;
        line-height: 1.2 !important;
    }

    .hero-typing {
        font-size: 15px !important;
        min-height: 30px !important;
        margin-bottom: 24px !important;
    }

    .hero-badge {
        font-size: 10px !important;
        padding: 4px 16px !important;
        margin-bottom: 16px !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .btn-primary,
    .btn-secondary {
        width: 100% !important;
        text-align: center !important;
        padding: 12px 24px !important;
        font-size: 13px !important;
    }

    .hero-stats {
        gap: 20px !important;
        margin-top: 28px !important;
        flex-wrap: wrap !important;
    }

    .stat-number {
        font-size: 28px !important;
    }

    .stat-label {
        font-size: 10px !important;
    }

    .hero-scroll {
        bottom: 16px !important;
    }
    .hero-scroll span {
        font-size: 8px !important;
    }
    .scroll-line {
        height: 25px !important;
    }

    /* SERVICES */
    #services {
        padding: 50px 20px !important;
    }

    .section-header {
        margin-bottom: 30px !important;
    }

    .section-header h2 {
        font-size: 30px !important;
    }

    .section-header p {
        font-size: 14px !important;
        padding: 0 10px !important;
    }

    .section-tag {
        font-size: 10px !important;
        letter-spacing: 3px !important;
    }

    .service-category {
        margin-bottom: 30px !important;
    }

    .category-title {
        font-size: 20px !important;
        margin-bottom: 16px !important;
        padding-bottom: 8px !important;
    }

    .service-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .premium-card {
        height: 380px !important;
        max-height: 400px !important;
    }

    .service-image {
        height: 170px !important;
    }

    .service-content {
        padding: 14px 18px 18px !important;
    }

    .service-content h3 {
        font-size: 18px !important;
        margin-bottom: 4px !important;
    }

    .service-content p {
        font-size: 13px !important;
        margin-bottom: 10px !important;
    }

    .service-category-label {
        font-size: 9px !important;
        letter-spacing: 2px !important;
    }

    .price {
        font-size: 18px !important;
    }

    .btn-book {
        padding: 6px 16px !important;
        font-size: 11px !important;
    }

    .service-duration {
        font-size: 9px !important;
        padding: 3px 10px !important;
    }

    .service-luxury {
        font-size: 7px !important;
        padding: 2px 10px !important;
    }

    .service-overlay {
        top: 10px !important;
        right: 10px !important;
        gap: 4px !important;
    }

    .service-flip-back {
        padding: 24px 20px !important;
    }

    .service-flip-back h3 {
        font-size: 20px !important;
        margin-bottom: 8px !important;
    }

    .service-flip-back p {
        font-size: 12px !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
    }

    .flip-icon {
        font-size: 28px !important;
        margin-bottom: 10px !important;
    }

    .flip-features span {
        font-size: 11px !important;
        padding: 3px 0 !important;
    }

    .service-flip-back .btn-primary {
        padding: 10px 20px !important;
        font-size: 12px !important;
        width: 100% !important;
        text-align: center !important;
        margin-top: 12px !important;
    }

    /* GALLERY */
    #gallery {
        padding: 50px 20px !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }

    .gallery-item {
        aspect-ratio: 4/3 !important;
        border-radius: 12px !important;
    }

    .gallery-overlay span:first-child {
        font-size: 22px !important;
    }
    .gallery-overlay span:last-child {
        font-size: 11px !important;
        letter-spacing: 2px !important;
    }

    /* TESTIMONIALS */
    #testimonials {
        padding: 50px 20px !important;
    }

    .testimonial-card {
        padding: 24px 18px !important;
    }

    .testimonial-card p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    .testimonial-stars {
        font-size: 18px !important;
        letter-spacing: 4px !important;
        margin-bottom: 10px !important;
    }

    .testimonial-author strong {
        font-size: 16px !important;
    }
    .testimonial-author span {
        font-size: 11px !important;
    }

    .testimonial-controls button {
        width: 36px !important;
        height: 36px !important;
        font-size: 16px !important;
    }

    .testimonial-dots .dot {
        width: 8px !important;
        height: 8px !important;
    }
    .testimonial-dots .dot.active {
        width: 24px !important;
    }

    /* ABOUT */
    #about {
        padding: 50px 20px !important;
    }

    .about-container {
        gap: 30px !important;
        grid-template-columns: 1fr !important;
    }

    .about-image {
        height: 240px !important;
        border-radius: 14px !important;
    }

    .about-image-placeholder .placeholder-icon {
        font-size: 40px !important;
        margin-bottom: 8px !important;
    }

    .about-image-placeholder .placeholder-text {
        font-size: 20px !important;
        letter-spacing: 4px !important;
    }

    .about-image-placeholder .placeholder-sub {
        font-size: 10px !important;
        letter-spacing: 2px !important;
    }

    .about-content h2 {
        font-size: 28px !important;
        margin-bottom: 12px !important;
    }

    .about-content p {
        font-size: 14px !important;
        line-height: 1.7 !important;
        margin-bottom: 10px !important;
    }

    .about-features {
        grid-template-columns: 1fr !important;
        gap: 4px !important;
        margin: 16px 0 !important;
    }

    .about-feature {
        font-size: 13px !important;
        padding: 4px 0 !important;
    }

    .about-content .btn-primary {
        width: 100% !important;
        text-align: center !important;
        padding: 12px 24px !important;
        font-size: 13px !important;
    }

    /* CONTACT */
    #contact {
        padding: 50px 20px !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        margin: 0 auto 20px !important;
    }

    .contact-card {
        padding: 24px 16px !important;
        border-radius: 14px !important;
    }

    .contact-card h3 {
        font-size: 18px !important;
    }

    .contact-card p {
        font-size: 14px !important;
    }

    .contact-icon {
        font-size: 28px !important;
        margin-bottom: 8px !important;
    }

    .whatsapp-float {
        padding: 14px 24px !important;
        font-size: 14px !important;
        width: 100% !important;
        justify-content: center !important;
    }

    .contact-whatsapp {
        margin-top: 16px !important;
    }

    /* FOOTER */
    footer {
        padding: 40px 20px 16px !important;
    }

    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        padding-bottom: 24px !important;
        text-align: center !important;
    }

    .footer-brand .footer-logo {
        font-size: 28px !important;
    }
    .footer-brand h3 {
        font-size: 18px !important;
    }
    .footer-brand p {
        font-size: 12px !important;
    }

    .footer-links {
        align-items: center !important;
    }
    .footer-links a {
        font-size: 12px !important;
    }

    .footer-social {
        justify-content: center !important;
    }
    .social-link {
        width: 38px !important;
        height: 38px !important;
        font-size: 16px !important;
    }

    .footer-bottom p {
        font-size: 11px !important;
    }

    /* GALLERY MODAL */
    #galleryModal {
        padding: 20px !important;
    }
    #galleryModal img {
        max-width: 95% !important;
        max-height: 75% !important;
    }
    .gallery-close {
        top: 20px !important;
        right: 24px !important;
        font-size: 24px !important;
    }

    /* BACK TO TOP */
    #back-to-top {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
        bottom: 16px !important;
        right: 16px !important;
    }

    /* HIDE CUSTOM CURSOR ON MOBILE */
    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }
    body {
        cursor: auto !important;
    }
    * {
        cursor: auto !important;
    }

    /* HIDE DECORATIVE ELEMENTS ON MOBILE */
    .floating-element {
        display: none !important;
    }
    .parallax-element {
        display: none !important;
    }
    .shape {
        display: none !important;
    }
    #mouseTrail {
        display: none !important;
    }
}

/* ---------- TABLET (481px - 768px) ---------- */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-title {
        font-size: 42px !important;
    }

    .service-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
    }

    .premium-card {
        height: 400px !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .about-container {
        gap: 30px !important;
    }

    .about-image {
        height: 260px !important;
    }

    .about-features {
        grid-template-columns: 1fr 1fr !important;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr !important;
        text-align: left !important;
    }

    .footer-links {
        align-items: flex-start !important;
    }

    .footer-social {
        justify-content: flex-start !important;
    }
}

/* ---------- VERY SMALL PHONES ---------- */
@media (max-width: 380px) {
    .hero-title {
        font-size: 28px !important;
    }

    .hero-typing {
        font-size: 13px !important;
    }

    .premium-card {
        height: 340px !important;
        max-height: 350px !important;
    }

    .service-image {
        height: 140px !important;
    }

    .service-content h3 {
        font-size: 16px !important;
    }

    .service-content p {
        font-size: 12px !important;
    }

    .price {
        font-size: 16px !important;
    }

    .btn-book {
        font-size: 10px !important;
        padding: 4px 12px !important;
    }

    .section-header h2 {
        font-size: 24px !important;
    }

    .about-content h2 {
        font-size: 24px !important;
    }

    .category-title {
        font-size: 17px !important;
    }
}
/* ========================================
   FEATURED PRODUCTS ON HOMEPAGE
   ======================================== */

#featured-products {
    padding: 80px 40px 60px;
    background: #ffffff;
}

#featured-products .section-header {
    margin-bottom: 30px;
}

/* Homepage product cards - match shop style */
#featured-products .product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.04);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

#featured-products .product-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

#featured-products .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.08);
}

#featured-products .product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f8f3ee;
}

#featured-products .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

#featured-products .product-card:hover .product-image img {
    transform: scale(1.05);
}

#featured-products .product-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 14px;
    background: rgba(26, 15, 10, 0.7);
    backdrop-filter: blur(10px);
    color: #faf6f2;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#featured-products .product-info {
    padding: 18px 20px 22px;
}

#featured-products .product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 400;
    color: #2c1810;
    margin-bottom: 4px;
}

#featured-products .product-info p {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 14px;
}

#featured-products .product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#featured-products .product-price {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #2c1810;
}

#featured-products .add-to-cart {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: #2c1810;
    color: #faf6f2;
    border: none;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

#featured-products .add-to-cart:hover {
    background: #d4a574;
    color: #2c1810;
    transform: translateX(3px);
}

#featured-products .add-to-cart .cart-icon {
    font-size: 16px;
    font-weight: 600;
}

/* Filters on homepage */
#featured-products .shop-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#featured-products .filter-btn {
    padding: 10px 30px;
    background: transparent;
    border: none;
    border-radius: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #2c1810;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
}

#featured-products .filter-btn:hover {
    color: #d4a574;
    transform: translateY(-2px);
}

#featured-products .filter-btn.active {
    background: linear-gradient(135deg, #d4a574, #c4956a);
    color: #2c1810;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.3);
    font-weight: 600;
}

/* Products grid on homepage */
#featured-products .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* No products */
#featured-products .no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    font-size: 16px;
    color: #999;
}

/* View All button */
.view-all-wrap {
    text-align: center;
    margin-top: 40px;
}

.view-all-wrap .btn-primary {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #d4a574, #c4956a);
    color: #2c1810;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.view-all-wrap .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    #featured-products .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    #featured-products {
        padding: 50px 20px 40px;
    }
    
    #featured-products .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    #featured-products .product-image {
        height: 170px;
    }
    
    #featured-products .product-info h3 {
        font-size: 16px;
    }
    
    #featured-products .product-price {
        font-size: 17px;
    }
    
    #featured-products .add-to-cart {
        padding: 6px 14px;
        font-size: 11px;
    }
    
    #featured-products .shop-filters {
        border-radius: 30px;
        padding: 8px;
        gap: 6px;
    }
    
    #featured-products .filter-btn {
        padding: 8px 16px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    #featured-products .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    #featured-products .product-image {
        height: 140px;
    }
    
    #featured-products .product-info {
        padding: 12px 14px 16px;
    }
    
    #featured-products .product-info h3 {
        font-size: 14px;
    }
    
    #featured-products .product-info p {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    #featured-products .product-price {
        font-size: 15px;
    }
    
    #featured-products .add-to-cart {
        padding: 5px 12px;
        font-size: 10px;
    }
    
    #featured-products .add-to-cart .cart-icon {
        font-size: 13px;
    }
    
    #featured-products .filter-btn {
        padding: 6px 12px;
        font-size: 10px;
    }
    
    #featured-products .shop-filters {
        gap: 4px;
        padding: 6px;
    }
}
/* ========================================
   FEATURED PRODUCTS ON HOMEPAGE
   ======================================== */

#featured-products {
    padding: 80px 40px 60px;
    background: #ffffff;
}

#featured-products .section-header {
    margin-bottom: 30px;
}

/* Homepage product cards */
#featured-products .product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.04);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

#featured-products .product-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

#featured-products .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.08);
}

#featured-products .product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f8f3ee;
}

#featured-products .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

#featured-products .product-card:hover .product-image img {
    transform: scale(1.05);
}

#featured-products .product-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 14px;
    background: rgba(26, 15, 10, 0.7);
    backdrop-filter: blur(10px);
    color: #faf6f2;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#featured-products .product-info {
    padding: 18px 20px 22px;
}

#featured-products .product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 400;
    color: #2c1810;
    margin-bottom: 4px;
}

#featured-products .product-info p {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 14px;
}

#featured-products .product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#featured-products .product-price {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #2c1810;
}

#featured-products .add-to-cart {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: #2c1810;
    color: #faf6f2;
    border: none;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

#featured-products .add-to-cart:hover {
    background: #d4a574;
    color: #2c1810;
    transform: translateX(3px);
}

#featured-products .add-to-cart .cart-icon {
    font-size: 16px;
    font-weight: 600;
}

/* Filters on homepage */
#featured-products .shop-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#featured-products .filter-btn {
    padding: 10px 30px;
    background: transparent;
    border: none;
    border-radius: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #2c1810;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
}

#featured-products .filter-btn:hover {
    color: #d4a574;
    transform: translateY(-2px);
}

#featured-products .filter-btn.active {
    background: linear-gradient(135deg, #d4a574, #c4956a);
    color: #2c1810;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.3);
    font-weight: 600;
}

/* Products grid on homepage */
#featured-products .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* No products */
#featured-products .no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    font-size: 16px;
    color: #999;
}

/* View All button */
.view-all-wrap {
    text-align: center;
    margin-top: 40px;
}

.view-all-wrap .btn-primary {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #d4a574, #c4956a);
    color: #2c1810;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.view-all-wrap .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    #featured-products .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    #featured-products {
        padding: 50px 20px 40px;
    }
    
    #featured-products .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    #featured-products .product-image {
        height: 170px;
    }
    
    #featured-products .product-info h3 {
        font-size: 16px;
    }
    
    #featured-products .product-price {
        font-size: 17px;
    }
    
    #featured-products .add-to-cart {
        padding: 6px 14px;
        font-size: 11px;
    }
    
    #featured-products .shop-filters {
        border-radius: 30px;
        padding: 8px;
        gap: 6px;
    }
    
    #featured-products .filter-btn {
        padding: 8px 16px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    #featured-products .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    #featured-products .product-image {
        height: 140px;
    }
    
    #featured-products .product-info {
        padding: 12px 14px 16px;
    }
    
    #featured-products .product-info h3 {
        font-size: 14px;
    }
    
    #featured-products .product-info p {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    #featured-products .product-price {
        font-size: 15px;
    }
    
    #featured-products .add-to-cart {
        padding: 5px 12px;
        font-size: 10px;
    }
    
    #featured-products .add-to-cart .cart-icon {
        font-size: 13px;
    }
    
    #featured-products .filter-btn {
        padding: 6px 12px;
        font-size: 10px;
    }
    
    #featured-products .shop-filters {
        gap: 4px;
        padding: 6px;
    }
}
/* ========================================
   SERVICES - SHOP STYLE LAYOUT
   ======================================== */

/* Filters */
.services-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-filters .filter-btn {
    padding: 10px 30px;
    background: transparent;
    border: none;
    border-radius: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #2c1810;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
}

.services-filters .filter-btn:hover {
    color: #d4a574;
    transform: translateY(-2px);
}

.services-filters .filter-btn.active {
    background: linear-gradient(135deg, #d4a574, #c4956a);
    color: #2c1810;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.3);
    font-weight: 600;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Card */
.service-card-v2 {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.04);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card-v2.revealed {
    opacity: 1;
    transform: translateY(0);
}

.service-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.08);
}

.service-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f8f3ee;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-v2:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-duration {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 14px;
    background: rgba(26, 15, 10, 0.7);
    backdrop-filter: blur(10px);
    color: #faf6f2;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.service-card-info {
    padding: 18px 20px 22px;
}

.service-card-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: #2c1810;
    margin-bottom: 4px;
}

.service-card-info p {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 14px;
}

.service-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-card-price {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #2c1810;
}

.service-card-btn {
    padding: 8px 20px;
    background: #2c1810;
    color: #faf6f2;
    border: none;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card-btn:hover {
    background: #d4a574;
    color: #2c1810;
    transform: translateX(3px);
}

/* No services */
.no-services {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    font-size: 16px;
    color: #999;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .service-card-image {
        height: 170px;
    }
    
    .service-card-info h3 {
        font-size: 17px;
    }
    
    .service-card-price {
        font-size: 17px;
    }
    
    .service-card-btn {
        padding: 6px 14px;
        font-size: 11px;
    }
    
    .services-filters {
        border-radius: 30px;
        padding: 8px;
        gap: 6px;
    }
    
    .services-filters .filter-btn {
        padding: 8px 16px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .service-card-image {
        height: 140px;
    }
    
    .service-card-info {
        padding: 12px 14px 16px;
    }
    
    .service-card-info h3 {
        font-size: 15px;
    }
    
    .service-card-info p {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    .service-card-price {
        font-size: 15px;
    }
    
    .service-card-btn {
        padding: 5px 12px;
        font-size: 10px;
    }
    
    .services-filters .filter-btn {
        padding: 6px 12px;
        font-size: 10px;
    }
    
    .services-filters {
        gap: 4px;
        padding: 6px;
    }
}
/* ========================================
   SERVICES - SHOP STYLE WITH 3D FLIP
   ======================================== */

/* Filters */
.services-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-filters .filter-btn {
    padding: 10px 30px;
    background: transparent;
    border: none;
    border-radius: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #2c1810;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
}

.services-filters .filter-btn:hover {
    color: #d4a574;
    transform: translateY(-2px);
}

.services-filters .filter-btn.active {
    background: linear-gradient(135deg, #d4a574, #c4956a);
    color: #2c1810;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.3);
    font-weight: 600;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Card with 3D Flip */
.service-card-v2 {
    perspective: 1000px;
    height: 460px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.service-card-v2.revealed {
    opacity: 1;
    transform: translateY(0);
}

.service-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
}

.service-card-v2:hover .service-flip-inner {
    transform: rotateY(180deg);
}

.service-flip-front,
.service-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.06);
}

.service-flip-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, #2c1810, #4a2c1a);
    color: #faf6f2;
}

.flip-icon {
    font-size: 40px;
    color: #d4a574;
    margin-bottom: 16px;
}

.service-flip-back h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #faf6f2;
}

.service-flip-back p {
    font-size: 14px;
    color: rgba(250, 246, 242, 0.6);
    line-height: 1.8;
    margin-bottom: 20px;
}

.flip-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.flip-features span {
    font-size: 13px;
    color: rgba(250, 246, 242, 0.5);
    letter-spacing: 1px;
}

.service-flip-back .btn-primary {
    padding: 12px 30px !important;
    font-size: 13px !important;
    width: auto !important;
    margin-top: 20px !important;
    background: linear-gradient(135deg, #d4a574, #c4956a) !important;
    color: #2c1810 !important;
}

.service-flip-back .btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3) !important;
}

/* Front Card */
.service-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f8f3ee;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-v2:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-duration {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 14px;
    background: rgba(26, 15, 10, 0.7);
    backdrop-filter: blur(10px);
    color: #faf6f2;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.service-card-category {
    display: inline-block;
    font-size: 10px;
    color: #d4a574;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.service-card-info {
    padding: 18px 20px 22px;
}

.service-card-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: #2c1810;
    margin-bottom: 4px;
}

.service-card-info p {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 14px;
}

.service-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-card-price {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #2c1810;
}

.service-card-btn {
    padding: 8px 20px;
    background: #2c1810;
    color: #faf6f2;
    border: none;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card-btn:hover {
    background: #d4a574;
    color: #2c1810;
    transform: translateX(3px);
}

/* No services */
.no-services {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    font-size: 16px;
    color: #999;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .service-card-v2 {
        height: 440px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .service-card-v2 {
        height: 400px;
    }
    .service-card-image {
        height: 170px;
    }
    .service-card-info h3 {
        font-size: 17px;
    }
    .service-card-price {
        font-size: 17px;
    }
    .service-card-btn {
        padding: 6px 14px;
        font-size: 11px;
    }
    .services-filters {
        border-radius: 30px;
        padding: 8px;
        gap: 6px;
    }
    .services-filters .filter-btn {
        padding: 8px 16px;
        font-size: 11px;
    }
    .service-flip-back {
        padding: 24px 20px;
    }
    .service-flip-back h3 {
        font-size: 22px;
    }
    .flip-icon {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .service-card-v2 {
        height: 360px;
    }
    .service-card-image {
        height: 140px;
    }
    .service-card-info {
        padding: 12px 14px 16px;
    }
    .service-card-info h3 {
        font-size: 15px;
    }
    .service-card-info p {
        font-size: 11px;
        margin-bottom: 10px;
    }
    .service-card-price {
        font-size: 15px;
    }
    .service-card-btn {
        padding: 5px 12px;
        font-size: 10px;
    }
    .services-filters .filter-btn {
        padding: 6px 12px;
        font-size: 10px;
    }
    .services-filters {
        gap: 4px;
        padding: 6px;
    }
    .service-flip-back {
        padding: 18px 14px;
    }
    .service-flip-back h3 {
        font-size: 18px;
    }
    .service-flip-back p {
        font-size: 12px;
    }
    .flip-icon {
        font-size: 22px;
    }
    .flip-features span {
        font-size: 11px;
    }
}
/* ---------- GOOGLE MAPS ---------- */
.map-container {
    max-width: 1200px;
    margin: 0 auto 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.06);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: none;
}

.map-direction-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    background: transparent;
    color: #d4a574;
    text-decoration: none;
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.map-direction-btn:hover {
    background: #d4a574;
    color: #2c1810;
    border-color: #d4a574;
    transform: translateX(4px);
}

/* ---------- RESPONSIVE MAP ---------- */
@media (max-width: 768px) {
    .map-container iframe {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .map-container iframe {
        height: 180px;
    }
}
/* ========================================
   POLISHED ADDITIONS - FIXES & IMPROVEMENTS
   ======================================== */

/* ---------- BETTER NAVIGATION ACTIVE STATE ---------- */
.nav-link.active {
    color: #d4a574 !important;
}

.nav-link.active::after {
    width: 100% !important;
}

/* ---------- IMPROVED BUTTON TRANSITIONS ---------- */
.btn-primary,
.btn-secondary,
.nav-cta,
.service-card-btn,
.add-to-cart,
.whatsapp-float {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- BETTER FOCUS STATES FOR ACCESSIBILITY ---------- */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #d4a574;
    outline-offset: 2px;
}

/* ---------- SMOOTHER SCROLL BEHAVIOR ---------- */
html {
    scroll-behavior: smooth;
}

/* ---------- FIX FOR MOBILE TAP HIGHLIGHTS ---------- */
* {
    -webkit-tap-highlight-color: transparent;
}

/* ---------- BETTER IMAGE LOADING ---------- */
img {
    background: #f8f3ee;
}

/* ---------- FIX FOR STICKY HEADER ON MOBILE ---------- */
@media (max-width: 768px) {
    #main-header.scrolled {
        background: rgba(26, 15, 10, 0.98) !important;
    }
    
    /* Better touch targets */
    .nav-link,
    .nav-cta {
        padding: 10px 0 !important;
        font-size: 15px !important;
    }
    
    /* Fix for hero buttons on mobile */
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        font-size: 14px !important;
        padding: 14px 20px !important;
    }
}

/* ---------- FIX FOR GALLERY ON TABLET ---------- */
@media (min-width: 481px) and (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* ---------- FIX FOR CONTACT CARDS ON MOBILE ---------- */
@media (max-width: 480px) {
    .contact-card {
        padding: 20px 16px !important;
    }
    .contact-card h3 {
        font-size: 18px !important;
    }
    .contact-card p {
        font-size: 14px !important;
    }
    .contact-icon {
        font-size: 28px !important;
    }
}

/* ---------- FIX FOR MAP ON MOBILE ---------- */
@media (max-width: 768px) {
    .map-container iframe {
        height: 200px !important;
    }
}

@media (max-width: 480px) {
    .map-container iframe {
        height: 180px !important;
    }
}

/* ---------- FIX FOR FOOTER LINKS ---------- */
.footer-links a {
    transition: color 0.3s;
}

/* ---------- BETTER LOADER TRANSITION ---------- */
#loader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ---------- UTILITY CLASSES ---------- */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* ---------- FIX FOR CONFETTI ON MOBILE ---------- */
@media (max-width: 480px) {
    .confetti-piece {
        display: none;
    }
}

/* ---------- SMOOTH CARD REVEAL ---------- */
.service-card-v2.revealed,
.product-card.revealed,
.gallery-item.revealed,
.contact-card.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ---------- FIX FOR WHATSAPP FLOAT ON MOBILE ---------- */
@media (max-width: 480px) {
    .whatsapp-float {
        font-size: 14px !important;
        padding: 12px 20px !important;
    }
}
