/* Global Styles */
:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --accent-color: #333333;
    --spacing: 2rem;
    --page-height: 80vh;
    /* For flipbook pages */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Removed cursor: auto !important override */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Changed from -1 to ensure visibility behind text */
    pointer-events: none;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color);
    position: sticky;
    top: 0;
    z-index: 1;
    border-bottom: 1px solid #eee;
}


/* 3D Flipbook Effect */
.flipbook-section {
    perspective: 1500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    /* Solid white to cover sticky hero */
    padding: 100px 0;
    position: relative;
    z-index: 5;
    /* Higher than sticky hero */
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
    /* Shadow to add depth to the scroll-over */
}

.hero-title {
    font-size: 18vw;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.8;
    color: transparent;
    background: linear-gradient(135deg, #5CA4A9, #3A7074, #8FD3D8, #5CA4A9);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    text-transform: lowercase;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards, gradientFlow 10s ease infinite;
    margin-top: 0;
    padding-right: 0.1em;
    width: fit-content;
    position: relative;
    z-index: 2;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Modern Top Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    pointer-events: none;
    /* Allow clicks through empty areas */
}

/* The Menu Pill Container */
.nav-pill {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.7rem 2.2rem;
    /* Slightly larger for presence */
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    pointer-events: auto;
    white-space: nowrap;
    max-width: 95%;
    box-sizing: border-box;
    overflow: visible;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    padding-right: 1.5rem;
    margin-right: 0.8rem;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-logo-img {
    height: 30px;
    /* Slightly larger professional logo */
    width: auto;
    display: block;
    object-fit: contain;
}

/* Unified Nav Item Styles */
.nav-item {
    text-decoration: none;
    font-size: 0.95rem;
    /* Better balance */
    text-transform: capitalize;
    letter-spacing: 0.05em;
    color: black;
    font-weight: 400;
    position: relative;
    padding-left: 20px;
    transition: color 0.3s ease;
}

/* Pulsing dot for ALL nav items */
.nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(4px, 1.5vw, 6px);
    height: clamp(4px, 1.5vw, 6px);
    background-color: #5CA4A9;
    /* Brand Green */
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Underline hover effect for ALL nav items */
.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 15px;
    /* Start text start */
    width: 0;
    height: 1px;
    background-color: black;
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: calc(100% - 15px);
}

/* Alert Item in Nav */
.alert-item {
    font-weight: 400;
    /* Normal weight like others */
    color: black !important;
    /* Back to black */
    animation: rush-shake 3s infinite;
    transform-origin: center;
    display: inline-block;
}

@keyframes pulse {
    0% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateY(-50%) scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
}

/* Mobile Nav Adjustments */
@media (max-width: 768px) {
    .top-nav {
        padding: 1rem 0.5rem;
    }

    .nav-pill {
        padding: 0.5rem 1rem;
        /* Tighter for mobile */
        gap: 0.6rem;
        max-width: 95%;
        overflow-x: auto;
        /* Allow scroll if too wide */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
        justify-content: flex-start;
        /* Align left if scrolling */
    }

    .nav-pill::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .nav-logo {
        padding-right: 0.6rem;
        margin-right: 0.1rem;
        border-right: none;
        /* Removed separator on mobile for space */
    }

    .nav-logo-img {
        height: 20px;
        /* Scaled for mobile */
    }

    .nav-item {
        font-size: 0.75rem;
        padding-left: 12px;
        letter-spacing: 0;
    }

    .nav-item::before {
        display: none;
        /* Hide dots on mobile to save space */
    }
}


.hero-subtitle {
    font-size: 0.8rem;
    /* Reverted size */
    font-weight: 300;
    color: #666;
    max-width: 900px;
    margin-top: 1rem;
    line-height: 1.5;
    animation: fadeIn 2s ease-out forwards;
    padding: 0 1rem;
    letter-spacing: 0.05em;
}

.hero-subtitle strong {
    font-weight: 600;
    color: #333;
    /* Darker color for emphasis */
}

.contact-link {
    text-decoration: none;
    color: inherit;
    /* Inherit form parent */
    cursor: pointer;
    transition: opacity 0.2s;
}

.contact-link:hover {
    opacity: 0.7;
}

/* Floating WhatsApp Widget */
.deal-alert-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    /* Dark grey like reference */
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 20;
    /* Soft pulse animation */
    animation: badgePulse 2s infinite ease-in-out;
}

