:root {
    --primary-gold: #d4af37;
    --accent-gold: #ffd700;
    --pure-white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #333333;
    --pure-black: #000000;
    --soft-black: #1a1a1a;

    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #666666;

    --font-display: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 150px; /* Offset for fixed navbar + spacing */
}

body {
    font-family: var(--font-body);
    background: var(--pure-white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--pure-white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 0.6s ease-in-out 3.5s forwards;
}

.loader-content {
    text-align: center;
    position: relative;
}

.loader-title {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 0.5rem;
    margin: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: baseline;
    overflow: hidden;
}

.loader-ana {
    display: inline-block;
    background: linear-gradient(
        135deg,
        var(--primary-gold) 0%,
        var(--accent-gold) 50%,
        var(--primary-gold) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: typewriter 0.8s ease-out forwards,
               slideLeft 0.8s ease-out 2.5s forwards;
}

.loader-sweet {
    display: inline-block;
    color: var(--soft-black);
    opacity: 0;
    animation: typewriter 0.8s ease-out 0.3s forwards,
               slideRight 0.8s ease-out 2.5s forwards;
}

.loader-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 0.3rem;
    color: var(--soft-black);
    margin-top: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.2s forwards,
               fadeOutDown 0.6s ease-out 2.5s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes loadBar {
    to { left: 100%; }
}

@keyframes typewriter {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    100% {
        transform: translateX(-100px);
        opacity: 0;
    }
}

@keyframes slideRight {
    100% {
        transform: translateX(100px);
        opacity: 0;
    }
}

@keyframes fadeOutDown {
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Audio Toggle - Glamorous Design */
.audio-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 14px 24px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(250,250,250,0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    overflow: visible;
}

.audio-toggle::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 30px;
    padding: 1px;
    background: linear-gradient(135deg, var(--primary-gold), transparent, var(--primary-gold));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.audio-toggle:hover::before {
    opacity: 0.5;
}

.audio-toggle:hover {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(135deg,
        rgba(212, 175, 55, 0.1) 0%,
        rgba(255, 255, 255, 0.98) 50%,
        rgba(212, 175, 55, 0.05) 100%);
    border-color: var(--primary-gold);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.12),
        0 4px 15px rgba(212, 175, 55, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.audio-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.audio-icon svg {
    transition: transform 0.3s ease;
}

.audio-toggle:hover .audio-icon svg {
    transform: scale(1.1);
}

.audio-toggle.playing .audio-icon svg path:last-child {
    animation: soundWave 1.5s ease-in-out infinite;
}

@keyframes soundWave {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.audio-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--soft-black);
    transition: color 0.3s ease;
}

.audio-toggle:hover .audio-label {
    color: var(--primary-gold);
}

.music-credit {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    background: linear-gradient(135deg, var(--soft-black) 0%, rgba(26, 26, 26, 0.95) 100%);
    color: var(--primary-gold);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-style: italic;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(5px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.25),
        0 2px 8px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.music-credit::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--soft-black);
}

.audio-toggle:hover .music-credit {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile adjustments for audio toggle */
@media (max-width: 768px) {
    .audio-toggle {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
        border-radius: 25px;
    }

    .audio-label {
        font-size: 0.75rem;
    }

    .music-credit {
        font-size: 0.7rem;
        padding: 8px 12px;
    }
}

/* Navigation - Glamorous Design */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom,
        rgba(255,255,255,0.98) 0%,
        rgba(255,255,255,0.95) 90%,
        rgba(255,255,255,0.9) 100%);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

/* Add golden shimmer line */
.navbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary-gold) 20%,
        var(--accent-gold) 50%,
        var(--primary-gold) 80%,
        transparent 100%);
    animation: shimmer 4s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; transform: translateX(-100%); }
    50% { opacity: 1; transform: translateX(100%); }
}

/* Add decorative ornament elements */
.navbar::after {
    content: '❦';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-gold);
    font-size: 1.5rem;
    opacity: 0.6;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Add subtle decorative lines on sides */
.nav-container::before,
.nav-container::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary-gold) 100%);
    opacity: 0.3;
}

.nav-container::before {
    left: 0;
}

.nav-container::after {
    right: 0;
    background: linear-gradient(90deg,
        var(--primary-gold) 0%,
        transparent 100%);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.15rem;
    color: var(--soft-black);
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

/* Animated gold gradient just for "Ana" */
.nav-logo-gold {
    background: linear-gradient(135deg,
        var(--primary-gold) 0%,
        var(--accent-gold) 50%,
        var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: goldShine 4s ease-in-out infinite;
}

@keyframes goldShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Golden underline effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg,
        var(--primary-gold) 0%,
        var(--accent-gold) 50%,
        var(--primary-gold) 100%);
    transition: width 0.3s ease;
}

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

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

