/* ==========================================
   DOMENICO - Caffè Bar Zagreb
   Premium Website Styles
   ========================================== */

/* CSS Variables */
:root {
    --black: #0a0a0a;
    --black-light: #141414;
    --black-lighter: #1a1a1a;
    --gold: #c9a227;
    --gold-light: #d4b445;
    --gold-dark: #a68620;
    --gold-pale: #e8d89a;
    --text: #f5f5f5;
    --text-muted: #888888;
    
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--black);
}

::-webkit-scrollbar {
    width: 8px;
}

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

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

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
}

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

button {
    cursor: none;
}

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

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: transform 0.15s var(--ease-out-expo), 
                background 0.3s ease,
                width 0.3s var(--ease-out-expo),
                height 0.3s var(--ease-out-expo);
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.4s var(--ease-out-expo),
                width 0.3s var(--ease-out-expo),
                height 0.3s var(--ease-out-expo),
                border-color 0.3s ease;
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(2);
    background: var(--gold-light);
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: var(--gold-light);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out-expo), 
                visibility 0.8s var(--ease-out-expo);
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preloader-text {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 8rem);
    letter-spacing: 0.3em;
    margin-left: 0.3em; /* Offset letter-spacing for visual centering */
    color: var(--gold);
    overflow: hidden;
}

.preloader-text span {
    display: inline-block;
    animation: preloaderLetter 1.5s var(--ease-out-expo) forwards;
    opacity: 0;
    transform: translateY(100%);
}

.preloader-text span:nth-child(1) { animation-delay: 0.1s; }
.preloader-text span:nth-child(2) { animation-delay: 0.15s; }
.preloader-text span:nth-child(3) { animation-delay: 0.2s; }
.preloader-text span:nth-child(4) { animation-delay: 0.25s; }
.preloader-text span:nth-child(5) { animation-delay: 0.3s; }
.preloader-text span:nth-child(6) { animation-delay: 0.35s; }
.preloader-text span:nth-child(7) { animation-delay: 0.4s; }
.preloader-text span:nth-child(8) { animation-delay: 0.45s; }

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

.preloader-line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 2rem auto 0;
    animation: preloaderLine 2s var(--ease-out-expo) 0.6s forwards;
}

@keyframes preloaderLine {
    to {
        width: 200px;
    }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    mix-blend-mode: difference;
}

.nav-logo a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    transition: color 0.3s ease;
}

.nav-logo a:hover {
    color: var(--gold-light);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--gold);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
}

.nav-link:hover {
    color: transparent;
}

.nav-link:hover::before {
    transform: translateY(0);
}

.nav-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.nav-menu-btn span {
    width: 30px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s var(--ease-out-expo);
}

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

.nav-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

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

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 0.1em;
    color: var(--text);
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.5s var(--ease-out-expo);
}

.mobile-menu.active .mobile-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }

.mobile-link:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(10, 10, 10, 0.3) 0%, var(--black) 70%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    bottom: 0;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(201, 162, 39, 0.5);
    will-change: transform, opacity;
    animation: particleFloat 10s ease-out infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0);
    }
    5% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    95% {
        opacity: 0.7;
        transform: translateY(-95vh) scale(0.6);
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(0);
    }
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-out-expo) 2s forwards;
}

.hero-subtitle .line {
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.hero-subtitle .text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    margin-left: 0.3em; /* Offset letter-spacing for visual centering */
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 12rem);
    letter-spacing: 0.15em;
    margin-left: 0.15em; /* Offset letter-spacing for visual centering */
    line-height: 1;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-word {
    display: inline-block;
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(100%);
    animation: revealText 1.2s var(--ease-out-expo) 2.2s forwards;
}

@keyframes revealText {
    to {
        transform: translateY(0);
    }
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-style: italic;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-out-expo) 2.5s forwards;
}

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

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-out-expo) 2.8s forwards;
    transition: all 0.4s var(--ease-out-expo);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease-out-expo);
    z-index: -1;
}

.hero-cta:hover {
    color: var(--black);
}

