/* ===== Premium Loading Animation ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cream), var(--light));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: var(--gray-800);
}

.loading-logo {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 3rem;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: loadingPulse 2s ease-in-out infinite;
}

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

.loading-spinner {
    width: 80px;
    height: 80px;
    border: 4px solid var(--primary-light);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: premiumSpin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    margin: 0 auto 2rem;
    position: relative;
}

.loading-spinner::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    animation: premiumSpin 1.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite reverse;
}

@keyframes premiumSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: var(--text-lg);
    color: var(--gray-600);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: loadingText 2s ease-in-out infinite;
}

@keyframes loadingText {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* ===== Premium Modern Design System 2025 ===== */
:root {
    /* Premium Color Palette - Sophisticated Rose Gold & Champagne */
    --primary: #d4a574; /* Champagne Gold */
    --primary-dark: #b8864b; /* Darker Gold */
    --primary-light: #f4e4d4; /* Light Champagne */
    --secondary: #e8b4b8; /* Soft Rose */
    --secondary-dark: #d4a5a9; /* Deeper Rose */
    --accent: #c9a961; /* Antique Gold */
    --accent-dark: #a68a4d; /* Darker Antique */
    
    /* Premium Neutrals */
    --white: #ffffff;
    --cream: #faf8f5; /* Warm Cream */
    --light: #f5f2ed; /* Soft Beige */
    --gray-100: #f0ede8; /* Light Warm Gray */
    --gray-200: #e6e2dd; /* Warm Gray */
    --gray-300: #d4d0cb; /* Medium Warm Gray */
    --gray-400: #a8a49f; /* Soft Gray */
    --gray-500: #7a7671; /* Neutral Gray */
    --gray-600: #5a5651; /* Dark Gray */
    --gray-700: #3a3631; /* Deep Gray */
    --gray-800: #2a2621; /* Charcoal */
    --gray-900: #1a1611; /* Near Black */
    --dark: #0f0b06; /* Rich Black */
    
    /* Refined Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: rgba(0, 0, 0, 0.1);
    
    /* Premium Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Premium Fluid Typography */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
    --text-3xl: clamp(1.875rem, 1.6rem + 1.375vw, 2.5rem);
    --text-4xl: clamp(2.25rem, 1.9rem + 1.75vw, 3.5rem);
    --text-5xl: clamp(3rem, 2.5rem + 2.5vw, 5rem);
    --text-6xl: clamp(3.5rem, 3rem + 3vw, 6rem);
    
    /* Spacing System */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    --space-40: 10rem;
    
    /* Modern Shadows */
    --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
    
    /* Border Radius */
    --radius-xs: 0.125rem;
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Layout */
    --container-xs: 20rem;
    --container-sm: 24rem;
    --container-md: 28rem;
    --container-lg: 32rem;
    --container-xl: 36rem;
    --container-2xl: 42rem;
    --container-3xl: 48rem;
    --container-4xl: 56rem;
    --container-5xl: 64rem;
    --container-6xl: 72rem;
    --container-7xl: 80rem;
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-toast: 1080;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===== Premium Typography System ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-800);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: var(--text-6xl);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

h2 {
    font-size: var(--text-4xl);
    font-weight: 700;
    letter-spacing: -0.025em;
}

h3 {
    font-size: var(--text-3xl);
    font-weight: 600;
}

h4 {
    font-size: var(--text-2xl);
    font-weight: 600;
}

h5 {
    font-size: var(--text-xl);
    font-weight: 500;
}

h6 {
    font-size: var(--text-lg);
    font-weight: 500;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--gray-600);
    font-size: var(--text-base);
    font-weight: 400;
}

.lead {
    font-size: var(--text-xl);
    line-height: 1.6;
    color: var(--gray-700);
    font-weight: 400;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Layout Utilities ===== */
.container {
    width: 100%;
    max-width: var(--container-7xl);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container-sm { max-width: var(--container-sm); }
.container-md { max-width: var(--container-md); }
.container-lg { max-width: var(--container-lg); }
.container-xl { max-width: var(--container-xl); }

.section {
    padding: 120px 0;
}

.section-sm {
    padding: 80px 0;
}

.section-lg {
    padding: 160px 0;
}

/* ===== Grid System ===== */
.grid {
    display: grid;
    gap: var(--space-6);
}

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-full { grid-column: 1 / -1; }

/* ===== Flexbox Utilities ===== */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }

/* ===== Spacing Utilities ===== */
.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* ===== Text Utilities ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Clean Modern Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(212, 165, 116, 0.15);
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.nav-cta:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) 0;
}

