/* ============================================
   MJADE Beauty - Main Stylesheet
   BRIGHT | VIBRANT | BOLD | COLORFUL
   ============================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Brand Colors - VIVID & SATURATED */
    --blue-primary: #0066FF;
    --blue-bright: #00AAFF;
    --blue-light: #E0F0FF;
    --blue-glow: rgba(0, 102, 255, 0.35);

    --orange-primary: #FF6B35;
    --orange-bright: #FF8800;
    --orange-light: #FFF0E5;
    --orange-glow: rgba(255, 107, 53, 0.35);

    --green-primary: #00C853;
    --green-bright: #00E676;
    --green-light: #E0FFE8;
    --green-glow: rgba(0, 200, 83, 0.35);

    --gold-primary: #FFB300;
    --gold-bright: #FFD700;
    --gold-light: #FFF8E0;
    --gold-glow: rgba(255, 179, 0, 0.35);

    --red-primary: #FF1744;
    --red-bright: #FF4081;
    --red-light: #FFE0E6;
    --red-glow: rgba(255, 23, 68, 0.35);

    /* Neutrals - LIGHT THEME */
    --white: #FFFFFF;
    --white-warm: #FFFDF8;
    --bg-light: #F8F9FF;
    --bg-section: #FFF7F0;
    --bg-section-alt: #F0F4FF;
    --bg-section-green: #F0FFF4;
    --bg-section-gold: #FFFBF0;
    --text-dark: #1A1A2E;
    --text-body: #333355;
    --text-muted: #666680;
    --border-light: rgba(0, 0, 0, 0.08);

    /* Glass - LIGHT version */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.06);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);

    /* Gradients - BRIGHT & PUNCHY */
    --gradient-primary: linear-gradient(135deg, #0066FF, #FF6B35, #FFB300);
    --gradient-hero: linear-gradient(-45deg, #0066FF, #00AAFF, #FF6B35, #FFB300, #00C853, #FF1744, #FF4081, #00E676);
    --gradient-text: linear-gradient(90deg, #0066FF, #FF6B35, #FFB300, #00C853, #FF1744);
    --gradient-rainbow: linear-gradient(135deg, #FF1744, #FF6B35, #FFB300, #00C853, #0066FF, #7B2FBE);
    --gradient-warm: linear-gradient(135deg, #FF6B35, #FFB300, #FF1744);
    --gradient-cool: linear-gradient(135deg, #0066FF, #00C853, #00AAFF);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, sans-serif;
    --font-script: 'Dancing Script', cursive;

    /* Spacing */
    --section-pad: 100px;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease;
    --transition-spring: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-body);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

input, select, textarea, button {
    font-family: var(--font-body);
    font-size: 1rem;
}

::selection {
    background: var(--orange-primary);
    color: var(--white);
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    background-size: 400% 400%;
    animation: heroGradient 6s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--white);
    border-right-color: var(--gold-bright);
    animation: loaderSpin 0.8s linear infinite;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.loader-text {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    background: none;
}

#preloader::after {
    content: 'Beauty';
    font-family: var(--font-script);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 4px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

@keyframes textShimmer {
    to { background-position: 200% center; }
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.section {
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s linear infinite;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.text-gradient {
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 4s linear infinite;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    background-size: 200% auto;
    color: var(--white);
    box-shadow: 0 4px 20px var(--blue-glow);
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--orange-glow);
}

.btn-outline {
    background: transparent;
    color: var(--blue-primary);
    border: 2px solid var(--blue-primary);
}

.btn-outline:hover {
    background: var(--blue-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px var(--blue-glow);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.9rem;
    border-radius: 50px;
    background: var(--gradient-primary);
    background-size: 200% auto;
    color: var(--white);
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-base);
}

.btn-sm:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--orange-glow);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-glow {
    animation: btnGlow 3s ease-in-out infinite alternate;
}

@keyframes btnGlow {
    0% { box-shadow: 0 4px 20px var(--blue-glow); }
    33% { box-shadow: 0 6px 28px var(--orange-glow); }
    66% { box-shadow: 0 6px 28px var(--gold-glow); }
    100% { box-shadow: 0 4px 20px var(--red-glow); }
}

/* ===== NAVIGATION ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

#navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

#navbar.scrolled .nav-link {
    color: var(--text-muted);
}

#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active {
    color: var(--text-dark);
}

#navbar.scrolled .logo-jade {
    color: var(--text-dark);
}

#navbar.scrolled .hamburger-line {
    background: var(--text-dark);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    z-index: 1001;
}

.logo-m {
    background: var(--gradient-primary);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s linear infinite;
    font-size: 2rem;
}

.logo-jade {
    color: var(--white);
    transition: color var(--transition-base);
}

.logo-beauty {
    font-family: var(--font-script);
    font-size: 1rem;
    color: var(--gold-primary);
    margin-left: 6px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: all var(--transition-base);
    transform: translateX(-50%);
    border-radius: 3px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-phone {
    background: var(--gradient-warm);
    background-size: 200% auto;
    color: var(--white) !important;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--orange-glow);
}

.nav-phone::after { display: none; }

.nav-phone:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--red-glow);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    background-size: 600% 600%;
    animation: heroGradient 18s ease infinite;
}

@keyframes heroGradient {
    0% { background-position: 0% 50%; }
    25% { background-position: 50% 0%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 100%; }
    100% { background-position: 0% 50%; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.shape-1 { width: 300px; height: 300px; background: rgba(255,255,255,0.25); top: 10%; left: -5%; animation: float1 8s infinite alternate; }
.shape-2 { width: 250px; height: 250px; background: rgba(255,255,255,0.2); top: 60%; right: -5%; animation: float2 10s infinite alternate; }
.shape-3 { width: 200px; height: 200px; background: rgba(255,255,255,0.3); bottom: 10%; left: 30%; animation: float3 12s infinite alternate; }
.shape-4 { width: 180px; height: 180px; background: rgba(255,255,255,0.2); top: 30%; right: 20%; animation: float4 9s infinite alternate; }
.shape-5 { width: 150px; height: 150px; background: rgba(255,255,255,0.25); top: 5%; right: 30%; animation: float5 11s infinite alternate; }
.shape-6 { width: 120px; height: 120px; background: rgba(255,255,255,0.3); bottom: 30%; left: 10%; animation: float6 7s infinite alternate; }
.shape-7 { width: 100px; height: 100px; background: rgba(255,255,255,0.15); top: 50%; left: 60%; animation: float1 13s infinite alternate; }
.shape-8 { width: 160px; height: 160px; background: rgba(255,255,255,0.2); bottom: 5%; right: 15%; animation: float2 8s infinite alternate; }

@keyframes float1 { to { transform: translate(40px, -30px) scale(1.1); } }
@keyframes float2 { to { transform: translate(-50px, 40px) scale(0.9); } }
@keyframes float3 { to { transform: translate(30px, -50px) scale(1.15); } }
@keyframes float4 { to { transform: translate(-40px, -40px) scale(1.05); } }
@keyframes float5 { to { transform: translate(50px, 30px) scale(0.95); } }
@keyframes float6 { to { transform: translate(-30px, 50px) scale(1.1); } }

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 24px;
}

.hero-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero-title-accent {
    display: block;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
    -webkit-text-fill-color: var(--white);
    background: none;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero .btn-primary {
    background: var(--white);
    color: var(--orange-primary);
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
    font-weight: 700;
}

.hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0,0,0,0.25);
    color: var(--red-primary);
}

.hero .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.hero .btn-outline:hover {
    background: var(--white);
    color: var(--blue-primary);
    border-color: var(--white);
}

.hero-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge { text-align: center; }

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.badge-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* Hero Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ===== SOCIAL BAR ===== */
.social-bar {
    background: var(--gradient-rainbow);
    padding: 16px 0;
}

.social-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.social-bar-text {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

.social-bar-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-bar-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.social-bar-links a:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.social-bar-links a i {
    font-size: 1.1rem;
}

@media (max-width: 480px) {
    .social-bar-links a span {
        display: none;
    }
    .social-bar-links a {
        width: 42px;
        height: 42px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--white);
    position: relative;
}

.about-accent {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--blue-light) 0%, transparent 70%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper { position: relative; }

.about-image-frame {
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid transparent;
    background-image: var(--gradient-rainbow);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.12);
    position: relative;
}

.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-warm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px var(--orange-glow);
    border: 4px solid var(--white);
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.exp-text {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1.3;
}

.about-content .section-title { text-align: left; }

.about-text {
    color: var(--text-body);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient-primary);
    background-size: 200% auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 15px var(--blue-glow);
}

.about-feature h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--bg-section);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-rainbow);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 36px 28px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    background: var(--white);
    transition: all var(--transition-base);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card[data-color="blue"]::before { background: linear-gradient(135deg, rgba(0, 102, 255, 0.06), rgba(0, 170, 255, 0.03)); }
.service-card[data-color="orange"]::before { background: linear-gradient(135deg, rgba(255, 107, 53, 0.06), rgba(255, 136, 0, 0.03)); }
.service-card[data-color="gold"]::before { background: linear-gradient(135deg, rgba(255, 179, 0, 0.06), rgba(255, 215, 0, 0.03)); }
.service-card[data-color="green"]::before { background: linear-gradient(135deg, rgba(0, 200, 83, 0.06), rgba(0, 230, 118, 0.03)); }
.service-card[data-color="red"]::before { background: linear-gradient(135deg, rgba(255, 23, 68, 0.06), rgba(255, 64, 129, 0.03)); }

.service-card:hover::before { opacity: 1; }

.service-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.service-card[data-color="blue"] .service-card-glow { background: radial-gradient(circle at center, rgba(0,102,255,0.08) 0%, transparent 50%); }
.service-card[data-color="orange"] .service-card-glow { background: radial-gradient(circle at center, rgba(255,107,53,0.08) 0%, transparent 50%); }
.service-card[data-color="gold"] .service-card-glow { background: radial-gradient(circle at center, rgba(255,179,0,0.08) 0%, transparent 50%); }
.service-card[data-color="green"] .service-card-glow { background: radial-gradient(circle at center, rgba(0,200,83,0.08) 0%, transparent 50%); }
.service-card[data-color="red"] .service-card-glow { background: radial-gradient(circle at center, rgba(255,23,68,0.08) 0%, transparent 50%); }

.service-card:hover .service-card-glow { opacity: 1; }

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: transform var(--transition-spring);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-card[data-color="blue"] .service-icon {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-bright));
    box-shadow: 0 6px 20px var(--blue-glow);
}
.service-card[data-color="orange"] .service-icon {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-bright));
    box-shadow: 0 6px 20px var(--orange-glow);
}
.service-card[data-color="gold"] .service-icon {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-bright));
    box-shadow: 0 6px 20px var(--gold-glow);
}
.service-card[data-color="green"] .service-icon {
    background: linear-gradient(135deg, var(--green-primary), var(--green-bright));
    box-shadow: 0 6px 20px var(--green-glow);
}
.service-card[data-color="red"] .service-icon {
    background: linear-gradient(135deg, var(--red-primary), var(--red-bright));
    box-shadow: 0 6px 20px var(--red-glow);
}

