/* ========================================
   GENOVA STUDIOS — Main Stylesheet
   Dark Elegant Theme / Montréal Studio
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
    --accent: #00bcd4;
    --accent-light: #4dd0e1;
    --accent-dark: #0097a7;
    --accent-glow: rgba(0, 188, 212, 0.15);
    --accent-glow-strong: rgba(0, 188, 212, 0.3);
    --success: #4caf50;
    --error: #f44336;
    --gold: #ffd700;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-sm: 8px;
}

/* ---------- Dark Theme (default) ---------- */
[data-theme="dark"] {
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-card: #16161f;
    --bg-card-hover: #1c1c28;
    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b8;
    --text-muted: #6a6a80;
    --border: #2a2a3a;
    --border-light: #3a3a4a;
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(0, 188, 212, 0.1);
    --hero-gradient: radial-gradient(ellipse at 20% 50%, rgba(0, 188, 212, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 188, 212, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0f 0%, #0d0d14 50%, #0a0a0f 100%);
    --hero-overlay-color: rgba(0, 188, 212, 0.02);
    --navbar-bg: rgba(10, 10, 15, 0.95);
    --btn-primary-text: #000;
    --scrollbar-track: #0a0a0f;
    --scrollbar-thumb: #2a2a3a;
    --selection-text: #000;
    --page-hero-glow: rgba(0, 188, 212, 0.08);
    --studio-pattern: url('../img/studio-pattern-dark.svg');
}

/* ---------- Light Theme ---------- */
[data-theme="light"] {
    --bg-primary: #f5f5f8;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f0f5;
    --text-primary: #1a1a2e;
    --text-secondary: #555570;
    --text-muted: #8888a0;
    --border: #e0e0e8;
    --border-light: #d0d0d8;
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 30px rgba(0, 188, 212, 0.08);
    --hero-gradient: radial-gradient(ellipse at 20% 50%, rgba(0, 188, 212, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 188, 212, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, #f5f5f8 0%, #eef0f5 50%, #f5f5f8 100%);
    --hero-overlay-color: rgba(0, 188, 212, 0.015);
    --navbar-bg: rgba(255, 255, 255, 1);
    --btn-primary-text: #ffffff;
    --scrollbar-track: #f5f5f8;
    --scrollbar-thumb: #d0d0d8;
    --selection-text: #ffffff;
    --page-hero-glow: rgba(0, 188, 212, 0.05);
    --studio-pattern: url('../img/studio-pattern-light.svg');
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    background-image: var(--studio-pattern);
    background-size: 800px 700px;
    background-repeat: repeat;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: var(--accent-light);
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--bg-secondary);
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    gap: 8px;
}

.btn-primary {
    background: #04525c;
    color: #fff;
}

.btn-primary:hover {
    background: #066d7a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(4, 82, 92, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: var(--navbar-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled {
    background: var(--navbar-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    background: rgb(0, 0, 0);
    border-radius: 50%;
    padding: 5px;
    transition: var(--transition);
    flex-shrink: 0;
}

.navbar.scrolled .nav-logo img {
    height: 42px;
    width: 42px;
    padding: 4px;
}


.nav-logo-text {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 8px;
    margin-left: 20px;
}

.nav-menu-overlay,
.nav-menu-close {
    display: none;
}

.nav-link {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: rgb(8, 54, 54);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 20px;
}

/* Theme Toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-primary);
}

.theme-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
}

[data-theme="dark"] .theme-icon-moon { display: none; }
[data-theme="dark"] .theme-icon-sun { display: block; }
[data-theme="light"] .theme-icon-sun { display: none; }
[data-theme="light"] .theme-icon-moon { display: block; }

/* WhatsApp Link */
.nav-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #25D366;
    border: none;
    border-radius: 8px;
    color: #fff !important;
    transition: var(--transition);
}

.nav-whatsapp:hover {
    background: #128C7E;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

/* Mobile menu extras — hidden on desktop */
.nav-menu-extras {
    display: none;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
}

.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.lang-dropdown-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.lang-dropdown.open .lang-dropdown-toggle {
    border-color: var(--accent);
    background: var(--bg-card-hover);
}

.lang-arrow {
    transition: transform 0.3s ease;
}

.lang-dropdown.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px;
    min-width: 170px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1001;
}

.lang-dropdown.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    padding: 11px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.lang-option:hover {
    background: var(--accent-glow);
    color: var(--accent);
}

.lang-option.active {
    color: var(--accent);
    background: var(--accent-glow);
    font-weight: 600;
}

.lang-flag {
    font-weight: 700;
    font-size: 0.75rem;
    background: var(--bg-secondary);
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.03em;
    min-width: 28px;
    text-align: center;
}

.nav-cta {
    background: #04525c;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.nav-cta:hover {
    background: #066d7a;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(4, 82, 92, 0.35);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.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(5px, -5px);
}

/* ---------- HERO ---------- */
.hero {
    height: 75vh;
    min-height: 480px;
    max-height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0,0,0,0.05);
}

.hero-bg:not(:has(.hero-slideshow)) .hero-overlay {
    background: transparent;
}

@keyframes scanline {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 24px;
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 50%, var(--text-primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 300;
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    letter-spacing: 0.15em;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 22px; opacity: 0.3; }
}

/* ---------- SERVICES ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--accent);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---------- GALLERY ---------- */
.gallery-filters {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: #04525c;
    color: #fff;
    border-color: #04525c;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    min-height: 200px;
}

.gallery-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    gap: 16px;
}

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

.loader {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    aspect-ratio: 1/1;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-glow);
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

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

.gallery-overlay .gallery-caption {
    color: #fff;
    font-size: 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-overlay .gallery-type-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.gallery-placeholder span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.gallery-item:hover .gallery-placeholder {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--bg-card-hover) 0%, rgba(0, 188, 212, 0.05) 100%);
}

