/* 
   Austins Ices - Main Stylesheet
   Author: Antigravity AI
   Design Theme: Clean Modern Red & White / High Conversion CTA / Logo Adaptations
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Poppins:wght@300;400;500;600&display=swap');

/* --- CSS VARIABLES (Design System) --- */
:root {
    /* Color Palette - Red & White Theme */
    --clr-bg: #ffffff;
    --clr-text-dark: #2d3436;
    --clr-text-muted: #636e72;
    --clr-brand-red: #d63031; /* Vibrant Brand Red */
    --clr-brand-red-hover: #c0392b; /* Darker Brand Red */
    --clr-primary-pastel: #fff5f5; /* Soft gelato rose/red tint for light backgrounds */
    --clr-secondary-pastel: #fffcfc; /* Extra soft red tint */
    --clr-accent-gold: #d63031; /* Map to brand red */
    --clr-accent-gold-hover: #c0392b; /* Map to deep red hover */
    --clr-card-bg: #ffffff;
    --clr-border: #f5d6d6; /* Soft red-grey border */
    --clr-success: #2ecc71;
    --clr-danger: #e74c3c;
    
    /* Typography */
    --ff-heading: 'Montserrat', sans-serif;
    --ff-body: 'Poppins', sans-serif;
    
    /* Spacing & Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(214, 48, 49, 0.04);
    --shadow-hover: 0 15px 35px rgba(214, 48, 49, 0.08);
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--clr-bg);
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-heading);
    color: var(--clr-text-dark);
    font-weight: 700;
    line-height: 1.2;
}

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

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

/* --- LAYOUT UTILITIES --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

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

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* Grid / Flex helpers */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

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

/* --- BUTTONS & CTAs --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    min-height: 48px; /* Mobile accessibility standard */
}

.btn:active {
    transform: scale(0.96);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

/* Conversion Action Button (Vibrant Brand Red) */
.btn-primary {
    background-color: var(--clr-brand-red);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(214, 48, 49, 0.3);
}

.btn-primary:hover {
    background-color: var(--clr-brand-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(192, 57, 43, 0.4);
}

/* Secondary Button (Charcoal Style) */
.btn-secondary {
    background-color: #2d3436;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(45, 52, 54, 0.2);
}

.btn-secondary:hover {
    background-color: #1e272e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 39, 46, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-brand-red);
    border: 2px solid var(--clr-brand-red);
}

.btn-outline:hover {
    background-color: var(--clr-brand-red);
    color: #ffffff;
}

/* --- HEADER & NAVIGATION --- */
.site-header {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--clr-brand-red);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(214, 48, 49, 0.03);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .nav-container {
    height: 75px;
}

/* Offset body content for fixed header */
body {
    padding-top: 92px;
}

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

/* Logo Image Adaptations */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    color: var(--clr-text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--clr-brand-red);
    transition: var(--transition);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--clr-brand-red);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--clr-brand-red);
}

.nav-contact svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.nav-contact:hover {
    color: var(--clr-brand-red-hover);
}

.nav-contact-mobile {
    display: none;
}

/* Dropdown Icon */
.dropdown-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 48px;
    height: 48px;
    padding: 14px 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    border-radius: 4px;
}

.menu-toggle .bar {
    width: 28px;
    height: 2px;
    background-color: var(--clr-text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

/* --- HERO SECTION --- */
.hero {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--clr-primary-pastel) 0%, #ffffff 60%, var(--clr-secondary-pastel) 100%);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(214, 48, 49, 0.03);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--clr-text-dark);
}

.hero-title span {
    color: var(--clr-brand-red);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--clr-text-muted);
    font-weight: 400;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(214, 48, 49, 0.08);
    border: 3px solid #ffffff;
}

.hero-image-wrapper img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: var(--transition);
}

.hero-image-wrapper:hover img {
    transform: scale(1.03);
}

/* --- TRUST BADGES BAR --- */
.trust-badges-bar {
    background-color: #ffffff;
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    padding: 2rem 0;
}

.badges-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--clr-text-dark);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--clr-primary-pastel);
    color: var(--clr-brand-red);
}

.badge-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* --- SERVICES CARD GRID --- */
.section-title-wrapper {
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.section-tag {
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-brand-red);
}

