/* ============================================
   Odile Belle Salon & Spa - Main Stylesheet
   Version: 3.0 - Final Clean
   ============================================ */

:root {
    --brown: #5C3A2E;
    --brown-dark: #3E2520;
    --brown-light: #7A5040;
    --peach: #F5E3D8;
    --peach-light: #FDF6F2;
    --peach-dark: #E8CFC0;
    --white: #FFFFFF;
    --gold: #C9A66B;
    --gold-dark: #B89350;
    --gold-light: #DCC08A;
    --sage: #A8B38B;
    --sage-dark: #8B966E;
    --sage-light: #C5CFAE;
    --text: #4A3A34;
    --text-light: #7A6A64;
    --text-muted: #A0948E;
    --danger: #C0392B;
    --success: #27AE60;
    --shadow-sm: 0 2px 12px rgba(92, 58, 46, 0.06);
    --shadow-md: 0 5px 30px rgba(92, 58, 46, 0.08);
    --shadow-lg: 0 10px 60px rgba(92, 58, 46, 0.10);
    --shadow-xl: 0 20px 80px rgba(92, 58, 46, 0.14);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Disable Image Dragging & Context Select */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

h1, h2, h3, h4, h5, h6, .display-font, .font-display {
    font-family: 'Playfair Display', serif;
    color: var(--brown);
    line-height: 1.25;
}

a { color: var(--gold-dark); transition: var(--transition); }
a:hover { color: var(--brown); }
img { max-width: 100%; height: auto; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

.skip-link {
    position: absolute; top: -100px; left: 0;
    background: var(--brown); color: white;
    padding: 8px 16px; z-index: 10000; transition: top 0.3s;
}
.skip-link:focus { top: 0; }

/* ============================================
   NAVIGATION - PREMIUM (FINAL)
   ============================================ */
.navbar {
    background: rgba(92, 58, 46, 0.92);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 10px 0;
    z-index: 1030;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(201, 166, 107, 0.08);
}

.navbar.scrolled {
    background: rgba(62, 37, 32, 0.97);
    padding: 6px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(201, 166, 107, 0.2);
}

.navbar-brand {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover { transform: scale(1.02); }

.navbar-brand img {
    height: 42px; width: auto; object-fit: contain;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 6px rgba(201, 166, 107, 0.3));
}

.navbar.scrolled .navbar-brand img { height: 36px; }

.navbar-brand .brand-text {
    font-family: 'Playfair Display', serif;
    color: #C9A66B; font-size: 1.25rem; font-weight: 700;
    letter-spacing: 0.5px; line-height: 1.2; white-space: nowrap;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand .brand-text { font-size: 1.1rem; }

.navbar-brand .brand-text small {
    display: block;
    font-family: 'Poppins', sans-serif; font-size: 0.58rem;
    font-weight: 400; letter-spacing: 2.5px; text-transform: uppercase;
    color: rgba(245, 227, 216, 0.6); margin-top: -2px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500; font-size: 0.88rem;
    padding: 8px 18px !important;
    position: relative; transition: all 0.3s ease; letter-spacing: 0.3px;
}

.nav-link::after {
    content: ''; position: absolute; bottom: 2px; left: 50%;
    width: 0; height: 2px;
    background: linear-gradient(90deg, #C9A66B, #DCC08A);
    transform: translateX(-50%);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.nav-link:hover, .nav-link.active { color: #C9A66B !important; }
.nav-link:hover::after, .nav-link.active::after { width: 60%; }

.btn-book-nav {
    background: linear-gradient(135deg, #C9A66B, #B89350) !important;
    color: white !important;
    padding: 10px 22px !important; border-radius: 50px !important;
    font-weight: 600 !important; font-size: 0.85rem !important;
    letter-spacing: 0.5px; transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(201, 166, 107, 0.25);
    border: none !important; white-space: nowrap;
    text-decoration: none !important;
    display: inline-flex; align-items: center; gap: 8px;
}

.btn-book-nav:hover {
    background: linear-gradient(135deg, #B89350, #A07B3F) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 166, 107, 0.35);
    color: white !important;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 10px; border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.navbar-toggler:hover {
    background: rgba(201, 166, 107, 0.15);
    border-color: rgba(201, 166, 107, 0.4);
}

.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.2); outline: none; }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: linear-gradient(180deg, rgba(62, 37, 32, 0.98), rgba(44, 26, 21, 0.99));
        backdrop-filter: blur(30px); border-radius: 20px;
        padding: 20px 16px; margin-top: 12px;
        border: 1px solid rgba(201, 166, 107, 0.15);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        animation: slideDown 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-15px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .nav-link { padding: 12px 20px !important; font-size: 0.95rem; border-radius: 12px; margin-bottom: 2px; }
    .nav-link:hover { background: rgba(201, 166, 107, 0.1); }
    .nav-link::after { display: none; }
    .nav-link.active { background: rgba(201, 166, 107, 0.15); color: #DCC08A !important; }
    .btn-book-nav { margin-top: 8px; width: 100%; justify-content: center; padding: 14px !important; font-size: 0.95rem !important; }
}

@media (max-width: 480px) {
    .navbar-brand img { height: 34px; }
    .navbar-brand .brand-text { font-size: 1.05rem; }
    .navbar-brand .brand-text small { font-size: 0.52rem; letter-spacing: 2px; }
    .navbar { padding: 8px 0; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    font-weight: 600; padding: 12px 28px; border-radius: 50px;
    transition: var(--transition); letter-spacing: 0.3px;
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; border: none; cursor: pointer; text-decoration: none;
}
.btn:active { transform: scale(0.97); }

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white); box-shadow: 0 4px 15px rgba(201, 166, 107, 0.3);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--brown-light));
    transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201, 166, 107, 0.4);
    color: var(--white);
}

.btn-brown { background: var(--brown); color: var(--white); box-shadow: 0 4px 15px rgba(92, 58, 46, 0.2); }
.btn-brown:hover { background: var(--brown-dark); color: var(--white); transform: translateY(-2px); }

.btn-outline-gold { border: 2px solid var(--gold); color: var(--gold-dark); background: transparent; }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

.btn-sage { background: var(--sage); color: var(--white); box-shadow: 0 4px 15px rgba(168, 179, 139, 0.25); }
.btn-sage:hover { background: var(--sage-dark); color: var(--white); transform: translateY(-2px); }

.btn-whatsapp { background: #25D366; color: white; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25); }
.btn-whatsapp:hover { background: #128C7E; color: white; transform: translateY(-2px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative; min-height: 100vh; width: 100%;
    background-size: cover; background-position: center;
    background-repeat: no-repeat; background-attachment: fixed;
    display: flex; align-items: center; overflow: hidden;
}

.hero-section::before {
    content: ''; position: absolute; top: -40%; right: -15%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(201, 166, 107, 0.12) 0%, transparent 70%);
    animation: floatSlow 10s ease-in-out infinite; pointer-events: none;
}

.hero-section::after {
    content: ''; position: absolute; bottom: -25%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(168, 179, 139, 0.1) 0%, transparent 70%);
    animation: floatSlow 8s ease-in-out infinite reverse; pointer-events: none;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, -25px) scale(1.04); }
    66% { transform: translate(-15px, 15px) scale(0.96); }
}