.service-title {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all var(--transition-fast);
}

.service-card[data-color="blue"] .service-link { color: var(--blue-primary); }
.service-card[data-color="orange"] .service-link { color: var(--orange-primary); }
.service-card[data-color="gold"] .service-link { color: var(--gold-primary); }
.service-card[data-color="green"] .service-link { color: var(--green-primary); }
.service-card[data-color="red"] .service-link { color: var(--red-primary); }

.service-link:hover { gap: 14px; }

/* ===== GALLERY SECTION ===== */
.gallery {
    background: var(--white);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-warm);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-base);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    background: var(--gradient-primary);
    background-size: 200% auto;
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

.gallery-cta p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.gallery-social {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
}

.social-btn:hover {
    transform: translateY(-3px);
    color: var(--white);
}

.social-btn-instagram {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    box-shadow: 0 4px 20px rgba(221, 42, 123, 0.35);
}

.social-btn-instagram:hover {
    box-shadow: 0 8px 30px rgba(221, 42, 123, 0.5);
}

.social-btn-facebook {
    background: linear-gradient(135deg, #1877F2, #0A5DC2);
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.35);
}

.social-btn-facebook:hover {
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.5);
}

.social-btn-tiktok {
    background: linear-gradient(135deg, #25F4EE, #FE2C55, #000000);
    box-shadow: 0 4px 20px rgba(254, 44, 85, 0.35);
}

.social-btn-tiktok:hover {
    box-shadow: 0 8px 30px rgba(254, 44, 85, 0.5);
}

@media (max-width: 768px) {
    .gallery-social {
        flex-direction: column;
        align-items: center;
    }
    .social-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 250px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
    .gallery-item-tall {
        grid-row: span 2;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }
}

/* ===== PRODUCTS SECTION ===== */
.products {
    background: var(--white);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-warm);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 320px;
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.product-card-large {
    grid-column: 1 / -1;
    min-height: 280px;
}

.product-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--card-color-1), var(--card-color-2));
    opacity: 0.08;
    transition: opacity var(--transition-base);
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 24px;
    z-index: 0;
    transition: border-color var(--transition-base);
}