.hero-cta:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.cta-arrow {
    transition: transform 0.3s var(--ease-out-expo);
}

.hero-cta:hover .cta-arrow {
    transform: translateY(5px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-out-expo) 3.2s forwards;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* About Section */
.about {
    position: relative;
    padding: 10rem 4rem;
    overflow: hidden;
}

.section-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(8rem, 25vw, 20rem);
    letter-spacing: 0.1em;
    color: var(--black-lighter);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.about-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    z-index: 1;
}

.about-left {
    position: relative;
}

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

.about-image-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    z-index: 2;
    transform-origin: left;
    transition: transform 1.2s var(--ease-out-expo);
}

.about-image-wrapper.revealed .about-image-reveal {
    transform: scaleX(0);
    transform-origin: right;
}

.about-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter 0.5s ease, transform 0.5s var(--ease-out-expo);
}

.about-image-wrapper:hover .about-image {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.about-image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--gold);
    pointer-events: none;
    z-index: -1;
}

.about-right {
    padding-left: 2rem;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.label-number {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold);
}

.label-text {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.about-title em {
    color: var(--gold);
    font-style: italic;
}

.title-reveal {
    display: block;
    overflow: hidden;
}

.title-reveal > * {
    display: inline-block;
}

.about-text {
    margin-bottom: 3rem;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.about-features {
    display: flex;
    gap: 3rem;
}

.feature {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
}

.feature-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
}

/* Marquee Section */
.marquee-section {
    padding: 3rem 0;
    background: var(--black-light);
    overflow: hidden;
}

.marquee {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 0.1em;
    color: var(--text);
}

.marquee-dot {
    color: var(--gold) !important;
    font-size: 1rem !important;
}

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

/* Gallery Section */
.gallery {
    padding: 8rem 4rem;
    background: var(--black);
}

.gallery-header {
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
}

.gallery-title em {
    color: var(--gold);
    font-style: italic;
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item-1 {
    grid-column: span 2;
}

.gallery-item-inner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo), filter 0.5s ease;
    filter: grayscale(30%) brightness(0.9);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out-expo);
}

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

.gallery-item-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold);
}

/* Locations Section */
.locations {
    padding: 8rem 4rem;
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}

.locations-header {
    max-width: 1400px;
    margin: 0 auto 4rem;
    text-align: center;
}

.locations-header .section-label {
    justify-content: center;
}

.locations-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
}

.locations-title em {
    color: var(--gold);
    font-style: italic;
}

.locations-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.location-card {
    position: relative;
    padding: 3rem;
    background: var(--black-lighter);
    border: 1px solid var(--black-lighter);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.location-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.location-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.location-card:hover .location-card-bg {
    opacity: 1;
}

.location-number {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--black-light);
    position: absolute;
    top: 1rem;
    right: 2rem;
    transition: color 0.5s ease;
}

.location-card:hover .location-number {
    color: rgba(201, 162, 39, 0.1);
}

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