/* Add small ornament on active/hover */
.nav-link::before {
    content: '✦';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 0.6rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before {
    opacity: 0.7;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Golden Thread - Static Wandering Line */
.golden-thread {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    height: calc(100vh * 4.5); /* Extended through booking section */
    z-index: 1; /* Visible but behind content */
    pointer-events: none;
    overflow: visible;
}

/* Hero Section - Full Page Glamour */
.hero-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Full-screen background images */
.hero-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Start with first hero image as immediate background */
    background: url('images/hero/hero1-center.jpg') center top/cover no-repeat;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center; /* Default fallback */
    /* Position is set dynamically via inline style from filename */
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    animation: kenBurns 20s ease-out infinite;
}

.hero-bg-image.active {
    opacity: 1;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Dark overlay for text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.6) 0%,
        rgba(0,0,0,0.3) 50%,
        rgba(0,0,0,0.7) 100%
    );
    z-index: 2;
}

/* Golden Floating Particles - Visible & Elegant */
.glamour-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.9) 0%, rgba(212, 175, 55, 0.5) 40%, transparent 70%);
    border-radius: 50%;
    animation: floatGoldenParticle 18s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.particle-1 {
    left: 15%;
    top: 90%;
    animation-delay: 0s;
    animation-duration: 16s;
}

.particle-2 {
    left: 65%;
    top: 95%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.particle-3 {
    left: 40%;
    top: 100%;
    animation-delay: 6s;
    animation-duration: 17s;
}

.particle-4 {
    left: 85%;
    top: 85%;
    animation-delay: 9s;
    animation-duration: 15s;
}

.particle-5 {
    left: 25%;
    top: 105%;
    animation-delay: 4s;
    animation-duration: 19s;
}

.particle-6 {
    left: 55%;
    top: 92%;
    animation-delay: 11s;
    animation-duration: 16s;
}

.particle-7 {
    left: 10%;
    top: 88%;
    animation-delay: 1s;
    animation-duration: 17s;
}

.particle-8 {
    left: 75%;
    top: 98%;
    animation-delay: 7s;
    animation-duration: 15s;
}

.particle-9 {
    left: 50%;
    top: 93%;
    animation-delay: 10s;
    animation-duration: 18s;
}

.particle-10 {
    left: 90%;
    top: 87%;
    animation-delay: 2s;
    animation-duration: 16s;
}

.particle-11 {
    left: 35%;
    top: 102%;
    animation-delay: 8s;
    animation-duration: 17s;
}

.particle-12 {
    left: 70%;
    top: 84%;
    animation-delay: 12s;
    animation-duration: 19s;
}

@keyframes floatGoldenParticle {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
        transform: translateY(-20vh) translateX(15px) scale(1.1);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-60vh) translateX(-25px) scale(1.2);
    }
    90% {
        opacity: 0.5;
        transform: translateY(-95vh) translateX(20px) scale(1);
    }
    100% {
        transform: translateY(-105vh) translateX(30px) scale(0.5);
        opacity: 0;
    }
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12vh 2rem 0 2rem;
    text-align: center;
}

.hero-content {
    animation: fadeInUp 1.5s ease-out;
}

/* Glamour Title */
.glamour-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 8rem);
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-shadow: 0 0 30px rgba(255,215,0,0.3),
                 0 0 60px rgba(255,215,0,0.2),
                 2px 2px 4px rgba(0,0,0,0.5);
}

.name-ana {
    background: linear-gradient(
        135deg,
        var(--primary-gold) 0%,
        var(--accent-gold) 50%,
        var(--primary-gold) 100%
    );
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.name-sweet {
    color: white;
    font-weight: 300;
    opacity: 0.95;
}

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

/* Hero Tagline */
.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    animation: fadeInUp 1.5s ease-out 0.3s backwards;
}

.tagline-item {
    position: relative;
    transition: all 0.3s ease;
}

.tagline-item:hover {
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

.tagline-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* Hero Description */
.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    animation: fadeInUp 1.5s ease-out 0.5s backwards;
    font-style: italic;
    letter-spacing: 0.02em;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255,255,255,0.6);
}

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

/* Scroll Indicator - Golden */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
    z-index: 10;
}

.glamour-scroll span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 300;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.glamour-scroll .scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
    transform: rotate(45deg);
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--text-dark);
    border-bottom: 2px solid var(--text-dark);
    transform: rotate(45deg);
    margin: 0 auto;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* About Section */