@keyframes badgePulse {
    0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    }
}

.whatsapp-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    /* WhatsApp Green */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-widget:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Section Structure */
.section {
    padding: 4rem 5%;
    min-height: 40vh;
    position: relative;
    z-index: 2;
    background-color: #ffffff;
}


.section-header p.sub-header-text {
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 0.5rem;
    font-weight: 300;
    max-width: 800px;
    width: 90%;
    line-height: 1.5;
    text-align: center;
}

.section-header {
    display: flex;
    flex-direction: column;
    /* Ensure vertical stacking */
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    border-bottom: none;
    padding-bottom: 0;
    width: 100%;
    /* Ensure full width */
}

.section-header h2 {
    font-size: 1.8rem;
    /* Reverted to elegant small size */
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: none;
    color: #555;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}



/* ==========================================
   Creative Flipbook Section Enhancements
========================================== */
.flipbook-section {
    position: relative;
    padding: 8rem 0;
    /* More breathing room */
    overflow: hidden;
    /* Contain background decorations */
    background: #fdfdfd;
    z-index: 5;
}

.video-section {
    position: relative;
    z-index: 2;
    background-color: var(--bg-color);
    /* Ensure it covers the previous section */
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.05);
    /* Subtle shadow for depth */
}

/* Stage Light Effect */
.flipbook-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(92, 164, 169, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* Background Ambient Glow */
.flipbook-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(92, 164, 169, 0.06) 0%, transparent 70%);
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

/* Floating Abstract Shapes */
.flipbook-floating-shape {
    position: absolute;
    background: rgba(92, 164, 169, 0.02);
    border: 1px solid rgba(92, 164, 169, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    pointer-events: none;
    animation: morphFloat 25s ease-in-out infinite;
    z-index: 1;
}

.shape-1 {
    width: 450px;
    height: 450px;
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 550px;
    height: 550px;
    bottom: -150px;
    right: -200px;
    animation-duration: 30s;
    animation-delay: -7s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    top: 15%;
    right: 8%;
    animation-duration: 22s;
    animation-delay: -12s;
}

@keyframes morphFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    }

    33% {
        transform: translate(40px, 60px) rotate(15deg) scale(1.1);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    66% {
        transform: translate(-30px, 100px) rotate(-10deg) scale(0.95);
        border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
    }
}

/* Large Background Outline Text */
.flipbook-bg-text {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.02);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    user-select: none;
    pointer-events: none;
    z-index: 2;
    white-space: nowrap;
    animation: slowDrift 40s linear infinite;
}

@keyframes slowDrift {
    0% {
        transform: translate(-52%, -50%) rotate(0deg);
    }

    50% {
        transform: translate(-48%, -52%) rotate(1deg);
    }

    100% {
        transform: translate(-52%, -50%) rotate(0deg);
    }
}

.flipbook-container {
    position: relative;
    width: 900px;
    /* Reverted to professional refined scale */
    height: 600px;
    margin: 3rem auto;
    transform-style: preserve-3d;
    transition: transform 1s ease, margin-left 1s ease;
}

/* Initial Closed State: Book is centered on screen */
.flipbook-container.initial-center {
    transform: translateX(-25%);
    /* Shift left by half a page width (25% of total 2-page container) */
}

/* Responsive Book Size */
@media (max-width: 1024px) {
    .flipbook-container {
        width: 90%;
        height: 60vw;
        /* Adjusted for aspect ratio */
    }
}

@media (max-width: 600px) {
    .flipbook-section {
        padding: 2rem 0;
        /* Minimize padding on mobile */
    }

    .flipbook-container {
        width: 96%;
        /* 
           If total width is 96vw, each page is ~48vw.
           Standard A4 ratio (1.41) -> Height ~ 48 * 1.41 = 67vw.
           Let's set a height that fits this ratio better.
        */
        height: 68vw;
        margin: 1rem auto;
    }

    .instruction-text {
        font-size: 0.7rem;
    }

    .footer-hero-content {
        margin-top: 1rem;
    }
}

