/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
    --color-bg: #ECFEFF;       /* Light Blue */
    --color-text: #0F172A;     /* Deep Slate for legibility */
    --color-header: rgba(255, 255, 255, 0.85); /* White Glass */
    --color-border: rgba(6, 182, 212, 0.2);    /* Cyan border */
    --color-accent: #14B8A6;   /* Teal */
    --color-accent-hover: #06B6D4; /* Cyan */
    --color-header-text: #0F172A;
    
    --font-primary: 'Manrope', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 800;
    line-height: 1.1;
}

p {
    line-height: 1.6;
    margin: 0 0 1em 0;
}

/* ==========================================================================
   Header (Concept 3: Lens Ring)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-header);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(26, 26, 26, 0.08);
    opacity: 0; /* Handled by GSAP on load */
    z-index: 1000;
    /* Subtle Lens Texture */
    background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 4px,
        rgba(26, 26, 26, 0.015) 4px,
        rgba(26, 26, 26, 0.015) 8px
    );
}

.logo {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-text);
    text-decoration: none;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    border: 1px solid rgba(20, 184, 166, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05), inset 0 2px 5px rgba(255, 255, 255, 1);
    letter-spacing: 1.5px;
    display: flex;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    align-items: center;
}

.logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.25), inset 0 2px 5px rgba(255, 255, 255, 1);
    background: #FFFFFF;
    border-color: rgba(20, 184, 166, 0.5);
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(20,184,166,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    z-index: 1;
    animation: continuousShine 3s infinite linear;
}

@keyframes continuousShine {
    0% { left: -150%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

.logo-char {
    display: inline-block;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.logo:hover .logo-char {
    color: var(--color-accent);
}
.logo:hover .logo-char span {
    color: var(--color-text); /* Invert the teal part to dark on hover */
}

.logo span { font-weight: 400; color: #14B8A6; transition: color 0.3s ease; } /* Teal */

.main-nav {
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px;
    border-radius: 30px;
    border: 1px solid var(--color-border);
    position: relative;
    flex-shrink: 0;
}

.nav-item {
    color: #475569; /* Slate grey */
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--color-accent);
    border-radius: 20px;
    z-index: -1;
    transform: scale(0.5);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-item:hover {
    color: var(--color-text);
}

.nav-item:hover::before {
    transform: scale(1);
    opacity: 1;
}

.cta {
    background-color: var(--color-accent);
    color: #FFFFFF; /* White text on Teal */
    text-decoration: none;
    font-size: 0.8rem;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-shrink: 0;
    white-space: nowrap;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3); /* Teal glow */
}

.cta span {
    position: relative;
    z-index: 2;
}

.cta .arrow {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

.cta::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.6s ease;
    z-index: 1;
}

.cta:hover {
    transform: translateY(-2px);
    background-color: var(--color-accent-hover); /* Cyan on hover */
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.4); /* Cyan glow on hover */
}

.cta:hover .arrow {
    transform: translateX(5px);
}

.cta:hover::after {
    left: 100%;
}

/* ==========================================================================
   Hero Section (Phase 7: Infinite Cinematic Gallery)
   ========================================================================== */
.hero-infinite-gallery {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

/* The Scrolling Track Container */
.gallery-track-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    height: 100%;
    width: max-content;
    animation: infiniteScroll 40s linear infinite;
}

/* Each Photograph in the track */
.gallery-item {
    width: 30vw; /* 3.3 photos visible at once */
    min-width: 400px;
    height: 100%;
    flex-shrink: 0;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.g-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* Optional: very slow zoom on the image itself */
    animation: slowZoom 20s ease-in-out infinite alternate;
}

/* Dark overlay over the entire scrolling track */
.gallery-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 5;
    pointer-events: none;
}

/* Decorative Elegant Frame */
.hero-frame {
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 30px;
    right: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3); /* Subtle Champagne/Gold */
    z-index: 8;
    pointer-events: none;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1), inset 0 0 20px rgba(212, 175, 55, 0.1);
    animation: borderGlow 4s ease-in-out infinite alternate;
    overflow: hidden;
}

/* A shimmering sweep across the frame */
.frame-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255,255,255,0) 40%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0) 60%
    );
    animation: shineSweep 6s linear infinite;
    pointer-events: none;
}

/* Floating Love (Hearts) Overlay */
.hero-floating-love {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 6;
    pointer-events: none;
    overflow: hidden;
}

