/* 
 * Candidsmileography - Styling System (Vanilla CSS)
 * Sophisticated, warm-minimalist aesthetic tailored for creative photography.
 */

/* -------------------------------------------------------------
   1. VARIABLES & DESIGN SYSTEM
------------------------------------------------------------- */
:root {
    --color-primary: #111111;
    --color-primary-rgb: 17, 17, 17;
    --color-accent: #c5a880;
    --color-accent-rgb: 197, 168, 128;
    --color-accent-dark: #ab8f63;
    --color-accent-light: #f5e6d3;
    --color-bg-cream: #faf8f5; /* Warm cream/ivory background */
    --color-bg-white: #ffffff; /* Pure white content containers */
    --color-text-dark: #222222;
    --color-text-muted: #666666;
    --color-border: #eae6df;
    --color-card-bg: #ffffff;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Nunito', system-ui, -apple-system, sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease-in-out;
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-header: 0 4px 30px rgba(0, 0, 0, 0.02);
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --max-width: 1200px;
}

/* -------------------------------------------------------------
   2. RESET & BASE STYLES
------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
}

body {
    background-color: var(--color-bg-cream);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.25;
}

h1 { font-size: clamp(2rem, 7vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 4.5vw, 1.8rem); }

p {
    color: var(--color-text-muted);
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.text-center { text-align: center; }
.gold-text { color: var(--color-accent); }

/* Section Header */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--color-accent);
}

.section-header p {
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Custom Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 168, 128, 0.25);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-primary);
    font-weight: 600;
}

.btn-accent:hover {
    background-color: var(--color-accent-dark);
    color: var(--color-bg-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 168, 128, 0.25);
}

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

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

.intro-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* -------------------------------------------------------------
   3. HEADER / NAVIGATION
------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(234, 230, 223, 0.5);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background-color: rgba(250, 248, 245, 0.98);
    box-shadow: var(--shadow-header);
    padding: 10px 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(234, 230, 223, 0.5);
}

/* Homepage Header - Transparent when at top, solid gold/cream when scrolled (Only applies to desktop viewports) */
@media (min-width: 769px) {
    .main-header.home-header {
        background-color: transparent;
        border-bottom: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .main-header.home-header .logo-title {
        color: #ffffff;
    }

    .main-header.home-header .nav-link {
        color: rgba(255, 255, 255, 0.9);
    }

    .main-header.home-header .hamburger span {
        background-color: #ffffff;
    }

    /* Homepage Header when scrolled (Turns solid cream/gold) */
    .main-header.home-header.scrolled {
        background-color: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(234, 230, 223, 0.5);
    }

    .main-header.home-header.scrolled .logo-title {
        color: var(--color-primary);
    }

    .main-header.home-header.scrolled .nav-link {
        color: var(--color-text-dark);
    }

    .main-header.home-header.scrolled .hamburger span {
        background-color: var(--color-primary);
    }
}

/* Homepage Header when Mobile Menu is Open */
.main-header.home-header.menu-open {
    background-color: rgba(250, 248, 245, 0.98) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(234, 230, 223, 0.5) !important;
}

.main-header.home-header.menu-open .logo-title {
    color: var(--color-primary) !important;
}

.main-header.home-header.menu-open .nav-link {
    color: var(--color-text-dark) !important;
}

.main-header.home-header.menu-open .hamburger span {
    background-color: var(--color-primary) !important;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    height: 65px;
}

.logo a {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 0.02em;
    line-height: 1;
    transition: var(--transition-smooth);
}

.logo-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-top: 3px;
    font-weight: 500;
    padding-left: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-dark);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-accent);
    transition: var(--transition-fast);
}

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

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

.nav-link.active {
    color: var(--color-accent);
}

/* Mobile Toggle Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-fast);
}

/* Hamburger Open States */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* -------------------------------------------------------------
   4. HERO CAROUSEL
------------------------------------------------------------- */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background-color: var(--color-primary);
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
}

.carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(17, 17, 17, 0.15) 0%, rgba(17, 17, 17, 0.65) 100%);
    z-index: 3;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-image-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* Prevents heads from getting cut off on desktop landscape crops */
    filter: brightness(0.95); /* Keep photo bright, let gradient handle readability */
    transform: scale(1.08);
    transition: transform 6s ease-out;
}

.carousel-slide.active .slide-image {
    transform: scale(1);
}

.slide-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-bg-cream);
    padding: 0 24px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s, opacity 1s ease-out 0.5s;
}

