/* ============================================
   GetBraided - Clean, Modern, Mobile-First Design
   ============================================ */

/* CSS Variables */
:root,
html[data-theme="light"] {
    /* Colors */
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --secondary: #EC4899;
    --accent: #F59E0B;
    
    /* Light Mode (Default) */
    --bg: #FFFFFF;
    --bg-alt: #F8F9FA;
    --text: #1A1A1A;
    --text-muted: #6B7280;
    --border: #E5E7EB;
    --nav-bg: rgba(255, 255, 255, 0.98);
    
    /* Gradients */
    --gradient: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    
    /* Shadows */
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    /* Typography - Sans-serif only */
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Radius */
    --radius: 0.75rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;
    
    color-scheme: light;
}

/* Dark Mode */
html[data-theme="dark"] {
    --bg: #0F172A;
    --bg-alt: #1E293B;
    --text: #F1F5F9;
    --text-muted: #94A3B8;
    --border: #334155;
    --nav-bg: rgba(15, 23, 42, 0.98);
    color-scheme: dark;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    transition: background-color 0.3s ease, color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-alt);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-alt);
}

html[data-theme="light"] {
    color-scheme: light;
}

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    margin-bottom: var(--space-sm);
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    width: 100%;
    box-sizing: border-box;
}

/* Loading */
.loader {
    position: fixed;
    inset: 0;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.loader-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: var(--space-md);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-sm) var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    width: 100%;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text);
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.logo:active {
    transform: scale(0.98);
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hide logo text when logo image is present */
.logo:has(.logo-image) .logo-text {
    display: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.theme-toggle:hover {
    background: var(--primary);
    transform: scale(1.1);
}

/* Fresh Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 1001;
    position: relative;
}

.burger-line {
    width: 20px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    transition: left 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    padding: 70px var(--space-lg) var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.mobile-menu-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: var(--text);
    font-size: 1.5rem;
    line-height: 1;
    padding: 0;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--bg-alt);
    color: var(--primary);
    transform: scale(1.1);
}

.mobile-menu-close::before,
.mobile-menu-close::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
}

.mobile-menu-close::before {
    transform: rotate(45deg);
}

.mobile-menu-close::after {
    transform: rotate(-45deg);
}

.mobile-menu-link {
    display: block;
    padding: var(--space-md) var(--space-lg);
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    background: var(--bg-alt);
    color: var(--primary);
    padding-left: calc(var(--space-lg) + var(--space-sm));
}

.mobile-menu-cta {
    background: var(--gradient);
    color: white !important;
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
    text-align: center;
    font-weight: 600;
    border: none !important;
}

.mobile-menu-cta:hover {
    background: var(--gradient);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

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

.nav-cta {
    background: var(--gradient);
    color: white !important;
    padding: var(--space-xs) var(--space-lg) !important;
    border-radius: var(--radius-full);
}

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

/* Mobile Styles */
@media (max-width: 639px) {
    .burger-menu {
        display: flex;
        order: 1;
    }
    
    .nav-container {
        justify-content: flex-start;
        gap: var(--space-sm);
    }
    
    .logo {
        order: 2;
        margin: 0 auto;
        flex: 1;
        justify-content: center;
    }
    
    .nav-right {
        order: 3;
    }
    
    .desktop-nav {
        display: none;
    }
}

@media (min-width: 640px) {
    .burger-menu {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    .menu-overlay {
        display: none !important;
    }
}

.nav-link {
    display: block;
    padding: var(--space-sm);
    color: var(--text);
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--primary);
    padding-left: var(--space-md);
}

.nav-cta {
    margin-top: var(--space-md);
    background: var(--gradient);
    color: white !important;
    border-radius: var(--radius-full);
    text-align: center;
    border: none;
    padding: var(--space-xs) var(--space-lg) !important;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    padding-left: var(--space-lg) !important;
    padding-right: var(--space-lg) !important;
}

/* Hero */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    padding: var(--space-3xl) 0;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* Keep girlish gradient in dark mode too */
html[data-theme="dark"] .hero {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-md);
    box-sizing: border-box;
    overflow-x: hidden;
}

.hero-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    order: 1;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 8px 24px rgba(0, 0, 0, 0.15);
    border: 6px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg);
}

.hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4),
                0 12px 32px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: white;
    order: 2;
    padding-left: var(--space-lg);
    background: transparent;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
    overflow-x: hidden;
}

@media (max-width: 1023px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
        padding: 0 var(--space-md);
    }
    
    .hero-image-wrapper {
        order: 1;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-content {
        order: 2;
        text-align: center;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-image {
        max-width: 500px;
        width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--space-sm);
    }
    
    .hero-stats {
        justify-content: center;
    }
}

/* Mobile Button Fixes */
@media (max-width: 768px) {
    .btn {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.9rem;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        min-width: 0;
        max-width: 100%;
        width: auto;
    }
    
    .btn span {
        display: inline-block;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: calc(70px + var(--space-xl)) var(--space-sm) var(--space-2xl);
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero .container {
        padding: 0 var(--space-sm);
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-container {
        padding: 0;
        width: 100%;
        box-sizing: border-box;
        gap: var(--space-lg);
    }
    
    .hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    
    .hero-image {
        max-width: min(300px, 75vw);
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-content {
        padding-left: var(--space-sm);
        padding-right: var(--space-sm);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-buttons {
        flex-wrap: wrap;
        gap: var(--space-xs);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--space-sm);
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        flex: 1 1 100%;
        min-width: 0;
        max-width: 100%;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        box-sizing: border-box;
        padding: var(--space-md) var(--space-lg);
        font-size: 0.95rem;
        text-align: center;
        overflow: visible;
    }
    
    .hero-buttons .btn span {
        display: inline-block;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
    }
    
    .hero-title,
    .hero-subtitle {
        padding-left: var(--space-xs);
        padding-right: var(--space-xs);
        box-sizing: border-box;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-family: var(--font);
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: var(--space-md);
    line-height: 1.1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    hyphens: auto;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    margin-bottom: var(--space-xl);
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.95);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    hyphens: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: var(--space-sm);
    align-items: center;
    margin-bottom: var(--space-xl);
    flex-wrap: nowrap;
}

.hero-buttons .btn {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: 0.9rem;
    padding: var(--space-sm) var(--space-md);
    text-align: center;
    box-sizing: border-box;
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: var(--space-xl);
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-xl);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4),
                0 4px 12px rgba(0, 0, 0, 0.15);
    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.3), transparent);
    transition: left 0.5s;
}

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

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.5),
                0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    font-size: 1.1rem;
    background: var(--gradient);
    color: white;
    margin-top: var(--space-md);
}

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

/* Sections */
section {
    padding: var(--space-3xl) 0;
    margin-bottom: var(--space-2xl);
    width: 100%;
    box-sizing: border-box;
}

section:last-child {
    margin-bottom: 0;
}

/* Additional spacing for specific sections */
.hero {
    margin-bottom: 0;
    padding-bottom: var(--space-3xl);
}

.services {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
}

.gallery {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
}

.about {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
}

.booking {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
}

.contact {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
}

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

.section-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--gradient);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font);
    margin-bottom: var(--space-sm);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Services */