.about-section {
    padding: 100px 0 60px 0;
    position: relative;
    background: linear-gradient(180deg, #fdfcfa 0%, #f9f7f4 100%);
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 150px,
        rgba(212, 175, 55, 0.1) 150px,
        rgba(212, 175, 55, 0.1) 152px
    );
    animation: subtleShift 30s linear infinite;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

@keyframes subtleShift {
    0% { transform: translateX(0); }
    100% { transform: translateX(150px); }
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    padding: 3rem;
    margin-top: 2rem;
    background: linear-gradient(to bottom,
        rgba(255,255,255,0.98) 0%,
        rgba(255,255,255,0.95) 100%);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    z-index: 2; /* Above golden thread */
}

/* Golden frame on desktop - single elegant line */
.about-content::before {
    content: '';
    position: absolute;
    inset: 15px;
    border: 1px solid var(--primary-gold);
    border-radius: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* Add corner accents for extra elegance */
.about-content::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid transparent;
    border-image: linear-gradient(
        45deg,
        var(--primary-gold) 0%,
        transparent 10%,
        transparent 90%,
        var(--primary-gold) 100%
    ) 1;
    pointer-events: none;
    opacity: 0.2;
}

/* Remove text decorations - frame is enough */
.about-text {
    position: relative;
}

.about-image {
    position: relative;
    overflow: hidden;
    max-width: 400px;
    margin-left: auto;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(212,175,55,0.2);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: lowercase;
    font-weight: 300;
    position: relative;
    z-index: 3;
    color: #d4af37;
}

.portfolio-section .section-title {
    color: #d4af37;
}

.portfolio-intro {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 1rem auto 0 auto;
    line-height: 1.6;
    font-style: italic;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-align: left;
}

/* Instagram Link */
.about-cta {
    margin-top: 2rem;
}

.instagram-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg,
        var(--primary-gold) 0%,
        var(--accent-gold) 50%,
        var(--primary-gold) 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-gold);
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    background-size: 200% 200%;
    animation: goldShineButton 3s ease-in-out infinite;
}

@keyframes goldShineButton {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.instagram-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: white;
}

.instagram-link:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Model Info Toggle */
.model-info-toggle {
    text-align: center;
    margin-top: 3rem;
}

.info-toggle-btn {
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid #d4af37;
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: #d4af37;
    min-width: 250px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(5px);
}

.info-toggle-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
    color: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.toggle-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.info-toggle-btn.active .toggle-icon {
    transform: rotate(45deg);
}

/* Measurements Section */
.measurements-section {
    margin-top: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(252, 249, 245, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    animation: fadeIn 0.5s ease;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.measurements-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.measurements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.measurement-group h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.8rem;
    font-weight: 400;
}

.measurement-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.measurement-label {
    font-weight: 300;
    opacity: 0.75;
    color: var(--text-gray);
}

.measurement-value {
    font-weight: 600;
    color: var(--soft-black);
}

/* Tour Dates Section */
.tour-section {
    padding: 40px 0 100px 0;
    background: linear-gradient(180deg, #f9f7f4 0%, #fdfcfa 100%);
    position: relative;
    overflow: hidden;
}

.tour-section .section-title {
    color: #d4af37;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: lowercase;
    margin-bottom: 20px;
}

.tour-section .section-title .mobile-break {
    display: none;
}

.tour-section .section-title .desktop-inline {
    display: inline;
}

.tour-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 150px,
        rgba(212, 175, 55, 0.08) 150px,
        rgba(212, 175, 55, 0.08) 152px
    );
    animation: shimmer 30s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(0); }
    100% { transform: translateX(150px); }
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.tour-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    animation: goldSlide 3s ease-in-out infinite;
}

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

.tour-card:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.tour-type {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.tour-title {
    font-size: 1.3rem;
    color: var(--soft-black);
    margin-bottom: 10px;
    font-weight: 500;
}

.tour-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d4af37;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.tour-date svg {
    width: 16px;
    height: 16px;
}

.tour-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.tour-location svg {
    width: 16px;
    height: 16px;
    color: #d4af37;
}

.tour-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.tour-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #d4af37;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tour-link:hover {
    gap: 10px;
    color: #ffd700;
}

.tour-loading {
    text-align: center;
    padding: 40px;
    color: #d4af37;
}

.tour-cta {
    text-align: center;
    margin-top: 40px;
    color: var(--text-gray);
}

.tour-cta .gold-link {
    color: #d4af37;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.tour-cta .gold-link:hover {
    border-bottom-color: #d4af37;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0 80px 0;
    background: linear-gradient(180deg, #fdfcfa 0%, #f9f7f4 100%);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 150px,
        rgba(212, 175, 55, 0.05) 150px,
        rgba(212, 175, 55, 0.05) 152px
    );
    animation: testimonialShimmer 30s linear infinite;
}

@keyframes testimonialShimmer {
    0% { transform: translateX(0); }
    100% { transform: translateX(150px); }
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 1rem 3rem;
}

.testimonials-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--medium-gray) var(--light-gray);
}

.testimonials-carousel::-webkit-scrollbar {
    height: 8px;
}

.testimonials-carousel::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 4px;
}

.testimonials-carousel::-webkit-scrollbar-thumb {
    background: var(--medium-gray);
    border-radius: 4px;
}

.testimonials-carousel::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gray);
}