/* Individual Heart Styling */
.floating-heart {
    position: absolute;
    bottom: -50px; /* Start below the screen */
    color: rgba(212, 175, 55, 0.4); /* Subtle champagne/gold color */
    font-size: 24px; /* Will be randomized in JS */
    pointer-events: none;
    z-index: 6;
    /* We use a text-shadow for a slight magical glow */
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* The Infinite Scroll Animation */
@keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* 50% is exactly 1 set of 4 items */
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes borderGlow {
    0% { border-color: rgba(212, 175, 55, 0.2); box-shadow: 0 0 10px rgba(212, 175, 55, 0.1); }
    100% { border-color: rgba(212, 175, 55, 0.7); box-shadow: 0 0 30px rgba(212, 175, 55, 0.3), inset 0 0 20px rgba(212, 175, 55, 0.2); }
}

@keyframes shineSweep {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes floatingDust {
    0% { background-position: 0px 0px, 0px 0px, 0px 0px; }
    100% { background-position: 300px 300px, -200px 150px, 100px -300px; }
}

/* Bottom Right Minimal Text */
.hero-bottom-right {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 10;
    text-align: right;
    color: #fff;
}

.hero-main-word {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -1px;
    margin: 0;
}

.hero-main-word.italic {
    font-style: italic;
    color: rgba(212, 175, 55, 0.9); /* Subtle Gold */
}

.hero-services-list {
    margin-top: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.8);
}

/* Bottom Left About Text */
.hero-bottom-left {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 10;
    color: rgba(255, 255, 255, 0.8);
    max-width: 300px;
}

.hero-about-text {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero-explore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.hero-explore-link:hover {
    color: rgba(212, 175, 55, 1);
    border-color: rgba(212, 175, 55, 1);
}

.hero-explore-link .arrow {
    transition: transform 0.3s ease;
}

.hero-explore-link:hover .arrow {
    transform: translateX(4px);
}

/* Mobile Hamburger Icon (Hidden on Desktop) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 15px;
    cursor: pointer;
    z-index: 2001; /* Above overlay */
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--color-text);
    transition: all 0.3s ease;
}

/* Open State for Hamburger */
.mobile-menu-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.mobile-menu-toggle.open span:nth-child(2) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay (Alive Kraft Dropdown Style) */
.mobile-menu-overlay {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px 30px;
    min-width: 220px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 15px;
    width: 100%;
}

.mobile-nav-item {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-cta {
    margin-top: 15px;
    background: var(--color-accent);
    color: #FFF;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* ==========================================================================
   Responsive (Mobile View)
   ========================================================================== */
@media (max-width: 768px) {
    /* Header styles moved to max-width 1024px */


    /* Hero Responsive */
    .gallery-item {
        width: 85vw;
        min-width: unset;
    }
    .hero-bottom-right {
        bottom: 30px;
        right: 20px;
    }
    .hero-bottom-left {
        /* Move the about text to the top-left on mobile to prevent overlapping the giant typography */
        bottom: auto;
        top: 90px; 
        left: 20px;
        max-width: 200px;
    }
    .hero-about-text {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    .hero-explore-link {
        font-size: 0.7rem;
    }
    .hero-main-word {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    .hero-services-list {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }
    .hero-frame {
        top: 15px;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    .floating-heart {
        font-size: 16px;
    }
}

/* ==========================================================================
   Services Section (Swipe Feed Mobile-First - Light Premium Theme)
   ========================================================================== */
.services-feed-section {
    background: #FDFBF7; /* Warm alabaster/beige base */
    color: #2C302E; /* Deep charcoal */
    padding: 60px 0 80px 0; /* Reduced for mobile */
    overflow: hidden;
    position: relative; /* For the dynamic bg */
}

/* Dynamic Animated Background (Light Pastel Orbs) */
.services-bg-glow {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, var(--glow-color-1, rgba(235, 218, 211, 0.8)) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    animation: floatGlow 18s infinite alternate ease-in-out;
    transition: background 1.5s ease; /* Smooth color transition */
}

.services-bg-glow.glow-2 {
    top: auto;
    bottom: -10%;
    left: auto;
    right: -10%;
    background: radial-gradient(circle, var(--glow-color-2, rgba(219, 227, 214, 0.8)) 0%, transparent 60%);
    animation-duration: 22s;
    animation-direction: alternate-reverse;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, -80px) scale(1.15); }
}

.services-feed-header {
    text-align: center;
    margin-bottom: 40px; /* Reduced for mobile */
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.feed-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 500;
    margin: 0 0 15px 0;
    color: #2C302E; /* Dark charcoal */
}

.feed-sub-title {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(44, 48, 46, 0.6); /* Muted charcoal */
    margin: 0;
}

.service-feed-row {
    margin-bottom: 60px; /* Reduced gap for mobile */
    position: relative;
}

.service-feed-row:last-child {
    margin-bottom: 0;
}

/* Massive Background Typography with Shining Effect */
.service-bg-text {
    position: absolute;
    top: -80px; /* Moved up even further as requested */
    left: 0;
    width: 100%;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 6.5vw, 8rem); /* Scaled down further to prevent clipping for long words */
    letter-spacing: -2px;
    font-weight: 900;
    white-space: nowrap;
    z-index: 10; /* In front of the images */
    pointer-events: none;
    user-select: none;
    line-height: 1.2; /* Increased from 1 to prevent font ascender clipping */
    padding-top: 10px; /* Extra space to ensure tops of letters aren't sliced */
    
    /* Shining Metallic Gradient */
    background: linear-gradient(
        110deg,
        rgba(44, 48, 46, 0.06) 0%,      /* Faint charcoal base */
        rgba(44, 48, 46, 0.06) 40%,
        rgba(212, 175, 55, 0.4) 50%,    /* Premium Gold Shine */
        rgba(44, 48, 46, 0.06) 60%,
        rgba(44, 48, 46, 0.06) 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: textShine 7s linear infinite;
}

@keyframes textShine {
    to {
        background-position: 200% center;
    }
}

.service-feed-info {
    padding: 0 20px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 5; /* Above bg text */
}

.service-feed-title {
    font-family: var(--font-primary);
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 600;
    margin: 0;
    color: #2C302E; /* Dark charcoal */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.swipe-hint {
    font-size: 0.75rem;
    color: rgba(44, 48, 46, 0.5); /* Muted charcoal */
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Horizontal Scrolling Carousel */
.swipe-carousel-container {
    width: 100%;
    position: relative;
    z-index: 10;
}

/* Slider Arrows (Hidden on mobile by default) */
.slider-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5); /* Lighter glass */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05); /* Faint dark border */
    color: #2C302E; /* Dark charcoal text */
    font-size: 1.5rem;
    z-index: 20;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(44, 48, 46, 0.9); /* Dark hover */
    color: #fff;
    border-color: rgba(44, 48, 46, 1);
}

.slider-arrow-left {
    left: 20px;
}

.slider-arrow-right {
    right: 20px;
}

.swipe-carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 0 20px 40px 20px; /* Padding bottom for shadow space */
    scroll-behavior: smooth;
    
    /* Hide scrollbar natively */
    -ms-overflow-style: none;
    scrollbar-width: none;
    
    /* Desktop drag support cursor */
    cursor: grab;
}

