/* ═══════════════════════════════════════════════════════════════
   BEAUTY PARLOUR — WORLD-CLASS PREMIUM WEBSITE
   Version: 3.0 | Luxury Edition
   Author: Appetenza Technologies
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════ ROOT VARIABLES ═══════════ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}
:root {
    /* Premium Colors */
    --gold: #D4AF37;
    --gold-light: #F4E4C1;
    --gold-dark: #B8960C;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 50%, #D4AF37 100%);
    --gold-shimmer: linear-gradient(90deg, transparent 0%, rgba(244,228,193,0.4) 50%, transparent 100%);

    /* Dark Theme */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: #141414;
    --bg-card-hover: #1c1c1c;

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.45);
    --text-gold: #D4AF37;

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-gold: rgba(212, 175, 55, 0.25);
    --border-hover: rgba(212, 175, 55, 0.5);

    /* Spacing */
    --section-padding: clamp(80px, 10vw, 140px);
    --container-width: 1280px;
    --container-padding: clamp(20px, 4vw, 40px);

    /* Typography */
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --font-accent: 'Cormorant Garamond', 'Georgia', serif;

    /* Effects */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-fast: 0.3s var(--ease-out-quart);
    --transition-medium: 0.5s var(--ease-out-expo);
    --transition-slow: 0.8s var(--ease-out-expo);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.15);
    --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.2);

    /* Z-index */
    --z-cursor: 10000;
    --z-preloader: 9999;
    --z-header: 1000;
    --z-lightbox: 2000;
    --z-whatsapp: 900;
    --z-scroll-top: 800;
}

/* ═══════════ RESET & BASE ═══════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--bg-secondary);
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    width: 6px;
}

html::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

html::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

::selection {
    background: var(--gold);
    color: var(--bg-primary);
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

button {
    border: none;
    outline: none;
    background: none;
    cursor: none;
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ═══════════ CUSTOM CURSOR ═══════════ */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: var(--z-cursor);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s, opacity 0.3s;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: calc(var(--z-cursor) - 1);
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo), 
                border-color 0.3s, opacity 0.3s, background 0.3s;
    opacity: 0.5;
}

.cursor.active {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
}

.cursor-follower.active {
    width: 60px;
    height: 60px;
    opacity: 0.3;
}

/* ═══════════ PRELOADER ═══════════ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: var(--z-preloader);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
    position: relative;
}

.preloader-line {
    width: 200px;
    height: 1px;
    background: var(--border-subtle);
    margin: 0 auto 40px;
    position: relative;
    overflow: hidden;
}

.preloader-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--gold-gradient);
    animation: preloaderLine 2s var(--ease-out-expo) forwards;
}

@keyframes preloaderLine {
    to { width: 100%; }
}

.preloader-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.preloader-brand {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    letter-spacing: 8px;
    color: var(--text-primary);
    animation: fadeInUp 0.8s 0.3s both;
}

.preloader-tagline {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 6px;
    color: var(--gold);
    font-weight: 400;
    animation: fadeInUp 0.8s 0.5s both;
}

.preloader-counter {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 300;
    color: var(--gold);
    opacity: 0.2;
    margin-top: 30px;
    animation: fadeInUp 0.8s 0.7s both;
}

/* ═══════════ HEADER / NAVIGATION ═══════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    padding: 20px 0;
    transition: all 0.5s var(--ease-out-expo);
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    z-index: 10;
}

.brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-icon svg {
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text-primary);
}

.brand-tagline {
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 5px;
    color: var(--gold);
    font-weight: 400;
    margin-top: 4px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition-medium);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.header-phone i {
    font-size: 10px;
    color: var(--gold);
}

.header-phone:hover {
    color: var(--gold);
}

.btn-book {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--gold);
    color: var(--bg-primary);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.btn-book span {
    position: relative;
    z-index: 1;
}

.btn-book:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn-book:hover .btn-shine,
.btn-hero:hover .btn-shine,
.btn-about:hover .btn-shine,
.btn-submit:hover .btn-shine,
.btn-cta:hover .btn-shine,
.btn-faq:hover .btn-shine {
    left: 100%;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 10;
}

.menu-line {
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all 0.4s var(--ease-out-expo);
    transform-origin: center;
}

.menu-toggle.active .menu-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .menu-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ═══════════ HERO SECTION ═══════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--gold);
    top: -200px;
    right: -100px;
    animation: orbFloat 15s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #8B6914;
    bottom: -100px;
    left: -100px;
    animation: orbFloat 20s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gold-light);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    animation: orbFloat 25s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    max-width: 600px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    margin-bottom: 30px;
}

.label-diamond {
    color: var(--gold);
    font-size: 8px;
}

.label-text {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 500;
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.title-line {
    display: block;
}

.title-word {
    display: inline-block;
    margin-right: 16px;
}

.title-highlight {
    color: var(--gold);
}

.title-word.italic {
    font-style: italic;
    font-weight: 400;
    font-family: var(--font-accent);
    font-size: 1.1em;
}

.hero-description {
    font-size: clamp(15px, 1.5vw, 17px);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 24px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.stat-suffix {
    font-size: 0.6em;
    font-weight: 400;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 6px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    border: 1px solid var(--border-gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-text-inner {
    position: relative;
    z-index: 1;
}

.btn-icon-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    transition: transform 0.3s;
}

.btn-hero:hover .btn-icon-wrap {
    transform: translateX(4px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    max-width: 450px;
    width: 100%;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 3/4;
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--border-gold);
    z-index: 2;
    pointer-events: none;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.image-frame:hover .hero-img {
    transform: scale(1.05);
}

.image-shimmer {
    position: absolute;
    inset: 0;
    background: var(--gold-shimmer);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
    z-index: 3;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Floating Elements */