.carousel-slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: #ffffff;
    margin-bottom: 16px;
    display: block;
    font-weight: 500;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.15;
}

.slide-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Slide Nav Controls */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.carousel-arrow:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

.carousel-arrow-left { left: 30px; }
.carousel-arrow-right { right: 30px; }

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dot.active {
    background-color: var(--color-accent);
    transform: scale(1.2);
}

/* -------------------------------------------------------------
   5. QUICK INTRODUCTION & PAGES
------------------------------------------------------------- */
.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.intro-content h3 {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.intro-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.intro-image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.intro-image-container::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    pointer-events: none;
    border-radius: calc(var(--border-radius-lg) - 5px);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    position: relative;
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    cursor: pointer;
}

.category-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: var(--transition-smooth);
}

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.8) 0%, rgba(17, 17, 17, 0.2) 60%, rgba(17, 17, 17, 0.0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition-smooth);
}

.category-card-title {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 6px;
    font-family: var(--font-heading);
}

.category-card-count {
    color: var(--color-accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.category-card:hover .category-card-image {
    transform: scale(1.08);
}

.category-card:hover .category-card-overlay {
    background: linear-gradient(to top, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.4) 50%, rgba(17, 17, 17, 0.1) 100%);
}

/* -------------------------------------------------------------
   7. WHY US / BENEFITS
------------------------------------------------------------- */
.why-section {
    background-color: var(--color-bg-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-item {
    padding: 30px;
    border-radius: var(--border-radius-lg);
    background-color: var(--color-bg-cream);
    transition: var(--transition-smooth);
    border: 1px solid var(--color-border);
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-accent);
}

.why-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-accent-light);
    color: var(--color-accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.why-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.why-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* -------------------------------------------------------------
   7.1 THE STORYTELLING PROCESS
------------------------------------------------------------- */
.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 40px;
    margin-top: 50px;
    padding: 20px 0;
}

@media (min-width: 769px) {
    .process-timeline::before {
        content: '';
        position: absolute;
        left: 15%;
        right: 15%;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, var(--color-accent) 15%, var(--color-accent) 85%, transparent 100%);
        z-index: 1;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .process-timeline::before {
        top: calc(25vw - 12px);
    }
}

@media (min-width: 1201px) {
    .process-timeline::before {
        top: 288px;
    }
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    margin-bottom: 0;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    position: relative;
    background-color: var(--color-bg-cream);
}

.process-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.process-badge {
    position: relative;
    margin-top: -20px;
    margin-bottom: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--color-bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 3px solid var(--color-bg-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 3;
    transition: var(--transition-smooth);
}

.process-step:nth-child(1) .process-badge {
    background: linear-gradient(135deg, #0284c7, #0369a1);
}
.process-step:nth-child(2) .process-badge {
    background: linear-gradient(135deg, #f97316, #c2410c);
}
.process-step:nth-child(3) .process-badge {
    background: linear-gradient(135deg, #a855f7, #7e22ce);
}

.process-step:hover .process-image-wrapper {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-accent);
}

.process-step:hover .process-image-wrapper img {
    transform: scale(1.05);
}

.process-step:hover .process-badge {
    transform: scale(1.15);
}

.process-content {
    margin-top: 15px;
    padding: 0 10px;
}

.process-content h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.process-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Staggered entrance reveal delay on desktop */
@media (min-width: 769px) {
    .process-step:nth-child(1) {
        transition-delay: 0.1s;
    }
    .process-step:nth-child(2) {
        transition-delay: 0.25s;
    }
    .process-step:nth-child(3) {
        transition-delay: 0.4s;
    }
}

/* Mobile cards carousel */
@media (max-width: 768px) {
    .process-timeline {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 20px 24px 40px 24px;
        margin-left: -24px;
        margin-right: -24px;
        scrollbar-width: none;
    }
    
    .process-timeline::-webkit-scrollbar {
        display: none;
    }
    
    .process-step {
        flex: 0 0 82%;
        scroll-snap-align: center;
        background-color: var(--color-bg-white);
        border-radius: var(--border-radius-lg);
        padding: 24px 20px;
        box-shadow: var(--shadow-medium);
        border: 1px solid var(--color-border);
    }
    
    .process-image-wrapper {
        aspect-ratio: 16 / 10;
        margin-bottom: 0;
    }
    
    .process-badge {
        margin-top: -18px;
        margin-bottom: 15px;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .process-content {
        margin-top: 10px;
        padding: 0;
    }
    
    .process-content h3 {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }
}

/* -------------------------------------------------------------
   8. CLIENT TESTIMONIALS
------------------------------------------------------------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-subtle);
    position: relative;
    border: 1px solid var(--color-border);
}

.testimonial-quote {
    color: var(--color-text-dark);
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.7;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-accent-light);
    color: var(--color-accent-dark);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-accent);
}

.author-details h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.author-details span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.testimonial-rating {
    color: var(--color-accent);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

/* -------------------------------------------------------------
   9. CTA BANNER
------------------------------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, rgba(197, 168, 128, 0.8) 0%, rgba(17, 17, 17, 0.92) 100%), url('../about.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    text-align: center;
    padding: 120px 0;
}

.cta-section h2 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* -------------------------------------------------------------
   10. ABOUT ME PAGE SPECIFICS
------------------------------------------------------------- */
.about-section {
    padding-top: 150px;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.about-sticky-image {
    position: sticky;
    top: 120px;
}

.about-image {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    width: 100%;
}

.about-content h1 {
    font-size: 3rem;
    margin-bottom: 8px;
}

.about-subtitle {
    font-size: 1.1rem;
    color: var(--color-accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 40px;
    display: block;
}

.about-bio {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-bio p {
    margin-bottom: 24px;
}

.about-bio blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-primary);
    border-left: 3px solid var(--color-accent);
    padding-left: 24px;
    margin: 40px 0;
    line-height: 1.5;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    border-top: 1px solid var(--color-border);
    padding-top: 40px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--color-accent-dark);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* -------------------------------------------------------------
   11. PORTFOLIO PAGE & LIGHTBOX
------------------------------------------------------------- */
.portfolio-section {
    padding-top: 150px;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    color: var(--color-text-dark);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border-color: var(--color-primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (min-width: 769px) {
    #highlightsGrid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    aspect-ratio: 4 / 5;
    cursor: pointer;
    /* For JS filter animations */
    transition: transform 0.4s ease, opacity 0.4s ease;
}

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

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* Prevents heads from getting cut off on desktop crop boxes */
    transition: var(--transition-smooth);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.75);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

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

.portfolio-title {
    color: #ffffff;
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 8px;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.portfolio-cat {
    color: var(--color-accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transform: translateY(15px);
    transition: var(--transition-smooth) 0.1s;
}

.portfolio-item:hover .portfolio-title,
.portfolio-item:hover .portfolio-cat {
    transform: translateY(0);
}

/* Lightbox UI */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.95);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.lightbox-caption {
    color: #ffffff;
    margin-top: 15px;
    font-size: 1.1rem;
    text-align: center;
    font-family: var(--font-heading);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 30px;
    color: #ffffff;
    font-size: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-accent);
    transform: scale(1.1);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 3rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 20px;
}

.lightbox-arrow:hover {
    color: var(--color-accent);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* -------------------------------------------------------------
   12. SERVICES PAGE SPECIFICS
------------------------------------------------------------- */
.services-section {
    padding-top: 150px;
}

.services-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.svc-filter-btn {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    color: var(--color-text-dark);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-fast);
}

.svc-filter-btn:hover,
.svc-filter-btn.active {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(17, 17, 17, 0.1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.service-card {
    background-color: var(--color-bg-white);
    border: 1px solid rgba(234, 230, 223, 0.8);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
}

.service-card.hidden {
    display: none !important;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(197, 168, 128, 0.1);
    border-color: var(--color-accent);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.service-card:hover .service-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
    color: var(--color-text-muted);
}

.btn-service-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: var(--color-bg-cream);
    color: var(--color-primary);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    margin-top: auto;
}

.btn-service-book i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.service-card:hover .btn-service-book {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(17, 17, 17, 0.15);
}

.service-card:hover .btn-service-book i {
    transform: translateX(4px);
}

.different-service {
    background: linear-gradient(135deg, var(--color-bg-white) 0%, var(--color-accent-light) 100%);
    border-radius: var(--border-radius-lg);
    padding: 50px 40px;
    margin-top: 80px;
    text-align: center;
    border: 1px solid var(--color-accent);
    box-shadow: var(--shadow-subtle);
}

.different-service h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.different-service p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.05rem;
    color: var(--color-text-dark);
}

/* -------------------------------------------------------------
   13. PLAN MY SHOOT & THANK YOU
------------------------------------------------------------- */
.booking-section {
    padding-top: 150px;
}

.booking-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: start;
}

.booking-info h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.booking-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.info-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    color: var(--color-accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.info-contact-text h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.info-contact-text p {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-text-dark);
    margin: 0;
}

/* Custom Form Styles */
.form-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow-subtle);
}

.form-fieldset {
    border: none;
    margin-bottom: 40px;
}

.form-fieldset-legend {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 24px;
    padding-bottom: 8px;
    border-bottom: 1.5px solid var(--color-accent-light);
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-grid-full {
    grid-column: span 2;
}

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

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-dark);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    background-color: var(--color-bg-cream);
    color: var(--color-text-dark);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: var(--color-bg-white);
    box-shadow: 0 0 0 4px rgba(197, 168, 128, 0.12);
}

.form-control::placeholder {
    color: #999999;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* File Upload Field */
.file-upload-wrapper {
    position: relative;
    border: 2px dashed var(--color-border);
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
    background-color: var(--color-bg-cream);
    cursor: pointer;
    transition: var(--transition-fast);
}

.file-upload-wrapper:hover {
    border-color: var(--color-accent);
}

.file-upload-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
}

.file-upload-label i {
    font-size: 1.8rem;
    color: var(--color-accent);
}

/* Conditional Group Hide/Show styling */
.conditional-group {
    display: none;
    margin-top: 15px;
    padding-left: 15px;
    border-left: 2px solid var(--color-accent);
}

.conditional-group.show {
    display: block;
}

/* Thank You Specifics */
.thankyou-section {
    padding: 180px 0 100px 0;
    text-align: center;
}

.thankyou-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: var(--shadow-medium);
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-accent-light);
    color: var(--color-accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 30px auto;
}

.thankyou-card h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.thankyou-card p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.thankyou-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* -------------------------------------------------------------
   14. FAQ ACCORDION
------------------------------------------------------------- */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    user-select: none;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--color-accent);
    transition: var(--transition-fast);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
    border-top: 1px solid transparent;
}