.product-card:hover::before {
    border-color: transparent;
    box-shadow: inset 0 0 0 2px var(--card-color-1);
}

.product-card:hover .product-card-bg { opacity: 0.12; }

.product-card-content {
    position: relative;
    z-index: 1;
    padding: 36px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-large .product-card-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s linear infinite;
}

.product-card-large .product-icon {
    font-size: 3.5rem;
    margin-bottom: 0;
}

.product-card-large .product-features {
    justify-content: center;
}

.product-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.product-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
    flex-grow: 1;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.product-features li {
    padding: 6px 14px;
    border-radius: 50px;
    background: var(--bg-section);
    border: 1px solid var(--border-light);
    font-size: 0.8rem;
    color: var(--text-body);
    font-weight: 500;
}

.products-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--orange-light), var(--gold-light), var(--red-light));
    border: 2px solid rgba(255, 107, 53, 0.15);
}

.products-cta p {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 20px;
}

/* ===== BOOKING SECTION ===== */
.booking {
    background: var(--bg-section-alt);
    position: relative;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-cool);
}

.booking-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.booking-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.booking-shape-1 { width: 400px; height: 400px; background: var(--blue-primary); top: 20%; left: -10%; }
.booking-shape-2 { width: 300px; height: 300px; background: var(--orange-primary); bottom: 10%; right: -5%; }
.booking-shape-3 { width: 250px; height: 250px; background: var(--gold-bright); top: 60%; left: 50%; }

