/* 
 * Jet Ski Tours Perth - Main Style Sheet
 * Design System: Schneider (Premium) + Norman (Visible)
 * Environment-Agnostic Assets
 */

:root {
    --primary-orange: #F89421;
    --primary-blue: #002D52;
    --deep-blue: #001A33;
    --accent-blue: #00AEEF;
    --black: #050505;
    --white: #FFFFFF;
    --grey-100: #F4F7F9; /* Lightest Grey for section definition */
    --grey-200: #E1E8ED;
    --grey-300: #A8B2B9;
    --body-font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --heading-font: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --header-height: 80px;
    --container-width: 1280px;
    --border-radius: 12px;
    --shadow-sm: 0 4px 10px rgba(0,0,0,0.06);
    --shadow-md: 0 15px 45px rgba(0, 0, 0, 0.15); /* Stronger, softer premium highlight */
    --shadow-lg: 0 30px 65px rgba(0, 0, 0, 0.22);
}

/* Text Shadow for Hero (No Overlay) */
.hero-text-shadow {
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
}

/* Block Highlight */
.content-block {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* 1. Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--body-font);
    background-color: var(--white);
    color: var(--black);
    line-height: 1.7; /* Optimized for readability */
    overflow-x: hidden;
    font-size: 1.05rem; /* Standardizing paragraph size */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    /* Removed global deep-blue to protect white text on dark backgrounds */
}

h1 { font-size: 4.5rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1rem; letter-spacing: 0.2em; color: var(--primary-orange); }

p {
    color: rgba(0, 26, 51, 0.85);
    margin-bottom: 1.5rem;
}

/* Ensure Hero paragraphs are white */
.page-header p, .hero-slide-content p {
    color: var(--white) !important;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* 2. Header & Navigation */
#main-header {
    height: var(--header-height);
    background: rgba(0, 45, 82, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 35px;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

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

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

#mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

#mobile-toggle span {
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

#mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
#mobile-toggle.active span:nth-child(2) { opacity: 0; }
#mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* Mobile Nav State */
@media (max-width: 768px) {
    #mobile-toggle { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--deep-blue);
        padding: 2rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .main-nav.active { display: block; }
    .main-nav ul { flex-direction: column; gap: 1.5rem; text-align: center; }
}

/* 3. Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(248, 148, 33, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(248, 148, 33, 0.4);
    background: #FF9E3D;
}

/* 4. Sections */
section {
    padding: 100px 0;
}

.flush-bottom {
    padding-bottom: 0 !important;
}

.no-padding,
.footer-map {
    padding: 0 !important;
}

.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    padding-top: var(--header-height);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,26,51,0.6) 0%, rgba(0,45,82,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 5. Footer */
#main-footer {
    background: var(--deep-blue);
    color: var(--white);
    padding: 80px 0 0 0;
}

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

.footer-brand img {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--grey-300);
    margin-bottom: 1.5rem;
}

.footer-grid h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
}

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

.footer-links a {
    color: var(--grey-300);
}

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

.footer-contact p {
    color: var(--grey-300);
    margin-bottom: 1rem;
}

.footer-contact a {
    color: var(--white);
    font-weight: 600;
}

.badge-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge-grid img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-content p {
    color: var(--grey-300);
    font-size: 0.85rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.payment-icons img {
    height: 20px;
}

/* 6. Sticky Button (Norman Visibility) */
.sticky-book-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

/* Utility Classes */
.text-orange { color: var(--primary-orange); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* White Icons Class */
.text-white {color: white; }

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 3rem; }
    .main-nav { display: none; } /* Add mobile menu JS toggle later */
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .bottom-content { flex-direction: column; gap: 1.5rem; text-align: center; }
}

/* 7. Tabs & Components */
.icon-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    line-height: 1.5;
}

.icon-list li i {
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    color: var(--primary-orange);
    margin-top: 4px; /* Align icon with first line of text */
}

.pane-restrictions h3 { 
    margin-bottom: 2rem; 
    border-bottom: 2px solid var(--grey-100);
    padding-bottom: 1rem;
}

.tab-pane { display: none; }
.tab-pane.active { display: block !important; }
.tab-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--grey-300);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.tab-btn i {
    font-size: 1.1rem;
    opacity: 0.8;
}

.tab-btn.active { 
    background: var(--white) !important; 
    color: var(--primary-orange) !important; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
    transform: translateY(-1px);
}