.faq-answer p {
    padding-bottom: 24px;
    font-size: 1rem;
    line-height: 1.6;
}

/* FAQ Active state */
.faq-item.active {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-subtle);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Large enough to hold text */
    padding-top: 20px;
    border-color: var(--color-border);
}

/* -------------------------------------------------------------
   15. FOOTER
------------------------------------------------------------- */
.main-footer {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo .logo-title {
    color: #ffffff;
    font-size: 1.75rem;
}

.footer-logo .logo-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-top: 4px;
    font-weight: 500;
    padding-left: 2px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-links h3,
.footer-contact h3 {
    color: #ffffff;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    font-weight: 600;
    font-family: var(--font-body);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 4px;
}

.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--color-accent);
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}

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

/* -------------------------------------------------------------
   16. RESPONSIVE DESIGN (MEDIA QUERIES)
------------------------------------------------------------- */
@media (max-width: 1024px) {
    .intro-grid,
    .about-grid,
    .booking-layout {
        gap: 40px;
    }
    
    .intro-content h2,
    .about-content h1,
    .booking-info h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 70px 0;
    }
    
    .featured-grid,
    .why-grid,
    .testimonials-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }
    
    .main-header.scrolled .header-container {
        height: 60px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-bg-cream);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.4s ease;
        border-top: 1px solid var(--color-border);
    }
    
    .main-header.scrolled .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .hero-carousel {
        position: relative !important;
        height: 360px !important;
        min-height: auto !important;
        margin-top: 70px !important;
        background-color: var(--color-primary) !important;
    }
    
    .carousel-track {
        height: 100% !important;
    }
    
    .carousel-slide {
        display: block !important;
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .carousel-slide::after {
        display: block !important;
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(17, 17, 17, 0.2) 0%, rgba(17, 17, 17, 0.75) 100%) !important;
        z-index: 3;
        pointer-events: none;
    }
    
    .slide-image-link {
        position: absolute !important;
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 4;
    }
    
    .slide-image {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        filter: none !important;
        transform: none !important;
        transition: none !important;
    }
    
    .slide-content {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 90% !important;
        padding: 0 !important;
        background: transparent !important;
        color: #ffffff !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        z-index: 5 !important;
    }
    
    .slide-title {
        font-size: 1.4rem !important;
        color: #ffffff !important;
        margin-bottom: 6px !important;
        line-height: 1.25 !important;
        font-weight: 700 !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75) !important;
    }
    
    .slide-desc {
        display: none !important;
    }
    
    .slide-tagline {
        font-size: 0.65rem !important;
        color: var(--color-accent) !important;
        margin-bottom: 6px !important;
        letter-spacing: 0.2em !important;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.75) !important;
    }
    
    .slide-content .btn {
        display: none !important; /* Hide button in mobile */
    }
    
    .carousel-dots {
        position: absolute !important;
        bottom: 15px !important;
        top: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 10 !important;
    }
    
    .carousel-arrow {
        display: none; /* Hide arrows on mobile for cleaner layout */
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-image-container {
        order: -1; /* Display image first on mobile */
        max-width: 450px;
        margin: 0 auto;
    }
    
    .about-grid,
    .booking-layout {
        grid-template-columns: 1fr;
    }
    
    .about-sticky-image {
        position: static;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .why-grid,
    .testimonials-grid,
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .form-card {
        padding: 30px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-grid-full {
        grid-column: span 1;
    }
    
    .lightbox-arrow {
        font-size: 2rem;
    }
    
    .lightbox-prev { left: 5px; }
    .lightbox-next { right: 5px; }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .featured-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .category-card {
        height: 320px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* -------------------------------------------------------------
   17. WHATSAPP FLOATING ACTION BUTTON (FAB)
------------------------------------------------------------- */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1999;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: pulseFab 2s infinite;
}

.whatsapp-fab:hover {
    background-color: #128c7e;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.6);
    color: #ffffff;
}

@keyframes pulseFab {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 480px) {
    .whatsapp-fab {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }
}

/* Unique color themes for icons (colored process/value lists) */
.icon-blue { background-color: #e0e7ff !important; color: #4f46e5 !important; }
.icon-rose { background-color: #fce7f3 !important; color: #db2777 !important; }
.icon-red { background-color: #fee2e2 !important; color: #ef4444 !important; }
.icon-green { background-color: #d1fae5 !important; color: #059669 !important; }
.icon-amber { background-color: #fef3c7 !important; color: #d97706 !important; }
.icon-teal { background-color: #ccfbf1 !important; color: #0f766e !important; }
.icon-sky { background-color: #e0f2fe !important; color: #0369a1 !important; }
.icon-orange { background-color: #ffedd5 !important; color: #c2410c !important; }
.icon-purple { background-color: #f3e8ff !important; color: #7e22ce !important; }

/* -------------------------------------------------------------
   18. INFINITE SCROLLING MARQUEE
   ------------------------------------------------------------- */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 35s linear infinite;
    gap: 20px;
}

.marquee-item {
    width: 260px;
    height: 360px;
    flex-shrink: 0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.marquee-item:hover {
    transform: translateY(-5px) scale(1.02);
}

.marquee-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

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

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

/* Extra responsiveness adjustments for forms and labels on smaller screens */
@media (max-width: 768px) {
    .booking-section {
        padding-top: 110px;
    }
    
    .booking-info h1 {
        font-size: clamp(1.8rem, 6vw, 2.4rem) !important;
        line-height: 1.25;
    }
    
    .booking-info p {
        font-size: 0.95rem !important;
        margin-bottom: 24px;
    }
    
    .file-upload-wrapper {
        padding: 16px 12px !important;
    }
    
    .file-upload-label {
        font-size: 0.8rem !important;
        gap: 6px;
    }
    
    .file-upload-label i {
        font-size: 1.6rem !important;
    }
    
    .conditional-group {
        margin-top: 10px;
    }
    
    /* Center aligning intro buttons on mobile */
    .intro-buttons {
        justify-content: center;
        gap: 12px;
        margin-top: 24px;
    }
    
    .intro-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* About page image caption */
.about-image-caption {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 15px;
    letter-spacing: 0.03em;
}

/* Instagram Floating Action Button (FAB) on Left Side */
.instagram-fab {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
    z-index: 1999;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: pulseInstaFab 2s infinite;
}

.instagram-fab:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.6);
    color: #ffffff;
}

@keyframes pulseInstaFab {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 39, 67, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(220, 39, 67, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 39, 67, 0);
    }
}

@media (max-width: 480px) {
    .instagram-fab {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
        font-size: 1.5rem;
    }
}

/* Instagram grid on Homepage */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.instagram-card {
    display: block;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--color-border);
}

.instagram-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.instagram-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.instagram-card-overlay i {
    font-size: 2rem;
    margin-bottom: 8px;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.instagram-card-overlay span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s;
}

.instagram-card:hover .instagram-card-img {
    transform: scale(1.08);
}

.instagram-card:hover .instagram-card-overlay {
    opacity: 1;
}

.instagram-card:hover .instagram-card-overlay i,
.instagram-card:hover .instagram-card-overlay span {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .instagram-card:nth-child(n+4) {
        display: none;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .instagram-card:nth-child(n+3) {
        display: none;
    }
}