.floating-badge {
    position: absolute;
    top: 30px;
    left: -40px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border-gold);
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 500;
    animation: floatUp 4s ease-in-out infinite;
    z-index: 4;
}

.floating-badge i {
    color: var(--gold);
}

.floating-rating {
    position: absolute;
    bottom: 40px;
    right: -30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border-gold);
    font-size: 12px;
    font-weight: 500;
    animation: floatUp 5s ease-in-out infinite reverse;
    z-index: 4;
}

.rating-stars-mini i {
    color: var(--gold);
    font-size: 10px;
    margin-right: 1px;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Decorative Elements */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    pointer-events: none;
}

.deco-1 {
    width: 120px;
    height: 120px;
    bottom: -20px;
    left: -30px;
    opacity: 0.3;
}

.deco-2 {
    width: 80px;
    height: 80px;
    top: -10px;
    right: 20px;
    border-style: dashed;
    opacity: 0.2;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.deco-line {
    position: absolute;
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    top: -60px;
    right: 80px;
    opacity: 0.3;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 1s 1.5s both;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 1.5px solid var(--border-gold);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

.hero-scroll-indicator span {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--text-muted);
}

/* ═══════════ MARQUEE SECTION ═══════════ */
.marquee-section {
    padding: 24px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 50px;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--text-muted);
    font-weight: 400;
    flex-shrink: 0;
    transition: color 0.3s;
}