.swipe-carousel-track:active {
    cursor: grabbing;
}

.swipe-carousel-track::-webkit-scrollbar {
    display: none;
}

.swipe-item {
    scroll-snap-align: center;
    /* On mobile, take up most of the screen width */
    flex: 0 0 80vw;
    /* On desktop, max width */
    max-width: 400px;
    aspect-ratio: 4/5; /* Portrait orientation for photos */
    /* Arch shape for premium look */
    border-radius: 200px 200px 10px 10px; 
    overflow: hidden;
    background: #1E293B;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    /* Disable drag on child elements to allow track dragging */
    user-select: none;
    pointer-events: none; /* Image events off so track gets drag events */
}

.swipe-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.swipe-carousel-track:hover .swipe-img {
    /* Slight zoom out when hovering track */
}

/* ==========================================================================
   Category-Specific Themes
   ========================================================================== */

/* 1. Romantic Theme (Weddings, Baby, Event) */
.theme-romantic .service-feed-info {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 35px;
}
.theme-romantic .service-feed-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1;
    
    /* Shining Metallic Gradient */
    background: linear-gradient(
        110deg,
        rgba(44, 48, 46, 0.06) 0%,      /* Faint charcoal base */
        rgba(44, 48, 46, 0.06) 40%,
        rgba(212, 175, 55, 0.4) 50%,    /* Premium Gold Shine */
        rgba(44, 48, 46, 0.06) 60%,
        rgba(44, 48, 46, 0.06) 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: textShine 7s linear infinite;
}

@keyframes textShine {
    to {
        background-position: 200% center;
    }
}

.service-feed-info {
    padding: 0 20px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 5; /* Above bg text */
}

.service-feed-title {
    font-family: var(--font-primary);
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 600;
    margin: 0;
    color: #2C302E; /* Dark charcoal */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.swipe-hint {
    font-size: 0.75rem;
    color: rgba(44, 48, 46, 0.5); /* Muted charcoal */
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Horizontal Scrolling Carousel */
.swipe-carousel-container {
    width: 100%;
    position: relative;
    z-index: 10;
}

/* Slider Arrows (Hidden on mobile by default) */
.slider-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5); /* Lighter glass */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05); /* Faint dark border */
    color: #2C302E; /* Dark charcoal text */
    font-size: 1.5rem;
    z-index: 20;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(44, 48, 46, 0.9); /* Dark hover */
    color: #fff;
    border-color: rgba(44, 48, 46, 1);
}

.slider-arrow-left {
    left: 20px;
}

.slider-arrow-right {
    right: 20px;
}

.swipe-carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 0 20px 40px 20px; /* Padding bottom for shadow space */
    scroll-behavior: smooth;
    
    /* Hide scrollbar natively */
    -ms-overflow-style: none;
    scrollbar-width: none;
    
    /* Desktop drag support cursor */
    cursor: grab;
}

.swipe-carousel-track:active {
    cursor: grabbing;
}

.swipe-carousel-track::-webkit-scrollbar {
    display: none;
}

.swipe-item {
    scroll-snap-align: center;
    /* On mobile, take up most of the screen width */
    flex: 0 0 80vw;
    /* On desktop, max width */
    max-width: 400px;
    aspect-ratio: 4/5; /* Portrait orientation for photos */
    /* Arch shape for premium look */
    border-radius: 200px 200px 10px 10px; 
    overflow: hidden;
    background: #1E293B;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    /* Disable drag on child elements to allow track dragging */
    user-select: none;
    pointer-events: none; /* Image events off so track gets drag events */
}

.swipe-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.swipe-carousel-track:hover .swipe-img {
    /* Slight zoom out when hovering track */
}

/* ==========================================================================
   Category-Specific Themes
   ========================================================================== */