.hero-content-wrapper { position: relative; z-index: 3; padding: 80px 0; }

.hero-subtitle-badge {
    display: inline-block; padding: 10px 24px;
    background: rgba(245, 227, 216, 0.12); backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 227, 216, 0.25); border-radius: 50px;
    color: var(--peach); font-size: 0.85rem; letter-spacing: 3px;
    text-transform: uppercase; margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-family: 'Playfair Display', serif; font-size: 4rem;
    font-weight: 700; color: var(--white); line-height: 1.15;
    margin-bottom: 16px; text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-title .gold-text { color: var(--gold); position: relative; }
.hero-title .gold-text::after {
    content: ''; position: absolute; bottom: 5px; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--sage), transparent);
}

.hero-tagline {
    font-family: 'Playfair Display', serif; font-size: 1.5rem;
    font-style: italic; color: var(--peach); margin-bottom: 16px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
    font-size: 1.1rem; color: rgba(255, 255, 255, 0.8);
    max-width: 500px; margin-bottom: 32px; line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.4s both; }

.btn-hero-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white); border: none; padding: 16px 36px;
    border-radius: 50px; font-weight: 600; font-size: 1rem;
    letter-spacing: 0.5px; text-decoration: none;
    transition: var(--transition); box-shadow: 0 8px 30px rgba(201, 166, 107, 0.35);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-primary:hover {
    transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201, 166, 107, 0.5);
    color: var(--white); background: linear-gradient(135deg, var(--gold-dark), var(--brown-light));
}

.btn-hero-outline {
    background: transparent; color: var(--white);
    border: 2px solid rgba(245, 227, 216, 0.5); padding: 16px 36px;
    border-radius: 50px; font-weight: 600; font-size: 1rem;
    letter-spacing: 0.5px; text-decoration: none; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px; backdrop-filter: blur(5px);
}
.btn-hero-outline:hover {
    background: rgba(245, 227, 216, 0.15); border-color: var(--peach);
    color: var(--white); transform: translateY(-3px);
}

.hero-features { display: flex; gap: 30px; margin-top: 48px; animation: fadeInUp 0.8s ease 0.5s both; }

.hero-feature-item { display: flex; align-items: center; gap: 10px; }

.hero-feature-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(245, 227, 216, 0.1); backdrop-filter: blur(5px);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.1rem;
    border: 1px solid rgba(245, 227, 216, 0.2);
}

.hero-feature-text { color: rgba(255, 255, 255, 0.9); font-size: 0.9rem; font-weight: 500; }

.scroll-indicator {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%); z-index: 3;
    animation: bounceDown 2s infinite; cursor: pointer;
}

.scroll-indicator span {
    display: block; width: 30px; height: 50px;
    border: 2px solid rgba(245, 227, 216, 0.5); border-radius: 25px; position: relative;
}

