/* =========================================
   SALON ÉLÉGANCE - COMPLETE STYLESHEET
   ========================================= */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #b8860b;
    --primary-light: #d4a843;
    --primary-dark: #8b6508;
    --secondary: #1a1a2e;
    --accent: #c9a96e;
    --rose: #f4e1e6;
    --rose-dark: #e8c4cc;
    --cream: #fdf8f0;
    --white: #ffffff;
    --dark: #2d2d2d;
    --gray: #6b6b6b;
    --light-gray: #f5f5f5;
    --gradient-gold: linear-gradient(135deg, #b8860b, #d4a843, #b8860b);
    --gradient-dark: linear-gradient(135deg, #1a1a2e, #16213e);
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; }
.text-center { text-align: center; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* ===== PRELOADER ===== */
.preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--secondary);
    display: flex; align-items: center; justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-content { text-align: center; }
.preloader-content .brand {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 30px;
}
.spinner {
    width: 40px; height: 40px; margin: 0 auto;
    border: 3px solid rgba(184, 134, 11, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed; bottom: 30px; right: 30px;
    display: flex; flex-direction: column; gap: 12px;
    z-index: 9998;
}
.floating-btn {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
    animation: floatPulse 2s ease-in-out infinite;
}
.floating-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(0,0,0,0.4);
}
.floating-btn.whatsapp { background: #25d366; }
.floating-btn.phone { background: var(--primary); }
@keyframes floatPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 998;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(26, 26, 46, 0.97);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    backdrop-filter: blur(20px);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
}
.logo-icon {
    width: 42px; height: 42px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1rem;
}
.logo-text {
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    color: var(--primary);
}
.nav-links {
    display: flex; align-items: center; gap: 5px;
}
.nav-links a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem; font-weight: 500;
    padding: 10px 18px;
    border-radius: 50px;
    transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: rgba(184, 134, 11, 0.1);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; left: 0;
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    opacity: 0; visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px;
    z-index: 1001;
}
.dropdown:hover .dropdown-menu {
    opacity: 1; visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: flex; align-items: center; gap: 10px;
    color: var(--dark) !important;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.88rem;
}
.dropdown-menu a:hover {
    background: var(--cream) !important;
    color: var(--primary) !important;
}
.dropdown-menu a i { color: var(--primary); width: 20px; text-align: center; }

/* Hamburger */
.hamburger {
    display: none; cursor: pointer;
    width: 30px; height: 22px;
    position: relative; z-index: 1002;
}
.hamburger span {
    display: block; width: 100%; height: 2px;
    background: white; border-radius: 2px;
    position: absolute; left: 0;
    transition: var(--transition);
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }
.hamburger.active span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative; height: 100vh; min-height: 700px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 8s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26,26,46,0.85) 0%,
        rgba(26,26,46,0.6) 50%,
        rgba(26,26,46,0.75) 100%
    );
}
.hero-content {
    position: relative; z-index: 10;
    text-align: center; color: white;
    max-width: 800px; padding: 0 20px;
}
.hero-badge {
    display: inline-block;
    font-size: 0.85rem; letter-spacing: 3px;
    color: var(--primary-light);
    margin-bottom: 20px;
    text-transform: uppercase;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem; line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.3s both;
}
.hero-title .script {
    font-family: 'Great Vibes', cursive;
    color: var(--primary-light);
    display: block; font-size: 3.5rem;
}
.hero-subtitle {
    font-size: 1.15rem; font-weight: 300;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.6s both;
}
.hero-buttons {
    display: flex; gap: 15px;
    justify-content: center; flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s both;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem; font-weight: 600;
    cursor: pointer; border: 2px solid transparent;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-primary {
    background: var(--gradient-gold);
    color: white; border-color: var(--primary);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184,134,11,0.4);
}
.btn-outline {
    background: transparent;
    color: white; border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: white; color: var(--secondary);
    transform: translateY(-3px);
}
.btn-dark {
    background: var(--secondary);
    color: white; border-color: var(--secondary);
}
.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26,26,46,0.4);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute; bottom: 30px;
    left: 50%; transform: translateX(-50%);
    text-align: center; color: rgba(255,255,255,0.6);
    font-size: 0.75rem; z-index: 10;
}
.scroll-mouse {
    width: 24px; height: 38px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 14px; margin: 0 auto 8px;
    position: relative;
}
.scroll-mouse::after {
    content: '';
    width: 3px; height: 8px;
    background: var(--primary);
    border-radius: 3px;
    position: absolute; left: 50%; top: 6px;
    transform: translateX(-50%);
    animation: scrollDown 1.5s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1; transform: translateY(0);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(184,134,11,0.1), rgba(184,134,11,0.05));
    color: var(--primary);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    border: 1px solid rgba(184,134,11,0.2);
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 15px;
}
.section-title span { color: var(--primary); }
.section-line {
    width: 60px; height: 3px;
    background: var(--gradient-gold);
    margin: 0 auto 20px;
    border-radius: 3px;
}
.section-desc {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ===== ABOUT ===== */
.about { background: var(--cream); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%; height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.about-img-main:hover img { transform: scale(1.05); }
.about-img-secondary {
    position: absolute; bottom: -40px; right: -40px;
    width: 200px; height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 5px solid white;
    box-shadow: var(--shadow);
}
.about-img-secondary img {
    width: 100%; height: 100%; object-fit: cover;
}
.about-experience {
    position: absolute; top: -20px; left: -20px;
    background: var(--gradient-gold);
    color: white;
    padding: 20px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow);
}
.about-experience .number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; font-weight: 700;
    display: block;
}
.about-experience .text {
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 1px;
}
.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.3;
}
.about-content h2 span { color: var(--primary); }
.about-content p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}
.about-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0 30px;
}
.about-feature {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9rem; font-weight: 500;
}
.about-feature i { color: var(--primary); font-size: 1.1rem; }