.marquee-item:hover {
    color: var(--gold);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════ SECTION COMMON STYLES ═══════════ */
.section-label-line {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.section-label-line.center {
    justify-content: center;
}

.label-line-bar {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.section-label {
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 500;
    color: var(--gold);
}

.section-label.light {
    color: var(--gold-light);
}

.label-line-bar.light {
    background: var(--gold-light);
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.section-heading.center {
    text-align: center;
}

.heading-accent {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
    font-family: var(--font-accent);
    font-size: 1.05em;
}

.section-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.section-header-premium {
    margin-bottom: 60px;
}

/* Reveal Text Animation */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-text.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════ ABOUT SECTION ═══════════ */
.about {
    padding: var(--section-padding) 0;
    position: relative;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-stack {
    position: relative;
}

.about-img-main {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 420px;
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.img-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.4), transparent);
    pointer-events: none;
}

.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 220px;
    height: 180px;
    overflow: hidden;
    border: 4px solid var(--bg-primary);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.about-img-accent:hover img {
    transform: scale(1.08);
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 110px;
    height: 110px;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.exp-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--bg-primary);
    line-height: 1;
}

.exp-text {
    font-size: 8px;
    letter-spacing: 1.5px;
    color: var(--bg-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-top: 4px;
}

/* About Content */
.about-content {
    max-width: 520px;
}

.about-lead {
    font-family: var(--font-accent);
    font-size: 20px;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.about-body {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-fast);
}

.feature-item:hover {
    border-color: var(--border-gold);
    transform: translateY(-2px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.btn-about:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-about i {
    transition: transform 0.3s;
}

.btn-about:hover i {
    transform: translateX(4px);
}

/* ═══════════ SERVICES SECTION ═══════════ */
.services {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: all 0.5s var(--ease-out-expo);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}

.service-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 1;
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--gold);
    color: var(--bg-primary);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.service-card.featured {
    border-color: var(--border-gold);
    background: linear-gradient(135deg, rgba(212,175,55,0.04), var(--bg-card));
}

.service-icon-wrap {
    margin-bottom: 24px;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    font-size: 22px;
    color: var(--gold);
    transition: all var(--transition-fast);
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--bg-primary);
    transform: rotate(-5deg);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.service-features span {
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid var(--border-subtle);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
    transition: all var(--transition-fast);
}

.service-link i {
    font-size: 10px;
    transition: transform 0.3s;
}

.service-link:hover i {
    transform: translateX(6px);
}

/* ═══════════ PROCESS SECTION ═══════════ */
.process {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.process-line {
    position: absolute;
    top: 45px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: var(--border-subtle);
}

.process-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--gold-gradient);
    transition: width 1.5s var(--ease-out-expo);
}

.process.animated .process-line::after {
    width: 100%;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-gold);
    margin: 0 auto 30px;
    background: var(--bg-primary);
    position: relative;
    z-index: 2;
    transition: all var(--transition-fast);
}

.process-step:hover .step-number {
    background: var(--gold);
    color: var(--bg-primary);
}

.step-content {
    padding: 0 10px;
}

.step-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid var(--border-subtle);
    margin: 0 auto 16px;
    font-size: 18px;
    color: var(--gold);
    transition: all var(--transition-fast);
}

.process-step:hover .step-icon {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}

/* ═══════════ GALLERY SECTION ═══════════ */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--text-muted);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-fast);
    text-transform: uppercase;
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--bg-primary);
    background: var(--gold);
    border-color: var(--gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    transition: all 0.5s var(--ease-out-expo);
}

.gallery-item.hidden {
    display: none;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out-expo);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.9), rgba(10,10,10,0.2), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-category {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 6px;
}

.gallery-overlay h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
}

.gallery-zoom {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    transition: all var(--transition-fast);
    position: absolute;
    top: 16px;
    right: 16px;
    opacity: 0;
    transform: translateY(10px);
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: translateY(0);
}