.scroll-indicator span::before {
    content: ''; position: absolute; top: 8px; left: 50%;
    width: 6px; height: 6px; background: var(--gold);
    border-radius: 50%; transform: translateX(-50%);
    animation: scrollDot 2s infinite;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scrollDot {
    0% { top: 8px; opacity: 1; }
    100% { top: 35px; opacity: 0; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section-peach { background: var(--peach-light); }
.section-white { background: var(--white); }
.section-dark { background: var(--brown); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
    border: none; border-radius: var(--radius-lg); overflow: hidden;
    background: var(--white); box-shadow: var(--shadow-md);
    transition: var(--transition); height: 100%; position: relative;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.icon-circle {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: white; font-size: 1.6rem;
}
.icon-circle-sage { background: linear-gradient(135deg, var(--sage), var(--sage-dark)); }

.promo-badge {
    position: absolute; top: 16px; right: 16px;
    background: var(--gold); color: var(--white); padding: 6px 16px;
    border-radius: 25px; font-weight: 600; font-size: 0.75rem;
    z-index: 2; animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.price { font-size: 2rem; font-weight: 700; color: var(--brown); font-family: 'Playfair Display', serif; }

/* ============================================
   TESTIMONIAL CARDS
   ============================================ */
.testimonial-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 2rem; box-shadow: var(--shadow-md);
    transition: var(--transition); height: 100%;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 1rem; }

/* ============================================
   WHATSAPP FLOAT (Desktop Only)
   ============================================ */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px;
    width: 56px; height: 56px; background: #25D366; color: white;
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    z-index: 996; text-decoration: none;
    animation: bounce 2s infinite; transition: var(--transition);
}

.whatsapp-float:hover {
    color: white; background: #128C7E; transform: scale(1.1);
    animation: none; box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-12px); }
    60% { transform: translateY(-6px); }
}

/* ============================================
   FLOATING ACTION BUTTONS (Mobile Only)
   ============================================ */
.fab-container {
    position: fixed; bottom: 24px; right: 24px; z-index: 997;
}

.fab-main {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, #C9A66B, #B89350);
    color: white; border: none; border-radius: 50%;
    cursor: pointer; box-shadow: 0 4px 20px rgba(201, 166, 107, 0.4);
    font-size: 1.3rem; transition: all 0.3s ease;
    display: flex; align-items: center; justify-content: center;
}
.fab-main:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(201, 166, 107, 0.5); }
.fab-main:active { transform: scale(0.95); }

.fab-menu {
    position: absolute; bottom: 64px; right: 0;
    display: flex; flex-direction: column; align-items: flex-end;
    gap: 12px; opacity: 0; visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.fab-menu.show {
    opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}

.fab-item {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.1rem; text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease; position: relative;
}
.fab-item:hover { transform: scale(1.1); color: white; }

.fab-item span {
    position: absolute; right: 54px;
    background: rgba(0, 0, 0, 0.8); color: white;
    padding: 6px 14px; border-radius: 8px;
    font-size: 0.8rem; font-weight: 500; white-space: nowrap;
    opacity: 0; visibility: hidden; transition: all 0.3s ease; pointer-events: none;
}
.fab-item:hover span { opacity: 1; visibility: visible; }

.fab-wa { background: #25D366; }
.fab-wa:hover { background: #128C7E; }
.fab-call { background: #5C3A2E; }
.fab-call:hover { background: #3E2520; }
.fab-msg { background: #C9A66B; }
.fab-msg:hover { background: #B89350; }

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-to-top {
    position: fixed; bottom: 96px; right: 24px;
    width: 44px; height: 44px; background: var(--brown);
    color: white; border: none; border-radius: 50%;
    display: none; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 4px 15px rgba(92, 58, 46, 0.2);
    z-index: 995; transition: var(--transition);
}
.scroll-to-top:hover { background: var(--brown-dark); transform: translateY(-4px); }

/* ============================================
   WHATSAPP FLOAT & FAB - SHOW/HIDE
   ============================================ */
@media (min-width: 769px) {
    .whatsapp-float { display: flex !important; }
    .fab-container.d-md-none { display: none !important; }
    .scroll-to-top { bottom: 96px; right: 24px; }
}

@media (max-width: 768px) {
    .whatsapp-float { display: none !important; }
    .fab-container.d-md-none { display: block !important; }
    .scroll-to-top { bottom: 24px; left: 16px; right: auto; width: 48px; height: 48px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--brown-dark) 0%, #2C1A15 100%);
    color: rgba(245, 227, 216, 0.88); padding: 60px 0 30px; position: relative;
}
.footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 166, 107, 0.4), rgba(168, 179, 139, 0.4), transparent);
}
.footer h4, .footer h5 { color: var(--gold); margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.footer a { color: rgba(245, 227, 216, 0.88); text-decoration: none; transition: var(--transition); }
.footer a:hover { color: var(--gold); padding-left: 4px; }
.footer ul li { margin-bottom: 10px; }
.footer ul li i { font-size: 0.7rem; color: var(--gold); }

.social-icons { display: flex; gap: 10px; }
.social-icons a {
    display: inline-flex; width: 48px; height: 48px;
    background: rgba(245, 227, 216, 0.12); border-radius: 50%;
    align-items: center; justify-content: center; font-size: 1rem;
    transition: var(--transition); color: rgba(245, 227, 216, 0.88);
}
.social-icons a:hover { background: var(--gold); color: var(--brown-dark); transform: translateY(-3px); padding-left: 0; }
.footer hr { border-color: rgba(245, 227, 216, 0.15); margin: 30px 0 20px; }

/* ============================================
   PAGE HEADERS
   ============================================ */
.page-header {
    position: relative; padding: 140px 0 80px;
    background-size: cover; background-position: center;
    background-repeat: no-repeat; display: flex;
    align-items: center; overflow: hidden;
    z-index: 1; background-color: var(--brown-dark);
}
.page-header::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg,
        rgba(62, 37, 32, 0.8) 0%, rgba(92, 58, 46, 0.5) 50%,
        rgba(62, 37, 32, 0.7) 100%);
    z-index: 1;
}
.page-header::after {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201, 166, 107, 0.1) 0%, transparent 70%);
    z-index: 1; animation: floatSlow 8s ease-in-out infinite; pointer-events: none;
}
.page-header .container { position: relative; z-index: 2; }
.page-header .badge {
    display: inline-block; padding: 10px 24px;
    background: rgba(245, 227, 216, 0.12); backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 227, 216, 0.2); border-radius: 50px;
    color: var(--peach); font-size: 0.8rem; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
}
.page-header h1 { color: var(--white); text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3); margin-bottom: 12px; }
.page-header .lead { color: rgba(245, 227, 216, 0.8) !important; max-width: 600px; margin: 0 auto; }