.packages-glow-effect {
    box-shadow: 0 0 40px rgba(248, 148, 33, 0.12), var(--shadow-lg) !important;
}

/* 8. Masonry Gallery */
.masonry-gallery img { 
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
    border-radius: 4px; 
    transition: var(--transition); 
}
.masonry-gallery img:hover { 
    transform: scale(1.05); 
    cursor: pointer; 
    z-index: 10; 
    position: relative; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.2); 
}

/* 9. Motion System (Schneider Soul) */
@keyframes fadeInUpSubtle {
    from { opacity: 0; transform: translateY(30px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.reveal-up {
    opacity: 0;
    transform: translateY(15px) scale(0.99); /* Shorter distance for snappier feel */
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-up.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.1, 0, 0.2, 1);
}

.reveal-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.1, 0, 0.2, 1);
}

.reveal-stagger > *.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects */
.bounce-on-hover:hover {
    animation: bounce 0.5s infinite alternate;
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-5px); }
}

/* Hero Title Dual Color & Shadow Sync */
.hero-slide-content h1 {
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
}

.hero-slider-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: var(--deep-blue); /* Eliminate white flash during transitions */
}

.hero-slider {
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* For zoom effect */
}

.hero-slide.active {
    opacity: 1;
    z-index: 10;
}