.book-page {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    left: 50%;
    /* Start on the right side */
    transform-origin: left center;
    transform-style: preserve-3d;
    transition: transform 1s cubic-bezier(0.645, 0.045, 0.355, 1);
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.book-page.flipped {
    transform: rotateY(-180deg);
}

/* Faces */
.page-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    overflow: hidden;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-front {
    z-index: 2;
    /* Front is visible initially */
    transform: rotateY(0deg);
}

.page-back {
    z-index: 1;
    transform: rotateY(180deg);
    background-color: #f0f0f0;
}

/* Image styling within pages */
.page-face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Paper texture / shadow for realism */
.page-front::after,
.page-back::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15px;
    /* Spine shadow width */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.page-front::after {
    left: 0;
}

.page-back::after {
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
}

/* Controls styling adjustment */
.flipbook-controls {
    margin-top: 2rem;
    z-index: 10;
    display: flex;
    gap: 1rem;
    justify-content: center;
    /* Ensure buttons are centered */
}

.nav-btn {
    background: none;
    border: 1px solid black;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.nav-btn:hover {
    background: black;
    color: white;
}

.instruction-text {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
    align-items: start;
    margin-bottom: 3rem;
    max-width: 1600px;
    /* Further expanded for maximum desktop visibility while keeping 6 per row */
    margin-left: auto;
    margin-right: auto;
}

.video-item {
    position: relative;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 9/16;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: 0 auto;
}

.video-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

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

/* Play Button Overlay */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    /* Let click pass to container */
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 2px solid white;
}

.play-button::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
    /* Visual centering adjustment */
}

.video-item.playing .play-button {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
}

/* Fullscreen Button */
.fullscreen-button {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.2s, transform 0.2s;
    pointer-events: auto;
    /* Ensure clickable */
}

.video-item:hover .fullscreen-button {
    opacity: 1;
}

.fullscreen-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.fullscreen-button svg {
    width: 20px;
    height: 20px;
    fill: white;
}



@media (max-width: 1200px) {
    .video-grid {
        grid-template-columns: repeat(4, 1fr);
        /* 4 columns for large tablets */
    }
}

@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 columns for smaller tablets */
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 20vw;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for mobile 2-2 layout */
        gap: 0.8rem;
    }

    .video-item {
        max-width: 100%;
        border-radius: 8px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Ensure controls are clickable */
    .nav-btn {
        width: 50px;
        /* Larger touch target */
        height: 50px;
    }
}

/* Typewriter Effect Styles */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    z-index: 10;
}

.typewriter-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    /* Reverted size */
    font-weight: 300;
    color: #555;
    min-height: 1.5em;
    /* Prevent layout shift */
    display: inline-block;
    position: relative;
    letter-spacing: 0.02em;
}

/* Cursor for typewriter */
.typewriter-text::after {
    content: '|';
    position: absolute;
    right: -8px;
    animation: blink 0.75s step-end infinite;
    color: black;
    opacity: 1;
}

@keyframes blink {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Responsive adjustments for Hero */
@media (max-width: 768px) {
    .typewriter-text {
        font-size: 0.8rem;
        /* Smaller top text */
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 28vw;
        /* Massive Estro */
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.7rem;
        /* Smaller subtext */
        padding: 0 2rem;
    }
}

/* Offer Section */
.offer-section {
    background-color: #f9f9f9;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 3;
}

.offer-container {
    max-width: 1000px;
    /* More compact container */
    width: 100%;
}

.offer-title {
    font-size: 2.2rem;
    /* Even more refined titles */
    font-weight: 900;
    margin-bottom: 0.3rem;
    color: #5CA4A9;
    line-height: 1.1;
}

.offer-subtitle {
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 3rem;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    text-align: left;
    margin-bottom: 4rem;
    align-items: center;
    /* Center vertically if one is taller */
}

@media (min-width: 769px) {
    .offer-card {
        order: 2;
    }

    .offer-services-column {
        order: 1;
    }
}

.offer-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Align to top instead of center */
    align-items: center;
    /* Keep content centered horizontally */
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Maintain fallback border */
    position: relative;
    overflow: visible;
    /* Allow badge to pop out */
    transition: transform 0.3s ease;
    z-index: 1;
    text-align: center;
    /* Center all nested text elements */
}