.testimonial-card {
    min-width: 380px;
    max-width: 380px;
    background: transparent;
    padding: 2rem 1.8rem;
    border: none;
    border-right: 1px solid rgba(212,175,55,0.1);
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 0;
    font-size: 3rem;
    color: var(--primary-gold);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:last-child {
    border-right: none;
}

.testimonial-card:hover {
    transform: translateY(-2px);
}

.testimonial-card:hover::before {
    opacity: 0.3;
}

.testimonial-header {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
}

.photographer-name {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.2rem;
    color: var(--primary-gold);
    letter-spacing: 0.05em;
}

.photographer-role {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 300;
    font-style: italic;
}

.testimonial-text {
    line-height: 1.8;
    color: var(--dark-gray);
    font-size: 0.95rem;
    font-style: italic;
    position: relative;
    padding-left: 2rem;
    margin-top: 1rem;
}

/* Testimonial Navigation */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(212,175,55,0.1);
    color: var(--primary-gold);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 4px;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

.testimonial-nav:hover {
    background: rgba(212,175,55,0.2);
    border-color: var(--primary-gold);
    transform: translateY(-50%) scale(1.05);
}

.scroll-hint {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
    letter-spacing: 0.05em;
}

.about-portrait {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Portfolio Section - Modern Gallery */
.portfolio-section {
    padding: 100px 0;
    min-height: 100vh;
    position: relative;
    background: var(--soft-black);
    z-index: 2;
    overflow: hidden;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 150px,
        rgba(212, 175, 55, 0.03) 150px,
        rgba(212, 175, 55, 0.03) 152px
    );
    animation: portfolioShimmer 30s linear infinite;
    z-index: 0;
}

.portfolio-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    animation: floatGlow 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes portfolioShimmer {
    0% { transform: translateX(0); }
    100% { transform: translateX(150px); }
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 30px); }
}

.section-subtitle {
    text-align: center;
    opacity: 0.7;
    margin-bottom: 3rem;
}

.portfolio-subtitle {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin-bottom: 4rem;
    font-style: italic;
    letter-spacing: 0.05em;
}

/* Gallery Viewer */
.gallery-viewer {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3; /* Above golden thread */
}

/* Add decorative fine lines around gallery */
.gallery-viewer::before,
.gallery-viewer::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(212,175,55,0.2) 20%,
        var(--primary-gold) 50%,
        rgba(212,175,55,0.2) 80%,
        transparent 100%);
    opacity: 0.5;
    z-index: 1;
}

.gallery-viewer::before {
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.gallery-viewer::after {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Add vertical side decorations */
.hero-image-container::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 40px;
    height: 40px;
    border-bottom: 1px solid var(--primary-gold);
    border-right: 1px solid var(--primary-gold);
    opacity: 0.5;
}

/* Hero Image Container with Fine Golden Lines */
.hero-image-container {
    position: relative;
    width: calc(100% - 60px);
    margin: 0 auto 2rem;
    height: 80vh;
    max-height: 800px;
    background: linear-gradient(135deg,
        rgba(0,0,0,1) 0%,
        rgba(10,10,10,1) 50%,
        rgba(0,0,0,1) 100%);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 0;
    overflow: hidden;
    padding: 2px; /* Very thin inner border effect */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 30px rgba(0,0,0,0.8),
        0 0 40px rgba(212,175,55,0.03),
        inset 0 0 1px rgba(212,175,55,0.3);
}

/* Add delicate corner flourishes */
.hero-image-container::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 40px;
    height: 40px;
    border-top: 1px solid var(--primary-gold);
    border-left: 1px solid var(--primary-gold);
    opacity: 0.5;
    pointer-events: none;
    z-index: 10;
}

.hero-image {
    max-width: calc(100% - 4px); /* Account for very thin padding */
    max-height: calc(100% - 4px);
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
    display: block;
    margin: auto;
}

/* Navigation Arrows */
.image-navigation {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.nav-arrow {
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--primary-gold);
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.nav-arrow:hover {
    background: rgba(212,175,55,0.15);
    border-color: var(--primary-gold);
    transform: scale(1.1);
    box-shadow:
        0 4px 20px rgba(0,0,0,0.3),
        0 0 25px rgba(212,175,55,0.2);
}

/* Thumbnail Strip - Hidden for cleaner design */
.thumbnail-container {
    display: none; /* Hiding thumbnails for minimalist look */
    position: relative;
    margin-bottom: 2rem;
    padding: 0 3rem;
}

/* Gallery Dot Indicators */
.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    padding: 0.5rem;
}

.gallery-indicators .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 1px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-indicators .dot.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: scale(1.3);
}

.gallery-indicators .dot:hover {
    background: rgba(255,255,255,0.6);
    transform: scale(1.2);
}

.thumbnail-strip {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--medium-gray) #f0f0f0;
}

.thumbnail-strip::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-strip::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.thumbnail-strip::-webkit-scrollbar-thumb {
    background: var(--medium-gray);
    border-radius: 3px;
}

.thumbnail-strip::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gray);
}

.thumbnail {
    min-width: 140px;
    height: 100px;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    opacity: 0.6;
}

.thumbnail.active {
    border-color: var(--soft-black);
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.02);
    border-color: var(--medium-gray);
}

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

