:root {
    --primary: #41E0ED;
    --primary-dark: #0097B2;
    --bg-light: #CCF5F9;
    --bg-lighter: #E6FAFC;
    --text-dark: #06283D;
    --text-light: #475569;
    --white: #FFFFFF;
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

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

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

.section-subtitle {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

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

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--primary-dark);
}

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

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    background: transparent;
    transition: background 0.3s;
}

.navbar.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.navbar.scrolled .nav-links a,
.navbar.scrolled .logo,
.navbar.scrolled .nav-socials a {
    color: var(--text-dark);
}

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

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    gap: 5px;
}

.logo-icon {
    background: var(--primary);
    color: var(--white);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-style: italic;
    font-size: 1.2rem;
}

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

.nav-links a {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-icon { font-size: 0.6rem; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

.nav-socials { display: flex; gap: 15px; }
.nav-socials a {
    color: var(--white);
    font-size: 0.9rem;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    background-color: var(--text-dark);
}

.slider-container {
    width: 100%;
    height: 70vh;
    position: relative;
}

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

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

.slide::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--white) 0%, transparent 100%);
    z-index: 0;
}

.slide .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content {
    max-width: 500px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 50px;
    pointer-events: none;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    backdrop-filter: blur(5px);
}

.slider-controls button:hover {
    background: var(--primary);
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

/* Slide Content Animation */
.slide-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Challenge Section */
.challenge {
    padding: 100px 0;
}

.challenge-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.challenge-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    position: relative;
}

