:root {
    --primary-red: #cf2027;
    --dark-red: #ae1b21;
    --bright-red: #e3412f;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --dark-gray: #333333;
    --medium-gray: #777777;
    --light-gray: #f0f0f0;
    --glass-white: rgba(255, 255, 255, 0.15);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-premium: 0 15px 45px rgba(0, 0, 0, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

    /* Sun Gradient */
    --sun-peach: #df853b;
    --sun-yellow: #FFF1CD;

    /* Button Gradient */
    --button-peach: #cc0000;
    --button-yellow: #e51b1b;

    /* Hero Layout */
    --hero-width: 100%;
    --hero-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Section Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-smooth);
}

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

/* Header & Navigation */
header.main-header {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

header.main-header.scrolled {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: var(--shadow-premium);
}

.top-bar {
    height: 5px;
    background: linear-gradient(to right, var(--primary-red), var(--dark-red));
    width: 100%;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    transition: var(--transition-smooth);
}

.logo-container {
    padding: 0;
}

.logo {
    height: 80px;
    transition: var(--transition-smooth);
}

header.scrolled .logo {
    height: 80px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    position: relative;
    padding: 5px 0;
}

.main-nav a:hover {
    color: var(--primary-red);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: var(--transition-smooth);
}

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

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-red);
    position: relative;
    transition: var(--transition-smooth);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: var(--primary-red);
    left: 0;
    transition: var(--transition-smooth);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Active Hamburger */
.mobile-nav-toggle.active .hamburger {
    background-color: transparent;
}

.mobile-nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: var(--hero-width);
    height: var(--hero-height);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    perspective: 1000px;
    margin-top: -50PX;
}

/* --- 1. Animated Sun --- */

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

    100% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.sun-rays {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 400px;
    height: 400px;
    background: conic-gradient(from 0deg, rgba(255, 241, 205, 0) 0%, rgba(255, 241, 205, 0.4) 10%, rgba(255, 241, 205, 0) 20%, rgba(255, 241, 205, 0.4) 30%, rgba(255, 241, 205, 0) 40%, rgba(255, 241, 205, 0.4) 50%, rgba(255, 241, 205, 0) 60%, rgba(255, 241, 205, 0.4) 70%, rgba(255, 241, 205, 0) 80%, rgba(255, 241, 205, 0.4) 90%, rgba(255, 241, 205, 0) 100%);
    border-radius: 50%;
    z-index: 0;
    opacity: 0;
    transition: opacity 2s ease;
}

.sun-container.rise .sun-rays {
    opacity: 1;
    animation: rotate-rays 30s linear infinite;
}

@keyframes rotate-rays {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* --- 2. Van Video Container --- */
.van-container {
    position: relative;
    z-index: 5;
    /* In front of sun and confetti */
    width: 100vw;
    /* Full screen width */
    height: 80vh;
    /* Takes up most of the screen */
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Align shadow at bottom */
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bounce easing */
}

/* Applied when stopping via JS */
.van-container.tilt {
    transform: rotateX(1deg) rotateY(-1deg) translateZ(30px) scale(1.05);
}

.van-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover the container */
    mix-blend-mode: multiply;
    /* Blends light background */
    -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 50%, black 65%, transparent 100%);
    mask-image: radial-gradient(ellipse 70% 65% at 50% 50%, black 65%, transparent 100%);
    position: relative;
    z-index: 6;
    transform: scale(1.1);
    /* Scale up slightly to avoid edge cuts with cover */
}

/* Soft shadow beneath van */
.van-shadow {
    position: absolute;
    bottom: -10px;
    left: 10%;
    width: 80%;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    filter: blur(8px);
    z-index: 4;
    transform: scaleX(0.9);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.van-container.tilt .van-shadow {
    opacity: 0.8;
    transform: scaleX(1) translateY(5px);
}


/* --- 3. Floating Icons --- */
.floating-elements-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 10;
}

.float-item {
    position: absolute;
    transform: scale(0);
    opacity: 0;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
}

.float-item.show {
    animation: pop-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
        float-drift 4s ease-in-out infinite alternate 0.6s;
}

@keyframes pop-in {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    70% {
        transform: scale(1.05);
        opacity: 1;
    }

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

@keyframes float-drift {
    0% {
        transform: translateY(0px) rotate(-3deg);
    }

    100% {
        transform: translateY(-20px) rotate(3deg);
    }
}

.price-tag {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-main);
    border: 3px solid;
}