/* Scroll Buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-left {
    left: 0;
}

.scroll-right {
    right: 0;
}

.scroll-btn:hover {
    background: var(--soft-black);
    color: white;
    border-color: var(--soft-black);
}

/* Category Filters */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 5rem;
    margin-bottom: 4rem;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 4px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    color: #d4af37;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.1);
    position: relative;
}

.filter-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.filter-btn:active {
    transform: translateY(0);
}

.filter-btn.active {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.3) 0%, rgba(255, 192, 203, 0.3) 100%);
    border-color: #d4af37;
    color: #d4af37;
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.25);
    font-weight: 500;
}

.filter-btn.active:active {
    transform: translateY(0);
}

/* Category specific colors with unified elegant double frame */
.filter-btn[data-category] {
    border: 3px double rgba(212, 175, 55, 0.5);
    border-radius: 2px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 2px 10px rgba(212, 175, 55, 0.15),
        inset 0 0 10px rgba(212, 175, 55, 0.05);
}

/* All category buttons - unified rose/pink style */
.filter-btn[data-category].active {
    border: 3px double #d4af37;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.3) 0%, rgba(255, 192, 203, 0.3) 100%);
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.4),
        0 4px 25px rgba(212, 175, 55, 0.25),
        inset 0 0 20px rgba(255, 192, 203, 0.1);
    color: #d4af37;
    font-weight: 500;
}

/* Booking Section */
.booking-section {
    min-height: 100vh;
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--text-light);
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 150px,
        rgba(212, 175, 55, 0.02) 150px,
        rgba(212, 175, 55, 0.02) 152px
    );
    animation: bookingShimmer 30s linear infinite;
    z-index: 0;
}

.booking-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    z-index: 0;
}

@keyframes bookingShimmer {
    0% { transform: translateX(0); }
    100% { transform: translateX(150px); }
}

/* Removed ember animations for clean design */

@keyframes rise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 1;
    }
    10% {
        transform: translateY(80vh) scale(1);
    }
    100% {
        transform: translateY(-100px) scale(0.5);
        opacity: 0;
    }
}

.booking-section .section-title {
    color: #d4af37;
    text-align: center;
}

.booking-intro {
    text-align: center;
    max-width: 700px;
    margin: 1.5rem auto 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    letter-spacing: 0.02em;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 5rem;
    align-items: center;
}

/* Form Styling */
.booking-form {
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 0;
    border: 1px solid rgba(212,175,55,0.2);
    position: relative;
    z-index: 3;
}

/* Add corner accents to booking form */
.booking-form::before,
.booking-form::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid var(--primary-gold);
    opacity: 0.3;
}

.booking-form::before {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.booking-form::after {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 0;
    color: var(--soft-black);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group select {
    width: 100%;
    padding: 1rem;
    padding-right: 2.5rem;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 0;
    color: var(--soft-black);
    font-size: 1rem;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D4AF37'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 20px;
    cursor: pointer;
}

.form-group select:hover {
    border-color: var(--primary-gold);
    background-color: rgba(255,255,255,0.98);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255,255,255,1);
    box-shadow: 0 0 0 2px rgba(212,175,55,0.1);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--text-gray);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    background: var(--soft-black);
    padding: 0 0.5rem;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: var(--primary-gold);
    padding: 10px;
    font-size: 1rem;
}

.form-group select option:hover,
.form-group select option:focus,
.form-group select option:active,
.form-group select option:checked {
    background: var(--primary-gold);
    color: var(--soft-black);
    box-shadow: 0 0 10px 100px var(--primary-gold) inset;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-gold);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.submit-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 5px 15px rgba(212,175,55,0.2);
}

/* Booking Info */
.booking-info {
    padding: 2rem;
}

.booking-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--primary-gold);
    opacity: 0.9;
}

.booking-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-icon {
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--hell-orange);
    transform: translateY(-3px);
}

/* Newsletter Popup Modal */
.newsletter-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9998;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.newsletter-popup.active {
    display: flex;
}

.newsletter-popup-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.95) 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    animation: slideUp 0.4s ease;
}

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

.newsletter-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-close:hover {
    color: var(--primary-gold);
    transform: rotate(90deg);
}

.newsletter-header {
    text-align: center;
    margin-bottom: 2rem;
}

.newsletter-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.newsletter-header p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input[type="email"] {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.newsletter-submit {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.newsletter-submit:active {
    transform: translateY(0);
}

.newsletter-privacy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 1rem;
}

/* Newsletter Inline Button (After About Section) */
.newsletter-inline-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.newsletter-inline-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Success Toast Message */
.success-toast {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.success-toast.active {
    display: flex;
}

.success-toast-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.95) 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    animation: slideUp 0.4s ease;
}

.success-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    animation: scaleIn 0.5s ease 0.2s backwards;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-toast-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.success-toast-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Newsletter Section within Booking */
.booking-newsletter-section {
    margin-top: 4rem;
    padding-top: 2rem;
    text-align: center;
    position: relative;
}

.newsletter-divider {
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.3) 20%,
        var(--primary-gold) 50%,
        rgba(212, 175, 55, 0.3) 80%,
        transparent 100%);
    margin: 0 auto 3rem auto;
}