.nav-brand {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--gray-800);
    letter-spacing: -0.05em;
}

.nav-brand .accent {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    list-style: none;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
    padding: var(--space-2) 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transform: translateX(-50%) scale(0);
    transition: all 0.3s ease;
}

.nav-link:hover::before {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.nav-cta:hover::before {
    left: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    gap: var(--space-1);
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: var(--transition-base);
    border-radius: var(--radius-full);
}

/* ===== Hero Section - Split Layout ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-20) 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-16);
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 50%, rgba(212, 165, 116, 0.08) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), rgba(232, 180, 184, 0.15));
    opacity: 0.6;
    border-radius: 50% 0 0 50%;
    z-index: -1;
    filter: blur(1px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.hero-title {
    font-size: var(--text-6xl);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 2rem;
    color: var(--gray-800);
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--gray-800), var(--gray-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
    font-weight: 400;
}

.hero-content {
    padding-right: var(--space-8);
    opacity: 0;
    transform: translateY(30px);
    /* Animation will be triggered by JavaScript after loading */
}

.hero-visual {
    position: relative;
    height: 650px;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    opacity: 0;
    transform: translateX(30px);
    /* Animation will be triggered by JavaScript after loading */
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, var(--primary), transparent 60%);
    opacity: 0.15;
    z-index: 1;
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-2xl);
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-8);
    box-shadow: var(--shadow-lg);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-badge i {
    font-size: var(--text-base);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.hero-title {
    font-size: var(--text-6xl);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: var(--space-6);
    color: var(--gray-800);
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-8);
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    align-items: center;
}


.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, var(--primary), transparent);
    opacity: 0.1;
}

/* ===== Button System ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(212, 165, 116, 0.6);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(212, 165, 116, 0.4);
    border-color: var(--primary-dark);
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

.btn-outline:hover {
    background: var(--gray-700);
    color: var(--white);
    border-color: var(--gray-700);
}

.btn-lg {
    padding: var(--space-5) var(--space-8);
    font-size: var(--text-lg);
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
}

/* ===== Services Section - Card Grid ===== */
.services {
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    margin-bottom: var(--space-4);
    color: var(--gray-800);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-light), var(--white));
    border-color: var(--primary);
}

.service-card.featured::before {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    color: var(--white);
    font-size: var(--text-2xl);
    box-shadow: var(--shadow-lg);
}

.service-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--gray-800);
}

.service-description {
    color: var(--gray-600);
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

.service-features {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 500;
}

.price-list {
    margin-bottom: var(--space-6);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gray-200);
}

.price-item:last-child {
    border-bottom: none;
}

.service-name {
    color: var(--gray-600);
    font-size: var(--text-sm);
}

.price {
    color: var(--primary);
    font-weight: 700;
    font-size: var(--text-lg);
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition-base);
}

.service-cta:hover {
    gap: var(--space-3);
    color: var(--primary-dark);
}

/* ===== About Section - Modern Layout ===== */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.about-text {
    padding-right: var(--space-8);
}

.about-lead {
    font-size: var(--text-xl);
    color: var(--gray-700);
    margin-bottom: var(--space-6);
    line-height: 1.7;
    font-weight: 500;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    margin: var(--space-8) 0;
}

.feature {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--text-lg);
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.feature-content h4 {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-1);
    color: var(--gray-800);
}

.feature-content p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

.women-led-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-full);
    font-weight: 600;
    margin: var(--space-6) 0;
    box-shadow: var(--shadow-lg);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: var(--text-sm);
}

.about-actions {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    margin-top: var(--space-8);
    flex-wrap: wrap;
}

.about-contact {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.about-contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
}

.about-contact-info p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin: 0;
}

.about-contact-info a {
    font-weight: 600;
    color: var(--gray-800);
    font-size: var(--text-base);
}

.about-visual {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    aspect-ratio: 4/5;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-main {
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    aspect-ratio: 4/5;
    position: relative;
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--gray-800);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-2xl);
    font-weight: 800;
    z-index: 3;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-visual:hover .experience-badge {
    transform: scale(1.1);
}

.experience-badge .number {
    font-size: var(--text-3xl);
    line-height: 1;
}