.page-header-wave { position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 2; pointer-events: none; }
.page-header-wave svg { display: block; width: 100%; height: auto; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 50%, var(--brown) 100%);
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 60%; height: 200%;
    background: radial-gradient(circle, rgba(201, 166, 107, 0.08) 0%, transparent 70%);
    animation: floatSlow 8s ease-in-out infinite;
}

/* ============================================
   FADE IN ANIMATION
   ============================================ */
.fade-in-section {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-section.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================
   NOTIFICATION
   ============================================ */
.notification {
    position: fixed; top: 20px; right: 20px;
    padding: 16px 20px; border-radius: var(--radius-md);
    background: white; box-shadow: var(--shadow-xl);
    z-index: 10000; display: flex; align-items: center;
    gap: 12px; font-size: 0.9rem; font-weight: 500;
    transform: translateX(120%); transition: transform 0.3s ease; max-width: 400px;
}
.notification.show { transform: translateX(0); }
.notification-success { border-left: 4px solid var(--success); color: #1a5c2a; }
.notification-error { border-left: 4px solid var(--danger); color: #8b1a1a; }
.notification-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: inherit; opacity: 0.6; padding: 0 4px; }
.notification-close:hover { opacity: 1; }

/* ============================================
   LOADING SCREEN
   ============================================ */
#loading-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #5C3A2E 0%, #3E2520 50%, #2C1A15 100%);
    z-index: 99999; display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-content { text-align: center; }

.loading-logo { width: 120px; height: 120px; margin: 0 auto 24px; animation: logoPulse 1.5s ease-in-out infinite; }
.loading-logo img {
    width: 100%; height: 100%; object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(201, 166, 107, 0.6));
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.85; }
}