.img-1 { grid-column: 1; grid-row: 1; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.img-2 { grid-column: 2; grid-row: 1 / span 2; border-radius: 10px; height: 100%; object-fit: cover; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.img-3 { grid-column: 1; grid-row: 2; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.check {
    color: var(--primary-dark);
    font-weight: bold;
}

.challenge-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.award-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
}

.badge-icon {
    font-size: 2rem;
}

.badge-text { display: flex; flex-direction: column; line-height: 1.2; }
.badge-text strong { font-size: 1.5rem; font-family: var(--font-heading); }
.badge-text span { font-size: 0.8rem; }

/* Life of Water Sports */
.life-of-sports {
    padding: 100px 0;
    position: relative;
}

.life-container {
    background: url('assets/imgi_5_surfer-friends-at-the-beach.jpg') center/cover;
    border-radius: 20px;
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.life-content {
    background: rgba(255,255,255,0.9);
    padding: 40px;
    border-radius: 10px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.stat-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Explore Excitement */
.explore {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--white), var(--bg-lighter));
}

.section-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr auto;
    gap: 40px;
    align-items: end;
    margin-bottom: 50px;
}

.activity-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.activity-card {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    background: var(--bg-light);
}

.why-choose-us .section-desc {
    max-width: 600px;
    margin: 0 auto 50px;
}

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

.feature-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 20px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card p {
    margin-bottom: 20px;
}

.card-link {
    color: var(--primary-dark);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Join Video */
.join-video {
    padding: 150px 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('assets/imgi_72_underwater-reefscape.jpg') center/cover fixed;
}

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

.join-content {
    max-width: 500px;
    color: var(--white);
}

.join-content .section-title, .join-content p {
    color: var(--white);
    margin-bottom: 20px;
}

.video-play-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.video-play-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.play-icon {
    color: var(--white);
    font-size: 1.5rem;
    margin-left: 5px;
}

/* No Limit */
.no-limit {
    padding: 100px 0;
}

.no-limit-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.no-limit-image {
    position: relative;
}

.no-limit-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.2;
}

.experience-badge strong { font-size: 2.5rem; font-family: var(--font-heading); }

.brand-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.logo-item {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
    font-family: var(--font-heading);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.logo-item:hover { opacity: 1; color: var(--primary-dark); }

/* Events */
.events {
    padding: 100px 0;
}

.header-desc-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: end;
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.event-card {
    display: flex;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.event-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.event-card img {
    width: 40%;
    object-fit: cover;
}

.event-info {
    padding: 30px;
    width: 60%;
}

.event-date {
    display: inline-block;
    background: var(--primary-dark);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.event-info h3 { margin-bottom: 10px; font-size: 1.5rem; }
.event-info p { margin-bottom: 20px; font-size: 0.9rem; }

.view-detail {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Canoeing Banner */
.canoeing-banner {
    padding: 120px 0;
    background: linear-gradient(rgba(0,180,204,0.8), rgba(0,180,204,0.8)), url('assets/imgi_60_turquoise-lake-kayak-tour.jpg') center/cover;
    text-align: center;
}

.banner-container { max-width: 700px; }
.canoeing-banner .section-subtitle { color: var(--white); }
.canoeing-banner p { color: var(--white); margin-bottom: 30px; font-size: 1.1rem; }

/* News & Articles */
.news { padding: 100px 0; }

.news-header {
    margin-bottom: 50px;
}

.news-title-area {
    max-width: 500px;
}

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

.news-card img {
    border-radius: 10px;
    margin-bottom: 20px;
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.news-card h3 { font-size: 1.25rem; margin-bottom: 10px; line-height: 1.4; }
.news-meta {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 15px;
}
.news-card p { font-size: 0.9rem; margin-bottom: 15px; }

.continue-reading {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.gallery-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.gallery-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s;
}

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

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: #ccc;
    padding: 60px 0;
}

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

.footer-brand p { 
    margin-top: 15px;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-logo { 
    font-size: 1.8rem; 
    color: var(--white);
}

.footer-contact.text-right {
    text-align: right;
}

.ig-btn {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    color: var(--white);
    transition: all 0.3s;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ig-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-dark);
}

.footer-contact p {
    font-size: 0.85rem;
    color: #888;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Hero Stats */
.hero-stats { padding: 40px 0; border-bottom: 1px solid #eee; }
.hero-stats-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-box h4 { font-size: 1.1rem; margin-bottom: 5px; color: var(--primary-dark); }
.stat-box p { font-size: 0.9rem; }

/* Activity Grid New */
.activity-grid-new { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 40px; }
.act-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s; }
.act-card:hover { transform: translateY(-10px); }
.act-card img { width: 100%; height: 200px; object-fit: cover; }
.act-content { padding: 25px; }
.act-content h3 { font-size: 1.25rem; margin-bottom: 10px; }
.act-content p { font-size: 0.9rem; }

/* Pricing Section */
.pricing-section { padding: 100px 0; background: var(--bg-lighter); }
.pricing-header { margin-bottom: 60px; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.price-card { background: var(--white); border-radius: 15px; padding: 0; text-align: center; box-shadow: 0 15px 35px rgba(0,0,0,0.05); border: 1px solid rgba(65, 224, 237, 0.2); position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.price-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(90deg, var(--primary), var(--primary-dark)); z-index: 2; }
.price-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,180,204,0.15); }
.price-img-container { height: 150px; width: 100%; overflow: hidden; }
.price-img-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.price-card:hover .price-img-container img { transform: scale(1.1); }
.price-content { padding: 30px 20px; }
.price-card .price-header { font-size: 1.1rem; margin-bottom: 15px; color: var(--text-dark); font-weight: 700; }
.price-card .price-amount { font-size: 2.5rem; font-family: var(--font-heading); font-weight: 800; color: var(--primary-dark); line-height: 1; }
.price-card .currency { font-size: 1rem; font-weight: 600; vertical-align: super; }
.price-card .duration { display: block; margin-top: 10px; font-size: 0.85rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* Charter Prices */
.charter-prices { list-style: none; margin: 30px 0; }
.charter-prices li { font-size: 1.2rem; margin-bottom: 15px; border-left: 3px solid var(--primary); padding-left: 15px; }

/* Contact Section */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-card .info-item { margin-bottom: 20px; }
.contact-card h4 { color: var(--primary-dark); margin-bottom: 5px; }
.location-box { background: var(--white); padding: 30px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.location-box h3 { margin-bottom: 20px; border-bottom: 2px solid var(--bg-light); padding-bottom: 10px; display: inline-block; }
.location-box ul { list-style: none; }
.location-box li { font-size: 1rem; }

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content h1 { font-size: 3.5rem; }
    .hero-stats-container { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .activity-grid-new { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .challenge-container, .life-container, .no-limit-container, .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .stats-container, .activity-gallery, .features-grid, .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .activity-grid-new { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .text-right { text-align: center !important; }
    
    .hero-content h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .nav-links, .nav-socials { display: none; }
    
    .hero-stats-container { grid-template-columns: 1fr; gap: 10px; }
    .stats-container, .activity-gallery, .features-grid, .events-grid, .news-grid, .activity-grid-new {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    
    .section-header, .header-desc-two {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .event-card { flex-direction: column; }
    .event-card img, .event-info { width: 100%; }
    
    .bottom-container { flex-direction: column; gap: 15px; text-align: center; }
    
    .hero-content h1 { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
}


/* ── PRICING BENTO GRID ─────────────────────────────── */
.pricing-bento-section {
  --bg: #080d12;
  --surface: #0e1620;
  --accent: #00c9b8;
  --accent2: #0098e5;
  --white: #f0f4f8;
  --muted: #7a8fa3;
  --border: rgba(255,255,255,0.07);

  background: var(--bg);
  font-family: 'Barlow', sans-serif;
  color: var(--white);
  padding-bottom: 40px;
}

.pricing-bento-section * {
  box-sizing: border-box;
}

.bento-header {
  padding: 80px 48px 52px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.bento-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.bento-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 0;
}
.bento-title span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
}
.bento-note {
  font-size: 13px;
  color: var(--muted);
  max-width: 260px;
  line-height: 1.6;
  text-align: right;
  margin-bottom: 0;
}
.bento-note strong { color: var(--white); font-weight: 500; }

.bento {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px 80px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 60px;
  gap: 14px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
  cursor: pointer;
}
.bento-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.25,.46,.45,.94), filter 0.6s;
  filter: saturate(0.7) brightness(0.65);
}
.bento-card:hover img {
  transform: scale(1.06);
  filter: saturate(0.9) brightness(0.75);
}

.bento-card::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  transition: opacity 0.4s;
}
.bento-card:hover::before { opacity: 0.7; }

.bento-card::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(.25,.46,.45,.94);
}
.bento-card:hover::after { transform: scaleX(1); }

.bento-card-body {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 22px 24px;
}
.bento-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 2vw, 20px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.bento-card:hover .bento-card-name { color: var(--accent); }

.bento-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.bento-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
}
.bento-currency {
  font-size: 0.45em;
  font-weight: 400;
  color: var(--accent);
  vertical-align: super;
}
.bento-duration {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(0,0,0,0.45);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
  white-space: nowrap;
  flex-shrink: 0;
}

.bento-card.bento-hero .bento-card-name { font-size: clamp(22px, 3vw, 32px); margin-bottom: 10px; }
.bento-card.bento-hero .bento-price { font-size: clamp(48px, 6vw, 80px); }
.bento-card.bento-hero .bento-tag-featured {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 14px; width: fit-content;
  font-weight: 700;
}

.c-wake  { grid-column: span 5; grid-row: span 7; }
.c-surf  { grid-column: span 4; grid-row: span 7; }
.c-skate { grid-column: span 3; grid-row: span 4; }
.c-hybrid{ grid-column: span 3; grid-row: span 3; }
.c-mono  { grid-column: span 4; grid-row: span 4; }
.c-tube  { grid-column: span 4; grid-row: span 4; }
.c-sub   { grid-column: span 4; grid-row: span 4; }
.c-sup   { grid-column: span 4; grid-row: span 4; }
.c-suppt { grid-column: span 4; grid-row: span 4; }
.c-padf  { grid-column: span 4; grid-row: span 4; }

.cta-card {
  grid-column: span 12;
  grid-row: span 3;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(14,34,51,0.85) 0%, rgba(8,26,40,0.95) 100%), url('assets/boat 2 .jpg') center/cover;
  border: 1px solid rgba(0,201,184,0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  gap: 32px;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
}
.cta-card::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,201,184,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px;
}
.cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 0;
}
.cta-prices {
  display: flex; gap: 32px; flex-wrap: wrap;
}
.cta-tier {
  text-align: center;
}
.cta-tier-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px; font-weight: 900;
  color: var(--accent); line-height: 1;
}
.cta-tier-price sup { font-size: 14px; vertical-align: super; }
.cta-tier-dur {
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  margin-top: 2px;
}
.cta-btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 12px 32px; border-radius: 8px;
  border: none; cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.cta-btn:hover { background: #00e5d2; transform: translateY(-1px); color: var(--bg); }

.pricing-footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px 80px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}
.pricing-footer::before {
  content: '';
  display: block; flex-shrink: 0;
  width: 32px; height: 1px;
  background: var(--accent);
}

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(6, 1fr); padding: 0 24px 60px; }
  .bento-header { padding: 60px 24px 40px; }
  .c-wake  { grid-column: span 3; grid-row: span 6; }
  .c-surf  { grid-column: span 3; grid-row: span 6; }
  .c-skate { grid-column: span 3; grid-row: span 5; }
  .c-hybrid{ grid-column: span 3; grid-row: span 5; }
  .c-mono  { grid-column: span 2; grid-row: span 5; }
  .c-tube  { grid-column: span 2; grid-row: span 5; }
  .c-sub   { grid-column: span 2; grid-row: span 5; }
  .c-sup   { grid-column: span 3; grid-row: span 5; }
  .c-suppt { grid-column: span 3; grid-row: span 5; }
  .c-padf  { grid-column: span 6; grid-row: span 5; }
  .cta-card { grid-column: span 6; grid-row: span 5; padding: 24px; }
  .pricing-footer { padding: 0 24px 60px; }
}

@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 50px; gap: 10px; padding: 0 16px 48px; }
  .bento-header { padding: 48px 16px 32px; flex-direction: column; align-items: flex-start; }
  .bento-note { text-align: left; }
  .c-wake, .c-surf { grid-column: span 1; grid-row: span 7; }
  .c-skate, .c-hybrid { grid-column: span 1; grid-row: span 5; }
  .c-mono, .c-tube, .c-sub { grid-column: span 1; grid-row: span 5; }
  .c-sup, .c-suppt, .c-padf { grid-column: span 1; grid-row: span 5; }
  .cta-card { grid-column: span 2; grid-row: span 8; flex-direction: column; justify-content: center; padding: 24px 20px; }
  .cta-prices { gap: 16px; justify-content: center; }
  .pricing-footer { padding: 0 16px 48px; }
}