.services {
    background: var(--bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 
                0 2px 8px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3),
                0 8px 24px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.service-icon-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto var(--space-md) auto;
    display: block;
    background: var(--bg-alt);
    padding: var(--space-xs);
    border: 2px solid var(--border);
    filter: contrast(1.2) brightness(0.9);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.service-description {
    margin-bottom: var(--space-md);
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-note {
    margin-top: var(--space-xl);
    padding: var(--space-md);
    background: rgba(139, 92, 246, 0.1);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    text-align: center;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15),
                0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    min-height: 250px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4),
                0 8px 24px rgba(0, 0, 0, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(139, 92, 246, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.gallery-icon {
    font-size: 2rem;
    color: white;
}

/* About */
.about {
    background: var(--bg-alt);
}

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

.about-image {
    text-align: center;
}

.image-wrapper {
    position: relative;
    display: inline-block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.image-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.4),
                0 12px 32px rgba(0, 0, 0, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}

.image-wrapper img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1),
                0 2px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(139, 92, 246, 0.25),
                0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

.feature-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

/* Booking */
.booking {
    background: var(--gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.booking .section-title {
    color: white !important;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    -webkit-text-fill-color: white !important;
    background: none !important;
}

.booking .section-subtitle {
    color: rgba(255, 255, 255, 1) !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

.booking .section-badge {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.booking-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.booking-form {
    background: var(--bg);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

/* Floating Labels - Modern Clean Design */
.floating-label-group {
    position: relative;
}

.floating-label {
    position: absolute;
    left: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.3s ease;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 400;
    background: var(--bg);
    padding: 0 var(--space-xs);
    z-index: 1;
}

.floating-input:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label,
.floating-input.has-value ~ .floating-label {
    top: 0;
    transform: translateY(-50%) scale(0.85);
    color: var(--primary);
    font-weight: 500;
    font-size: 0.85rem;
}

.floating-input {
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
}

.floating-input:focus {
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
}

/* For select elements - handle selected state */
select.floating-input:not([value=""]) ~ .floating-label,
select.floating-input.has-value ~ .floating-label {
    top: 0;
    transform: translateY(-50%) scale(0.85);
    color: var(--primary);
    font-weight: 500;
    font-size: 0.85rem;
}

/* For date inputs */
input[type="date"].floating-input:not([value=""]) ~ .floating-label,
input[type="date"].floating-input.has-value ~ .floating-label {
    top: 0;
    transform: translateY(-50%) scale(0.85);
    color: var(--primary);
    font-weight: 500;
    font-size: 0.85rem;
}

/* For textarea */
textarea.floating-input:not(:placeholder-shown) ~ .floating-label,
textarea.floating-input.has-value ~ .floating-label {
    top: 0;
    transform: translateY(-50%) scale(0.85);
    color: var(--primary);
    font-weight: 500;
    font-size: 0.85rem;
}

/* Minimal label for radio groups */
.form-label-minimal {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 500;
    color: var(--text);
    font-size: 0.9rem;
    opacity: 0.9;
}

.form-hint {
    display: block;
    margin-top: var(--space-xs);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.4;
}

.form-input {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--bg);
    color: var(--text);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

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

.price-summary {
    padding: var(--space-md);
    background: var(--gradient);
    border-radius: var(--radius);
    color: white;
    box-shadow: var(--shadow);
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-xs) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: opacity 0.3s ease, transform 0.2s ease;
}

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

.price-total {
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 2px solid rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.price-summary small {
    font-size: 0.9rem;
    opacity: 0.9;
    display: block;
    margin-top: var(--space-sm);
    text-align: center;
}

.final-price-summary {
    padding: var(--space-lg);
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
}

.final-price-summary h3 {
    margin-bottom: var(--space-md);
    color: var(--primary);
    text-align: center;
}

.final-price-summary .price-breakdown {
    color: var(--text);
}

.final-price-summary .price-row {
    border-bottom: 1px solid var(--border);
}

.final-price-summary .price-total {
    border-top: 2px solid var(--primary);
    color: var(--primary);
}

.payment-note {
    margin-top: var(--space-md);
    padding: var(--space-sm);
    background: rgba(139, 92, 246, 0.1);
    border-radius: var(--radius);
    text-align: center;
}

.payment-note small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.radio-group {
    display: flex;
    flex-direction: row;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Mobile: Force single column - each option on its own row */
@media (max-width: 768px) {
    .radio-group {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: var(--space-sm);
    }
    
    .radio-label {
        flex: none;
        width: 100%;
        min-width: 0;
    }
}

.radio-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s;
    background: var(--bg);
    flex: 1;
    min-width: 0;
    justify-content: flex-start;
}

.radio-label:hover {
    border-color: var(--primary);
    background: rgba(139, 92, 246, 0.05);
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary);
    background: var(--primary);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.radio-text {
    flex: 1;
    color: var(--text);
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    user-select: none;
}

.toggle-label input[type="checkbox"] {
    display: none;
}

.toggle-switch {
    width: 50px;
    height: 28px;
    background: var(--border);
    border-radius: 28px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 2px solid var(--border);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    top: 1px;
    left: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-label input[type="checkbox"]:checked + .toggle-switch {
    background: var(--gradient);
    border-color: var(--primary);
}

.toggle-label input[type="checkbox"]:checked + .toggle-switch::after {
    left: 25px;
    background: white;
}

.toggle-text {
    color: var(--text);
    font-size: 0.95rem;
}

.link,
.terms-link {
    color: var(--primary);
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
}

.link:hover,
.terms-link:hover {
    color: var(--secondary);
    text-decoration: none;
}

.form-message {
    margin-top: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius);
    text-align: center;
    font-weight: 500;
    display: none;
    white-space: pre-line;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border: 2px solid #10B981;
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 2px solid #EF4444;
    display: block;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3),
                0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.contact-card:hover::before {
    opacity: 0.05;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.contact-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.contact-link {
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s;
}

.contact-link:hover {
    color: var(--secondary);
}

.contact-text {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--bg-alt);
    color: var(--text-muted);
    padding: var(--space-2xl) 0 var(--space-lg);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand .logo {
    margin-bottom: var(--space-md);
}

.footer-logo-image {
    height: 30px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* Hide footer logo text when footer logo image is present */
.footer-brand .logo:has(.footer-logo-image) .logo-text {
    display: none;
}

.footer-description {
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-lg);
}

.footer-column {
    text-align: left;
}

.footer-title {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: var(--space-md);
    text-align: left;
}

.footer-link {
    display: block;
    margin-bottom: var(--space-xs);
    transition: all 0.3s;
    text-align: left;
}

.footer-link:hover {
    color: var(--primary);
    padding-left: var(--space-xs);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none !important;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: var(--space-md);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    display: flex !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg);
    border-radius: var(--radius-lg);
    max-width: 800px;
    max-height: 90vh;
    width: 100%;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--border);
}

.modal-title {
    font-family: var(--font);
    font-size: 1.75rem;
    color: var(--text);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--bg-alt);
    color: var(--text);
}

.modal-body {
    padding: var(--space-lg);
    overflow-y: auto;
    color: var(--text);
    line-height: 1.8;
}

.modal-body h3 {
    font-family: var(--font);
    font-size: 1.5rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--text);
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    margin-bottom: var(--space-sm);
    color: var(--text-muted);
}

.modal-body ul, .modal-body ol {
    margin-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--text-muted);
}

.modal-body li {
    margin-bottom: var(--space-xs);
}

.modal-body strong {
    color: var(--text);
    font-weight: 600;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: var(--space-lg);
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.lightbox-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

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

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: var(--space-lg);
}

.lightbox-next {
    right: var(--space-lg);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 50px;
    height: 50px;
    max-width: calc(100vw - var(--space-lg) * 2);
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-sizing: border-box;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

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

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

/* Responsive */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
    
    .form-row .form-group {
        margin-bottom: 0;
    }
    
    .nav-menu {
        display: flex !important;
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
        align-items: center;
        gap: var(--space-md);
        border: none;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .nav-link {
        border: none;
        padding: var(--space-xs) var(--space-sm);
        white-space: nowrap;
    }
    
    .nav-link:hover {
        color: var(--primary);
    }
    
    .nav-cta {
        background: var(--gradient);
        color: white !important;
        padding: var(--space-xs) var(--space-lg) !important;
        border-radius: var(--radius-full);
        margin: 0;
        font-weight: 600;
        box-shadow: var(--shadow);
    }
    
    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
        padding-left: var(--space-lg) !important;
        padding-right: var(--space-lg) !important;
    }
}

@media (max-width: 639px) {
    .footer-column {
        text-align: center;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-link {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr;
    }
    
    .footer-column {
        text-align: left;
    }
    
    .footer-title {
        text-align: left;
    }
    
    .footer-link {
        text-align: left;
    }
    
    /* Desktop: Multi-column layout for radio groups */
    .radio-group {
        flex-direction: row;
        gap: var(--space-md);
        flex-wrap: wrap;
    }
    
    .radio-label {
        flex: 1;
        min-width: 0;
        width: auto;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-xl);
    }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1023px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}

@media (max-width: 639px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* Address field animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 200px;
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
        max-height: 200px;
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
}

#addressGroup {
    overflow: hidden;
    transition: all 0.3s ease-out;
}