.gallery-zoom:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: var(--z-lightbox);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 36px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.lightbox-body {
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: var(--shadow-lg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 16px;
    transition: all var(--transition-fast);
    background: rgba(10, 10, 10, 0.5);
}

.lightbox-nav:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(10, 10, 10, 0.8);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ═══════════ PRICING SECTION ═══════════ */
.pricing {
    padding: var(--section-padding) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border-color: var(--gold);
    background: linear-gradient(175deg, rgba(212,175,55,0.06), var(--bg-card) 30%);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px;
    text-align: center;
    background: var(--gold);
    color: var(--bg-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.pricing-header {
    padding: 40px 30px 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.pricing-card.popular .pricing-header {
    padding-top: 56px;
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 6px;
}

.pricing-tagline {
    font-size: 13px;
    color: var(--text-muted);
}

.pricing-body {
    padding: 30px 30px 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-list {
    flex: 1;
    margin-bottom: 30px;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-list li i {
    color: var(--gold);
    font-size: 12px;
    flex-shrink: 0;
}

.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border: 1px solid var(--border-gold);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all var(--transition-fast);
    text-align: center;
    width: 100%;
}

.pricing-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.pricing-btn.primary {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

.pricing-btn.primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.pricing-btn i {
    font-size: 11px;
    transition: transform 0.3s;
}

.pricing-btn:hover i {
    transform: translateX(4px);
}

/* ═══════════ TESTIMONIALS ═══════════ */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.testimonials-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.header-top {
    margin-bottom: 40px;
}

.rating-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 24px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    display: inline-flex;
}

.rating-block {
    text-align: center;
}

.rating-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.rating-stars {
    color: var(--gold);
    font-size: 12px;
    margin: 6px 0;
    display: flex;
    gap: 2px;
    justify-content: center;
}

.rating-text {
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}

.rating-divider {
    width: 1px;
    height: 50px;
    background: var(--border-subtle);
}

/* Testimonials Slider */
.testimonials-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonials-slider {
    overflow: hidden;
    flex: 1;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s var(--ease-out-expo);
}

.testimonial-card {
    min-width: calc(33.333% - 16px);
    padding: 36px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.testimonial-card:hover {
    border-color: var(--border-gold);
}

.testimonial-quote {
    color: var(--gold);
    font-size: 24px;
    opacity: 0.3;
    margin-bottom: 16px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 12px;
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border-subtle);
    padding-top: 20px;
}

.author-initial {
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    flex-shrink: 0;
}

.author-name {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.author-service {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.testimonial-nav-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 14px;
    flex-shrink: 0;
    transition: all var(--transition-fast);
    background: var(--bg-card);
}

.testimonial-nav-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.06);
}

/* ═══════════ CTA SECTION ═══════════ */
.cta {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #111 0%, #0a0a0a 50%, #111 100%);
}

.cta-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
}

.cta-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gold);
    top: -200px;
    left: -150px;
}

.cta-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gold-light);
    bottom: -200px;
    right: -100px;
}

.cta-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-text p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 440px;
}

.cta-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.cta-features i {
    color: var(--gold);
    font-size: 14px;
}