/* ── BOOKING MODAL ─────────────────────────────── */
.booking-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(8, 13, 18, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.booking-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal {
  background: var(--surface, #0e1620);
  border: 1px solid var(--border, rgba(255,255,255,0.07));
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  padding: 40px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  color: var(--white, #f0f4f8);
  font-family: 'Barlow', sans-serif;
}

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

.close-modal {
  position: absolute;
  top: 20px; right: 20px;
  background: transparent;
  border: none;
  color: var(--muted, #7a8fa3);
  font-size: 28px;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.close-modal:hover {
  color: var(--accent, #00c9b8);
}

.modal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--white, #f0f4f8);
}

.modal-desc {
  font-size: 14px;
  color: var(--muted, #7a8fa3);
  margin-bottom: 25px;
  line-height: 1.5;
}

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

.booking-form .form-row {
  display: flex;
  gap: 15px;
}
.booking-form .form-row .form-group {
  flex: 1;
}

.booking-form label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent, #00c9b8);
  margin-bottom: 8px;
  font-weight: 600;
}

.booking-form input,
.booking-form select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border, rgba(255,255,255,0.1));
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white, #f0f4f8);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  transition: border-color 0.2s, background 0.2s;
}

.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--accent, #00c9b8);
  background: rgba(255,255,255,0.08);
}

.booking-form select option {
  background: var(--surface, #0e1620);
  color: var(--white, #f0f4f8);
}

.modal-submit {
  width: 100%;
  margin-top: 10px;
  background: var(--accent, #00c9b8);
  color: #080d12;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.modal-submit:hover {
  background: #00e5d2;
  transform: translateY(-2px);
}

/* Mobile Fixes for Slider Arrows and Text Overlap */
@media (max-width: 768px) {
    .slider-controls {
        padding: 0 10px; /* Push arrows closer to edges */
    }
    .slider-controls button {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    .hero-content {
        padding: 0 40px; /* Add padding to prevent text from going under arrows */
    }
}