/* --- 4. Confetti Burst --- */
.confetti-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
    /* Behind the van */
    overflow: hidden;
    margin-top: 10px;
}

.confetti {
    position: absolute;
    top: 50%;
    /* Center of van */
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    opacity: 0;
}

/* Configured via JS for direction/distance */
.confetti.burst {
    animation: confetti-explode 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes confetti-explode {
    0% {
        transform: translate(0, 0) scale(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) scale(1) rotate(var(--rot));
        opacity: 0;
    }
}


/* --- 5. Content Overlay (Text & CTA) --- */
.content-overlay {
    position: absolute;
    top: 8%;
    /* Upper center */
    left: 0;
    width: 100vw;
    display: flex;
    justify-content: center;
    z-index: 20;
    pointer-events: none;
    /* Let clicks pass through */
}

.text-content {
    text-align: center;
}

.cta-container {
    position: absolute;
    bottom: 8%;
    /* Bottom center */
    left: 0;
    width: 100vw;
    display: flex;
    justify-content: center;
    z-index: 20;
    pointer-events: none;
}

.headline {
    position: relative;
    width: 85%;
    font-size: 68px;
    /* Adjusted from 4.8rem */
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    text-shadow:
        1px 1px 0px #fff, -1px -1px 0px #fff, 1px -1px 0px #fff, -1px 1px 0px #fff,
        2px 2px 0px var(--dark-red),
        3px 3px 0px var(--dark-red),
        4px 4px 0px var(--dark-red),
        5px 5px 0px var(--dark-red),
        6px 6px 0px var(--dark-red),
        7px 7px 0px var(--dark-red),
        0 15px 30px rgba(0, 0, 0, 0.6);
    display: inline-block;
    opacity: 0;
    transform-style: preserve-3d;
    transform: translateY(40px) scale(0.9) rotateX(-20deg);
    transition: opacity 1s cubic-bezier(0.34, 1.56, 0.64, 1), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.headline.active {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
    animation: floating3DText 4s ease-in-out infinite alternate 1s;
}

@keyframes floating3DText {
    0% {
        transform: translateY(0) scale(1) rotateX(0deg) rotateY(0deg);
        text-shadow:
            1px 1px 0px #fff, -1px -1px 0px #fff, 1px -1px 0px #fff, -1px 1px 0px #fff,
            2px 2px 0px var(--dark-red),
            3px 3px 0px var(--dark-red),
            4px 4px 0px var(--dark-red),
            5px 5px 0px var(--dark-red),
            6px 6px 0px var(--dark-red),
            7px 7px 0px var(--dark-red),
            0 15px 30px rgba(0, 0, 0, 0.6);
    }

    100% {
        transform: translateY(-15px) scale(1.02) rotateX(5deg) rotateY(-5deg);
        text-shadow:
            1px 1px 0px #fff, -1px -1px 0px #fff, 1px -1px 0px #fff, -1px 1px 0px #fff,
            3px 3px 0px var(--dark-red),
            4px 4px 0px var(--dark-red),
            5px 5px 0px var(--dark-red),
            6px 6px 0px var(--dark-red),
            7px 7px 0px var(--dark-red),
            8px 8px 0px var(--dark-red),
            9px 9px 0px var(--dark-red),
            10px 10px 0px var(--dark-red),
            0 25px 40px rgba(0, 0, 0, 0.5);
    }
}

.animated-underline {
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 4px;
    width: 0;
    /* Starts at 0 */
    background: linear-gradient(90deg, #ffffff, var(--sun-yellow));
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s;
    /* Draw left to right */
}

.headline.active .animated-underline {
    width: 100%;
}

.animated-underline::after {
    content: "✨";
    position: absolute;
    right: -15px;
    top: -12px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease 1.4s;
}

.headline.active .animated-underline::after {
    opacity: 1;
}

.subheading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    background-color: var(--primary-red);
    padding: 8px 24px;
    border-radius: 50px;
    display: inline-block;
    border: 3px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    filter: blur(8px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.2s;
}

.subheading.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.cta-button {
    background: linear-gradient(135deg, var(--button-peach), var(--button-yellow));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    pointer-events: auto;
    /* Ensure clickable even if container is none */
    box-shadow: 0 8px 20px rgba(248, 180, 196, 0.4);
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    pointer-events: none;
}

.cta-button.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.cta-button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 25px rgba(248, 180, 196, 0.6);
}

/* --- Mobile Responsiveness for First Hero Section --- */

.headline {
    font-size: 48px;
}


@media (max-width: 991px) {
    .nav-wrapper {
        padding: 5px 20px;
    }

    .logo {
        height: 60px;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1050;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .main-nav a {
        font-size: 20px;
    }
}

@media (max-width: 768px) {

    .logo {
        height: 50px;
    }

    .text-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .headline {
        width: 100%;
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 1rem;
        transform: none !important;
        opacity: 1 !important;
        animation: none !important;
        text-shadow: 2px 2px 0px var(--dark-red), 0 2px 10px rgba(0, 0, 0, 0.5);
        color: var(--white);
        -webkit-text-stroke: 0.5px var(--primary-red);
    }

    .subheading {
        width: auto;
        font-size: 14px;
        padding: 6px 15px;
        margin-bottom: 0;
        transform: none !important;
        opacity: 1 !important;
        text-shadow: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .cta-container {
        position: absolute;
        bottom: 15%;
        left: 0;
        width: 100%;
        z-index: 20;
        padding: 0;
        margin-top: 0;
        pointer-events: auto;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 1rem;
        width: auto;
        min-width: 200px;
        max-width: 85%;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto;
    }

    @keyframes floating3DText {
        0% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(-5px);
        }
    }
}

/* =========================================
   SECOND HERO SECTION (V2)
   ========================================= */

.hero-v2-section {
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    background-color: #fff;
}

.hero-v2-card {
    /* background-image: url("assets/bg.png"); */
    background: linear-gradient(to right, var(--primary-red), var(--dark-red));
    background-size: cover;
    /* Make image fill the card */
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Prevent repeating */

    width: 100%;
    max-width: 1100px;
    height: 520px;
    border-radius: 20px;
    position: relative;
    overflow: visible;
    /* To allow van to pop out */
    display: flex;
    align-items: center;
    padding: 0 60px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.hero-v2-text {
    flex: 1;
    z-index: 2;
    color: #fff;
    max-width: 500px;
}

.hero-v2-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-v2-subtitle {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-v2-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
    text-align: center;
}

.v2-btn-shape {
    width: 200px;
    height: 55px;
    border-radius: 10px;
    transition: all 0.3s ease;

    display: flex;
    /* Add this */
    align-items: center;
    /* Vertical center */
    justify-content: center;
    /* Horizontal center */
}

.v2-btn-text1 {
    color: #cf2027;
    margin: 0;
    /* Important: remove default h4 margin */
}

.v2-btn-text12 {
    color: #ffffff;
    margin: 0;
    /* Important: remove default h4 margin */
}

.v2-btn-white {
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.v2-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.8);
    background-color: transparent;
}

.hero-v2-footer {
    display: flex;
    gap: 40px;
    /* Aligned with Telephone and Email labels */
    justify-content: space-between;
    width: 100%;
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.hero-v2-image-container {
    position: absolute;
    right: -40px;
    bottom: -20px;
    width: 65%;
    z-index: 3;
}

.img-van2 {
    width: 100%;
    height: auto;
    filter: drop-shadow(15px 25px 35px rgba(0, 0, 0, 0.45));
    animation: floatV2 6s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.img-van2:hover {
    transform: scale(1.05) translateY(-20px) rotate(-2deg);
    filter: drop-shadow(30px 45px 50px rgba(0, 0, 0, 0.6));
}

/* Remove underline and set colors */
.hero-v2-buttons a {
    text-decoration: none;
    /* remove underline */
}

/* First button: Our Menu */
.hero-v2-buttons .v2-btn-white h4 {
    color: red !important;
}

/* Second button: Call Now */
.hero-v2-buttons .v2-btn-outline h4 {
    color: white !important;
}

@media (max-width: 768px) {
    .hero-v2-section {
        padding: 40px 20px;
    }

    .hero-v2-card {
        flex-direction: column;
        height: auto;
        padding: 40px 20px;
        text-align: center;
        overflow: hidden;
    }

    .hero-v2-text {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-v2-title {
        font-size: 32px;
    }

    .hero-v2-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .hero-v2-buttons {
        align-items: center;
        margin-bottom: 30px;
    }

    .hero-v2-footer {
        flex-direction: column;
        gap: 10px;
        font-size: 16px;
        align-items: center;
    }

    .hero-v2-image-container {
        position: relative;
        right: 0;
        bottom: 0;
        width: 100%;
        margin-top: 20px;
    }

    .img-van2 {
        width: 120%;
        margin-left: -10%;
        /* Center the van if it overflows */
    }
}

.hero-v2-card:hover .v2-btn-white {
    transform: translateX(10px);
}

.hero-v2-card:hover .v2-btn-outline {
    transform: translateX(10px);
}

@keyframes floatV2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 1024px) {
    .hero-v2-section {
        padding: 50px 30px;
    }

    .hero-v2-card {
        height: auto;
        flex-direction: column;
        padding: 60px 40px;
        text-align: center;
        gap: 30px;
    }

    .hero-v2-text {
        max-width: 100%;
        margin-bottom: 0;
        padding-right: 0;
    }

    .hero-v2-title {
        font-size: 42px;
    }

    .hero-v2-subtitle {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .hero-v2-buttons {
        align-items: center;
        margin-bottom: 40px;
    }

    .hero-v2-footer {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        font-size: 18px;
        flex-wrap: wrap;
    }

    .hero-v2-image-container {
        position: relative;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 600px;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }

    .img-van2 {
        width: 100%;
        margin-left: 0;
    }

}

/* =========================================
   MORE WAYS & WHY BEST SECTIONS
   ========================================= */

.more-ways-section {
    /* background-image: url("assets/bg.png"); */
    background: linear-gradient(to right, var(--primary-red), var(--dark-red));
    background-size: cover;
    /* Fill the section */
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;

    position: relative;
    padding: 100px 40px;
    overflow: hidden;
    color: #fff;
    display: flex;
    justify-content: center;
}

.more-ways-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.more-ways-content {
    flex: 1;
    padding-right: 50px;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -50px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    right: 15%;
    opacity: 0.1;
}

.section-title {
    font-size: 80px;
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 30px;
}

.section-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    max-width: 500px;
    transition: all 0.5s ease-in-out;
}

.more-text {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.section-text.expanded .more-text {
    display: inline;
    opacity: 1;
}

.read-more-btn {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-white {
    background-color: #fff;
    color: #333;
}

.btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.more-ways-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.img-3d-cup {
    width: 100%;
    max-width: 550px;
    height: auto;
    filter: drop-shadow(20px 30px 40px rgba(0, 0, 0, 0.4));
    animation: floatV3 5s ease-in-out infinite;
    transition: all 0.5s ease;
}

.img-3d-cup:hover {
    transform: scale(1.08) rotate(3deg);
    filter: drop-shadow(40px 50px 60px rgba(0, 0, 0, 0.5));
}

@keyframes floatV3 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

/* Why Best Section */

.why-best-section {
    padding: 120px 40px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.why-best-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
}

.why-best-content {
    flex: 1.2;
    padding-right: 80px;
}

.section-title-dark {
    font-size: 48px;
    font-weight: 800;
    color: #333;
    margin-bottom: 40px;
}

.section-text-dark {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-red {
    background-color: #e3412f;
    color: #fff;
}

.btn-red:hover {
    background-color: #cf2027;
    transform: scale(1.05);
}

.inline-icon {
    height: 60px;
    opacity: 0.1;
}

.why-best-collage {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.collage-bg-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    background-color: #fef0ef;
    border-radius: 50%;
    z-index: 1;
    right: -100px;
    bottom: -50px;
}

.collage-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.collage-img {
    position: absolute;
    border: 15px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
}

.img-1 {
    width: 350px;
    top: 50px;
    left: 0;
    z-index: 3;
}

.img-2 {
    width: 320px;
    top: 100px;
    right: 0;
    z-index: 2;
}

.img-3 {
    width: 500px;
    bottom: 50px;
    left: 50px;
    z-index: 4;
}

@media (max-width: 768px) {
    .why-best-section {
        padding: 60px 20px;
    }

    .why-best-container {
        flex-direction: column;
        text-align: center;
    }

    .why-best-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .section-title-dark {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .section-text-dark {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .btn-container {
        justify-content: center;
    }

    .why-best-collage {
        height: 350px;
        width: 100%;
        margin-top: 20px;
    }

    .collage-bg-circle {
        width: 250px;
        height: 250px;
        right: 50%;
        bottom: 50%;
        transform: translate(50%, 50%);
    }

    .img-1 {
        width: 45%;
        top: 0;
        left: 5%;
    }

    .img-2 {
        width: 40%;
        top: 40px;
        right: 5%;
    }

    .img-3 {
        width: 60%;
        bottom: 0;
        left: 20%;
    }

    .btn-container {
        justify-content: center;
        text-align: center;
    }
}

.collage-img:hover {
    z-index: 10;
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {

    .more-ways-container,
    .why-best-container {
        flex-direction: column;
        text-align: center;
    }

    .more-ways-content,
    .why-best-content {
        padding-right: 0;
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 50px;
    }

    .why-best-collage {
        display: none;
    }

    .collage-img {
        width: 60% !important;
    }

    .btn-container {
        justify-content: center;
        text-align: center;
    }
}

/* =========================================
   MENU SECTION
   ========================================= */

.menu-section-v2 {
    /* background-image: url("assets/bg.png"); */
    background: linear-gradient(to right, var(--primary-red), var(--dark-red));
    background-size: cover;
    /* Fill the section */
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;

    position: relative;
    padding: 80px 40px 150px;
    /* Extra bottom padding for the wave */
    width: 100%;
    overflow: hidden;
}

.menu-v2-header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.menu-v2-title {
    color: #fff;
    font-size: 80px;
    font-weight: 900;
    text-transform: none;
    margin: 0;
    text-align: center;
    letter-spacing: -2px;
}

.taste-more-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.taste-more-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-52%) scale(1.05);
}

.menu-v2-carousel-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.menu-v2-items {
    display: flex;
    gap: 100px;
    justify-content: center;
}

.menu-v2-item {
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    animation: fadeInV2 0.6s ease-out;
    position: relative;
    z-index: 15;
}

@keyframes fadeInV2 {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

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

.item-img-container {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.v2-ice-img {
    height: 100%;
    filter: drop-shadow(20px 30px 40px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s ease;
    animation: floatV2 4s ease-in-out infinite;
}

@keyframes floatV2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.v2-item-name {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    margin-top: 20px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 20;
}

.menu-v2-item:hover {
    transform: scale(1.05) translateY(-10px);
}

.menu-v2-item:hover .v2-ice-img {
    transform: rotate(5deg);
}

.nav-btn-v2 {
    background-color: #fff;
    width: 60px;
    height: 60px;
    border: none;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cf2027;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.nav-btn-v2 svg {
    width: 30px;
    height: 30px;
}

.nav-btn-v2:hover {
    transform: scale(1.1);
    background-color: #f8f8f8;
}

/* Wavy Bottom Styling */
.menu-v2-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 10;
}

.menu-v2-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

@media (max-width: 1024px) {
    .menu-v2-title {
        font-size: 60px;
    }

    .menu-v2-items {
        gap: 40px;
    }

    .item-img-container {
        height: 300px;
    }

    .v2-item-name {
        font-size: 24px;
    }

    .taste-more-btn {
        position: relative;
        top: auto;
        transform: none;
        right: auto;
        margin-top: 20px;
    }

    .menu-v2-header {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .menu-v2-items {
        flex-direction: column;
        gap: 60px;
    }

    .menu-v2-title {
        font-size: 40px;
    }

    .nav-btn-v2 {
        width: 40px;
        height: 40px;
    }
}

/* =========================================
   BOOK US SECTION
   ========================================= */

.book-us-section {
    padding: 40px 40px;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.book-us-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
}

.book-us-content {
    flex: 1;
}

.book-us-title {
    font-size: 50px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
}

.book-us-text {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 40px;
}

.book-us-input-container {
    width: 180px;
    height: 50px;
    border: 2px solid #e3412f;
    border-radius: 5px;
    overflow: hidden;
    padding: 10px;
}

.book-us-input {
    width: 100%;
    height: 100%;
    border: none;
    padding: 0 15px;
    font-size: 16px;
    outline: none;
}

.book-us-image {
    flex: 1.2;
}

.img-book-van {
    width: 100%;
    height: auto;
    filter: drop-shadow(15px 20px 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.5s ease;
}

.img-book-van:hover {
    transform: scale(1.03) rotate(1deg);
}

.book-btn-shape {
    width: 200px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: var(--bright-red);
    display: flex;
    /* Add this */
    align-items: center;
    /* Vertical center */
    justify-content: center;
    /* Horizontal center */
}

.book-btn-text2 {
    color: #ffffff;
    padding: 20px;
    font-size: 20px;
    /* Important: remove default h4 margin */
}

@media (max-width: 1024px) {
    .book-btn-shape {
        margin: 0 auto;
        display: flex;
    }
}

/* ==========================================================================
     CUSTOMER FEEDBACK SECTION
     ========================================================================== */
.testimonials-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #FFE4E1 0%, #FFFACD 50%, #E0FFFF 100%);
    /* background: linear-gradient(135deg, var(--fav-ocean) 0%, var(--fav-teal) 100%); */
    overflow: hidden;
}

.testi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.testimonials-section .section-header {
    margin-bottom: 80px;
}

.testimonials-section .section-subtitle {
    color: rgba(0, 0, 0, 0.8);
}

.testimonials-section .title-3d {
    color: #000000;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    font-size: 3rem;
}

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

.testi-card {
    position: relative;
    padding: 40px 30px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    /* Glass base */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testi-glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1;
}

.testi-content {
    position: relative;
    z-index: 2;
}

.profile-area {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--fav-gold);
    transition: transform 0.4s ease;
}

.profile-img-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--fav-gold) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testi-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.testi-card:hover .profile-img {
    transform: scale(1.1);
}

.testi-card:hover .profile-img-glow {
    opacity: 0.4;
}

.rating {
    margin-bottom: 15px;
}

.star {
    color: var(--fav-gold);
    font-size: 1.2rem;
    margin: 0 2px;
    text-shadow: 0 0 10px rgba(246, 185, 59, 0.4);
}

.testi-text {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.9);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.customer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.customer-name {
    font-weight: 700;
    color: #ff0000;
    font-size: 1.1rem;
}

.country-flag {
    font-size: 1.2rem;
}

.trip-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(7, 153, 146, 0.3);
    border: 1px solid rgba(7, 153, 146, 0.5);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--fav-gold);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonials-section .title-3d {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonials-section .section-header {
        margin-bottom: 40px;
    }

    .testimonials-section .title-3d {
        font-size: 2rem;
    }

    .testi-card {
        padding: 30px 20px;
    }

    .testimonials-section .section-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }
}

/* =========================================
   GALLERY SECTION
   ========================================= */

.gallery-section {
    padding: 80px 40px;
    /* background-image: url("assets/bg.png"); */
    background: linear-gradient(to right, var(--primary-red), var(--dark-red));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
}

.gallery-container {
    max-width: 1200px;
    width: 100%;
}

.gallery-title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 40px;
}

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

.gallery-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* 3D Hover Effects on Gallery Items */
.gallery-item:hover {
    transform: translateY(-15px) rotateX(10deg) rotateY(10deg);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* =========================================
   CONNECT SECTION
   ========================================= */

.connect-section {
    padding: 100px 40px;
    background-color: #fcf1e8;
    background-image: radial-gradient(#e3412f 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.connect-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
}

.connect-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.connect-title {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
}

.connect-subtitle {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #555;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    min-width: 300px;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(227, 65, 47, 0.15);
    border-color: var(--primary-red);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 15px rgba(207, 32, 39, 0.2);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: rotate(10deg);
}

.contact-card-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-red);
    margin-bottom: 2px;
}

.contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

@media (max-width: 768px) {
    .contact-methods {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 10px;
    }

    .contact-card {
        width: 100%;
        max-width: 400px;
        min-width: unset;
        padding: 15px 20px;
        gap: 15px;
    }

    .contact-value {
        font-size: 0.9rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

.connect-input-container {
    width: 350px;
    height: 60px;
    margin: 0 auto 50px;
    border: 2px solid #000;
    border-radius: 10px;
    overflow: hidden;
}

.connect-input {
    width: 100%;
    height: 100%;
    border: none;
    padding: 0 20px;
    font-size: 18px;
    outline: none;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icon {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #333;
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2) translateY(-5px);
    color: #e3412f;
    box-shadow: 0 10px 25px rgba(227, 65, 47, 0.3);
}

@media (max-width: 1024px) {
    .book-us-container {
        flex-direction: column;
        text-align: center;
    }

    .book-us-input-container {
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .connect-input-container {
        width: 100%;
    }
}

/* =========================================
   FOOTER STYLES (PREMIUM REFINED)
   ========================================= */
.footer {
    background: #111;
    color: var(--white);
    padding: 100px 40px 40px;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-brand .footer-logo {
    height: 70px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
    transition: var(--transition-smooth);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #999;
    margin-bottom: 35px;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 18px;
}

.footer-socials a:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(207, 32, 39, 0.3);
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-red);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 8px;
}

.footer-newsletter p {
    color: #999;
    font-size: 14px;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    padding: 5px;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: var(--white);
    outline: none;
    font-size: 14px;
}

.newsletter-form button {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-form button:hover {
    background: var(--dark-red);
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 13px;
}

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

.footer-bottom-links a {
    color: #666;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 80px 30px 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-brand .footer-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* --- Custom Ice Cream Cursor --- */
body,
a,
button,
.v2-btn-shape,
.nav-btn-v2,
.social-icon,
.gallery-item {
    cursor: none !important;
}

.custom-cursor {
    width: 40px;
    height: 40px;
    background-image: url('assets/pointer.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, width 0.3s ease, height 0.3s ease;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}

.custom-cursor.hover {
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%) rotate(15deg);
}

.custom-cursor.click {
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%) scale(0.8);
}

/* Hide on mobile and tablet */
@media (max-width: 1024px) {
    .custom-cursor {
        display: none !important;
    }
}

/* =========================================
   MODERN 3D BOOKING SECTION
   ========================================= */

.modern-book-section {
    position: relative;
    padding: 100px 40px;
    color: #333;
    /* background: linear-gradient(135deg, #FFE4E1 0%, #FFFACD 50%, #E0FFFF 100%); */
    overflow: hidden;
}

.booking-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.float-icon {
    position: absolute;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.6);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
    animation: drift 8s infinite alternate ease-in-out;
}

.icon-1 {
    top: 15%;
    left: 10%;
    color: #FFB6C1;
}

.icon-2 {
    top: 75%;
    left: 5%;
    color: #FFDAB9;
    animation-duration: 10s;
}

.icon-3 {
    top: 20%;
    right: 15%;
    color: #98FB98;
    animation-duration: 9s;
}

.icon-4 {
    top: 60%;
    right: 8%;
    color: #87CEFA;
    animation-duration: 7s;
}

@keyframes drift {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-30px) rotate(15deg);
    }
}

.modern-book-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    position: relative;
    z-index: 1;
    align-items: center;
}

.book-info-col {
    flex: 1;
}

.book-3d-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ff1414;
    /* text-shadow:
        0 4px 0 #ff6969,
        0 8px 0 #ff1414,
        0 12px 20px rgba(222, 7, 7, 0.4); */
    animation: floatTitle 4s infinite alternate ease-in-out;
    transform-style: preserve-3d;
}

@keyframes floatTitle {
    0% {
        transform: translateY(0) rotateX(5deg);
    }

    100% {
        transform: translateY(-10px) rotateX(-5deg);
    }
}

.book-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
    font-weight: 600;
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.event-type-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #AE1B21;
}

.event-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d80606;
    box-shadow: 0 4px 10px rgba(255, 105, 180, 0.2);
}

.book-truck-ill {
    text-align: center;
}

.img-book-ill {
    max-width: 350px;
    width: 100%;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    animation: bounceTruck 4s infinite ease-in-out alternate;
}

@keyframes bounceTruck {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}

.book-form-col {
    flex: 1;
}

.glass-form-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.glass-form-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 60%);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.glass-form-card>* {
    position: relative;
    z-index: 1;
}

.form-title {
    font-size: 2rem;
    font-weight: 800;
    color: #AE1B21;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.row {
    display: flex;
    gap: 20px;
}

.input-wrapper {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 18px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.6);
    font-family: inherit;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #AE1B21;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.15);
}

.custom-select select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23AE1B21%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
}

.cta-submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #da4e53, #AE1B21);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 20, 147, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.cta-submit-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 25px rgba(255, 20, 147, 0.4);
}

.hidden {
    display: none !important;
}

.form-success-msg {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.5s ease forwards;
}

.success-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 15px;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-content h4 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.success-content p {
    font-size: 1.1rem;
    color: #666;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

    to {
        transform: scale(1);
    }
}

/* Responsive booking section */
@media (max-width: 992px) {
    .modern-book-container {
        flex-direction: column;
        gap: 40px;
    }

    .book-3d-title {
        font-size: 3rem;
        text-align: center;
    }

    .book-desc,
    .book-truck-ill {
        text-align: center;
    }

    .img-book-ill {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .form-group.row {
        flex-direction: column;
        gap: 20px;
    }

    .modern-book-section {
        padding: 60px 20px;
    }

    .glass-form-card {
        padding: 25px;
    }
}

/* =========================================================================
   Modern Locations Section
   ========================================================================= */

.modern-locations-section {
    padding: 100px 5%;
    position: relative;
    background: linear-gradient(135deg, #F0FFF0 0%, #E0FFFF 50%, #FFFACD 100%);
    overflow: hidden;
    color: #333;
}

.locations-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.icon-loc-1 {
    top: 10%;
    left: 15%;
    color: #FF69B4;
    font-size: 2.5rem;
    animation-delay: 0s;
    opacity: 0.2;
}

.icon-loc-2 {
    top: 70%;
    left: 5%;
    color: #87CEFA;
    font-size: 3rem;
    animation-delay: 1.5s;
    opacity: 0.2;
}

.icon-loc-3 {
    top: 20%;
    right: 10%;
    color: #FFDAB9;
    font-size: 2.5rem;
    animation-delay: 0.7s;
    opacity: 0.2;
}

.modern-locations-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    position: relative;
    z-index: 1;
    align-items: center;
}

/* Left Side: Map */
.loc-map-col {
    flex: 1;
    height: 500px;
    border-radius: 20px;
    position: relative;
}

.glass-map-card {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    transform: translateZ(0);
    /* Hardware accel for rounded corners on iframe */
}

/* Right Side: Info & List */
.loc-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.locations-list {
    /* margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px; */
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.loc-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.6);
    padding: 20px;
    border-radius: 16px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.loc-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.loc-card.active {
    background: #fff;
    border-color: #7e0202;
    box-shadow: 0 15px 35px rgba(255, 20, 147, 0.15);
    transform: scale(1.02);
}

.loc-card.active .loc-card-icon {
    background: #670202;
    color: #fff;
    transform: scale(1.1);
}

.loc-card-icon {
    width: 30px;
    height: 30px;
    background: #ec5443;
    color: #e89090;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.loc-card-text {
    flex: 1;
}

.loc-card-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin: 0 0 5px 0;
    color: #333;
    letter-spacing: 0.5px;
}

.loc-card-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    margin: 0 0 8px 0;
    color: #666;
    line-height: 1.4;
}