.cta-action {
    text-align: center;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 36px;
    background: var(--gold);
    color: var(--bg-primary);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.btn-cta:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-icon-cta {
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.btn-text-cta {
    text-align: left;
    position: relative;
    z-index: 1;
}

.btn-text-cta small {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0.7;
}

.btn-text-cta strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 2px;
}

.cta-hours {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.cta-hours i {
    color: var(--gold);
}

/* ═══════════ FAQ SECTION ═══════════ */
.faq {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.faq-intro {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.btn-faq {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid var(--border-gold);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.btn-faq:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item.active {
    border-color: var(--border-gold);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    transition: color var(--transition-fast);
}

.faq-item.active .faq-question {
    color: var(--gold);
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon span {
    position: absolute;
    background: var(--text-muted);
    transition: all 0.4s var(--ease-out-expo);
}

.faq-icon span:first-child {
    width: 14px;
    height: 1.5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon span:last-child {
    width: 1.5px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon span {
    background: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo), padding 0.5s var(--ease-out-expo);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ═══════════ CONTACT SECTION ═══════════ */
.contact {
    padding: var(--section-padding) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all var(--transition-fast);
}

.info-card:hover {
    border-color: var(--border-gold);
    transform: translateX(4px);
}

.info-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.info-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-card a {
    color: var(--gold);
    font-weight: 500;
    transition: opacity 0.3s;
}

.info-card a:hover {
    opacity: 0.8;
}

.map-container {
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    margin-top: 8px;
}

.map-container iframe {
    display: block;
    filter: grayscale(80%) invert(92%) contrast(90%);
    transition: filter 0.5s;
}

.map-container:hover iframe {
    filter: grayscale(40%) invert(92%) contrast(90%);
}

/* Contact Form */
.contact-form-wrapper {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
}

.form-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 0;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-subtle);
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-group label {
    position: absolute;
    left: 0;
    top: 14px;
    font-size: 14px;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -8px;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 1px;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out-expo);
}

.form-group input:focus ~ .input-line,
.form-group textarea:focus ~ .input-line,
.form-group select:focus ~ .input-line {
    width: 100%;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gold);
    color: var(--bg-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
    align-self: flex-start;
}

.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-submit span,
.btn-submit i {
    position: relative;
    z-index: 1;
}

.form-message {
    font-size: 14px;
    font-weight: 500;
    padding: 12px 0;
    display: none;
}

.form-message.show {
    display: block;
}

.form-message.success {
    color: #4CAF50;
}

.form-message.error {
    color: #f44336;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
    padding: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-icon {
    display: flex;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
}

.footer-subtitle {
    font-size: 8px;
    letter-spacing: 4px;
    color: var(--gold);
    margin-top: 4px;
}

.footer-description {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 15px;
    transition: all var(--transition-fast);
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.06);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-primary);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    font-size: 13px;
    color: var(--text-muted);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
}

.footer-menu a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--gold);
    margin-right: 0;
    transition: all 0.3s;
}

.footer-menu a:hover {
    color: var(--gold);
}

.footer-menu a:hover::before {
    width: 16px;
    margin-right: 8px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-contact-list i {
    color: var(--gold);
    font-size: 12px;
    margin-top: 4px;
}

.footer-contact-list a {
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-contact-list a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-credits i {
    color: #e74c3c;
    font-size: 10px;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.footer-credits a {
    color: var(--gold);
    font-weight: 500;
    transition: opacity 0.3s;
}

.footer-credits a:hover {
    opacity: 0.8;
}

/* ═══════════ WHATSAPP FLOAT ═══════════ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    z-index: var(--z-whatsapp);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-fast);
    animation: pulseWhatsApp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-tooltip {
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateX(-10px) translateY(-50%);
    padding: 8px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    pointer-events: none;
}

@keyframes pulseWhatsApp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* ═══════════ SCROLL TO TOP ═══════════ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--gold);
    font-size: 14px;
    z-index: var(--z-scroll-top);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-fast);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.06);
    transform: translateY(-3px);
}

.scroll-progress {
    position: absolute;
    inset: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    transform: rotate(-90deg);
    pointer-events: none;
}

.scroll-progress-bg {
    fill: none;
    stroke: var(--border-subtle);
    stroke-width: 2;
}

.scroll-progress-bar {
    fill: none;
    stroke: var(--gold);
    stroke-width: 2;
    stroke-dasharray: 289;
    stroke-dashoffset: 289;
    stroke-linecap: square;
    transition: stroke-dashoffset 0.1s;
}

/* ═══════════ ANIMATIONS ═══════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ═══════════ RESPONSIVE — TABLET ═══════════ */
@media (max-width: 1024px) {
    .nav-list {
        gap: 20px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        order: -1;
    }

    .about-img-main {
        max-width: 100%;
    }

    .about-content {
        max-width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .process-timeline {
        grid-template-columns: 1fr 1fr;
    }

    .process-line {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-features {
        justify-content: center;
    }

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .testimonial-card {
        min-width: calc(50% - 12px);
    }
}

/* ═══════════ RESPONSIVE — MOBILE ═══════════ */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor, .cursor-follower {
        display: none !important;
    }

    .header-phone {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.6s var(--ease-out-expo);
        z-index: 5;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .nav-link {
        font-size: 16px;
        letter-spacing: 4px;
    }

    .btn-book {
        display: none;
    }

    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-label {
        padding: 8px 14px;
    }

    .label-text {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-img-accent {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        height: 200px;
        margin-top: 16px;
    }

    .about-experience-badge {
        top: 20px;
        right: 20px;
        width: 90px;
        height: 90px;
    }

    .exp-number {
        font-size: 26px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-filter {
        gap: 6px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 10px;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .testimonial-nav-btn {
        display: none;
    }

    .testimonials-slider-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .testimonial-card {
        scroll-snap-align: start;
    }

    .rating-showcase {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
        width: 100%;
    }

    .rating-divider {
        width: 40px;
        height: 1px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

/* ═══════════ RESPONSIVE — SMALL MOBILE ═══════════ */
@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .section-heading {
        font-size: 28px;
    }

    .stat-number {
        font-size: 24px;
    }

    .marquee-item {
        font-size: 12px;
        letter-spacing: 3px;
    }
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ═══════════ PRINT STYLES ═══════════ */
@media print {
    .cursor, .cursor-follower, .preloader, .whatsapp-float, 
    .scroll-top, .hero-bg-effects, .header, .marquee-section {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    a {
        color: black;
        text-decoration: underline;
    }
}