.loading-brand { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: #C9A66B; letter-spacing: 2px; margin-bottom: 6px; animation: fadeInUp 0.8s ease; }
.loading-brand-sub { font-family: 'Poppins', sans-serif; font-size: 0.7rem; font-weight: 400; letter-spacing: 6px; text-transform: uppercase; color: rgba(245, 227, 216, 0.5); margin-bottom: 36px; animation: fadeInUp 0.8s ease 0.15s both; }

.loading-spinner { display: flex; gap: 8px; justify-content: center; }
.loading-dot { width: 10px; height: 10px; background: #C9A66B; border-radius: 50%; animation: dotBounce 1.2s ease-in-out infinite; }
.loading-dot:nth-child(1) { animation-delay: 0s; }
.loading-dot:nth-child(2) { animation-delay: 0.15s; }
.loading-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes dotBounce {
    0%, 80%, 100% { transform: scale(0.3); opacity: 0.2; }
    40% { transform: scale(1); opacity: 1; }
}

.loading-progress { width: 200px; height: 3px; background: rgba(201, 166, 107, 0.12); border-radius: 2px; margin: 24px auto 0; overflow: hidden; }
.loading-progress-bar { height: 100%; background: linear-gradient(90deg, #C9A66B, #DCC08A, #C9A66B); border-radius: 2px; width: 0%; animation: progressLoad 2s ease-in-out forwards; }

@keyframes progressLoad {
    0% { width: 0%; }
    30% { width: 40%; }
    70% { width: 80%; }
    100% { width: 100%; }
}

body.loading { overflow: hidden; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.stat-card {
    text-align: center; padding: 2rem; background: var(--white);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
    transition: var(--transition); border: 1px solid rgba(168, 179, 139, 0.15);
}
.stat-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: var(--gold); }
.stat-number { font-size: 3rem; font-weight: 700; color: var(--brown); font-family: 'Playfair Display', serif; }
.count-up { display: inline-block; font-variant-numeric: tabular-nums; }

.values-card {
    text-align: center; padding: 2.5rem; background: var(--white);
    border-radius: var(--radius-lg); transition: var(--transition);
    height: 100%; border: 1px solid rgba(168, 179, 139, 0.15); box-shadow: var(--shadow-sm);
}
.values-card:hover { background: linear-gradient(135deg, var(--brown), var(--brown-dark)); color: var(--white); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.values-card:hover h4, .values-card:hover p { color: var(--white); }
.values-card:hover .value-icon { background: var(--white); color: var(--brown); }

.value-icon {
    width: 80px; height: 80px; background: var(--peach-light);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; margin: 0 auto 1.5rem;
    font-size: 2rem; color: var(--brown); transition: var(--transition);
}

.timeline { position: relative; padding: 40px 0; }
.timeline::before {
    content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(180deg, transparent, var(--gold), var(--sage), transparent);
    transform: translateX(-50%);
}
.timeline-item { margin-bottom: 60px; position: relative; }
.timeline-content {
    background: var(--white); border-radius: var(--radius-md);
    padding: 2rem; box-shadow: var(--shadow-md);
    position: relative; width: 45%; border: 1px solid rgba(168, 179, 139, 0.1);
}
.timeline-item:nth-child(odd) .timeline-content { margin-left: auto; }
.timeline-dot {
    width: 20px; height: 20px; background: var(--gold);
    border-radius: 50%; position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%); z-index: 1;
    border: 3px solid var(--white); box-shadow: 0 0 0 4px var(--peach);
}

.about-image-container { width: 100%; height: 450px; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image-container img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.team-image-container { width: 180px; height: 180px; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow-md); }
.team-image-container img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.category-filter {
    cursor: pointer; padding: 10px 25px; border-radius: 50px;
    transition: var(--transition); border: 2px solid var(--peach-dark);
    background: var(--white); color: var(--text); font-weight: 500; font-size: 0.9rem;
}
.category-filter:hover, .category-filter.active { background: var(--brown); color: var(--white); border-color: var(--brown); }

.service-detail-card {
    border: 2px solid transparent; transition: var(--transition);
    border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm);
}
.service-detail-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.duration-badge { background: rgba(168, 179, 139, 0.15); color: var(--sage-dark); padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 500; }

.accordion-button { font-weight: 600; color: var(--brown); background: var(--white); }
.accordion-button:not(.collapsed) { background: var(--peach-light); color: var(--brown); box-shadow: none; }
.accordion-button:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.15); }
.accordion-body { color: var(--text-light); line-height: 1.7; }

/* Service Card with Background */
.service-card-wrapper {
    border-radius: var(--radius-lg); overflow: hidden; position: relative;
    height: 100%; min-height: 280px; box-shadow: var(--shadow-md); transition: var(--transition);
}
.service-card-wrapper:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.service-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; z-index: 0; }
.service-card-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(92, 58, 46, 0.85) 0%, rgba(62, 37, 32, 0.75) 100%);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}

.service-card-content {
    position: relative; z-index: 1; padding: 30px 24px;
    color: white; height: 100%; display: flex;
    flex-direction: column; justify-content: space-between;
}
.service-card-content .card-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.service-card-content .card-title a { color: white !important; text-decoration: none; }
.service-card-content .card-title a:hover { color: var(--gold) !important; }
.service-card-content .card-desc { color: rgba(245, 227, 216, 0.8); font-size: 0.85rem; margin-bottom: 12px; line-height: 1.5; }
.service-card-content .card-details-link { color: var(--sage-light); font-size: 0.8rem; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; margin-bottom: 12px; }
.service-card-content .card-details-link:hover { color: var(--gold); }