.booking-newsletter-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: lowercase;
}

.booking-newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

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

.newsletter-footer-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: var(--primary-gold);
    text-decoration: none;
    border: 1px solid var(--primary-gold);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    white-space: nowrap;
    position: relative;
    animation: newsletterGlow 3s ease-in-out infinite;
}

@keyframes newsletterGlow {
    0%, 100% {
        box-shadow:
            0 4px 15px rgba(0, 0, 0, 0.2),
            0 0 20px rgba(255, 255, 255, 0.3),
            0 0 30px rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow:
            0 4px 15px rgba(0, 0, 0, 0.2),
            0 0 30px rgba(255, 255, 255, 0.5),
            0 0 50px rgba(212, 175, 55, 0.4);
    }
}

.newsletter-footer-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    color: var(--accent-gold);
    animation: none;
}

.newsletter-footer-btn:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.footer-copyright {
    margin-top: 1.5rem;
    opacity: 0.7;
}

.footer-designer {
    margin-top: 0.5rem;
    opacity: 0.6;
    font-size: 0.85rem;
}

.designer-link {
    color: var(--primary-gold);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.designer-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: var(--primary-gold);
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    color: var(--accent-gold);
}

.lightbox-image {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    cursor: pointer;
}

/* Lightbox Navigation */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: var(--primary-gold);
    border: 1px solid rgba(212,175,55,0.4);
    width: 45px;
    height: 45px;
    border-radius: 4px;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-nav:hover {
    background: rgba(212,175,55,0.2);
    border-color: var(--primary-gold);
    transform: translateY(-50%) scale(1.05);
}