/* ===== SERVICES OVERVIEW ===== */
.services-overview { background: white; }
.services-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.service-card-big {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 450px;
    display: block;
    box-shadow: var(--shadow);
}
.service-card-big img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.service-card-big:hover img { transform: scale(1.1); }
.card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(26,26,46,0.9) 0%, rgba(26,26,46,0.3) 60%, transparent 100%);
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: white;
    transition: var(--transition);
}
.card-icon-circle {
    width: 60px; height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: white;
    margin-bottom: 20px;
}
.card-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}
.card-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 0.92rem;
    margin-bottom: 15px;
}
.card-link {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--transition);
}
.service-card-big:hover .card-link { gap: 14px; }

/* ===== ICONS BAR ===== */
.icons-bar {
    background: var(--secondary);
    padding: 60px 0;
}
.icons-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}
.icon-item { text-align: center; color: white; }
.icon-circle {
    width: 80px; height: 80px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 auto 15px;
    transition: var(--transition);
}
.icon-item:hover .icon-circle {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}
.icon-item h4 {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* ===== GALLERY ===== */
.gallery { background: var(--light-gray); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-hover {
    position: absolute; inset: 0;
    background: rgba(184,134,11,0.6);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: white;
    opacity: 0; transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-hover { opacity: 1; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--cream); }
.testimonials-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.testimonial-card {
    background: white;
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--primary);
    line-height: 1;
    opacity: 0.3;
    margin-bottom: -10px;
}
.testimonial-card p {
    color: var(--gray);
    font-size: 0.92rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}
.testimonial-author {
    display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
    width: 45px; height: 45px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}
.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary);
}
.testimonial-stars {
    color: var(--primary);
    font-size: 0.75rem;
    margin-top: 2px;
}
.testimonial-stars i { margin-right: 2px; }

/* ===== CTA BANNER ===== */
.cta-banner {
    background:
        linear-gradient(135deg, rgba(26,26,46,0.92), rgba(26,26,46,0.85)),
        url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920&q=80') center/cover;
    padding: 80px 0;
    text-align: center;
}
.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: white;
    margin-bottom: 15px;
}
.cta-content h2 span { color: var(--primary-light); }
.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}
.cta-buttons {
    display: flex; gap: 15px;
    justify-content: center; flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact { background: white; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.contact-info {
    display: flex; flex-direction: column;
    gap: 20px;
}
.contact-card {
    display: flex; align-items: flex-start; gap: 20px;
    padding: 25px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.contact-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}
.contact-card-icon {
    width: 50px; height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-card h4 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 5px;
}
.contact-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}
.contact-card a {
    color: var(--gray);
    transition: var(--transition);
}
.contact-card a:hover { color: var(--primary); }

.social-links {
    display: flex; gap: 12px;
    margin-top: 10px;
    padding: 0 25px;
}
.social-link {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}
.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    box-shadow: var(--shadow);
}
.map-placeholder { height: 100%; min-height: 400px; }

/* ===== PAGE BANNER (Service Pages) ===== */
.page-banner {
    position: relative;
    height: 450px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.page-banner > img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.page-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.88), rgba(26,26,46,0.75));
}
.page-banner-content {
    position: relative; z-index: 10;
    text-align: center; color: white;
}
.page-banner-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 10px;
}
.page-banner-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}
.breadcrumb {
    display: flex; align-items: center;
    gap: 10px; justify-content: center;
    font-size: 0.9rem;
}
.breadcrumb a { color: var(--primary-light); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,0.6); }