/* 1. Romantic Theme (Weddings, Baby, Event) */
.theme-romantic .service-feed-info {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 35px;
}
.theme-romantic .service-feed-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-style: italic;
    text-transform: capitalize;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #8C6A5D; /* Soft warm brown */
}
.theme-romantic .swipe-item {
    border-radius: 16px; /* Soft curved edges like Modelling */
    aspect-ratio: 4/5;
}
/* 2. Structural Theme (Corporate, Industrial, Interior) */
.theme-structural .service-feed-info {
    justify-content: flex-start;
    gap: 20px;
}
.theme-structural .service-feed-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-style: italic;
    text-transform: capitalize;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #8C6A5D; /* Soft warm brown */
}
.theme-structural .swipe-item {
    border-radius: 4px; /* Sharp corners */
    aspect-ratio: 4/3; /* Taller camera ratio, no longer squished */
    flex: 0 0 85vw;
}
.theme-structural .service-bg-text {
    font-family: 'Inter', sans-serif;
    letter-spacing: -5px;
}

/* 3. Commercial Theme (Product, E-commerce, Food, Modelling) */
.theme-commercial .service-feed-info {
    flex-direction: row-reverse; /* Right aligned */
}
.theme-commercial .service-feed-title {
    font-family: var(--font-primary);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    border-bottom: 2px solid rgba(212, 175, 55, 0.5); /* Gold underline */
    padding-bottom: 5px;
}
.theme-commercial .swipe-item {
    border-radius: 12px; /* Soft squares */
    aspect-ratio: 1/1; /* Perfect squares */
}

/* 4. Fashion Theme (Modelling) */
.theme-fashion .service-feed-info {
    justify-content: flex-end; /* Right aligned, but offset */
    padding-right: 5%;
}
.theme-fashion .service-feed-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: clamp(1.4rem, 4.5vw, 2.5rem);
    color: #1A1F24;
}
.theme-fashion .swipe-item {
    border-radius: 16px; /* Soft curved edges */
    aspect-ratio: 2/3; /* Tall portrait ratio */
    flex: 0 0 70vw; /* Appropriate width for portraits on mobile */
}
.theme-fashion .swipe-img {
    background-position: top center; /* Prevent cutting off heads */
}


/* Re-enable pointer events for hover effects */
.swipe-item {
    pointer-events: auto;
}

.swipe-item:hover .swipe-img {
    transform: scale(1.08);
}

/* Desktop enhancements for swiper */
@media (min-width: 900px) {
    .service-feed-info,
    .swipe-carousel-track {
        padding-left: 6%;
        padding-right: 6%;
    }
    
    .swipe-item {
        flex: 0 0 28vw; /* Show more items on desktop */
    }
    
    .slider-arrow {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .service-feed-row {
        margin-bottom: 120px; /* Restore large gap for desktop */
    }
    
    .services-feed-section {
        padding: 120px 0 150px 0; /* Restore large padding for desktop */
    }
    
    .services-feed-header {
        margin-bottom: 80px; /* Restore large gap for desktop */
    }
    
    /* Theme Desktop overrides */
    .theme-romantic .swipe-item { flex: 0 0 25vw; }
    .theme-structural .swipe-item { 
        flex: 0 0 50vw; /* Massive desktop showcase */
        aspect-ratio: 3/2; /* Classic 35mm photography ratio */
    }
    .theme-commercial .swipe-item { flex: 0 0 22vw; }
    .theme-fashion .swipe-item { flex: 0 0 20vw; } /* Taller and thinner on desktop */
}

/* ==========================================================================
   Lightbox / Fullscreen Modal (Premium Aesthetics)
   ========================================================================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.85); /* Deep dark overlay */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s ease;
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
    opacity: 1;
}

#lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px; /* Slight softening */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: transparent;
    border: none;
    color: #FDFBF7;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

.lightbox-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: -40px;
        right: 0px;
        font-size: 2.5rem;
    }
}

/* Lightbox Navigation */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: white;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
    backdrop-filter: blur(4px);
    z-index: 10;
}
.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}
.lightbox-nav.prev {
    left: -80px;
}
.lightbox-nav.next {
    right: -80px;
}
@media (max-width: 768px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .lightbox-nav.prev { left: 10px; }
    .lightbox-nav.next { right: 10px; }
}

/* ==========================================================================
   Studio On Hire Section (Animated Aurora Glassmorphism)
   ========================================================================== */
.studio-hire-section {
    position: relative;
    padding: 120px 5vw;
    background-color: #0d1117; /* Deep cinematic dark */
    overflow: hidden;
}

/* Animated Aurora Background */
.aurora-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: #050a0e;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: moveBlob 20s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: #00d2ff; /* Neon Cyan */
    top: -10%;
    left: -10%;
    animation-duration: 25s;
}

.blob-2 {
    width: 800px;
    height: 800px;
    background: #3a7bd5; /* Deep Blue */
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
    animation-duration: 30s;
}

.blob-3 {
    width: 500px;
    height: 500px;
    background: #8a2be2; /* Purple */
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -10s;
    animation-duration: 22s;
}

