/* ==================== CSS VARIABLES ==================== */
:root {
    --primary: #002B36;
    --primary-light: #0A3D4A;
    --secondary: #FFFFFF;
    --accent: #A8B8B8;
    --accent-light: #C4D4D4;
    --text-dark: #002B36;
    --text-light: #FFFFFF;
    --text-muted: #7A8A8A;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', 'Inter', sans-serif;
    
    --transition-smooth: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.3s ease;
    
    --container-width: 1400px;
    --header-height: 100px;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary);
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.02em;
    overflow-x: hidden;
}

/* ==================== UTILITIES ==================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 120px 0;
    position: relative;
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-smooth);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== HEADER ==================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    background: linear-gradient(to bottom, var(--primary) 0%, rgba(0,43,54,0.95) 100%);
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

header.scrolled {
    background: rgba(0,43,54,0.98);
    box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo / Monogram */
.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--text-light);
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: var(--transition-fast);
}

.logo:hover .logo-img {
    opacity: 0.8;
}

.monogram {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    border: 2px solid var(--text-light);
    border-radius: 50%;
    background: transparent;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.monogram::before {
    content: 'EQ';
    position: relative;
    z-index: 1;
}

.monogram::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--text-light);
    opacity: 0;
    transition: var(--transition-fast);
    border-radius: 50%;
}

.monogram:hover::after {
    opacity: 0.1;
}

.logo-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-light);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 1px;
    background: var(--text-light);
    transition: var(--transition-fast);
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

/* Monogram Watermark Background */
.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.watermark-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.05;
    filter: grayscale(100%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: var(--accent-light);
    max-width: 600px;
    margin: 0 auto 48px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.7s;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-light);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition-fast);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.9s;
}

.hero-cta:hover {
    background: var(--text-light);
    color: var(--primary);
}

.hero-cta svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.2s;
}

.scroll-indicator span {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
}

.scroll-indicator-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ==================== PORTFOLIO SECTION ==================== */
.portfolio {
    background: var(--primary);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    margin-bottom: 20px;
}

.section-description {
    font-size: 16px;
    font-weight: 300;
    color: var(--accent-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Golden Ratio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--primary-light);
    cursor: pointer;
}

/* Grid Sizing */
.portfolio-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1/1;
}

.portfolio-item.medium {
    grid-column: span 1;
    aspect-ratio: 4/3;
}

.portfolio-item.small {
    grid-column: span 1;
    aspect-ratio: 1/1;
}

.portfolio-item.tall {
    grid-column: span 1;
    aspect-ratio: 3/4;
}

/* Editorial Large - occupies more space */
.portfolio-item.editorial-large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1/1;
}

/* Publicidad Large - occupies more space */
.portfolio-item.publicidad-large {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 2/1;
}

/* Project Image */
.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

/* Project Overlay */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,43,54,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    opacity: 0;
    transition: var(--transition-fast);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
    transform: translateY(20px);
    transition: var(--transition-fast);
}

.portfolio-item:hover .portfolio-category {
    transform: translateY(0);
}

.portfolio-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-light);
    transform: translateY(20px);
    transition: var(--transition-fast);
    transition-delay: 0.05s;
}

.portfolio-item:hover .portfolio-title {
    transform: translateY(0);
}

/* Placeholder for projects */
.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    position: relative;
}

.portfolio-placeholder-icon {
    width: 80px;
    height: 80px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--accent);
}

/* ==================== PROCESS SECTION ==================== */
.process {
    background: var(--primary-light);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.process-item {
    text-align: center;
    padding: 40px 20px;
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
    border-radius: 50%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Subtle continuous pulse animation */
.process-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: var(--accent);
    animation: iconPulse 3s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes iconPulse {
    0%, 100% {
        transform: rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg);
        opacity: 0.6;
    }
}

/* Hover effect - slight rotation and scale */
.process-item:hover .process-icon {
    transform: scale(1.08) rotate(5deg);
    border-color: var(--text-light);
    box-shadow: 0 0 30px rgba(168, 184, 184, 0.3);
}

.process-item:hover .process-icon::before {
    border-top-color: var(--text-light);
    opacity: 0.8;
    animation-duration: 1.5s;
}

.process-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent);
    stroke-width: 1;
    fill: none;
    transition: all 0.4s ease;
}

/* SVG stroke animation on hover */
.process-item:hover .process-icon svg {
    stroke: var(--text-light);
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.process-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--primary);
    border: 1px solid var(--accent);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.4s ease;
}

.process-item:hover .process-number {
    background: var(--text-light);
    border-color: var(--text-light);
    color: var(--primary);
    transform: scale(1.1);
}

.process-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.process-item:hover .process-title {
    color: var(--text-light);
}

.process-description {
    font-size: 14px;
    font-weight: 300;
    color: var(--accent-light);
    line-height: 1.8;
    transition: color 0.3s ease;
}

.process-item:hover .process-description {
    color: var(--text-light);
}

/* Entrance animation for process icons */
.process-icon svg {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawIcon 1.5s ease forwards;
    animation-delay: 0.3s;
}

@keyframes drawIcon {
    to {
        stroke-dashoffset: 0;
    }
}