/* Ken Burns Effect (Zoom) */
@keyframes kenBurnsZoom {
    0% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.hero-slide.active {
    animation: kenBurnsZoom 8s ease-out forwards;
}

/* Brightness Adjustment: Remove Overlay Entirely */
.hero-slide::before {
    display: none;
}

/* Staggered Text Animations */
@keyframes heroFadeUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-slide-content {
    position: relative;
    z-index: 5;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-slide.active h1 {
    animation: heroFadeUp 1s ease-out forwards;
}

.hero-slide.active p {
    opacity: 0;
    animation: heroFadeUp 1s ease-out 0.2s forwards;
}

.hero-slide.active .hero-actions {
    opacity: 0;
    animation: heroFadeUp 1s ease-out 0.4s forwards;
}

.hero-slide-content h1 span.text-orange {
    color: var(--primary-orange);
    position: relative;
}

/* ==========================================================================
   10. Mobile App Shell & Responsiveness (Schneider UI)
   ========================================================================== */

/* Hide mobile nav on desktop */
.mobile-app-nav { display: none; }

@media (max-width: 991px) {
    :root { --container-width: 95%; }
    .hero-slide-content h1 { font-size: 3.5rem; }
    .welcome-grid, .tour-grid, .pane-grid, .footer-grid { grid-template-columns: 1fr !important; gap: 3rem; }
}

@media (max-width: 768px) {
    /* Nuclear Viewport Lock (Isomorphic Shell) */
    html, body { 
        max-width: 100% !important;
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative !important;
    }

    /* Header Isomorphic Persistence (Nuclear Normalization) */
    #main-header { 
        height: 65px !important; 
        padding: 0 !important;
        background: rgba(0, 26, 51, 1) !important;
        width: 100% !important;
        left: 0 !important;
        display: flex !important;
        align-items: center !important;
        overflow: visible !important;
    }
    #main-header .container { height: 100% !important; }
    .header-content { 
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    .logo img { height: 35px !important; }
    .main-nav { display: none !important; }
    .header-cta { 
        display: flex !important; 
        align-items: center !important; 
        height: 100% !important;
    }
    #mobile-toggle { display: none !important; } 
    
    #main-header .btn-header { 
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 38px !important; 
        padding: 0 1.25rem !important; 
        font-size: 0.8rem !important; 
        line-height: 1 !important; 
        box-shadow: 0 4px 12px rgba(248, 148, 33, 0.35) !important;
        margin: 0 !important; /* Specificity win over .btn-booking */
        border-radius: 50px;
    }

    /* Universal Grid Stack (Uniformity Across All Subpages) */
    .price-grid, .equip-grid, .reviews-grid, .map-grid, .pane-grid, .content-grid, 
    .about-intro .content-grid, .safety-grid, .corporate-grid, .accreditation-grid,
    .definition-grid, .tech-term-grid, .tips-grid, .recovery-grid, .requirements-grid,
    .tech-block, .tour-grid, .welcome-grid { 
        display: flex !important; 
        flex-direction: column !important; 
        gap: 2.22rem !important; 
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    /* Section Heightening & Padding Persistence (About Optimization) */
    section { padding: 45px 0 !important; overflow-x: hidden !important; }
    .hero-slide-content { padding: 110px 1.25rem !important; }
    .hero-slide-content h1 { font-size: 1.95rem !important; line-height: 1.1 !important; margin-bottom: 0.8rem !important; }
    .hero-slide-content p { font-size: 0.95rem !important; margin-top: 0.8rem; line-height: 1.4; opacity: 0.9; }
    .page-header h4 { letter-spacing: 0.1em !important; font-size: 0.85rem !important; }
    .page-header p { font-size: 0.95rem !important; line-height: 1.5 !important; }
    
    /* Package Pane & Content Block Normalization (Total Squashed Fix) */
    .container { padding: 0 15px !important; } /* Reclaiming screen width */
    .content-block, .pane-grid { padding: 1.25rem 1rem !important; width: 100% !important; margin: 0 !important; }
    .tab-content { padding: 0.5rem 0.5rem !important; }
    .price-highlight { 
        padding: 1.5rem 1rem !important; 
        margin-top: 1.5rem !important; 
        border-left: none !important; 
        box-shadow: 0 10px 30px rgba(0,0,0,0.12) !important;
    }
    .pane-description, .hire-text, .text-center { text-align: center !important; align-items: center !important; display: flex !important; flex-direction: column !important; }
    .pane-description .btn { width: 100% !important; margin-top: 1.5rem !important; }
    .price-row { flex-direction: row !important; gap: 2rem !important; justify-content: center !important; text-align: center !important; }
    .mobile-divider { display: block !important; }
    .cta-message { padding: 1.5rem 1rem !important; }
    .voucher-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
    .voucher-card { padding: 2.5rem 1.5rem !important; }
    .btn-booking { margin-top: 2.5rem !important; }
    .pane-restrictions.content-block { background: var(--white) !important; box-shadow: var(--shadow-lg) !important; }
    .tab-controls { gap: 0.8rem !important; margin-bottom: 0.5rem !important; }
    .tab-btn { padding: 0.8rem 0.6rem !important; font-size: 0.7rem !important; }
    .packages-tabs-container { border-radius: 12px !important; }
    .tab-controls-wrapper { margin: 8px !important; border-radius: 10px !important; }
    .image-accent { width: 60px !important; height: 60px !important; }
    
    /* Welcome & Intro Centering & Space Optimization */
    .welcome-section, .about-intro { text-align: center !important; }
    .welcome-text .divider, .about-text .divider { margin: 1.2rem auto !important; }
    .welcome-text h2, .about-text h2 { margin-top: 0.5rem !important; }
    .welcome-text p, .about-text p { margin-bottom: 1rem !important; }
    .welcome-text, .about-text { display: flex !important; flex-direction: column !important; align-items: center !important; }
    
    /* Footer Buffer for App Shell */
    .footer-bottom { padding-bottom: 110px !important; }
    .bottom-content { flex-direction: column !important; gap: 1.5rem !important; text-align: center !important; }
    .payment-icons { justify-content: center !important; }

    /* Page Header Uniformity (Subpages) */
    .page-header { padding: 110px 0 60px 0 !important; }
    .page-header h1 { font-size: 2.22rem !important; word-wrap: break-word !important; }
    .page-header h4 { font-size: 0.85rem !important; }
    .page-header p { font-size: 1rem !important; line-height: 1.5 !important; }

    /* Heading Optimizations for Mobile */
    h2 { font-size: 1.95rem !important; line-height: 1.2 !important; }
    h3 { font-size: 1.5rem !important; }
    p { font-size: 0.95rem !important; line-height: 1.6 !important; }

    /* Content Grid Refinement (Order Swap) */
    .content-grid { display: flex !important; flex-direction: column !important; }
    .content-grid div:nth-child(2) { order: -1 !important; } /* Image above Text */
    .corporate-grid div:nth-child(2) { order: 0 !important; } /* Restore order for Corporate (Text first) */
    .about-intro .content-grid { gap: 1.5rem !important; }
    
    /* Natural Discoverability: Edge-Fade & Peek Logic */
    .tab-controls-wrapper { 
        position: relative; 
        overflow: hidden; 
        mask-image: linear-gradient(to right, black 85%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
    }
    
    .tab-controls { 
        padding-right: 40px !important; /* Buffer for the fade */
    }

    .packages-nav-section { margin-top: -0.5rem !important; }
    .mobile-app-nav {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100% !important;
        height: 75px;
        background: rgb(1, 26, 49);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-top: 1px solid rgba(255,255,255,0.12);
        border-radius: 25px 25px 0 0; /* Premium curved top corners */
        z-index: 99999;
        padding-bottom: env(safe-area-inset-bottom);
    }

    .mobile-nav-container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        max-width: 500px;
        margin: 0 auto;
        padding: 0 5px;
    }

    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.55);
        text-decoration: none;
        font-size: 0.62rem;
        font-weight: 700;
        transition: var(--transition);
        flex: 1;
        gap: 3px;
        pointer-events: auto;
    }

    .mobile-nav-item i {
        font-size: 1.3rem; 
        margin-bottom: 1px;
    }

    .mobile-nav-item.active {
        color: var(--primary-orange);
    }

    /* Central Book Action (Primary App CTA) */
    .mobile-nav-item.book-center {
        position: relative;
        transform: translateY(-25px); /* Lifted higher per user request */
        flex: 1;
        z-index: 10;
    }

    .book-icon-wrapper {
        width: 62px;
        height: 62px;
        background: var(--primary-orange);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 12px 30px rgba(248, 148, 33, 0.45);
        border: 5px solid #001a33; 
        margin-bottom: -4px; /* Tightened text spacing */
    }

    .book-icon-wrapper i {
        color: white;
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .mobile-nav-item.book-center span {
        margin-top: 0;
        color: var(--primary-orange);
        font-weight: 800;
        letter-spacing: -0.02em;
    }

    /* Grid & Component Stacking (Strict enforcement) */
    .pane-grid, .hire-grid, .corporate-grid, .definition-grid, .tips-grid, .recovery-grid, .equip-grid, .tour-grid, .gallery-social-actions { 
        display: flex !important; 
        flex-direction: column !important; 
        gap: 1.5rem !important;
        align-items: center !important;
    }
    
    .gallery-social-actions .btn { width: 100% !important; max-width: 300px; }
    
    .price-row, .price-grid { 
        display: flex !important;
        flex-direction: row !important; 
        gap: 2rem !important; 
        justify-content: center !important; 
        text-align: center !important; 
        width: 100% !important;
    }

    .masonry-gallery { grid-template-columns: repeat(2, 1fr) !important; }
    
    /* Touch optimization */
    .tab-btn { padding: 0.75rem 1rem; font-size: 0.8rem; gap: 8px; }
    .tab-btn i { font-size: 1rem; }

    /* Contact Page Mobile */
    .contact-grid {
        grid-template-columns: 1fr !important;
    }
    .contact-item {
        padding: 3rem 2rem !important;
    }

    /* Occasions / Holidays sections */
    .occasions-grid, .holiday-grid {
        grid-template-columns: 1fr !important;
    }

    /* Paddling teaser & packages grid */
    .paddling-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

/* Holiday / Occasion card divider line between icon and text */
.holiday-item > div {
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    padding-left: 2rem;
}

    .social-cta .container > div[style*="display: flex"] {
        flex-direction: column !important;
        align-items: center !important;
    }
    .social-cta .btn {
        width: 100% !important;
        max-width: 320px;
        justify-content: center;
    }

    /* Section padding reduction on mobile */
    .contact-cards, .social-cta, #occasions, #holidays, #paddling-teaser, #paddling-feature {
        padding: 80px 0 !important;
    }

    /* Holiday / Occasion cards: pin icon to top on mobile */
    .holiday-item {
        align-items: flex-start !important;
    }
    .holiday-item > i {
        margin-top: 0.35rem;
        flex-shrink: 0;
    }
}

/* Global Suppression for FareHarbor Floating Elements (Strict Selectors Only) */
.fh-fixed--bottom, 
.fh-button-fixed, 
.fh-icon--cal, 
.fh-button-kit, 
.fh-pill,
[class*="fh-button-kit"],
[id*="fh-button-kit"] { 
    display: none !important; 
    visibility: hidden !important; 
    opacity: 0 !important; 
    pointer-events: none !important;
}

@media (max-width: 480px) {
    .hero-slide-content h1 { font-size: 1.8rem; }
    .section-title h2 { font-size: 2rem; }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

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

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 95px; /* Clear the mobile tab bar */
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}