/* Snake Border Animation Container */
.snake-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    /* Clip the animation */
    pointer-events: none;
    z-index: 0;
}

/* Snake Border Animation */
.snake-border {
    position: absolute;
    background: linear-gradient(90deg, transparent, #5CA4A9);
    display: block;
}

.snake-border.top {
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    animation: snake-top 2s linear infinite;
    animation-delay: 0s;
}

.snake-border.right {
    top: -100%;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #5CA4A9);
    animation: snake-right 2s linear infinite;
    animation-delay: 0.5s;
}

.snake-border.bottom {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(270deg, transparent, #5CA4A9);
    animation: snake-bottom 2s linear infinite;
    animation-delay: 1s;
}

.snake-border.left {
    bottom: -100%;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #5CA4A9);
    animation: snake-left 2s linear infinite;
    animation-delay: 1.5s;
}

@keyframes snake-top {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

@keyframes snake-right {
    0% {
        top: -100%;
    }

    50%,
    100% {
        top: 100%;
    }
}

@keyframes snake-bottom {
    0% {
        right: -100%;
    }

    50%,
    100% {
        right: 100%;
    }
}

@keyframes snake-left {
    0% {
        bottom: -100%;
    }

    50%,
    100% {
        bottom: 100%;
    }
}



.offer-feature-list li {
    font-size: 0.95rem;
    /* Reverted size */
    margin-bottom: 0.8rem;
    padding-left: 1.2rem;
    position: relative;
    color: #444;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.offer-feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #5CA4A9;
    font-size: 1.2em;
    line-height: 1;
    top: -1px;
}

.offer-price-highlight {
    font-size: 6rem;
    /* Slightly reduced to help alignment */
    font-weight: 900;
    /* Ultra bold */
    color: #5CA4A9;
    margin: 0;
    line-height: 0.8;
    /* Tight line height */
    letter-spacing: -4px;
    /* Tight tracking */
    display: inline-block;
    /* Ensure it sits well with sub-text */
    position: relative;
}

.offer-price-highlight span {
    font-size: 1.5rem !important;
    /* Override inline */
    font-weight: 300 !important;
    vertical-align: middle;
    letter-spacing: normal;
    margin-left: 5px;
    opacity: 0.8;
}

.offer-price-sub {
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin-top: auto;
    /* Push to bottom of card */
    padding-top: 1rem;
    /* Reduced from 2rem */
    text-align: center;
}

.offer-sub-green {
    color: #5CA4A9;
    font-weight: 500;
    font-size: 0.9rem;
    /* Reverted size */
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pay-later-badge {
    display: inline-block;
    background-color: #111;
    color: #fff;
    padding: 0.45rem 1.4rem;
    /* Reverted padding */
    border-radius: 50px;
    font-size: 0.75rem;
    /* Reverted size */
    font-weight: 500;
    margin-top: 0.8rem;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.2s ease;
}

.pay-later-badge:hover {
    transform: translateY(-2px);
}

.offer-target-text {
    font-size: 0.9rem;
    /* Reverted size */
    color: #555;
    font-weight: 500;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
    margin-bottom: 1.8rem;
    text-align: center;
}

.offer-feature-list {
    list-style: none;
    margin: 1.5rem auto;
    /* Center the block */
    padding: 0;
    display: inline-block;
    /* Cleaner for centering with text-align: center */
    text-align: left;
    /* Keep text left aligned inside the centered block */
}

.offer-services-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.headshot-gallery-wrapper {
    position: relative;
    /* Wrapper for absolute positioning of the button */
}

.headshot-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto !important;
    margin: 0 !important;
    z-index: 10;
}

.headshot-btn-overlay .gallery-btn {
    background: rgba(255, 255, 255, 0.85);
    /* Glass look */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #000;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.headshot-btn-overlay .gallery-btn:hover {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.05);
    /* Account for transform in hover */
}

/* Hover override because parent has transform */
.headshot-btn-overlay .gallery-btn:hover {
    transform: scale(1.05);
}

/* Headshot Gallery */
.headshot-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 0;
    /* Button is now an overlay, no extra margin needed */
}

.headshot-item {
    aspect-ratio: 3/4;
    /* Portrait ratio */
    background-color: #eee;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.headshot-item:hover {
    transform: scale(1.05) rotate(2deg);
    /* Zoom & Tilt */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.gallery-btn-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.gallery-btn {
    background: none;
    border: 1px solid #ccc;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #555;
    margin-top: 1rem;
}

.gallery-btn:hover {
    border-color: #5CA4A9;
    color: #5CA4A9;
    background-color: #f0fbfb;
}

/* Pitch Card Design Deleted - Replaced by Value Box below */

.value-prop-box {
    background: #f8ffff;
    border: 1px solid #e0f0f0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.savings-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
    line-height: 1;
}

.save-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.save-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #5CA4A9;
    /* Brand Green */
}

.save-period {
    font-size: 1rem;
    color: #999;
    font-weight: 500;
    margin-top: -0.2rem;
}

/* Standard Pricing Card */
.regular-pricing-card {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.reg-price-title {
    font-size: 1rem;
    /* Smaller to fit one line */
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.pricing-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #eee;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.pricing-item.subheading {
    border-left: 3px solid #5CA4A9;
}

.pricing-item.simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #555;
    flex-wrap: nowrap;
    gap: 0.5rem;
}

.pricing-item.simple .p-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    /* Allow shrinking */
    font-size: 0.85rem;
    /* Reduce font size to fit */
}

.pricing-item.simple>div {
    flex-shrink: 0;
    white-space: nowrap;
}

.pricing-item.simple span {
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
}

/* Global Overflow Fix */
html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    max-width: 100vw;
}