@keyframes moveBlob {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -150px) scale(1.2); }
    66% { transform: translate(-100px, 100px) scale(0.9); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Glassmorphism Container */
.studio-hire-container.glass-card {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.03); /* Frosted Glass */
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* Left: Gallery */
.studio-gallery-col {
    flex: 1.2;
    position: relative;
    min-height: 600px;
}

.studio-slider {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.studio-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1), transform 6s ease-out;
    transform: scale(1.08);
}

.studio-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(0,0,0,0.3) 100%);
}

.studio-slide.active {
    opacity: 1;
    transform: scale(1);
}

.studio-slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.studio-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.studio-dot.active {
    background: #00d2ff; /* Cyan dot */
    border-color: #00d2ff;
    transform: scale(1.3);
    box-shadow: 0 0 10px #00d2ff;
}

/* Right: Info */
.studio-info-col {
    flex: 1;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border-left: 1px solid rgba(255,255,255,0.05);
}

.studio-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.studio-price {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
}

.studio-price span {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: #00d2ff; /* Vibrant Cyan */
    margin-right: 15px;
    text-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}

.studio-location {
    font-size: 1.1rem;
    color: #a0a0a0;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.studio-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.2), rgba(255,255,255,0));
    margin: 30px 0;
}

.studio-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
}

.studio-specs li {
    font-size: 1rem;
    font-weight: 300;
    color: #c0c0c0;
    display: flex;
    flex-direction: column;
}

.studio-specs li strong {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 5px;
}

.studio-cta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.btn-book {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    color: #fff;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.3);
    border: none;
}

.btn-book:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.5);
}

.btn-book .arrow {
    transition: transform 0.3s ease;
}

.btn-book:hover .arrow {
    transform: translateX(5px);
}

.studio-contact-info {
    font-size: 0.95rem;
    color: #a0a0a0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}
.studio-contact-info p {
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .studio-hire-container.glass-card {
        flex-direction: column;
    }
    
    .studio-gallery-col {
        width: 100%;
        min-height: 400px;
    }
    
    .studio-info-col {
        padding: 50px 40px;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    
    .studio-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .studio-title {
        font-size: 2.8rem;
    }
    .studio-price span {
        font-size: 2.2rem;
    }
    .studio-specs {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Studio On Hire - Mobile Fixes
   ========================================================================== */
@media (max-width: 768px) {
    .studio-hire-section {
        padding: 50px 5vw; 
    }
    
    .studio-hire-container.glass-card {
        border-radius: 20px;
    }
    
    .studio-gallery-col {
        min-height: 350px; 
    }
    
    .studio-info-col {
        padding: 40px 30px; /* Better breathing room */
    }
    
    .studio-title {
        font-size: 2.5rem; 
        margin-bottom: 5px;
    }
    
    .studio-price {
        font-size: 1rem;
    }
    
    .studio-price span {
        font-size: 2rem;
    }

    .studio-location {
        margin-bottom: 15px; /* Reduced from 40px */
    }

    .studio-divider {
        margin: 15px 0; /* Reduced from 30px */
    }
    
    .studio-specs {
        grid-template-columns: 1fr 1fr; 
        gap: 12px 10px; /* Tighter grid */
    }
    
    .studio-specs li {
        font-size: 0.95rem;
    }
    
    .studio-specs li strong {
        font-size: 1.6rem;
        margin-bottom: 2px;
    }
    
    .btn-book {
        width: max-content; 
        padding: 12px 25px; /* Slightly tighter button */
        font-size: 0.9rem;
    }
    
    .studio-cta {
        width: 100%;
        flex-direction: column;
        align-items: flex-start; 
        text-align: left;
        gap: 15px; /* Tighter CTA gap */
        margin-top: 10px;
    }
    
    .studio-contact-info {
        text-align: left; 
        width: 100%;
        line-height: 1.4;
    }
}

/* ==========================================================================
   Pricing Section (Photo Cards)
   ========================================================================== */
.pricing-section {
    padding: 120px 5vw;
    background-color: #2C302E; /* Dark sleek background */
    color: #FDFBF7;
    position: relative;
    overflow: hidden;
}

.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.pricing-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #FDFBF7;
    letter-spacing: -0.02em;
}

.pricing-header p {
    font-size: 1.2rem;
    color: rgba(253, 251, 247, 0.7);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.price-card {
    position: relative;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    transition: background 0.4s ease;
    z-index: 1;
}

.price-card:hover .price-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 70%, rgba(0,0,0,0.3) 100%);
}

.price-card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 100%;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.price-card:hover .price-card-content {
    transform: translateY(-10px);
}

.price-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 0.02em;
}

.price-val {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
}

.price-val span {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: #CBAA6A; /* Elegant gold accent */
    margin: 0 8px;
    text-shadow: 0 0 20px rgba(203, 170, 106, 0.3);
}

/* Hover Zoom Effect on Background */
.price-card {
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 6s ease-out;
}

.price-card:hover::before {
    transform: scale(1.1);
}

.pricing-footer {
    text-align: center;
    margin-top: 80px;
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #CBAA6A;
    color: #fff;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 40px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(203, 170, 106, 0.3);
}

.btn-quote:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(203, 170, 106, 0.5);
}