.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.gallery-empty svg {
    margin-bottom: 16px;
    opacity: 0.3;
}

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

.gallery-footer .btn {
    display: inline-flex;
    align-items: center;
}

/* ---------- PRICING ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

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

.pricing-card.popular {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(0, 188, 212, 0.08) 0%, var(--bg-card) 40%);
    transform: scale(1.03);
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #04525c;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 8px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 8px;
    color: var(--accent);
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
}

.pricing-per {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 30px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-btn {
    width: 100%;
}

/* ---------- BOOKING ---------- */
.booking-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.step.active .step-number,
.step.completed .step-number {
    background: #04525c;
    border-color: #04525c;
    color: #fff;
}

.step span {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.step.active span {
    color: var(--accent);
}

.step-line {
    width: 60px;
    height: 2px;
    background: var(--border);
    margin: 0 8px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.step-line.active {
    background: #04525c;
}

.form-step {
    display: none;
    animation: fadeSlide 0.4s ease-out;
}

.form-step.active {
    display: block;
}

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

.service-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.service-option input {
    display: none;
}

.option-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.option-card strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.option-card span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.service-option input:checked + .option-card {
    border-color: var(--accent);
    background: var(--accent-glow);
    box-shadow: var(--shadow-glow);
}

.option-card:hover {
    border-color: var(--border-light);
}

/* Calendar */
.date-picker {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cal-nav {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-primary);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal-nav:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.cal-month {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day-name {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 0;
    text-transform: uppercase;
}

.cal-day {
    text-align: center;
    padding: 10px 0;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-secondary);
}

.cal-day:hover {
    background: var(--accent-glow);
    color: var(--accent);
}

.cal-day.selected {
    background: #04525c;
    color: #fff;
    font-weight: 600;
}

.cal-day.today {
    border: 1px solid var(--accent);
}

.cal-day.disabled {
    color: var(--text-muted);
    opacity: 0.3;
    cursor: not-allowed;
}

.cal-day.empty {
    cursor: default;
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.time-group h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.slot-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 10px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.slot-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.slot-btn.selected {
    background: #04525c;
    color: #fff;
    border-color: #04525c;
    font-weight: 600;
}

.slot-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

.slot-btn.disabled:hover {
    border-color: var(--border);
    color: var(--text-secondary);
}

.slot-btn.disabled small {
    display: block;
    font-size: 0.65rem;
    text-decoration: none;
    margin-top: 2px;
    color: var(--text-secondary);
}

/* Form Fields */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group textarea {
    resize: vertical;
}

.form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 16px;
}

/* Confirmation */
.confirmation-card {
    text-align: center;
    padding: 40px;
}

.confirm-icon {
    width: 70px;
    height: 70px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 24px;
}

.confirm-summary {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin: 20px 0;
    text-align: left;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 2;
}

/* Confirm Review */
.confirm-review h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 24px;
    text-align: center;
}

.confirm-summary-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.confirm-summary-card .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.confirm-summary-card .summary-row:last-child {
    border-bottom: none;
}

.confirm-summary-card .summary-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.confirm-summary-card .summary-value {
    color: var(--text-primary);
    font-weight: 600;
}

.confirm-deposit-box {
    background: linear-gradient(135deg, rgba(0,188,212,0.08), rgba(0,188,212,0.02));
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.deposit-label {
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.deposit-amount {
    color: var(--accent);
    font-size: 2rem;
    font-weight: 700;
}

.confirm-notice {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.confirm-notice svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.confirm-notice p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.btn-lg {
    width: 100%;
    padding: 18px 32px;
    font-size: 1.05rem;
}

#confirmBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success State */
.confirm-success {
    text-align: center;
    padding: 20px 0;
    animation: fadeSlide 0.5s ease-out;
}

.success-icon-lg {
    width: 90px;
    height: 90px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #fff;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    50% { transform: scale(1.15); }
    to { transform: scale(1); }
}

.confirm-success h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 8px;
}

.success-subtitle {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.success-ref {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 24px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 30px;
}

.success-ref span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.success-ref strong {
    color: var(--accent);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.confirm-deposit {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
}

/* ---------- CLIENT SPACE ---------- */
.client-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.client-form-wrapper > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.client-access-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}

.form-divider {
    color: var(--text-muted);
    margin: 20px 0;
    position: relative;
    text-align: center;
}

.form-divider::before,
.form-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 20px);
    height: 1px;
    background: var(--border);
}

.form-divider::before { left: 0; }
.form-divider::after { right: 0; }

.client-access-form .btn {
    width: 100%;
    margin-top: 10px;
}

.photos-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

/* ---------- PRINTING ---------- */
.printing-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.upload-zone {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 60px 40px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    margin-bottom: 30px;
}

.upload-zone:hover,
.upload-zone.dragover {
    border-color: var(--accent);
    background: var(--accent-glow);
}

.upload-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    color: var(--accent);
}

.upload-icon svg {
    width: 100%;
    height: 100%;
}

.upload-zone p {
    color: var(--text-secondary);
}

.print-options {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
}

.format-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.format-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.format-option:hover {
    border-color: var(--border-light);
}

.format-option input {
    accent-color: var(--accent);
}

.format-option input:checked ~ span {
    color: var(--accent);
}

.format-option small {
    margin-left: auto;
    color: var(--text-muted);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 160px;
}

.qty-btn {
    width: 44px;
    height: 44px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--accent-glow);
    border-color: var(--accent);
    color: var(--accent);
}

.qty-btn:first-child {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.qty-btn:last-child {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.quantity-control input {
    width: 60px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: none;
    border-right: none;
    color: var(--text-primary);
    text-align: center;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    -moz-appearance: textfield;
}

.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.print-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    margin: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-size: 1.1rem;
}

.print-total strong {
    font-size: 1.5rem;
    color: var(--accent);
}

.print-options .btn {
    width: 100%;
}

.print-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}
.print-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.print-input::placeholder { color: var(--text-muted); }

.print-progress {
    margin-bottom: 16px;
}
.print-progress-bar {
    width: 100%;
    height: 6px;
    background: var(--bg-secondary);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}
.print-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), #00e5ff);
    border-radius: 3px;
    transition: width 0.3s ease;
}
.print-progress-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.print-success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.print-success-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    max-width: 440px;
    width: 100%;
}
.print-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: #4caf50;
}
.print-success-icon svg { width: 100%; height: 100%; }
.print-success-card h2 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-bottom: 12px;
}
.print-success-ref {
    font-size: 1.1rem;
    color: var(--text-secondary);
}
.print-success-ref strong {
    color: var(--accent);
    font-size: 1.3rem;
}
.print-success-detail {
    color: var(--text-muted);
    margin-top: 8px;
}