.pricing-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
    gap: 1rem;
}

.p-opt {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-period {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0.2rem;
}

.p-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.p-amount small {
    font-size: 0.8rem;
    font-weight: 500;
    color: #777;
}

.p-divider {
    font-size: 0.8rem;
    color: #ccc;
    font-weight: 600;
}

.p-price-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.p-old {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
}

.save-badge {
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 0.3rem;
}

.total-calc-box {
    margin-top: auto;
    text-align: center;
    border-top: 1px dashed #ddd;
    padding-top: 1.5rem;
}

.calc-strike {
    text-decoration: line-through;
    color: #999;
    font-weight: 600;
}

.deal-highlight-text {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    color: #333;
}

.deal-highlight-text strong {
    color: #5CA4A9;
    font-size: 1.5rem;
}

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

    100% {
        background-position: -200% 0;
    }
}

.services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    max-width: 440px;
    /* Aligns with sizing of right-hand card */
    margin: 0 auto;
    padding: 1rem 0;
}

.service-tag {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    color: #555;
    padding: 0.5rem 1.2rem;
    /* More compact padding */
    border-radius: 50px;
    font-size: 0.85rem;
    /* Scaled down to fit elegantly */
    letter-spacing: 0.01em;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    white-space: nowrap;
}

.service-tag:hover {
    border-color: #5CA4A9;
    color: #5CA4A9;
    background-color: #f0fbfb;
}

.limited-offer-badge {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    animation: rush-shake 3s infinite;
    transform-origin: center;
}

@keyframes rush-shake {

    0%,
    80%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    85% {
        transform: scale(1.1) rotate(-3deg);
    }

    90% {
        transform: scale(1.1) rotate(3deg);
    }

    95% {
        transform: scale(1.1) rotate(-3deg);
    }
}

@media (max-width: 768px) {
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offer-title {
        font-size: 2rem;
    }

    .offer-card {
        padding: 2rem;
        max-width: 100%;
        /* overflow: hidden; Removed to show badge */
        width: auto;
    }

    .pricing-item.simple {
        flex-wrap: wrap;
        /* Allow wrapping on mobile */
        height: auto;
        padding: 1rem 0;
        /* Add space when wrapped */
    }

    .pricing-item.simple .p-name {
        white-space: normal;
        /* Allow text to wrap */
        margin-bottom: 0.5rem;
        /* Space between title and price/button */
    }
}