.booking-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.booking-form-card {
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.booking-form-card h3 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-form-card h3 i { color: var(--orange-primary); }

.booking-form-card > p {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid #E0E0EE;
    background: var(--white);
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #AAAABC;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666680' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--white);
    color: var(--text-dark);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 3rem;
    color: var(--green-primary);
    margin-bottom: 16px;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.form-success h4 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-success p { color: var(--text-muted); }

/* Booking Info Cards */
.booking-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-info-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border-light);
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.booking-info-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-info-card h3 i { color: var(--orange-primary); }

.booking-info-card p,
.booking-info-card small {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.booking-info-card address {
    color: var(--text-body);
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.booking-phone {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gradient-warm);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s linear infinite;
    margin-bottom: 8px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--text-body);
}

.hours-row:last-child { border-bottom: none; }

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
    background: var(--gradient-hero);
    background-size: 400% 400%;
    animation: heroGradient 18s ease infinite;
    position: relative;
    padding: 80px 0;
}

.newsletter-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s linear infinite;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.newsletter p {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.newsletter-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-form .form-group { margin-bottom: 0; }

.newsletter-form input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 2px solid #E0E0EE;
    background: var(--white);
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    outline: none;
}

.newsletter-form input::placeholder { color: #AAAABC; }

.newsletter-form input:focus {
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.newsletter-disclaimer {
    display: block;
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--white);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-rainbow);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--gradient-primary);
    background-size: 200% auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 15px var(--blue-glow);
}

.contact-item h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
}

.contact-item a {
    color: var(--blue-primary);
    transition: color var(--transition-fast);
}

.contact-item a:hover { color: var(--orange-primary); }

.contact-item small {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 2px;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--border-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-map iframe { display: block; }

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    position: relative;
    padding-top: 0;
    color: rgba(255,255,255,0.7);
}

.footer-wave {
    color: var(--text-dark);
    position: relative;
    top: -1px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 40px 0 50px;
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.7;
}

.footer-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
}

.footer .logo-jade { color: var(--white); }

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    border-color: var(--orange-primary);
    color: var(--orange-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px var(--orange-glow);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-bright);
    padding-left: 6px;
}

.footer-contact p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--gold-bright);
    width: 18px;
    margin-right: 4px;
}

.footer-contact a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition-fast);
}

.footer-contact a:hover { color: var(--blue-bright); }

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.footer-credit {
    font-size: 0.75rem !important;
    color: rgba(255,255,255,0.3) !important;
}

.footer-credit a {
    color: rgba(255,255,255,0.45);
    transition: color var(--transition-fast);
}

.footer-credit a:hover { color: var(--blue-bright); }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-warm);
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px var(--orange-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--red-glow);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.17, 0.55, 0.55, 1);
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

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

@media (max-width: 1024px) {
    :root { --section-pad: 80px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .product-card-large { grid-column: 1 / -1; }
    .booking-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    :root { --section-pad: 60px; }

    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 80px 40px;
        transition: right var(--transition-base);
        border-left: 1px solid var(--border-light);
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    }

    .nav-menu.active { right: 0; }

    .nav-menu .nav-link {
        color: var(--text-body);
        font-size: 1.1rem;
        padding: 12px 24px;
        width: 100%;
        text-align: center;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--blue-primary);
    }

    .nav-toggle.active .hamburger-line {
        background: var(--text-dark);
    }

    .nav-phone { margin-top: 16px; }

    .hero-cta { flex-direction: column; align-items: center; }
    .hero-badges { flex-direction: column; gap: 20px; }
    .badge-divider { width: 40px; height: 1px; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-content .section-title { text-align: center; }
    .about-text { text-align: center; }
    .about-experience-badge { right: 10px; bottom: -10px; width: 100px; height: 100px; }
    .exp-number { font-size: 2rem; }

    .services-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }
    .booking-form-card { padding: 28px 20px; }

    .newsletter-inputs { grid-template-columns: 1fr; }
    .newsletter-wrapper { padding: 36px 24px; }

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

    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }
    .floating-shape { display: none; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero-bg-animation { animation: none; background-position: 50% 50%; }
    .floating-shape { animation: none; }
    .reveal-up, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}