/* ---------- CREATORS ---------- */
.creators-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.creators-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.equipment-list h3 {
    font-family: var(--font-heading);
    margin-bottom: 16px;
}

.equipment-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

.equipment-list li svg {
    color: var(--accent);
    flex-shrink: 0;
}

.equipment-list li:last-child {
    border-bottom: none;
}

.creators-info .btn {
    margin-top: 30px;
}

.creator-showcase {
    aspect-ratio: 3/4;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-placeholder {
    text-align: center;
    color: var(--text-muted);
}

.showcase-placeholder svg {
    margin-bottom: 16px;
    opacity: 0.3;
}

/* ---------- CONTACT ---------- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}

.contact-form .btn {
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 20px;
}

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

.info-item svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.info-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.social-links {
    margin-top: 10px;
}

.social-links strong {
    display: block;
    margin-bottom: 12px;
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.socials a:hover {
    background: var(--accent-glow);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 30px 0;
}

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

.footer-row-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-row-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 35px;
    opacity: 0.6;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-socials {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--accent-glow);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
}
.footer-credit {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin: 0;
    opacity: 0.7;
    letter-spacing: 0.02em;
}
.footer-credit a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
}
.footer-credit a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    z-index: 2001;
}

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

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius);
    cursor: pointer;
}

.lightbox-actions {
    text-align: center;
    margin-top: 16px;
}

.lightbox-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

.lightbox-actions .btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

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

/* ---------- SCROLL ANIMATIONS ---------- */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-aos][data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos][data-aos-delay="400"] { transition-delay: 0.4s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .nav-logo {
        flex-direction: column;
        gap: 2px;
        align-items: center;
    }

    .nav-logo img {
        height: 36px;
        width: 36px;
        padding: 3px;
    }

    .navbar.scrolled .nav-logo img {
        height: 32px;
        width: 32px;
        padding: 3px;
    }

    .nav-logo-text {
        display: block;
        font-family: var(--font-heading);
        font-size: 0.55rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        color: var(--text-primary);
        white-space: nowrap;
    }

    .nav-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 70px 30px 30px;
        gap: 4px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--border);
        margin-left: 0;
        z-index: 999;
    }

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

    .nav-menu-close {
        display: block;
        position: absolute;
        top: 18px;
        right: 18px;
        background: none;
        border: none;
        color: var(--text-primary);
        cursor: pointer;
        padding: 4px;
        z-index: 1000;
    }

    .nav-right > .theme-toggle {
        display: none;
    }

    .nav-menu-extras {
        display: flex;
        gap: 10px;
        padding: 16px 16px 0;
        margin-top: 12px;
        border-top: 1px solid var(--border);
    }

    .nav-menu-extras .theme-toggle {
        display: flex;
        gap: 8px;
        width: auto;
        padding: 10px 16px;
        font-size: 0.9rem;
        color: var(--text-primary);
    }

    .nav-menu-extras .theme-toggle span {
        font-size: 0.9rem;
    }

    .nav-whatsapp-mobile {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 16px;
        background: #25D366;
        color: #fff !important;
        border-radius: 8px;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .nav-whatsapp-mobile:hover {
        background: #128C7E;
        color: #fff !important;
    }

    .nav-link {
        font-size: 1rem;
        padding: 12px 16px;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .footer {
        padding: 20px 0;
    }

    .footer-content {
        gap: 12px;
    }

    .footer-logo img {
        height: 28px;
    }

    .footer-nav {
        gap: 10px;
    }

    .footer-nav a {
        font-size: 0.75rem;
    }

    .footer-socials a {
        width: 32px;
        height: 32px;
    }

    .footer-socials a svg {
        width: 16px;
        height: 16px;
    }

    .footer-copy {
        font-size: 0.75rem;
    }

    .footer-copy br {
        display: none;
    }

    .footer-credit {
        font-size: 0.65rem;
    }

    .footer-links a {
        font-size: 0.75rem;
    }

    .lang-dropdown {
        order: -1;
    }

    .lang-dropdown-menu {
        right: auto;
        left: 0;
        min-width: 190px;
        gap: 4px;
        padding: 10px;
    }

    .lang-option {
        padding: 12px 14px;
    }

    .creators-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .time-slots {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
        min-height: 420px;
        max-height: 600px;
    }

    .section {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }

    .service-options {
        grid-template-columns: 1fr;
    }

    .booking-steps span {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-copy {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .lang-dropdown-toggle {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .upload-zone {
        padding: 40px 20px;
    }

    .contact-form {
        padding: 24px;
    }

    .client-access-form {
        padding: 24px;
    }

    .nav-right {
        gap: 8px;
    }
}

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

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

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

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

/* ---------- Selection ---------- */
::selection {
    background: var(--accent);
    color: var(--btn-primary-text);
}

/* ========================================
   MULTI-PAGE STYLES
   ======================================== */

/* ---------- Page Hero ---------- */
.page-hero {
    padding: 140px 0 60px;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 0%, var(--page-hero-glow) 0%, transparent 60%),
        var(--bg-primary);
    border-bottom: 1px solid var(--border);
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.page-hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ---------- Services Full Page ---------- */
.services-grid-full {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-full {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 50px;
    transition: var(--transition);
}

.service-card-full:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.service-card-full.reverse {
    direction: rtl;
}

.service-card-full.reverse > * {
    direction: ltr;
}

.service-card-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-lg {
    width: 120px;
    height: 120px;
    color: var(--accent);
    background: var(--accent-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.service-icon-lg svg {
    width: 100%;
    height: 100%;
}

.service-card-info h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.service-card-info > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.service-details {
    margin-bottom: 24px;
}

.service-details li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-details li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: var(--bg-secondary) !important;
}

.cta-box {
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(0, 188, 212, 0.06) 0%, transparent 70%),
        var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 60px 40px;
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Section Footer ---------- */
.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* ---------- Gallery Preview (Home) ---------- */
.gallery-grid-preview {
    max-height: 400px;
    overflow: hidden;
    position: relative;
}

.gallery-grid-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(transparent, var(--bg-primary));
    pointer-events: none;
}

/* ---------- Included Grid (Forfaits page) ---------- */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.included-item {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.included-item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.included-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    color: var(--accent);
    background: var(--accent-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.included-item h3 {
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.included-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ---------- Upload Preview ---------- */
.upload-preview {
    margin-bottom: 24px;
}

.upload-preview h3 {
    font-family: var(--font-heading);
    margin-bottom: 16px;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.preview-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

/* ---------- Footer Nav ---------- */
.footer-nav {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--accent);
}

/* ---------- Navbar transparent on home ---------- */
.navbar.home-nav {
    background: transparent;
}

.navbar.home-nav.scrolled {
    background: var(--navbar-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* ---------- Service card as link ---------- */
a.service-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

a.service-card:hover {
    color: inherit;
}

/* ---------- Multi-page Responsive ---------- */
@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 40px;
    }

    .service-card-full {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 30px;
    }

    .service-card-full.reverse {
        direction: ltr;
    }

    .service-icon-lg {
        width: 80px;
        height: 80px;
        padding: 20px;
    }

    .cta-box {
        padding: 40px 24px;
    }
}