.section-title {
    font-size: 2.25rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.card {
    background-color: var(--clr-card-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(214, 48, 49, 0.15);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background-color: #f7f9fa;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card-img-wrapper img {
    transform: scale(1.03);
}

.card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.card-text {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-link {
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--clr-brand-red);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.card-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: var(--transition);
}

.card-link:hover {
    color: var(--clr-brand-red-hover);
}

.card-link:hover svg {
    transform: translateX(4px);
}

/* --- YOUTUBE VIDEO SECTION --- */
.video-preview-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(214, 48, 49, 0.15);
    border: 4px solid #ffffff;
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-preview-wrapper:hover .video-overlay {
    background: rgba(0, 0, 0, 0.45);
}

.video-preview-wrapper:hover .video-thumbnail {
    transform: scale(1.03);
}

/* Play button and pulse animation */
.play-btn-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--clr-brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(214, 48, 49, 0.6);
    animation: play-pulse 2s infinite;
    transition: var(--transition);
}

.play-btn-circle svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
    margin-left: 6px; /* Offset to center triangle */
}

.video-preview-wrapper:hover .play-btn-circle {
    transform: scale(1.1);
    background-color: #ff3838;
}

@keyframes play-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(214, 48, 49, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(214, 48, 49, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(214, 48, 49, 0);
    }
}

.video-preview-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- ABOUT PAGE SPECIFICS --- */
.about-section {
    background: linear-gradient(135deg, #ffffff 0%, var(--clr-primary-pastel) 100%);
}

.italian-badge {
    background-color: #fff0f0;
    color: var(--clr-brand-red);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.italian-flag-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(to right, #009246 33.3%, #f1f2f1 33.3%, #f1f2f1 66.6%, #ce2b37 66.6%);
    border: 1px solid #c8d6e5;
}

.about-text p {
    font-size: 1rem;
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 3px solid #ffffff;
}

/* --- SERVICES DETAIL PAGES (ALTERNATING SECTIONS) --- */
.alternate-section {
    padding: 6rem 0;
}

.alternate-section:nth-child(even) {
    background-color: var(--clr-primary-pastel);
}

.alternate-section:nth-child(even) .grid-2 > :first-child {
    order: 2;
}

.alternate-section img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
    object-fit: cover;
    border: 3px solid #ffffff;
}

/* --- BOOKING FORM (book-now.php) --- */
.booking-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-card {
    background: #ffffff;
    border: 1px solid var(--clr-border);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--clr-text-dark);
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--ff-body);
    font-size: 0.95rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    background-color: #fffdfd;
    color: var(--clr-text-dark);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--clr-brand-red);
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(214, 48, 49, 0.08);
    transform: translateY(-1px);
}

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

.submit-wrapper {
    margin-top: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

/* --- MULTI-STEP FORM STYLES --- */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease-out forwards;
}

.form-step.active {
    display: block;
}

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

.form-progress-container {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--clr-border);
}

.form-step-indicators {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.step-indicator {
    background: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    border: 2px solid var(--clr-border);
    transition: var(--transition);
}

.step-indicator.active {
    color: var(--clr-brand-red);
    border-color: var(--clr-brand-red);
    box-shadow: 0 4px 10px rgba(214, 48, 49, 0.1);
}

.step-indicator.completed {
    background: var(--clr-brand-red);
    color: #ffffff;
    border-color: var(--clr-brand-red);
}

/* Info and SEO town listing block */
.booking-info-block {
    position: sticky;
    top: 120px;
}

.info-box {
    background-color: var(--clr-primary-pastel);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
}

.info-box-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.seo-towns-block {
    margin-top: 2.5rem;
    border-top: 1px solid var(--clr-border);
    padding-top: 2rem;
}

.seo-towns-title {
    font-family: var(--ff-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    color: var(--clr-brand-red);
}

.seo-towns-list {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

/* JS Validation Feedback styles */
.form-message {
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.input-error {
    border-color: var(--clr-danger) !important;
}

/* --- HYPE BLUR EFFECT (Our Vans) --- */
.hype-blur-wrapper .hype-blur-img {
    filter: blur(15px) brightness(0.7);
    transition: filter 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hype-blur-wrapper:hover .hype-blur-img {
    filter: blur(0) brightness(1);
    transform: scale(1.05);
}

.hype-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.65);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 10;
    backdrop-filter: blur(4px);
    white-space: nowrap;
}

.hype-blur-wrapper:hover .hype-overlay {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.1);
}

/* --- FOOTER --- */
.site-footer {
    background-color: #1e272e;
    color: #ffffff;
    padding: 5rem 0 2rem 0;
    border-top: 3px solid var(--clr-brand-red);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    color: #ffffff;
    margin-bottom: 1.5rem;
    height: auto;
}

.footer-brand {
    overflow: visible;
}

.footer-brand .social-links {
    position: relative;
    z-index: 1;
}

.footer-description {
    color: #b2bec3;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 30px;
    height: 2px;
    background-color: var(--clr-brand-red);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #b2bec3;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--clr-brand-red);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transition: var(--transition);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-icon:hover {
    background-color: var(--clr-brand-red);
    color: #ffffff;
    transform: translateY(-3px);
}

.hygiene-badge-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.03);
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.06);
}