.service-card-meta {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 10px; padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.service-card-meta .price { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.service-card-meta .price-original { text-decoration: line-through; opacity: 0.5; font-size: 0.85rem; margin-right: 6px; }
.service-card-meta .duration-badge { background: rgba(255, 255, 255, 0.15); color: rgba(255, 255, 255, 0.9); padding: 5px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 500; backdrop-filter: blur(5px); }

.service-card-actions { display: flex; gap: 8px; margin-top: 14px; }
.service-card-actions .btn-outline-white { border: 1px solid rgba(255, 255, 255, 0.5); color: white; background: transparent; padding: 8px 16px; border-radius: 25px; font-size: 0.8rem; font-weight: 500; text-decoration: none; transition: var(--transition); }
.service-card-actions .btn-outline-white:hover { background: rgba(255, 255, 255, 0.15); border-color: white; color: white; }
.service-card-actions .btn-gold-card { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: white; padding: 8px 16px; border-radius: 25px; font-size: 0.8rem; font-weight: 600; text-decoration: none; transition: var(--transition); }
.service-card-actions .btn-gold-card:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(201, 166, 107, 0.3); color: white; }

.service-card-promo { position: absolute; top: 12px; right: 12px; z-index: 2; background: var(--gold); color: white; padding: 4px 14px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; }

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-detail-page { padding: 60px 0; background: linear-gradient(180deg, #FDF6F2 0%, #FFFFFF 100%); }
.service-detail-container { max-width: 1000px; margin: 0 auto; }

.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--text-light); text-decoration: none; font-size: 0.9rem; font-weight: 500; margin-bottom: 24px; padding: 10px 20px; background: white; border-radius: 50px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.back-link:hover { color: var(--brown); background: var(--peach); transform: translateX(-4px); }

.detail-hero { background: white; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); margin-bottom: 30px; position: relative; }
.detail-hero-top { padding: 50px 40px; position: relative; overflow: hidden; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.detail-hero-top::before, .detail-hero-top::after { display: none !important; }
.detail-hero-content { position: relative; z-index: 2; }
.detail-hero-info h1 { font-family: 'Playfair Display', serif; color: white; font-size: 2.2rem; margin-bottom: 16px; font-weight: 700; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }

.detail-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.detail-badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 500; backdrop-filter: blur(5px); }
.detail-badge.duration { background: rgba(168, 179, 139, 0.25); color: #E8F0D8; border: 1px solid rgba(168, 179, 139, 0.4); }
.detail-badge.price { background: rgba(201, 166, 107, 0.25); color: #FFE8B0; border: 1px solid rgba(201, 166, 107, 0.4); font-weight: 700; }
.detail-badge.category { background: rgba(245, 227, 216, 0.2); color: #F5E3D8; border: 1px solid rgba(245, 227, 216, 0.3); }
.detail-badge .price-original { text-decoration: line-through; opacity: 0.6; font-weight: 400; font-size: 0.8rem; }
.detail-badge .price-promo { font-size: 1.1rem; color: #FFD700; }

.promo-ribbon { position: absolute; top: 20px; right: -35px; background: linear-gradient(135deg, #FF4757, #FF6B81); color: white; padding: 8px 50px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; transform: rotate(45deg); z-index: 5; box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3); }

.detail-hero-bottom { padding: 30px 40px; background: white; }
.detail-hero-bottom p { color: var(--text); font-size: 1rem; line-height: 1.8; margin-bottom: 20px; }
.detail-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.detail-hero-cta .btn { padding: 14px 30px; font-size: 1rem; border-radius: 50px; }

.detail-section { background: white; border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-lg); margin-bottom: 24px; position: relative; overflow: hidden; }
.detail-section::before { content: ''; position: absolute; top: 0; left: 0; width: 6px; height: 60px; background: linear-gradient(180deg, var(--gold), var(--gold-dark)); border-radius: 0 8px 8px 0; margin-top: 40px; }

.detail-section-header { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 2px solid #FDF6F2; }
.detail-section-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.detail-section-icon.steps-icon { background: linear-gradient(135deg, #FFF8E1, #FFECB3); color: #B89350; }
.detail-section-icon.benefits-icon { background: linear-gradient(135deg, #E8F5E9, #C8E6C9); color: #8B966E; }
.detail-section-header h2 { font-family: 'Playfair Display', serif; color: var(--brown); font-size: 1.5rem; margin: 0; }
.detail-section-header .count-badge { background: var(--peach-light); color: var(--brown); padding: 4px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; }

.timeline-steps { position: relative; padding-left: 40px; }
.timeline-steps::before { content: ''; position: absolute; left: 23px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(180deg, var(--gold), var(--sage), var(--peach-dark)); border-radius: 1px; }
.timeline-step { position: relative; margin-bottom: 28px; padding-left: 20px; }
.timeline-step:last-child { margin-bottom: 0; }
.timeline-step::before { content: ''; position: absolute; left: -29px; top: 4px; width: 14px; height: 14px; background: white; border: 3px solid var(--gold); border-radius: 50%; z-index: 2; transition: var(--transition); }
.timeline-step:hover::before { background: var(--gold); box-shadow: 0 0 0 8px rgba(201, 166, 107, 0.15); }
.timeline-step .step-marker { position: absolute; left: -44px; top: -2px; width: 44px; height: 24px; background: linear-gradient(135deg, var(--brown), var(--brown-dark)); color: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; z-index: 3; }
.timeline-step h4 { color: var(--brown); font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; }
.timeline-step p { color: var(--text-light); font-size: 0.9rem; margin: 0; line-height: 1.6; }

.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.benefit-card { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; background: #FDF6F2; border-radius: 16px; transition: var(--transition); border: 1px solid transparent; }
.benefit-card:hover { background: white; border-color: var(--sage-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.benefit-card .benefit-icon { width: 40px; height: 40px; min-width: 40px; background: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--sage-dark); font-size: 1rem; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); }
.benefit-card .benefit-text { color: var(--text); font-size: 0.9rem; font-weight: 500; line-height: 1.5; }

.detail-cta-card { background: linear-gradient(135deg, #5C3A2E 0%, #3E2520 50%, #2C1A15 100%); border-radius: var(--radius-xl); padding: 50px 40px; text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-xl); }
.detail-cta-card::before { content: ''; position: absolute; top: -30%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(201, 166, 107, 0.1) 0%, transparent 70%); animation: floatSlow 10s ease-in-out infinite; }
.detail-cta-card .cta-content { position: relative; z-index: 2; }
.detail-cta-card h2 { font-family: 'Playfair Display', serif; color: white; font-size: 1.8rem; margin-bottom: 12px; }
.detail-cta-card p { color: rgba(245, 227, 216, 0.7); margin-bottom: 28px; font-size: 1rem; }
.detail-cta-card .btn { padding: 16px 40px; font-size: 1.1rem; }

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-filter { cursor: pointer; padding: 10px 25px; border-radius: 50px; transition: var(--transition); border: 2px solid var(--peach-dark); background: var(--white); color: var(--text); font-weight: 500; font-size: 0.9rem; }
.gallery-filter:hover, .gallery-filter.active { background: var(--brown); color: var(--white); border-color: var(--brown); }

.gallery-card { position: relative; overflow: hidden; border-radius: var(--radius-md); cursor: pointer; margin-bottom: 24px; height: 300px; box-shadow: var(--shadow-md); transition: var(--transition); }
.gallery-card:hover { box-shadow: var(--shadow-xl); }
.gallery-card img, .gallery-card video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-card:hover img, .gallery-card:hover video { transform: scale(1.08); }

.gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(92, 58, 46, 0.9)); color: white; padding: 30px 20px 20px; transform: translateY(100%); transition: transform 0.3s ease; }
.gallery-card:hover .gallery-overlay { transform: translateY(0); }
.gallery-overlay h5 { color: var(--gold); margin-bottom: 4px; }
.gallery-overlay p { color: rgba(245, 227, 216, 0.9); }

.play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; background: rgba(255, 255, 255, 0.95); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--brown); transition: var(--transition); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); cursor: pointer; z-index: 2; }
.gallery-card:hover .play-icon { background: var(--gold); color: white; transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 8px 30px rgba(201, 166, 107, 0.4); }

.lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(44, 26, 21, 0.95); z-index: 9999; justify-content: center; align-items: center; }
.lightbox.active { display: flex; }
.lightbox-content { max-width: 90%; max-height: 90vh; position: relative; }
.lightbox-content img, .lightbox-content video { max-width: 100%; max-height: 90vh; border-radius: var(--radius-md); box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5); }
.lightbox-close { position: absolute; top: -50px; right: 0; background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.3); color: white; font-size: 1.5rem; cursor: pointer; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.lightbox-close:hover { background: rgba(255, 255, 255, 0.25); transform: scale(1.1); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-wrapper { background: var(--white); border-radius: var(--radius-lg); padding: 40px 30px; box-shadow: var(--shadow-lg); height: 100%; border: 1px solid rgba(168, 179, 139, 0.1); }

.contact-info-item { display: flex; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid rgba(168, 179, 139, 0.1); transition: var(--transition); }
.contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info-item:first-child { padding-top: 0; }
.contact-info-item:hover { transform: translateX(5px); }

.icon-box { width: 56px; height: 56px; min-width: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-right: 20px; transition: var(--transition); }
.icon-box.address { background: rgba(201, 166, 107, 0.12); color: var(--gold-dark); }
.icon-box.phone { background: rgba(168, 179, 139, 0.15); color: var(--sage-dark); }
.icon-box.email { background: rgba(92, 58, 46, 0.08); color: var(--brown); }
.icon-box.clock { background: rgba(245, 227, 216, 0.5); color: var(--brown-light); }

.info-content h5 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; color: var(--brown); margin-bottom: 4px; }
.info-content p, .info-content a { color: var(--text-light); margin-bottom: 0; font-size: 0.9rem; line-height: 1.5; text-decoration: none; transition: var(--transition); }
.info-content a:hover { color: var(--gold-dark); }

.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; color: var(--text-light); font-size: 0.9rem; }
.hours-list li .day { font-weight: 500; }
.hours-list li .time { font-weight: 600; color: var(--text); }
.hours-list li .closed { color: var(--danger); font-weight: 600; }

.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn { width: 46px; height: 46px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.1rem; color: white; text-decoration: none; transition: var(--transition); position: relative; overflow: hidden; }
.social-btn::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.3); transform: translate(-50%, -50%); transition: width 0.6s, height 0.6s; }
.social-btn:hover::before { width: 200px; height: 200px; }
.social-btn:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); color: white; }
.social-btn.whatsapp { background: #25D366; }
.social-btn.phone { background: var(--brown); }
.social-btn.email-btn { background: var(--brown-light); }
.social-btn.instagram { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
.social-btn.tiktok { background: #000000; }
.social-btn.facebook { background: #1877F2; }
.social-btn.youtube { background: #FF0000; }

.form-wrapper { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid rgba(168, 179, 139, 0.1); }
.form-wrapper .form-label { font-weight: 600; color: var(--brown); margin-bottom: 6px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }
.form-wrapper .form-control { border: 2px solid rgba(168, 179, 139, 0.2); border-radius: 12px; padding: 12px 16px; font-size: 0.95rem; transition: var(--transition); background: var(--peach-light); }
.form-wrapper .form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201, 166, 107, 0.08); background: var(--white); }
.form-wrapper .input-group-text { background: var(--peach-light); border: 2px solid rgba(168, 179, 139, 0.2); border-right: none; border-radius: 12px 0 0 12px; color: var(--gold-dark); }
.form-wrapper textarea.form-control { min-height: 120px; resize: vertical; }

.btn-submit { background: linear-gradient(135deg, var(--brown), var(--brown-dark)); color: white; border: none; padding: 14px 40px; border-radius: 14px; font-weight: 600; font-size: 1rem; letter-spacing: 0.5px; transition: var(--transition); width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 6px 25px rgba(92, 58, 46, 0.2); }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(92, 58, 46, 0.3); color: white; }

.btn-whatsapp-direct { background: #25D366; color: white; border: none; padding: 14px 40px; border-radius: 14px; font-weight: 600; font-size: 1rem; transition: var(--transition); width: 100%; text-align: center; display: block; text-decoration: none; box-shadow: 0 6px 25px rgba(37, 211, 102, 0.2); }
.btn-whatsapp-direct:hover { background: #128C7E; transform: translateY(-2px); box-shadow: 0 10px 35px rgba(37, 211, 102, 0.3); color: white; }

.divider-text { display: flex; align-items: center; text-align: center; color: var(--text-light); font-size: 0.85rem; margin: 20px 0; }
.divider-text::before, .divider-text::after { content: ''; flex: 1; border-bottom: 1px solid rgba(168, 179, 139, 0.3); }
.divider-text span { padding: 0 16px; font-weight: 500; }

.map-wrapper { background: var(--white); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg); border: 1px solid rgba(168, 179, 139, 0.1); }
.map-container { border-radius: 16px; overflow: hidden; margin-bottom: 15px; }
.map-container iframe { display: block; width: 100%; height: 350px; border: 0; }

.btn-directions { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 30px; border: 2px solid var(--brown); color: var(--brown); border-radius: 12px; text-decoration: none; font-weight: 600; transition: var(--transition); width: 100%; text-align: center; }
.btn-directions:hover { background: var(--brown); color: white; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) { .hero-title { font-size: 3.2rem; } }

@media (max-width: 991px) {
    .hero-section { background-attachment: scroll; text-align: center; }
    .hero-title { font-size: 2.8rem; }
    .hero-description { margin: 0 auto 32px; }
    .hero-buttons { justify-content: center; }
    .hero-features { justify-content: center; flex-wrap: wrap; }
    .navbar-collapse { background: var(--brown); padding: 20px; border-radius: var(--radius-md); margin-top: 10px; }
    .page-header { padding: 120px 0 60px; }
}

@media (max-width: 768px) {
    .hero-section { min-height: 100vh; background-position: 65% center; }
    .hero-content-wrapper { padding: 60px 0; }
    .hero-title { font-size: 2.2rem; }
    .hero-tagline { font-size: 1.2rem; }
    .hero-description { font-size: 0.95rem; }
    .hero-subtitle-badge { font-size: 0.75rem; letter-spacing: 2px; padding: 8px 20px; }
    .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; padding: 14px 28px; font-size: 0.9rem; }
    .hero-buttons { flex-direction: column; gap: 12px; }
    .hero-features { gap: 20px; margin-top: 32px; }
    .hero-feature-item { flex-direction: column; text-align: center; gap: 6px; }
    .btn { padding: 10px 24px; font-size: 0.9rem; }
    .page-header { padding: 100px 0 40px; }
    .page-header h1 { font-size: 2rem !important; }
    
    .timeline::before { left: 20px; }
    .timeline-content { width: calc(100% - 50px); margin-left: 50px !important; }
    .timeline-dot { left: 20px; }
    .stat-number { font-size: 2.2rem; }
    .gallery-card { height: 250px; }
    .big-rating { font-size: 3.5rem; }
    .rating-overview { padding: 2rem; }
    .insta-item img { height: 180px; }
    .about-image-container { height: 300px; }
    .team-image-container { width: 150px; height: 150px; }
    .service-card-wrapper { min-height: 260px; }
    .service-card-content { padding: 24px 18px; }
    .service-card-content .card-title { font-size: 1.1rem; }
    .service-card-meta .price { font-size: 1.3rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .detail-section { padding: 24px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-tagline { font-size: 1rem; }
    .hero-features { gap: 16px; }
    .hero-feature-icon { width: 36px; height: 36px; font-size: 0.9rem; }
    .hero-feature-text { font-size: 0.8rem; }
    .gallery-card { height: 220px; }
    .gallery-filter { padding: 8px 18px; font-size: 0.8rem; }
    .loading-logo { width: 90px; height: 90px; }
    .loading-brand { font-size: 1.8rem; }
    .loading-brand-sub { font-size: 0.6rem; letter-spacing: 4px; }
    .loading-progress { width: 160px; }
}

/* Print */
@media print {
    .navbar, .whatsapp-float, .scroll-to-top, .promo-banner, .footer, .fab-container { display: none !important; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}