.loc-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: #e6ffe6;
    color: #2e8b57;
}

.loc-status.pending {
    background: #fff5e6;
    color: #ff8c00;
}

/* Animations reused or new */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 20, 147, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 20, 147, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 20, 147, 0);
    }
}

.loc-card.active .loc-card-icon {
    animation: pulseGlow 2s infinite;
}

/* Responsive */
@media (max-width: 992px) {
    .modern-locations-container {
        flex-direction: column;
    }

    .loc-map-col {
        width: 100%;
        order: 1;
        /* Map on top for mobile */
        height: 350px;
    }

    .loc-info-col {
        order: 2;
        text-align: center;
    }

    .locations-list {
        text-align: left;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .modern-locations-section {
        padding: 60px 20px;
    }

    .loc-card {
        padding: 15px;
    }

    .loc-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* =========================================
   OFFER WIDGET
   ========================================= */

.offer-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 320px;
    max-width: 80vw;
    z-index: 999;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    padding: 10px;
    transform: translateY(150%) scale(0.8);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: all;
    border: 2px solid var(--primary-red);
}

.offer-widget.show {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.offer-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.close-offer {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    background: var(--primary-red);
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1001;
}

.close-offer:hover {
    transform: rotate(90deg) scale(1.1);
    background: var(--dark-red);
}

@media (max-width: 768px) {
    .offer-widget {
        bottom: 20px;
        right: 20px;
        width: 260px;
    }

    .close-offer {
        width: 30px;
        height: 30px;
        top: -10px;
        right: -10px;
        font-size: 18px;
    }
}

/* =========================================
   WHATSAPP WIDGET
   ========================================= */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-widget:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #1ebe57;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    left: 75px;
    background-color: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 6px 6px 0;
    border-style: solid;
    border-color: transparent #333 transparent transparent;
}

.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    left: 70px;
}

@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .whatsapp-tooltip {
        display: none;
        /* Hide tooltip on small screens */
    }
}