/* Mega Menu Overlay */
.mega-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow: hidden;
    display: flex;
    /* Flexbox for centering connection */
    justify-content: center;
    align-items: center;
}

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

.mega-menu-container {
    max-width: 1400px;
    width: 90%;
    height: 90vh;
    display: flex;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    background: white;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.mega-menu-overlay.active .mega-menu-container {
    transform: scale(1);
}

/* Headshot Specific Card Tuning */
.headshot-specific-card {
    min-height: 100%;
    /* Ensure it matches gallery height */
    justify-content: space-between;
    /* Spread content top to bottom naturally */
    padding-top: 3rem;
    /* Adjusted since icon is gone */
}

.headshot-specific-card .offer-feature-list {
    margin: 2.5rem auto;
    /* More spread for the features */
}

.headshot-specific-card .offer-price-highlight {
    margin-top: 1rem;
}

.headshot-specific-card .offer-feature-list li {
    margin-bottom: 1.5rem;
    /* More space between items to fill card */
}

/* Close Button */
.mega-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: #f0f0f0;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2100;
}

.mega-close-btn:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.mega-close-btn svg {
    width: 20px;
    height: 20px;
    fill: #333;
}

/* Layout */
.mega-sidebar {
    width: 35%;
    background: #fcfcfc;
    border-right: 1px solid #eee;
    overflow-y: auto;
    padding: 2rem 0;
}

.mega-content {
    width: 65%;
    padding: 4rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: white;
}

/* Sidebar Items */
.service-cat-item {
    padding: 1.2rem 2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-cat-item:hover {
    background: #f4fcfc;
}

.service-cat-item.active {
    background: #e0f2f2;
    border-left-color: #5CA4A9;
}

.cat-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-cat-item.active .cat-title {
    color: #5CA4A9;
}

.cat-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #5CA4A9;
}

.service-cat-item.active .cat-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Content Area */
.service-detail {
    animation: fadeIn 0.4s ease;
}

.service-detail h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.service-detail p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
}

.service-detail ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem 2rem;
}