.experience-badge .text {
    font-size: var(--text-xs);
    text-align: center;
    font-weight: 600;
}

/* ===== Gallery Section - Masonry Layout ===== */
.gallery {
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-16);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-3xl);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
}

.gallery-item.wide {
    aspect-ratio: 16/9;
    grid-column: span 2;
}

@media (max-width: 768px) {
    .gallery-item.wide {
        grid-column: span 1;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 22, 17, 0.9), rgba(26, 22, 17, 0.3), transparent);
    color: var(--white);
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

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

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

.gallery-overlay h3 {
    color: var(--white);
    margin-bottom: var(--space-2);
    font-size: var(--text-xl);
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-overlay p {
    font-size: var(--text-sm);
    margin: 0;
    opacity: 0.9;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* ===== Testimonials Section ===== */
.testimonials {
    background: var(--white);
}

.testimonials-slider {
    overflow: hidden;
    margin-bottom: var(--space-12);
}

.testimonials-track {
    display: flex;
    gap: var(--space-6);
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonials-slider:hover .testimonials-track {
    animation-play-state: paused;
}

.testimonial-card {
    flex: 0 0 420px;
    background: var(--white);
    padding: var(--space-10);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-6);
}

.testimonial-author {
    display: flex;
    gap: var(--space-4);
}

.author-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.05);
}

.author-info h4 {
    margin-bottom: var(--space-1);
    font-size: var(--text-base);
    color: var(--gray-800);
}

.author-info p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin: 0;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    color: var(--accent-dark);
}

.testimonial-content {
    margin-bottom: var(--space-6);
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.7;
    font-size: var(--text-base);
}

.testimonial-service {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--primary);
    font-size: var(--text-sm);
    font-weight: 600;
}

.testimonials-cta {
    text-align: center;
}

.testimonials-cta p {
    margin-bottom: var(--space-6);
    color: var(--gray-600);
    font-size: var(--text-lg);
}

/* ===== Contact Section ===== */
.contact {
    background: var(--light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
}

.contact-info h3 {
    margin-bottom: var(--space-6);
    color: var(--gray-800);
}

.contact-cards {
    display: grid;
    gap: var(--space-6);
}

.info-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    font-size: var(--text-xl);
    box-shadow: var(--shadow-md);
}

.info-content h4 {
    margin-bottom: var(--space-2);
    color: var(--gray-800);
}

.info-content address {
    font-style: normal;
    color: var(--gray-600);
    line-height: 1.6;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    color: var(--primary);
    font-size: var(--text-sm);
    margin-top: var(--space-2);
    font-weight: 500;
}

.phone-number {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--gray-800);
}

.info-note {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin: var(--space-1) 0 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: var(--space-10);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    text-align: center;
}

.contact-form-wrapper h3 {
    margin-bottom: var(--space-6);
    color: var(--gray-800);
}

/* ===== Opening Hours ===== */
.opening-hours {
    background: var(--white);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-6);
    max-width: 900px;
    margin: 0 auto;
}

.day-card {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.day-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.day-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.day-card.closed {
    background: var(--gray-100);
    opacity: 0.7;
}

.day-card.closed::before {
    background: var(--gray-400);
}

.day-name {
    font-weight: 700;
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
    color: var(--gray-800);
}

.day-time {
    font-size: var(--text-base);
    color: var(--gray-600);
}

.day-card.closed .day-time {
    color: var(--gray-500);
}

/* ===== Map Section ===== */
.map-section {
    height: 500px;
    position: relative;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    margin: var(--space-8) var(--space-6);
    box-shadow: var(--shadow-2xl);
}

.map-container {
    height: 100%;
    filter: grayscale(20%) contrast(1.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-800);
    color: var(--white);
    padding: var(--space-20) 0 var(--space-8);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: var(--space-4);
}

.footer-logo .accent {
    color: var(--primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer h3,
.footer h4 {
    color: var(--white);
    margin-bottom: var(--space-6);
    font-size: var(--text-lg);
}

.footer p {
    color: var(--gray-400);
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: var(--space-4);
}

.footer-social a {
    width: 48px;
    height: 48px;
    background: var(--gray-700);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-base);
    font-size: var(--text-lg);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-2px);
    color: var(--white);
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: var(--space-3);
}

.footer-links a,
.footer-services a {
    color: var(--gray-400);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: var(--text-base);
    position: relative;
}

.footer-links a::after,
.footer-services a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-links a:hover::after,
.footer-services a:hover::after {
    width: 100%;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    color: var(--gray-400);
}

.footer-contact i {
    color: var(--primary);
    font-size: var(--text-lg);
}

.footer-contact a {
    color: var(--white);
    font-weight: 500;
}

.footer-contact a:hover {
    color: var(--primary);
    transform: translateX(2px);
    transition: all 0.3s ease;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: var(--space-8);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer-legal {
    display: flex;
    gap: var(--space-6);
}

.footer-legal a {
    color: var(--gray-400);
    font-size: var(--text-sm);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ===== Floating Elements ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-xl);
    font-size: var(--text-lg);
    z-index: var(--z-fixed);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    box-shadow: var(--shadow-2xl);
    z-index: var(--z-fixed);
    transition: var(--transition-base);
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: var(--white);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-10px);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--gray-800);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-xl);
    font-size: var(--text-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    transform: translateX(0);
    font-weight: 500;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid var(--gray-800);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-xl);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--white);
    font-size: var(--text-3xl);
    cursor: pointer;
    transition: var(--transition-base);
    background: none;
    border: none;
    padding: var(--space-2);
}