/* Hygiene Image */
.hygiene-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.hygiene-text {
    font-size: 0.8rem;
    color: #b2bec3;
    line-height: 1.4;
}

.hygiene-text strong {
    color: #ffffff;
    display: block;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #b2bec3;
    font-size: 0.85rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.payment-methods span {
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: 0.8rem;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
}

.payment-icon {
    display: flex;
    align-items: center;
    background: transparent;
    padding: 0;
    border-radius: 4px;
    overflow: hidden;
}

.payment-icon svg {
    height: 28px;
    width: 42px;
}

/* Mobile Sticky CTA (Hidden on Desktop) */
.mobile-sticky-cta {
    display: none;
}

/* --- RESPONSIVE MEDIA QUERIES --- */

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    /* Navbar Hamburger Drawer */
    .menu-toggle {
        display: flex;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 2rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.25rem;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    /* Accordion Logic */
    .nav-menu li.has-dropdown {
        width: 100%;
    }
    
    .nav-menu .dropdown-menu,
    .nav-menu .dropdown-menu.dropdown-grid {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--clr-brand-red);
        margin-top: 0.5rem;
        margin-left: 0.5rem;
        padding: 0.4rem 0.6rem 0.4rem 0.8rem;
        width: calc(100% - 0.5rem);
        background-color: rgba(0, 0, 0, 0.02);
        border-radius: 6px;
        max-height: 250px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
    }
    
    .nav-menu li.has-dropdown.accordion-open .dropdown-menu,
    .nav-menu li.has-dropdown.accordion-open .dropdown-menu.dropdown-grid {
        display: block;
        animation: slideDown 0.3s ease forwards;
    }
    
    .nav-menu .dropdown-menu li a,
    .nav-menu .dropdown-menu.dropdown-grid li a {
        background-color: transparent;
        border: none;
        border-radius: 0;
        padding: 0.5rem 0;
        text-align: left;
        font-size: 0.92rem;
        font-weight: 500;
        color: var(--clr-text-dark);
        display: block;
        box-shadow: none;
        white-space: normal;
        word-break: break-word;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .nav-menu .dropdown-menu li:last-child a,
    .nav-menu .dropdown-menu.dropdown-grid li:last-child a {
        border-bottom: none;
    }

    .nav-menu .dropdown-menu li a:hover,
    .nav-menu .dropdown-menu li a:active,
    .nav-menu .dropdown-menu.dropdown-grid li a:hover,
    .nav-menu .dropdown-menu.dropdown-grid li a:active {
        background-color: transparent;
        color: var(--clr-primary);
        font-weight: 600;
    }
    
    .nav-menu li.has-dropdown.accordion-open > a .dropdown-icon {
        transform: rotate(180deg);
    }
    
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .nav-contact-desktop {
        display: none;
    }
    
    .nav-contact-mobile {
        display: flex;
        font-size: 1.2rem;
        margin-top: 1rem;
    }
    
    /* Hamburger Menu Animation when Open */
    .menu-toggle.active .bar-1 {
        transform: translateY(10px) rotate(45deg);
    }
    
    .menu-toggle.active .bar-2 {
        opacity: 0;
    }
    
    .menu-toggle.active .bar-3 {
        transform: translateY(-10px) rotate(-45deg);
    }
    
    /* Mobile Sticky CTA */
    .mobile-sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #ffffff;
        padding: 0.6rem 1rem;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
        z-index: 990;
        border-top: 1px solid var(--clr-border);
        box-sizing: border-box;
    }
    
    .mobile-sticky-cta .btn {
        display: flex;
        width: 100%;
        max-width: 100%;
        padding: 0.8rem 1rem;
        font-size: 1rem;
        box-sizing: border-box;
        min-height: 44px;
    }
    
    body {
        padding-bottom: 80px; /* Leave space for bottom CTA */
    }
    
    /* Hero adjust */
    .hero {
        padding: 4rem 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        margin-left: 0 !important;
    }
    
    .badges-wrapper {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    /* Alternating layout order swap on mobile */
    .alternate-section:nth-child(even) .grid-2 > :first-child {
        order: 0;
    }
    
    .booking-card {
        padding: 2rem 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-full {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand .logo {
        height: auto;
    }
    
    .footer-brand .logo-img {
        height: 55px;
    }
    
    .site-footer {
        padding-bottom: 6rem; /* Extra space for sticky CTA bar */
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-bottom: 2rem;
    }
}

/* --- ANIMATIONS (Intersection Observer) --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Dropdown Menu Styles */
.nav-menu li.has-dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    max-height: 420px;
    overflow-y: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 0.5rem 0;
    z-index: 1000;
    border: 1px solid var(--clr-border);
}

@media (min-width: 992px) {
    .nav-menu li.has-dropdown:hover .dropdown-menu {
        display: block;
    }

    .nav-menu .dropdown-menu.dropdown-grid {
        min-width: 340px;
        max-height: none;
        overflow-y: visible;
        padding: 0.6rem;
    }

    .nav-menu li.has-dropdown:hover .dropdown-menu.dropdown-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.2rem 0.5rem;
    }

    .nav-menu .dropdown-menu.dropdown-grid li a {
        padding: 0.5rem 0.8rem;
        font-size: 0.88rem;
        border-radius: 4px;
        white-space: nowrap;
    }
}

.nav-menu .dropdown-menu li {
    display: block;
    margin: 0;
}

.nav-menu .dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--clr-text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-menu .dropdown-menu li a:hover {
    background-color: var(--clr-bg-alt);
    color: var(--clr-primary);
}

/* --- PREMIUM CAROUSEL & LIGHTBOX GALLERY --- */
.gallery-carousel-section {
    background-color: var(--clr-secondary-pastel);
    border-top: 1px solid var(--clr-border);
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 2.5rem;
}

.carousel-track-container {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    cursor: grab;
}

.carousel-track-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.carousel-track-container:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
}