.location-name {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.location-address {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.location-details {
    margin-bottom: 2rem;
}

.location-detail {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.detail-value {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.location-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    transition: color 0.3s ease;
}

.location-cta:hover {
    color: var(--gold);
}

.location-cta svg {
    transition: transform 0.3s var(--ease-out-expo);
}

.location-cta:hover svg {
    transform: translate(5px, -5px);
}

.location-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 60%;
    overflow: hidden;
    border-radius: 4px 0 8px 0;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.location-card:hover .location-image {
    opacity: 0.5;
}

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

/* Contact Section */
.contact {
    position: relative;
    padding: 8rem 4rem;
    background: var(--black);
    overflow: hidden;
}

.contact-bg-shape {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 162, 39, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.contact-title em {
    color: var(--gold);
    font-style: italic;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.contact-value {
    font-size: 1.1rem;
    color: var(--text);
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    font-size: 1rem;
    color: var(--text);
    position: relative;
    transition: color 0.3s ease;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out-expo);
}

.social-link:hover {
    color: var(--gold);
}

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

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--black-lighter);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    resize: none;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s var(--ease-out-expo);
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -0.75rem;
    font-size: 0.75rem;
    color: var(--gold);
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.5s var(--ease-out-expo);
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
    width: 100%;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
    align-self: flex-start;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease-out-expo);
    z-index: -1;
}

.form-submit:hover {
    color: var(--black);
}

.form-submit:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-icon {
    transition: transform 0.3s var(--ease-out-expo);
}

.form-submit:hover .btn-icon {
    transform: translateX(5px);
}

/* Footer */
.footer {
    padding: 4rem;
    background: var(--black-light);
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.footer-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 2rem;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ==========================================
   RESPONSIVE STYLES - Mobile First Magic
   ========================================== */

/* Tablet & Small Desktop */
@media (max-width: 1024px) {
    .nav {
        padding: 1rem 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-menu-btn {
        display: flex;
    }
    
    .about {
        padding: 6rem 2rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-right {
        padding-left: 0;
    }
    
    .about-image {
        height: 450px;
    }
    
    .gallery {
        padding: 6rem 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 280px);
        gap: 1rem;
    }
    
    .gallery-item-1 {
        grid-column: span 2;
    }
    
    .locations {
        padding: 6rem 2rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact {
        padding: 6rem 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* Mobile - Medium */
@media (max-width: 768px) {
    /* Hide custom cursor on touch devices */
    .cursor,
    .cursor-follower {
        display: none !important;
    }
    
    body {
        cursor: auto;
    }
    
    a, button {
        cursor: pointer;
    }
    
    /* Navigation */
    .nav {
        padding: 1rem 1.5rem;
    }
    
    .nav-logo a {
        font-size: 1.2rem;
        letter-spacing: 0.15em;
    }
    
    /* Mobile Menu Enhancement */
    .mobile-menu {
        padding: 5rem 2rem;
    }
    
    .mobile-link {
        font-size: 2.5rem;
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile */
        padding: 0 1.5rem;
    }
    
    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .hero-particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .hero-content {
        padding: 0 1rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-subtitle {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-subtitle .line {
        width: 40px;
    }
    
    .hero-subtitle .text {
        font-size: 0.9rem;
        letter-spacing: 0.25em;
    }
    
    .hero-title {
        font-size: clamp(3.2rem, 14vw, 4.5rem);
        letter-spacing: 0.08em;
        margin-bottom: 1.25rem;
        width: 100%;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
        width: 100%;
    }
    
    .hero-cta {
        padding: 1.1rem 2.5rem;
        font-size: 0.85rem;
    }
    
    .hero-scroll-indicator {
        bottom: 2rem;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .scroll-mouse {
        width: 22px;
        height: 34px;
    }
    
    /* About Section Mobile */
    .about {
        padding: 5rem 1.5rem;
    }
    
    .section-bg-text {
        font-size: 6rem;
        opacity: 0.3;
    }
    
    .about-image-wrapper {
        margin: 0 -0.5rem;
    }
    
    .about-image {
        height: 350px;
        border-radius: 8px;
    }
    
    .about-image-frame {
        top: 10px;
        left: 10px;
        right: -10px;
        bottom: -10px;
    }
    
    .section-label {
        margin-bottom: 1.5rem;
    }
    
    .label-number {
        font-size: 0.9rem;
    }
    
    .label-text {
        font-size: 0.7rem;
    }
    
    .about-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .about-features {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: flex-start;
    }
    
    .feature {
        flex: 1 1 100px;
        min-width: 100px;
    }
    
    .feature-number {
        font-size: 2.5rem;
    }
    
    .feature-text {
        font-size: 0.8rem;
    }
    
    /* Marquee Mobile */
    .marquee-section {
        padding: 2rem 0;
    }
    
    .marquee-content span {
        font-size: 1.8rem;
    }
    
    /* Gallery Section Mobile */
    .gallery {
        padding: 5rem 1.5rem;
    }
    
    .gallery-header {
        margin-bottom: 2.5rem;
    }
    
    .gallery-title {
        font-size: 2.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 220px);
        gap: 1rem;
    }
    
    .gallery-item-1 {
        grid-column: span 1;
    }
    
    .gallery-item {
        border-radius: 8px;
    }
    
    .gallery-item-overlay {
        padding: 1.5rem;
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    }
    
    .gallery-item-title {
        font-size: 1.2rem;
    }
    
    /* Locations Section Mobile */
    .locations {
        padding: 5rem 1.5rem;
    }
    
    .locations-header {
        margin-bottom: 2.5rem;
    }
    
    .locations-title {
        font-size: 2.2rem;
    }
    
    .locations-grid {
        gap: 1.5rem;
    }
    
    .location-card {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }
    
    .location-number {
        font-size: 4rem;
        top: 0.5rem;
        right: 1rem;
        opacity: 0.1;
    }
    
    .location-name {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .location-address {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .location-details {
        margin-bottom: 1.5rem;
    }
    
    .detail-label {
        font-size: 0.7rem;
    }
    
    .detail-value {
        font-size: 0.85rem;
    }
    
    .location-cta {
        font-size: 0.8rem;
        padding: 0.75rem 0;
        border-top: 1px solid var(--black-lighter);
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .location-image {
        position: relative;
        width: 100%;
        height: 180px;
        margin-top: 1.5rem;
        border-radius: 8px;
        opacity: 1;
    }
    
    /* Contact Section Mobile */
    .contact {
        padding: 5rem 1.5rem;
    }
    
    .contact-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .contact-info {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .contact-label {
        font-size: 0.7rem;
    }
    
    .contact-value {
        font-size: 1rem;
    }
    
    .social-links {
        gap: 1.5rem;
    }
    
    .social-link {
        font-size: 0.95rem;
    }
    
    /* Contact Form Mobile */
    .contact-form {
        gap: 2rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 1rem;
        padding: 0.875rem 0;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-submit {
        width: 100%;
        justify-content: center;
        padding: 1.25rem 2rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 3rem 1.5rem;
    }
    
    .footer-logo {
        font-size: 2.5rem;
    }
    
    .footer-tagline {
        font-size: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* Mobile - Small (iPhone SE, etc.) */
@media (max-width: 480px) {
    /* Hero adjustments for small screens */
    .hero-subtitle .text {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: clamp(2.8rem, 13vw, 3.5rem);
        letter-spacing: 0.05em;
    }
    
    .hero-tagline {
        font-size: 1.15rem;
    }
    
    .hero-cta {
        padding: 1rem 2rem;
        font-size: 0.8rem;
        letter-spacing: 0.15em;
    }
    
    /* Preloader small screen */
    .preloader-text {
        font-size: 2.5rem;
        letter-spacing: 0.2em;
    }
    
    /* Section titles */
    .about-title,
    .gallery-title,
    .locations-title,
    .contact-title {
        font-size: 1.9rem;
    }
    
    /* About section */
    .about {
        padding: 4rem 1.25rem;
    }
    
    .about-image {
        height: 280px;
    }
    
    .about-text p {
        font-size: 0.9rem;
    }
    
    .about-features {
        gap: 1.25rem;
    }
    
    .feature-number {
        font-size: 2rem;
    }
    
    .feature-text {
        font-size: 0.75rem;
    }
    
    /* Gallery small screen */
    .gallery {
        padding: 4rem 1.25rem;
    }
    
    .gallery-grid {
        grid-template-rows: repeat(6, 200px);
        gap: 0.75rem;
    }
    
    /* Locations small screen */
    .locations {
        padding: 4rem 1.25rem;
    }
    
    .location-card {
        padding: 1.5rem 1.25rem;
    }
    
    .location-name {
        font-size: 1.75rem;
    }
    
    .location-address {
        font-size: 0.9rem;
    }
    
    .location-image {
        height: 150px;
    }
    
    /* Contact small screen */
    .contact {
        padding: 4rem 1.25rem;
    }
    
    .contact-title {
        font-size: 1.9rem;
    }
    
    .form-submit {
        padding: 1rem 1.5rem;
        font-size: 0.8rem;
    }
    
    /* Footer small screen */
    .footer {
        padding: 2.5rem 1.25rem;
    }
    
    .footer-logo {
        font-size: 2rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-subtitle .text {
        font-size: 0.75rem;
    }
    
    .hero-title {
        font-size: clamp(2.4rem, 12vw, 3rem);
        letter-spacing: 0.04em;
    }
    
    .hero-tagline {
        font-size: 1.05rem;
    }
    
    .about-title,
    .gallery-title,
    .locations-title,
    .contact-title {
        font-size: 1.7rem;
    }
    
    .location-name {
        font-size: 1.5rem;
    }
    
    .mobile-link {
        font-size: 2rem;
    }
}

/* Landscape mode on mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 4rem 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .mobile-menu-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem 3rem;
    }
    
    .mobile-link {
        font-size: 1.5rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Disable hover effects that don't work well on touch */
    .gallery-item:hover img {
        transform: none;
    }
    
    .gallery-item img {
        filter: grayscale(0%) brightness(1);
    }
    
    .location-card:hover {
        transform: none;
        border-color: var(--gold);
    }
    
    .location-card {
        border-color: rgba(201, 162, 39, 0.3);
    }
    
    /* Make touch targets larger */
    .nav-menu-btn {
        padding: 0.5rem;
        margin: -0.5rem;
    }
    
    .nav-menu-btn span {
        width: 28px;
        height: 3px;
    }
    
    /* Better tap states */
    .hero-cta:active,
    .form-submit:active,
    .location-cta:active {
        transform: scale(0.98);
    }
}

/* Safe area insets for notched phones */
@supports (padding: max(0px)) {
    .nav {
        padding-left: max(1.5rem, env(safe-area-inset-left));
        padding-right: max(1.5rem, env(safe-area-inset-right));
    }
    
    .hero {
        padding-left: max(1.5rem, env(safe-area-inset-left));
        padding-right: max(1.5rem, env(safe-area-inset-right));
    }
    
    .footer {
        padding-bottom: max(2.5rem, env(safe-area-inset-bottom));
    }
}

/* High contrast mode / accessibility */
@media (prefers-contrast: high) {
    :root {
        --gold: #d4a90a;
        --text-muted: #aaaaaa;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .preloader {
        display: none;
    }
    
    .particle {
        display: none;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ==========================================
   BOOKING MODAL STYLES
   ========================================== */

/* Rent CTA Button */
.rent-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--gold);
    border: 2px solid var(--gold);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.rent-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease-out-expo);
    z-index: 0;
}

.rent-cta span,
.rent-cta svg {
    position: relative;
    z-index: 1;
}

.rent-cta:hover {
    color: var(--gold);
}

.rent-cta:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.rent-cta svg {
    transition: transform 0.3s var(--ease-out-expo);
}

.rent-cta:hover svg {
    transform: translate(3px, -3px);
}

/* Booking Modal */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.booking-modal.active {
    opacity: 1;
    visibility: visible;
}

.booking-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.booking-modal-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    background: var(--black-light);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 3rem;
    overflow-y: auto;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.5s var(--ease-out-expo);
}

.booking-modal.active .booking-modal-content {
    transform: translateY(0) scale(1);
}

.booking-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.booking-modal-close:hover {
    background: var(--gold);
    color: var(--black);
}

/* Booking Header */
.booking-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.booking-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.75rem;
}

.booking-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.booking-title em {
    color: var(--gold);
    font-style: italic;
}

.booking-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Booking Steps */
.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeIn 0.4s var(--ease-out-expo);
}

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

.step-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Location Options */
.location-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-option {
    cursor: pointer;
}

.location-option input {
    display: none;
}

.location-option-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--black);
    border: 1px solid var(--black-lighter);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.location-option input:checked + .location-option-content {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.05);
}

.location-option:hover .location-option-content {
    border-color: var(--gold);
}

.location-option-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.location-option input:checked + .location-option-content .location-option-number {
    opacity: 1;
}

.location-option-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--text);
}

.location-option-address {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: auto;
}

/* Booking Fields */
.booking-fields {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.booking-field label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.booking-field input,
.booking-field select,
.booking-field textarea {
    padding: 1rem;
    background: var(--black);
    border: 1px solid var(--black-lighter);
    border-radius: 4px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
    color: var(--text-muted);
}

.booking-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23c9a227' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.booking-field select option {
    background: var(--black);
    color: var(--text);
}

.booking-field textarea {
    resize: none;
}

.booking-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Booking Navigation */
.booking-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.booking-btn-prev {
    border-color: var(--text-muted);
    color: var(--text-muted);
}

.booking-btn-prev:hover {
    border-color: var(--text);
    background: transparent;
    color: var(--text);
}

.booking-btn-next {
    margin-left: auto;
}

.booking-btn-submit {
    background: var(--gold);
    color: var(--black);
    flex: 1;
    justify-content: center;
}

.booking-btn-submit:hover {
    background: var(--gold-light);
}

/* Booking Progress */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--black-lighter);
}

.progress-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--black);
    border: 1px solid var(--black-lighter);
    color: var(--text-muted);
    font-family: var(--font-display);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.progress-step.active {
    border-color: var(--gold);
    color: var(--gold);
}

.progress-step.completed {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.progress-line {
    width: 40px;
    height: 1px;
    background: var(--black-lighter);
}

/* Mobile Booking Modal */
@media (max-width: 768px) {
    .booking-modal-content {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        padding: 0;
        border-radius: 0;
        border: none;
        display: flex;
        flex-direction: column;
    }
    
    .booking-modal-close {
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
        z-index: 10;
    }
    
    .booking-header {
        padding: 1.5rem 1.5rem 1rem;
        margin-bottom: 0;
        border-bottom: 1px solid var(--black-lighter);
        flex-shrink: 0;
    }
    
    .booking-label {
        font-size: 0.7rem;
    }
    
    .booking-title {
        font-size: 1.75rem;
    }
    
    .booking-subtitle {
        font-size: 0.85rem;
    }
    
    .booking-form {
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    
    .booking-step {
        flex: 1;
        overflow-y: auto;
        padding: 1.5rem;
    }
    
    .booking-step.active {
        display: flex;
        flex-direction: column;
    }
    
    .step-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .location-options {
        gap: 0.75rem;
    }
    
    .location-option-content {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .location-option-number {
        font-size: 1.25rem;
    }
    
    .location-option-name {
        font-size: 1.1rem;
        flex: 1;
    }
    
    .location-option-address {
        width: 100%;
        margin-left: 0;
        font-size: 0.8rem;
    }
    
    .booking-fields {
        gap: 1rem;
    }
    
    .booking-field label {
        font-size: 0.7rem;
    }
    
    .booking-field input,
    .booking-field select,
    .booking-field textarea {
        padding: 0.875rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .booking-field-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .booking-nav {
        flex-wrap: wrap;
        padding: 1rem 1.5rem;
        margin-top: 0;
        border-top: 1px solid var(--black-lighter);
        background: var(--black-light);
        flex-shrink: 0;
    }
    
    .booking-btn {
        padding: 0.875rem 1rem;
        font-size: 0.8rem;
    }
    
    .booking-btn-prev {
        order: 2;
    }
    
    .booking-btn-next {
        flex: 1;
        justify-content: center;
        order: 1;
    }
    
    .booking-btn-submit {
        width: 100%;
        order: 1;
        justify-content: center;
        padding: 1rem;
    }
    
    .booking-progress {
        padding: 1rem 1.5rem;
        margin-top: 0;
        border-top: none;
        flex-shrink: 0;
    }
    
    .progress-step {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .progress-line {
        width: 30px;
    }
}

/* Small phones */
@media (max-width: 380px) {
    .booking-title {
        font-size: 1.5rem;
    }
    
    .booking-field-row {
        grid-template-columns: 1fr;
    }
    
    .location-option-name {
        font-size: 1rem;
    }
}

/* Animation Classes for Scroll Reveals */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s var(--ease-out-expo);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Magnetic Button Effect */
.magnetic {
    transition: transform 0.3s var(--ease-out-expo);
}

/* Smooth Section Transitions */
section {
    position: relative;
}

/* Grain Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9998;
}