.service-detail li {
    padding-left: 20px;
    position: relative;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.service-detail li::before {
    content: '•';
    color: #5CA4A9;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.5em;
    top: -5px;
}

/* Mobile Responsiveness for Mega Menu */
@media (max-width: 900px) {
    .mega-menu-container {
        flex-direction: column;
        width: 100%;
        height: 100%;
        margin: 0;
        border-radius: 0;
    }

    .mega-sidebar {
        width: 100%;
        height: 50%;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 4rem 0 0.5rem 0;
        /* Keep top padding for close button */
    }

    .mega-content {
        width: 100%;
        height: 50%;
        padding: 1.2rem;
        /* Tighter padding */
        border-top: 5px solid #f0f0f0;
    }

    .mega-close-btn {
        top: 0.8rem;
        right: 0.8rem;
        width: 35px;
        /* Smaller close button */
        height: 35px;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* Compact Sidebar Items */
    .service-cat-item {
        padding: 0.8rem 1.2rem;
        /* Slightly more breathable */
    }

    .cat-title {
        font-size: 0.85rem;
        /* Slightly larger for easier use */
    }

    /* Content Area Compression */
    .service-detail h2 {
        font-size: 1.2rem;
        /* Compact header */
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }

    .service-detail p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.4;
        /* Tighter lines */
    }

    .service-detail ul {
        grid-template-columns: 1fr;
        gap: 0.3rem;
        /* Less gap between items */
    }

    .service-detail li {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
        /* Tighter list */
        line-height: 1.4;
    }

    .service-detail li::before {
        top: -1px;
    }

    /* Arrow pointing down on mobile */
    .cat-arrow {
        transform-origin: center;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cat-arrow svg {
        transform: rotate(90deg) !important;
    }

    .service-cat-item.active .cat-arrow {
        transform: none !important;
        opacity: 1;
    }
}

/* Closing max-width: 900px */

/* ==========================================
   Creative "Aura Abyss" Footer
========================================== */
/* ==========================================
   Kinetic Obsidian Footer
========================================== */
.kinetic-obsidian-footer {
    position: relative;
    background-color: #ffffff;
    color: #111;
    padding: 120px 5% 60px;
    z-index: 20;
    overflow: hidden;
    font-family: inherit;
}



.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.footer-hero-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #fff;
    margin-top: 2rem;
    border-radius: 24px;
    min-height: 85vh;
}

#footer-particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}


/* Bottom Obsidian Bar */
/* Bottom Obsidian Bar */
.footer-obsidian-bottom {
    padding-top: 2rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #666;
    text-transform: lowercase;
}

.f-bottom-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.f-bottom-center {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.f-bottom-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}

.footer-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #333;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.footer-icon-btn:hover,
.footer-icon-btn.playing {
    background-color: #5CA4A9;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(92, 164, 169, 0.3);
}

.f-bottom-right a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.f-bottom-right a:hover {
    color: #5CA4A9;
}

.f-dot {
    width: 3px;
    height: 3px;
    background: #ccc;
    border-radius: 50%;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .kinetic-obsidian-footer {
        padding: 80px 5% 40px;
    }

    .footer-hero-brand {
        padding: 4rem 0 6rem;
    }


    .footer-obsidian-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .f-bottom-center {
        order: -1;
        /* Move buttons to top on mobile for easy reach */
        margin-bottom: 0.5rem;
    }

    .f-obsidian-contact-box {
        padding: 1.5rem;
    }
}

/* ==========================================
   Legal Protocol Modals
========================================== */
.legal-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 3000;
    display: none;
    /* Controlled by JS */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.legal-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.legal-modal-container {
    background: #fff;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    border-radius: 24px;
    border: 1px solid #eee;
    position: relative;
    padding: 3rem;
    overflow-y: auto;
    color: #111;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.legal-modal-overlay.active .legal-modal-container {
    transform: translateY(0);
}

.legal-close-btn {
    position: sticky;
    /* Make it sticky */
    top: 5px;
    /* Stick to top (adjusted down slightly from container edge) */
    float: right;
    /* Keep it on the right side */
    margin-top: -2.5rem;
    /* Pull it up visually into the padding area if needed, or adjust padding */
    margin-right: -1rem;
    background: #f5f5f5;
    border: none;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
    /* Ensure it stays above content */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Add shadow for visibility on scroll */
}

.legal-close-btn:hover {
    background: #5CA4A9;
    color: #fff;
    transform: rotate(90deg);
}

.legal-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.legal-intro {
    font-size: 1.1rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.l-section {
    margin-bottom: 2.5rem;
}

.l-section h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #5CA4A9;
    margin-bottom: 1rem;
}

.l-section p {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
}

/* Mobile Adjustments for Legal */
@media (max-width: 768px) {
    .legal-modal-container {
        padding: 2rem;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        overflow-y: scroll;
        /* Ensure scrolling works */
    }

    .legal-close-btn {
        margin-top: -1rem;
        /* Adjust for tighter mobile padding */
        top: 10px;
    }

    .legal-title {
        font-size: 1.5rem;
    }
}

/* Final Page Support */
#website-offer {
    background-color: #ffffff;
}

/* Clickable Trigger */
.clickable-trigger {
    cursor: pointer;
    transition: all 0.2s ease;
}

.clickable-trigger:hover {
    background-color: #f0fbfb;
    border-color: #5CA4A9;
    transform: translateX(5px);
}

/* Festival Gallery Grid inside Modal */
.festival-container {
    max-width: 900px;
    /* Wider for gallery */
}

.festival-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.festival-item {
    /* Auto height to fit full image */
    background-color: #eee;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.festival-item:hover {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

/* View Sample Animation */
.view-sample-btn {
    font-size: 0.75rem;
    color: white;
    background: #5CA4A9;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: blink-green-red 2s infinite;
    white-space: nowrap;
}

@keyframes blink-green-red {

    0%,
    100% {
        background-color: #5CA4A9;
        /* Green */
        color: white;
    }

    50% {
        background-color: #d32f2f;
        /* Red */
        color: white;
    }
}