.carousel-slide {
    flex: 0 0 280px;
    width: 280px;
    user-select: none;
}

.carousel-image-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(214, 48, 49, 0.05);
    border: 1px solid var(--clr-border);
    background-color: #ffffff;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    isolation: isolate;
}

.carousel-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: transform 0.6s ease;
}

.carousel-image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(214, 48, 49, 0.12);
}

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

.carousel-image-card:hover::after {
    opacity: 1;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid var(--clr-border);
    color: var(--clr-brand-red);
    font-size: 1.25rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav-btn:hover {
    background-color: var(--clr-brand-red);
    color: #ffffff;
    border-color: var(--clr-brand-red);
    box-shadow: 0 6px 20px rgba(214, 48, 49, 0.2);
}

.carousel-nav-btn.prev {
    left: -25px;
}

.carousel-nav-btn.next {
    right: -25px;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(30, 39, 46, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
}

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

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lightbox-modal.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--clr-brand-red);
}

@media (max-width: 768px) {
    .carousel-nav-btn {
        display: none; /* Swipe natively on mobile */
    }
    .carousel-slide {
        flex: 0 0 220px;
        width: 220px;
    }
}

/* --- OUR VANS RESPONSIVE GRID LAYOUTS --- */
.van-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.van-card.text-right {
    grid-template-areas: 
        "image title"
        "image content";
}

.van-card.text-left {
    grid-template-areas: 
        "title image"
        "content image";
}

.van-card .van-title-wrapper {
    grid-area: title;
    align-self: end;
}

.van-card .van-image-wrapper {
    grid-area: image;
}

.van-card .van-content-wrapper {
    grid-area: content;
    align-self: start;
}

@media (max-width: 768px) {
    .van-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        grid-template-areas: 
            "title"
            "image"
            "content" !important;
    }
    
    .van-card .van-title-wrapper {
        align-self: auto;
    }
    
    .van-card .van-content-wrapper {
        align-self: auto;
    }
}

/* --- MOBILE NAVIGATION SHOW/HIDE ON SCROLL --- */
@media (max-width: 768px) {
    .site-header.header-hidden {
        transform: translateY(-100%);
        box-shadow: none;
    }
}