.btn-quote .arrow {
    transition: transform 0.3s ease;
}

.btn-quote:hover .arrow {
    transform: translateX(5px);
}

/* Responsive Pricing */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 80px 5vw;
    }
    
    .pricing-header h2 {
        font-size: 3rem;
    }
    
    .price-card {
        height: 300px;
    }
    
    .price-card h3 {
        font-size: 1.5rem;
    }
    
    .price-val span {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   Integrated Service Pricing
   ========================================================================== */
.service-feed-price {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: #1A1F24; /* Solid deep slate for high contrast */
    border: 1px solid rgba(212, 175, 55, 0.6); /* Premium gold border */
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #FDFBF7;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.service-feed-price span {
    font-family: 'Playfair Display', serif;
    color: #CBAA6A;
    font-weight: 600;
    font-size: 1.3rem;
    margin: 0 4px;
}

/* ==========================================================================
   Service Feed Title Wrapper & Pricing Fixes
   ========================================================================== */
.service-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px; /* Small gap between title and price */
    max-width: 70%; /* Prevent overlapping with swipe hint on desktop */
}

.theme-commercial .service-title-wrapper {
    align-items: flex-end; /* Right align for commercial theme */
}

.theme-romantic .service-title-wrapper {
    align-items: center; /* Center align for romantic theme */
}

/* Remove the old huge top margin from the price, as gap handles it now */
.service-feed-price {
    margin-top: 0 !important;
}

@media (max-width: 768px) {
    .service-title-wrapper {
        max-width: 100%;
        width: 100%;
        align-items: flex-start !important; /* Always left-align on mobile for consistency */
    }
    
    .theme-commercial .service-feed-info, 
    .theme-fashion .service-feed-info,
    .theme-romantic .service-feed-info,
    .theme-structural .service-feed-info {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px;
    }

    .service-feed-title {
        font-size: 2rem !important; /* Slightly smaller on mobile to prevent squishing */
        line-height: 1.1;
    }
    
    .service-feed-price {
        padding: 6px 15px;
        font-size: 0.95rem;
    }
    
    .service-feed-price span {
        font-size: 1.1rem;
    }
    
    .swipe-hint {
        align-self: flex-start !important; /* Left align hint on mobile */
    }
}

/* ==========================================================================
   About Section
   ========================================================================== */







/* ==========================================================================
   Golden Split About Section (Off-White, Canvas Particles)
   ========================================================================== */
.golden-about-section {
    position: relative;
    width: 100%;
    margin-top: 0;
    background-color: #FDFBF7; /* Off-white */
    overflow: hidden;
}

#gold-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}

.golden-about-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 800px; /* Ensure full photo has room */
}

/* Left: Text */
.golden-about-text {
    padding: 120px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.golden-about-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 300;
    margin-bottom: 50px;
    color: #1A1F24;
    letter-spacing: -0.02em;
    position: relative;
    line-height: 1.1;
}

.golden-about-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #CBAA6A;
}

.golden-about-body {
    position: relative;
    padding-left: 20px;
    border-left: 1px solid rgba(203, 170, 106, 0.3);
}

.golden-about-body p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    line-height: 1.9;
    color: rgba(26, 31, 36, 0.85);
    margin-bottom: 25px;
    letter-spacing: 0.02em;
}

.golden-about-body strong {
    color: #1A1F24;
    font-weight: 700;
    background: linear-gradient(120deg, rgba(203, 170, 106, 0.2) 0%, rgba(203, 170, 106, 0.2) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 88%;
}

.golden-about-address {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(203, 170, 106, 0.3); /* Gold divider */
}

.golden-about-address h3 {
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    color: #CBAA6A;
    margin-bottom: 15px;
}

.golden-about-address p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #2C302E;
    margin-bottom: 10px;
}

.golden-note {
    font-size: 0.95rem !important;
    color: rgba(44, 48, 46, 0.6) !important;
    font-style: italic;
}

/* Right: Photo */
.golden-about-photo {
    width: 100%;
    height: 100%;
    position: relative;
}

.golden-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
}

@media (max-width: 1024px) {
    .golden-about-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .golden-about-photo {
        height: 60vh; /* Fixed height on mobile */
        order: 2; /* Move photo below text on mobile */
    }
    
    .golden-about-text {
        padding: 80px 5vw;
    }
}




/* ==========================================================================
   Reviews Section (Infinite Carousel)
   ========================================================================== */
.reviews-section {
    padding: 120px 0;
    background-color: #FDFBF7; /* Off-white to match About */
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(44, 48, 46, 0.05);
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 5vw;
}

.reviews-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 400;
    color: #1A1F24;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
}

.reviews-header p {
    font-size: 1.15rem;
    color: rgba(44, 48, 46, 0.7);
    font-family: 'Manrope', sans-serif;
}

.reviews-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* Fading edges for the carousel */
.reviews-carousel-wrapper::before,
.reviews-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 10vw;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.reviews-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #FDFBF7 0%, transparent 100%);
}

.reviews-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #FDFBF7 0%, transparent 100%);
}

.reviews-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-carousel 40s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