.lightbox-close:hover {
    color: var(--primary);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-6);
}

.lightbox-nav button {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: none;
    font-size: var(--text-2xl);
    padding: var(--space-4) var(--space-5);
    cursor: pointer;
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.lightbox-nav button:hover {
    background: rgba(255, 255, 255, 0.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== Enhanced Responsive Design ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: var(--space-6);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .service-card {
        padding: var(--space-6);
    }
}

@media (max-width: 768px) {
    /* Modern mobile navigation */
    .nav-menu {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transform: translateX(100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-2xl);
        z-index: var(--z-modal);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .hamburger {
        display: flex;
        z-index: var(--z-modal-backdrop);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero mobile optimization */
    .hero {
        padding: var(--space-20) 0 var(--space-16);
        min-height: auto;
    }
    
    .hero-visual {
        height: 400px;
        border-radius: 20px;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-actions .btn {
        justify-content: center;
        margin-bottom: var(--space-4);
    }
    
    /* Services mobile optimization */
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .service-card {
        padding: var(--space-6);
        border-radius: 20px;
    }
    
    /* Gallery mobile optimization */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .gallery-item {
        border-radius: 20px;
    }
    
    /* Footer mobile optimization */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-8);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        transform: translateX(100%);
        transition: var(--transition-base);
        box-shadow: var(--shadow-2xl);
        z-index: var(--z-modal);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .hamburger {
        display: flex;
        z-index: var(--z-modal-backdrop);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero */
    .hero {
        padding: var(--space-20) 0 var(--space-16);
        min-height: auto;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-actions .btn {
        flex: 1;
        min-width: 200px;
        justify-content: center;
    }
    
    /* About */
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-image-secondary {
        display: none;
    }
    
    .about-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-8);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Testimonials */
    .testimonial-card {
        flex: 0 0 320px;
    }
    
    /* Contact */
    .contact-form-wrapper {
        padding: var(--space-8);
    }
}

@media (max-width: 480px) {
    /* Typography */
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    .section-title {
        font-size: var(--text-3xl);
    }
    
    /* Spacing */
    .section {
        padding: var(--space-16) 0;
    }
    
    .container {
        padding: 0 var(--space-4);
    }
    
    /* Hero */
    .hero {
        padding: var(--space-16) 0 var(--space-12);
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        min-width: auto;
    }
    
    /* Services */
    .service-card {
        padding: var(--space-6);
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: var(--text-xl);
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        aspect-ratio: 4/5;
    }
    
    /* WhatsApp Button */
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 56px;
        height: 56px;
        font-size: var(--text-xl);
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    /* Back to Top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
    
    /* Map */
    .map-section {
        margin: var(--space-4);
        height: 300px;
    }
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

*:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

@media (prefers-contrast: high) {
    :root {
        --primary: #d63384;
        --gray-600: #000000;
        --gray-400: #666666;
    }
}

/* ===== Print Styles ===== */
@media print {
    .header,
    .hero-actions,
    .service-cta,
    .testimonials-cta,
    .contact-form-wrapper,
    .map-section,
    .footer-social,
    .back-to-top,
    .whatsapp-float {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: black;
    }
    
    .container {
        max-width: 100%;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: black;
    }
}