/* ==================== LOGOFOLIO SECTION ==================== */
.logofolio {
    background: #FFFFFF;
    color: var(--primary);
    overflow: hidden;
}

.logofolio .section-eyebrow {
    color: var(--accent);
}

.logofolio .section-title {
    color: var(--primary);
}

.logofolio .section-description {
    color: var(--primary-light);
}

.carousel-container {
    padding-top: 40px;
    width: 100vw;
    margin-left: calc(-50vw + 50%); /* Full width bleed out of container */
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scrollCarousel 40s linear infinite;
    gap: 30px;
    padding: 0 15px;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    position: relative;
    width: 250px;
    aspect-ratio: 1/1;
    flex-shrink: 0;
    cursor: pointer;
    overflow: hidden;
    background: #f8f8f8;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-item:hover img {
    transform: scale(1.05);
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    padding: 12px;
    text-align: center;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.carousel-item:hover .carousel-caption {
    transform: translateY(0);
}

@keyframes scrollCarousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

@media (max-width: 768px) {
    .carousel-item {
        width: 220px;
    }
    
    .carousel-caption {
        transform: translateY(0); /* Always visible on mobile for UX */
        padding: 8px;
        font-size: 12px;
    }
}

/* ==================== ABOUT SECTION ==================== */
.about {
    background: var(--primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-main {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: grayscale(30%);
}

.about-image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--accent);
    z-index: -1;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    margin-bottom: 32px;
    line-height: 1.2;
}

.about-text p {
    font-size: 16px;
    font-weight: 300;
    color: var(--accent-light);
    margin-bottom: 24px;
    line-height: 1.9;
}

.about-signature {
    margin-top: 40px;
    font-family: var(--font-heading);
    font-size: 28px;
    font-style: italic;
    color: var(--accent);
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--primary-light);
    padding: 80px 0 40px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-cta h3 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}

.footer-cta p {
    font-size: 16px;
    font-weight: 300;
    color: var(--accent-light);
    margin-bottom: 32px;
    max-width: 400px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--text-light);
    color: var(--primary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    color: var(--accent-light);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-contact-item:hover {
    color: var(--text-light);
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    fill: none;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--text-light);
    border-color: var(--text-light);
}

.social-link:hover svg {
    stroke: var(--primary);
}

.social-link svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    fill: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(168,184,184,0.2);
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--accent-light);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .portfolio-item.large,
    .portfolio-item.medium,
    .portfolio-item.small,
    .portfolio-item.tall {
        grid-column: span 3;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 80px;
    }
    
    .container {
        padding: 0 24px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--primary-light);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: var(--transition-smooth);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item.large,
    .portfolio-item.medium,
    .portfolio-item.small,
    .portfolio-item.tall {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-item {
        padding: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ==================== BOOKING MODAL ==================== */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 43, 54, 0.95);
    z-index: 2000;
    overflow-y: auto;
    padding: 40px 20px;
}

.booking-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-modal-content {
    background: var(--primary-light);
    max-width: 600px;
    width: 100%;
    padding: 48px;
    position: relative;
    border: 1px solid var(--accent);
}

.booking-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-modal-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-light);
}

.booking-modal h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 8px;
}

.booking-modal-subtitle {
    font-size: 14px;
    color: var(--accent-light);
    margin-bottom: 32px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    background: var(--primary);
    border: 1px solid var(--accent);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A8B8B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--primary);
    color: var(--text-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.booking-submit {
    padding: 18px 32px;
    background: var(--text-light);
    color: var(--primary);
    border: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
    margin-top: 8px;
}

.booking-submit:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.booking-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Success Message */
.booking-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.booking-success.active {
    display: block;
}

.booking-success-icon {
    width: 80px;
    height: 80px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.booking-success-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--accent);
}

.booking-success h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 16px;
}

.booking-success p {
    color: var(--accent-light);
    margin-bottom: 8px;
}

.booking-success .booking-details {
    background: var(--primary);
    padding: 20px;
    margin-top: 24px;
    text-align: left;
}

.booking-success .booking-details p {
    margin-bottom: 8px;
    font-size: 14px;
}

.booking-success .booking-details strong {
    color: var(--accent);
}

.booking-back {
    margin-top: 24px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--text-light);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}

.booking-back:hover {
    background: var(--accent);
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.time-slot {
    padding: 12px 8px;
    background: var(--primary);
    border: 1px solid var(--accent);
    color: var(--text-light);
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
}

.time-slot:hover {
    border-color: var(--text-light);
}

.time-slot.selected {
    background: var(--text-light);
    color: var(--primary);
    border-color: var(--text-light);
}

.time-slot.unavailable {
    opacity: 0.3;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .booking-modal-content {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 43, 54, 0.98);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border: 1px solid var(--accent);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: 1px solid var(--accent);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 3001;
}

.lightbox-close:hover {
    background: var(--text-light);
    border-color: var(--text-light);
}

.lightbox-close:hover svg {
    stroke: var(--primary);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-light);
    transition: var(--transition-fast);
}

@media (max-width: 768px) {
    .lightbox {
        padding: 20px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
}