.review-card { box-sizing: border-box;
    width: 400px;
    background: #ffffff;
    border: 1px solid rgba(203, 170, 106, 0.2);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.06);
    border-color: #CBAA6A;
}

.quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: rgba(203, 170, 106, 0.3);
    line-height: 0.5;
    margin-bottom: 20px;
}

.review-text {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(26, 31, 36, 0.85);
    flex-grow: 1;
    margin-bottom: 30px;
    font-style: italic;
}

.review-author {
    border-top: 1px solid rgba(44, 48, 46, 0.08);
    padding-top: 20px;
}

.author-name {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A1F24;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 15px)); /* scroll half the width (original 4 + gap) */
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .review-card {
        box-sizing: border-box;
        width: 85vw;
        max-width: 320px;
        padding: 25px;
    }

    .review-text {
        font-size: 0.95rem;
    }
    
    .reviews-carousel-wrapper::before,
    .reviews-carousel-wrapper::after {
        width: 5vw;
    }
}


/* ==========================================================================
   Contact Form Section (Off-White, Minimalist)
   ========================================================================== */
.contact-section { padding: 40px 5vw 120px 5vw;
    background-color: #FDFBF7; /* Off-white to match About/Reviews */
    color: #1A1F24;
    position: relative;
    border-top: 1px solid rgba(44, 48, 46, 0.05);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left: Contact Info */
.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 5vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.contact-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(26, 31, 36, 0.7);
    margin-bottom: 50px;
    max-width: 500px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.contact-icon {
    font-size: 1.8rem;
    color: #CBAA6A;
    margin-top: -5px;
}

.contact-item h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #1A1F24;
}

.contact-item p,
.contact-item a {
    font-size: 1.1rem;
    color: rgba(26, 31, 36, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.contact-item a:hover {
    color: #CBAA6A;
}

/* Right: Contact Form */
.contact-form-wrapper {
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.03);
    border: 1px solid rgba(203, 170, 106, 0.2);
}

.form-group {
    position: relative;
    margin-bottom: 40px;
}

.form-input {
    width: 100%;
    padding: 10px 0;
    font-size: 1.1rem;
    font-family: 'Manrope', sans-serif;
    color: #1A1F24;
    border: none;
    border-bottom: 1px solid rgba(26, 31, 36, 0.2);
    background: transparent;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-bottom-color: #CBAA6A;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-label {
    position: absolute;
    top: 12px;
    left: 0;
    font-size: 1.1rem;
    color: rgba(26, 31, 36, 0.5);
    pointer-events: none;
    transition: 0.3s ease all;
}

/* Floating Label Animation */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -20px;
    font-size: 0.85rem;
    color: #CBAA6A;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    background: #1A1F24;
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
}