/* ===== PRICE CATEGORIES (Service Pages) ===== */
.price-category {
    margin-bottom: 40px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(184,134,11,0.1);
}
.price-category-header {
    display: flex; align-items: center; gap: 20px;
    padding: 30px 35px;
    background: linear-gradient(135deg, var(--cream), white);
    border-bottom: 2px solid rgba(184,134,11,0.1);
}
.price-category-icon {
    width: 60px; height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.3rem;
    flex-shrink: 0;
}
.price-category-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--secondary);
}
.price-category-header p {
    font-size: 0.88rem;
    color: var(--gray);
    margin-top: 3px;
}
.price-list { padding: 10px 35px 20px; }
.price-row {
    display: flex;
    align-items: baseline;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    gap: 10px;
    transition: var(--transition);
}
.price-row:last-child { border-bottom: none; }
.price-row:hover {
    background: rgba(184,134,11,0.03);
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 -10px;
    border-radius: 8px;
}
.service-name {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
    white-space: nowrap;
}
.service-dots {
    flex: 1;
    border-bottom: 2px dotted rgba(184,134,11,0.3);
    margin: 0 5px;
    min-width: 30px;
    align-self: center;
    margin-bottom: 4px;
}
.service-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.05rem;
    white-space: nowrap;
}

.price-note {
    display: flex; align-items: flex-start; gap: 15px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(184,134,11,0.08), rgba(184,134,11,0.03));
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary);
    margin-top: 30px;
}
.price-note i {
    color: var(--primary);
    font-size: 1.3rem;
    margin-top: 3px;
}
.price-note p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary);
    color: white;
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.footer-logo .logo-text {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: var(--primary-light);
}
.footer-logo .logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}
.footer-col p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col ul a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-contact i {
    color: var(--primary);
    margin-top: 4px;
    width: 16px;
    text-align: center;
}
.footer .social-links {
    padding: 0;
    margin-top: 0;
}
.footer .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    font-size: 0.9rem;
}
.footer .social-link:hover {
    background: var(--primary);
}
.footer-bottom {
    padding: 25px 0;
    text-align: center;
    margin-top: 0;
}
.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s ease;
}
.lightbox.active img {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.lightbox-close:hover {
    background: var(--primary);
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }

a {
    text-decoration: none;
    color: inherit;
}
ul { list-style: none; }

.section {
    padding: 100px 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
    /* Nav */
    .hamburger { display: block; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 20px 20px;
        gap: 0;
        z-index: 999;
        transition: right 0.4s ease;
        overflow-y: auto;
    }
    .nav-links.open {
        right: 0;
    }
    .nav-links a {
        padding: 14px 20px;
        border-radius: 10px;
        font-size: 1rem;
        display: block;
    }

    /* Dropdown mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        border-radius: 10px;
        margin: 5px 0;
        display: none;
    }
    .dropdown.active .dropdown-menu {
        display: block;
    }
    .dropdown-menu a {
        color: rgba(255,255,255,0.85) !important;
    }
    .dropdown-menu a:hover {
        background: rgba(184,134,11,0.15) !important;
        color: var(--primary-light) !important;
    }

    /* Hero */
    .hero-title {
        font-size: 3rem;
    }
    .hero-title .script {
        font-size: 2.5rem;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-img-secondary {
        right: 20px;
        bottom: -20px;
        width: 150px;
        height: 150px;
    }
    .about-experience {
        left: auto;
        right: 20px;
        top: -15px;
    }

    /* Services */
    .services-cards-grid {
        grid-template-columns: 1fr;
    }
    .service-card-big {
        height: 350px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Page Banner */
    .page-banner {
        height: 350px;
    }
    .page-banner-content h1 {
        font-size: 2.5rem;
    }

    /* Icons bar */
    .icons-grid {
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .hero {
        min-height: 600px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-title .script {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 70px 0;
    }
    .section-title {
        font-size: 2rem;
    }

    /* About */
    .about-features {
        grid-template-columns: 1fr;
    }
    .about-img-main img {
        height: 300px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    /* Icons */
    .icons-grid {
        gap: 20px;
    }
    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    /* Price rows */
    .price-category-header {
        padding: 20px;
        gap: 15px;
    }
    .price-category-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    .price-category-header h3 {
        font-size: 1.2rem;
    }
    .price-list {
        padding: 10px 20px 15px;
    }
    .price-row {
        padding: 12px 0;
    }
    .service-name {
        font-size: 0.85rem;
        white-space: normal;
    }
    .service-price {
        font-size: 0.95rem;
    }

    /* Page banner */
    .page-banner {
        height: 300px;
    }
    .page-banner-content h1 {
        font-size: 2rem;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 2rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    /* Footer */
    .footer {
        padding: 60px 0 0;
    }

    /* Testimonials */
    .testimonials-track {
        grid-template-columns: 1fr;
    }

    /* Floating Buttons */
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--secondary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.preloader-content {
    text-align: center;
}
.preloader .brand {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 30px;
}
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(184,134,11,0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light-gray);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