/* Image Counter */
.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-gold);
    font-size: 0.9rem;
    background: rgba(0,0,0,0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    letter-spacing: 0.1em;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-split-container {
        flex-direction: column;
        gap: 2rem;
        min-height: auto;
    }

    .hero-image-side {
        width: 100%;
        max-width: 100%;
        height: 50vh;
    }

    .hero-content-wrapper {
        padding-top: 20vh; /* Push content down on mobile */
    }

    .hero-content {
        text-align: center;
        padding: 1rem;
    }

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

    .measurements-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card {
        min-width: 78vw !important;
        max-width: 78vw !important;
        padding: 1rem !important;
    }

    .testimonials-carousel {
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    /* Hide golden thread on mobile */
    .golden-thread {
        display: none;
    }

    /* Thinner navbar border on mobile */
    .navbar {
        border-bottom: 0.5px solid rgba(212,175,55,0.15);
    }

    .navbar::after {
        bottom: -8px; /* Position below navbar on mobile like desktop */
        font-size: 1rem; /* Slightly smaller ornament on mobile */
        opacity: 0.5; /* Subtle but visible on mobile */
        z-index: 1; /* Ensure it stays behind nav content */
    }

    .loader-title {
        font-size: 3rem;
        letter-spacing: 0.2rem;
    }

    .loader-ana, .loader-sweet {
        font-size: 3rem;
    }

    .loader-subtitle {
        font-size: 0.8rem;
    }

    @keyframes slideLeft {
        100% {
            transform: translateX(-50px);
            opacity: 0;
        }
    }

    @keyframes slideRight {
        100% {
            transform: translateX(50px);
            opacity: 0;
        }
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 1.5rem 0;
        border-top: 2px solid var(--primary-gold);
    }

    .nav-menu::before {
        content: '';
        display: block;
        width: 200px;
        height: 40px;
        margin: 0 auto 1rem auto;
        background-image: url('../images/ornament.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.6;
    }

    .nav-menu::after {
        content: '';
        display: block;
        width: 200px;
        height: 40px;
        margin: 1rem auto 0 auto;
        background-image: url('../images/ornament.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.6;
        transform: rotate(180deg);
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger span {
        background: var(--primary-gold);
    }

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

    .about-content,
    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .photobook {
        height: 400px;
    }

    .book-page,
    .page-flip {
        width: 300px;
        height: 400px;
    }

    .page-left {
        transform: translateX(-150px) rotateY(20deg);
    }

    .page-right {
        transform: translateX(150px) rotateY(-20deg);
    }

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

/* Animation on Scroll (AOS) Effects */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

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

/* Enhanced Mobile Responsive Styles */
/* Show/hide elements based on screen size */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: inline;
    }

    /* Fix horizontal scroll issue - absolute prevention */
    html, body {
        overflow-x: hidden !important;
        max-width: 100% !important;
        position: relative !important;
        width: 100% !important;
    }

    /* Prevent any element from causing horizontal scroll */
    * {
        max-width: 100vw !important;
    }

    /* Container wrapper to prevent overflow */
    .portfolio-section,
    .gallery-viewer,
    .hero-image-container {
        overflow: hidden !important;
        max-width: 100% !important;
        position: relative !important;
    }

    /* Prevent focus from causing horizontal scroll */
    *:focus {
        outline: none !important;
    }

    /* Fix section titles */
    .section-title {
        font-size: 2rem !important;
        padding: 0 1rem;
        word-wrap: break-word;
    }

    /* Show line breaks in tour section title on mobile */
    .tour-section .section-title .mobile-break {
        display: inline;
    }

    .tour-section .section-title .desktop-inline {
        display: none;
    }

    /* Fix "What Photographers Say" specifically */
    .testimonials-section .section-title {
        font-size: 1.8rem !important;
        color: #d4af37;
        font-weight: 300;
        margin-bottom: 2rem;
    }

    /* Fix "Book Your Session" specifically */
    .booking-section .section-title {
        font-size: 2rem !important;
        margin-bottom: 1.5rem;
    }

    /* Fix hero section text */
    .hero-title {
        font-size: 4rem !important;
    }

    /* Adjust the Ana/sweet parts on mobile */
    .name-ana, .name-sweet {
        font-size: 4rem !important;
    }

    /* Disable zoom animation on mobile for better performance */
    .hero-bg-image {
        animation: none !important;
        transform: none !important;
    }

    .hero-tagline {
        font-size: 0.8rem !important;
        gap: 0.5rem;
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .tagline-item {
        font-size: 0.8rem !important;
        letter-spacing: 0.1em;
    }

    .tagline-separator {
        font-size: 0.6rem !important;
        margin: 0 0.2rem;
    }

    .hero-description {
        font-size: 1rem !important;
        padding: 0 1rem;
    }

    /* Fix containers to prevent overflow */
    .container {
        padding: 0 1rem !important;
        max-width: 100% !important;
    }

    /* Fix testimonial carousel */
    .testimonials-carousel-wrapper {
        padding: 0;
        overflow: hidden;
        position: relative;
    }

    .testimonials-carousel-container {
        padding: 1rem 0;
        width: 100%;
        overflow: hidden;
    }

    .testimonials-carousel {
        padding: 0 0.5rem;
        gap: 0.5rem;
    }

    /* Make testimonial cards fit mobile screen */
    .testimonial-card {
        min-width: 78vw !important;
        max-width: 78vw !important;
        margin: 0;
        padding: 1rem !important;
        border-right: none;
        border-bottom: 1px solid rgba(212,175,55,0.1);
    }

    /* Reduce left padding for testimonial content on mobile */
    .testimonial-card .testimonial-header {
        padding-left: 0.5rem !important;
    }

    .testimonial-card .testimonial-text {
        padding-left: 0.5rem !important;
    }

    /* Adjust quote mark position on mobile */
    .testimonial-card::before {
        left: 0.25rem;
        font-size: 2rem;
        opacity: 0.15;
        top: -5px;
    }

    .testimonial-card:last-child {
        border-bottom: none;
    }

    /* Simplify navigation arrows on mobile */
    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .testimonial-prev {
        left: 5px;
    }

    .testimonial-next {
        right: 5px;
    }

    .testimonial-nav:hover {
        transform: translateY(-50%);
    }

    /* Fix booking section */
    .booking-intro {
        font-size: 1rem;
        padding: 0 1rem;
        margin-top: 1rem;
    }

    .booking-content {
        padding: 0 1rem;
        margin-top: 3rem;
    }

    .booking-form,
    .booking-info {
        padding: 1.5rem;
    }

    /* Fix gallery viewer */
    .gallery-viewer {
        padding: 0 1rem;
    }

    .hero-image-container {
        margin: 0;
    }

    /* Fix about section */
    .about-section {
        padding: 60px 0 20px 0;
    }

    .about-content {
        padding: 0;
        margin: 1rem 0;
        grid-template-columns: 1fr;
        gap: 2rem;
        box-shadow: none;
        background: transparent;
    }

    /* Text section comes first on mobile */
    .about-text {
        order: 1;
        padding: 0 1.5rem;
    }

    /* Image section comes second on mobile */
    .about-image {
        order: 2;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        padding: 0 1.5rem;
    }

    /* Portrait image responsive on mobile */
    .about-portrait {
        width: 100%;
        height: auto;
        aspect-ratio: 3/4;
        max-height: 500px;
        object-fit: cover;
        object-position: center top;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    /* Remove decorative frames on mobile for cleaner look */
    .about-content::before,
    .about-content::after {
        display: none;
    }

    /* Text styling on mobile */
    .about-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
        text-align: left;
        color: var(--text-dark);
    }

    .about-description.elegant {
        font-size: 1rem;
        font-weight: 400;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
    }

    /* Center Instagram button on mobile */
    .about-cta {
        text-align: center;
        margin-top: 1.5rem;
        padding: 0 1rem;
    }

    .instagram-link {
        display: inline-block;
        width: calc(100% - 2rem);
        max-width: none;
        padding: 1.3rem 1rem;
        font-size: 0.75rem;
        letter-spacing: 0.05em;
        border-radius: 25px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
        white-space: normal;
        line-height: 1.3;
    }

    /* Model Info Toggle on mobile */
    .model-info-toggle {
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .info-toggle-btn {
        width: 100%;
        max-width: 300px;
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        margin: 0 auto;
    }

    .info-toggle-btn .toggle-text {
        text-align: center;
    }

    .info-toggle-btn .toggle-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Measurements section on mobile */
    .measurements-section {
        margin: 1rem;
        padding: 2rem 1.5rem;
        border-radius: 12px;
        background: var(--light-gray);
    }

    .measurements-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .measurement-group h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: var(--primary-gold);
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        padding-bottom: 0.5rem;
    }

    /* Reduce spacing between about and tour sections */
    .tour-section {
        padding: 40px 0 80px 0;
    }

    .measurement-item {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }

    /* Fix navigation menu */
    .nav-container {
        padding: 0 1rem;
    }

    /* Ensure images don't cause overflow */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Fix any elements that might cause horizontal scroll */
    .glamour-particles,
    .particle {
        max-width: 100%;
        overflow: hidden;
    }

    /* Fix social links */
    .social-links {
        justify-content: center;
        gap: 1rem;
    }

    /* Newsletter popup on mobile */
    .newsletter-popup-content {
        padding: 2rem 1.5rem;
        width: 95%;
        max-width: 400px;
    }

    .newsletter-header h3 {
        font-size: 1.5rem;
    }

    .newsletter-header p {
        font-size: 0.9rem;
    }

    .newsletter-inline-btn {
        width: 100%;
        text-align: center;
        padding: 1.3rem 1rem;
        font-size: 0.75rem;
    }

    .booking-newsletter-title {
        font-size: 1.5rem;
    }

    .booking-newsletter-text {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .booking-newsletter-section {
        margin-top: 4rem;
        padding-top: 3rem;
    }

    /* Success toast on mobile */
    .success-toast-content {
        padding: 2rem 1.5rem;
        width: 95%;
    }

    .success-icon-large {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .success-toast-content h3 {
        font-size: 1.5rem;
    }

    .success-toast-content p {
        font-size: 1rem;
    }

    /* Fix category filters on mobile - 2x2 grid with centered last item */
    .category-filters {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        padding: 1rem;
        margin: 1rem 0;
        overflow: visible;
    }

    .filter-btn {
        padding: 0.7rem 0.5rem;
        font-size: 0.7rem !important;
        white-space: nowrap;
        min-width: auto;
        width: 100%;
        letter-spacing: 0.08em;
    }

    /* Make Favorites button span full width on top */
    .filter-btn[data-category="favorites"] {
        grid-column: 1 / -1;
    }

    .filter-btn:hover {
        background: rgba(255,255,255,0.15);
    }

    /* Fix gallery image container on mobile */
    .hero-image-container {
        height: 50vh;
        max-height: 400px;
        padding: 2px; /* Keep thin padding on mobile */
        width: calc(100% - 30px);
    }

    /* Adjust corner accents for mobile */
    .hero-image-container::before {
        width: 30px;
        height: 30px;
        opacity: 0.4;
    }

    .hero-image-container::after {
        width: 30px;
        height: 30px;
        bottom: -1px;
        right: -1px;
    }

    .hero-image {
        max-width: calc(100% - 4px); /* Keep consistent with desktop */
        max-height: calc(100% - 4px);
    }

    /* Fix thumbnail strip on mobile */
    .thumbnail-strip {
        padding: 0.5rem;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }

    /* Ensure portfolio section has proper spacing */
    .portfolio-section {
        padding: 60px 0;
    }

    /* Improve gallery navigation arrows for mobile */
    .nav-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        background: rgba(0,0,0,0.3);
        border: 1px solid rgba(212,175,55,0.2);
        opacity: 0.7;
    }

    .nav-arrow:hover {
        background: rgba(212,175,55,0.2);
        opacity: 1;
    }

    /* Position arrows outside of image area on mobile */
    .image-navigation {
        padding: 0 0.5rem;
    }

    .nav-prev {
        margin-left: -5px;
    }

    .nav-next {
        margin-right: -5px;
    }

    /* Fix scroll buttons for thumbnails */
    .scroll-btn {
        display: none; /* Hide on mobile as swipe works better */
    }
}

/* ============= NEW GRID GALLERY STYLES ============= */

/* Gallery Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 40px;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background: #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.8s ease;
}

.gallery-item.fade-out {
    opacity: 0 !important;
    transition: opacity 0.8s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

/* Vertical images */
.gallery-item.vertical {
    grid-row: span 2;
}

/* Horizontal/landscape images */
.gallery-item.horizontal {
    grid-column: span 2;
}

/* Loading state */
.gallery-loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--gold);
    font-size: 1.2rem;
}

/* Category Filters - Glamorous Gold Style */

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: var(--primary-gold);
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease, transform 0.3s ease;
}

.lightbox-close:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}


.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-gold);
    font-size: 16px;
    letter-spacing: 2px;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
        padding: 0 10px;
    }

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

    .gallery-item.vertical {
        grid-row: span 1;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 30px;
    }
}