.btn-submit .arrow {
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.btn-submit:hover {
    background: #CBAA6A;
    transform: translateY(-2px);
}

.btn-submit:hover .arrow {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) { .contact-section { padding: 30px 5vw 80px 5vw; }
    
    .contact-form-wrapper {
        padding: 40px 30px;
    }
}


/* ==========================================================================
   Map Section
   ========================================================================== */
.map-section {
    width: 100%;
    height: 450px;
    line-height: 0;
    overflow: hidden;
    position: relative;
    
}

.map-section iframe {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.site-footer {
    background-color: #0A0C10; /* Deep cinematic dark */
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 5vw 30px 5vw;
    font-family: 'Manrope', sans-serif;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-brand p {
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 400px;
}

.footer-col h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: #CBAA6A; /* Gold accent */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-col p {
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-col strong {
    color: #ffffff;
    font-size: 1.1rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #CBAA6A;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-links a {
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    width: max-content;
}

.social-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: #CBAA6A;
    transition: width 0.3s ease;
}

.social-links a:hover::after {
    width: 100%;
}

/* Footer Bottom Bar */
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer-bottom-right strong {
    color: #CBAA6A;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


/* ==========================================================================
   Header Navigation Dropdown
   ========================================================================== */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown .dropbtn {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown .arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%; /* Position right below the header */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    min-width: 200px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 10px 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
    color: #1A1F24 !important;
    padding: 12px 24px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-content a:hover {
    background-color: rgba(203, 170, 106, 0.1);
    color: #CBAA6A !important;
}

/* Ensure mobile header behaves nicely with dropdown */
@media (max-width: 768px) {
    .dropdown-content {
        position: fixed; /* On mobile, absolute inside a hidden overflow header might fail, but let's see */
        /* Actually, if mobile header is just a circle, we might not have space. Wait, the header is standard on mobile? No, it's a circle on mobile. Wait, mobile header is a small circle with hamburger? No, currently I didn't build a hamburger menu. The links are inside the circle and probably overflow. Let's just adjust standard dropdown for mobile */
    }
}

/* Mobile Dropdown Menu */
.mobile-dropdown-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-dropbtn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mobile-dropdown-content {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
    width: 100%;
}

.mobile-dropdown-content.open {
    display: flex;
}

.mobile-dropdown-content a {
    color: #475569;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.mobile-dropdown-content a:hover {
    color: var(--color-accent);
}

/* ==========================================================================
   Floating Action Buttons (WhatsApp & Back to Top)
   ========================================================================== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.fab {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s, background-color 0.3s;
    text-decoration: none;
    border: none;
    outline: none;
}

.fab:hover {
    transform: scale(1.1);
}

.fab svg {
    width: 28px;
    height: 28px;
}

.fab-whatsapp {
    background-color: #25D366; /* WhatsApp Green */
    color: white;
}

.fab-whatsapp:hover {
    background-color: #1EBE5D;
}

.fab-map {
    background-color: #4285F4; /* Google Maps Blue */
    color: white;
}

.fab-map:hover {
    background-color: #3367D6;
}

.fab-top {
    background-color: #1A1A1A; /* Dark */
    color: white;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.9);
}

.fab-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.fab-top:hover {
    background-color: var(--color-accent); /* Teal hover */
}

/* Mobile Adjustments for FABs */
@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .fab {
        width: 48px;
        height: 48px;
    }
    
    .fab svg {
        width: 24px;
        height: 24px;
    }
}

/* ==========================================================================
   Responsive Refinements (Laptops & Tablets)
   ========================================================================== */

/* Medium Devices (Laptops, MacBooks, Tablets) */
@media (min-width: 769px) and (max-width: 1250px) {
    .site-header {
        gap: 15px;
        padding: 10px 15px;
    }
    .logo {
        flex-shrink: 0;
        font-size: 1rem;
        padding-left: 5px;
    }
    .main-nav {
        gap: 2px;
    }
    .nav-item {
        font-size: 0.75rem;
        padding: 8px 12px;
    }
    .cta {
        padding: 10px 15px;
        font-size: 0.75rem;
        flex-shrink: 0;
    }
    
    .hero-main-word {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
}

/* Tablets (iPads, smaller laptops) */
@media (max-width: 1024px) {
    /* Move About text up to avoid collision with main hero text */
    .hero-bottom-left {
        bottom: auto;
        top: 120px; 
        left: 30px;
    }
    .hero-bottom-right {
        bottom: 40px;
        right: 30px;
    }
}

/* ==========================================================================
   Header Responsive (Tablets & Mobile - 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
    .site-header {
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 46px; /* Slimmer circle */
        height: 46px;
        flex-direction: row; 
        justify-content: center;
        align-items: center;
        padding: 0;
        border-radius: 50%;
        background: rgba(15, 23, 42, 0.85); /* Dark frosted glass */
        backdrop-filter: blur(20px);
        gap: 0;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Hide logo in initial circular state */
    .site-header .logo {
        position: absolute;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        transform: scale(0.9);
        font-size: 0.85rem;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 18px;
        height: 10px;
        position: relative;
        z-index: 2;
    }
    
    .mobile-menu-toggle span {
        background: #FFF; /* White lines initially */
        height: 2px;
        width: 100%;
        border-radius: 2px;
        transition: background 0.3s ease;
    }

    /* Scrolled state: Expands to a white pill */
    .site-header.scrolled {
        width: 85%;
        max-width: 280px;
        height: 46px;
        border-radius: 30px;
        padding: 0 20px;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .site-header.scrolled .logo {
        position: relative;
        opacity: 1;
        pointer-events: auto;
        transform: scale(1);
        transition: all 0.4s ease 0.2s; /* Fade in after expand */
        color: var(--color-text);
    }

    .site-header.scrolled .mobile-menu-toggle span {
        background: var(--color-text); /* Dark lines when white */
    }

    .desktop-nav, .desktop-cta {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero-floating-love {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .site-footer { padding: 40px 5vw 20px 5vw; }
    .footer-brand h2 { font-size: 1.6rem !important; margin-bottom: 15px; }
    .footer-brand p { font-size: 0.9rem !important; }
    .footer-col h3 { font-size: 1rem !important; margin-bottom: 15px; }
    .footer-col p, .footer-col strong, .footer-col a, .footer-links a { font-size: 0.85rem !important; margin-bottom: 8px; }
    .footer-col { margin-bottom: 5px; }
    .footer-container { gap: 25px; margin-bottom: 30px; }
}

/* Footer Logo Creative Style */
.footer-logo { font-family: 'Manrope', sans-serif !important; font-size: 2.8rem !important; font-weight: 800 !important; letter-spacing: 2px; display: inline-flex; gap: 2px; }
.footer-logo .mp { color: #FFFFFF; text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }
.footer-logo .studio { color: var(--color-accent); text-shadow: 0 0 15px rgba(20, 184, 166, 0.6); animation: neonPulse 2s infinite alternate; }
@keyframes neonPulse { from { text-shadow: 0 0 10px rgba(20, 184, 166, 0.4); } to { text-shadow: 0 0 25px rgba(20, 184, 166, 1), 0 0 5px rgba(255,255,255,0.8); } }
@media (max-width: 768px) { .footer-logo { font-size: 2.2rem !important; } }

.social-icons a:hover { transform: scale(1.15) translateY(-2px); filter: brightness(1.2); }
@media (max-width: 768px) { .social-icons { justify-content: center; } }

/* Map Responsiveness */
@media (max-width: 768px) {
    .map-section {
        height: 300px;
    }
}

