/* ===================================
   TAKUMA TENNIS PAGES CONSOLIDATED CSS
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #ddc131;
    --accent-color: #27ae60;
    --secondary-color: #1a1a1a;
    --text-dark: #333333;
    --text-light: #555555;
    --bg-light: #f8f9fa;
    --text-white: #ffffff;
    --adventure-green: #27ae60;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 400;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Hide BOOK ONLINE button from tennis landing pages */
.sticky-book-btn {
    display: none !important;
}

.navbar .book-online-btn {
    display: none !important;
}

/* ===================================
   BOSTON TENNIS PAGE STYLES
   =================================== */

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(26, 26, 26, 0.6), rgba(26, 26, 26, 0.7)), 
                url('assets/buston/DSC_7150.JPG') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.9);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.hero-description {
    font-size: 1.4rem;
    color: var(--text-white);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

/* Season Badge */
.season-badge {
    background: linear-gradient(135deg, var(--accent-color), #2ecc71);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 30px rgba(39,174,96,0.4);
    animation: pulse 2s infinite;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    position: relative;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 3.5rem;
    text-align: center;
    font-weight: 500;
    line-height: 1.6;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 6px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(221,193,49,0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    border-left-color: var(--accent-color);
}

.feature-icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 3rem;
    box-shadow: 0 15px 40px rgba(39,174,96,0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(39,174,96,0.4);
}

.feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Experience Section */
.experience-section {
    background: linear-gradient(135deg, rgba(39,174,96,0.08) 0%, rgba(46,204,113,0.08) 100%);
    padding: 100px 0;
    position: relative;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="experience-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%2327ae60" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23experience-pattern)"/></svg>');
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.experience-item {
    background: white;
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
    height: 450px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.experience-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* Location Items */
.location-item {
    background: white;
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
    height: 450px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.location-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.experience-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(39,174,96,0.2);
}

.experience-label {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.experience-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(39,174,96,0.05) 0%, rgba(46,204,113,0.05) 100%);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gallery-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="%2327ae60" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23gallery-pattern)"/></svg>');
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: white;
}

.gallery-item:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Advanced Level UI Improvements */
.advanced-card {
    position: relative;
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, rgba(39,174,96,0.05) 0%, rgba(46,204,113,0.05) 100%);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(39,174,96,0.15);
    height: 450px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.advanced-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 70px rgba(39,174,96,0.25);
    border-color: var(--primary-color);
}

.advanced-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color), #2ecc71);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(39,174,96,0.4);
    animation: pulse 2s infinite;
    z-index: 10;
}

.advanced-icon {
    background: linear-gradient(135deg, var(--accent-color), #2ecc71);
    animation: rotate 3s ease-in-out infinite;
    box-shadow: 0 15px 40px rgba(39,174,96,0.4);
}

.advanced-card:hover .advanced-icon {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 20px 50px rgba(39,174,96,0.5);
}

.advanced-features {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid rgba(39,174,96,0.2);
}

.advanced-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advanced-features li {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-weight: 500;
}

.advanced-features li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-color);
    font-size: 0.9rem;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
    100% { transform: rotate(0deg); }
}

/* CTA Buttons */
.btn-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(221,193,49,0.4);
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(221,193,49,0.5);
    color: white;
}

.btn-experience {
    background: linear-gradient(135deg, var(--accent-color), #2ecc71);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(39,174,96,0.4);
}

.btn-experience:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(39,174,96,0.5);
    color: white;
}

.btn-gallery {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(221,193,49,0.4);
}

.btn-gallery:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(221,193,49,0.5);
    color: white;
}

/* Locations Section */
.locations-section {
    background: linear-gradient(135deg, rgba(39,174,96,0.05) 0%, rgba(46,204,113,0.05) 100%);
    padding: 100px 0;
    position: relative;
}

.locations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="locations-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%2327ae60" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23locations-pattern)"/></svg>');
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.location-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 15px 40px rgba(39,174,96,0.3);
    transition: all 0.3s ease;
}

.location-item:hover .location-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(39,174,96,0.4);
}

.location-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Training Programs Section */
.training-programs-section {
    background: linear-gradient(135deg, rgba(221,193,49,0.05) 0%, rgba(196,176,40,0.05) 100%);
    padding: 100px 0;
    position: relative;
}

.training-programs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="training-pattern" width="35" height="35" patternUnits="userSpaceOnUse"><circle cx="17.5" cy="17.5" r="1.5" fill="%23ddc131" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23training-pattern)"/></svg>');
}

/* Topspin System Section */
.topspin-section {
    background: linear-gradient(135deg, rgba(26,26,26,0.05) 0%, rgba(45,45,45,0.05) 100%);
    padding: 100px 0;
    position: relative;
}

.topspin-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="topspin-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23333333" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23topspin-pattern)"/></svg>');
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, #2ecc71 50%, #27ae60 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.cta-section .lead {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(221,193,49,0.4);
    position: relative;
    z-index: 1;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(221,193,49,0.5);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .feature-card {
        padding: 30px;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .experience-item, .location-item {
        height: auto !important;
        padding: 30px;
    }
    
    .btn-hero, .btn-experience, .btn-gallery, .btn-cta {
        width: 100%;
        max-width: 300px;
    }
    
    .phone-number {
        font-size: 2rem;
    }
}

/* ===================================
   ENHANCED HERO SECTION STYLES
   =================================== */

/* Boston Tennis Enhanced Hero */
.hero-section-enhanced {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    margin-top: 0;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/buston/DSC_7150.JPG') center/cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.85) 0%, 
        rgba(45, 45, 45, 0.75) 50%, 
        rgba(26, 26, 26, 0.85) 100%);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="particles" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ddc131" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23particles)"/></svg>');
    z-index: 3;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50px, -50px); }
}

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

.hero-content-enhanced {
    max-width: 900px;
    margin: 30px auto 0 auto;
    padding: 60px 20px;
}

.hero-badge {
    margin-bottom: 40px;
}

.badge-content {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ddc131, #c4b028);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 15px 40px rgba(221, 193, 49, 0.4);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

.hero-title-wrapper {
    margin-bottom: 30px;
    position: relative;
}

.hero-title-enhanced {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    color: white;
    text-shadow: 3px 3px 15px rgba(0,0,0,0.7);
}

.title-line {
    display: block;
    margin-bottom: 10px;
}

.title-accent {
    color: #ddc131;
    font-size: 5rem;
    text-shadow: 3px 3px 20px rgba(221, 193, 49, 0.5);
}

.title-decoration {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ddc131, transparent);
    border-radius: 2px;
}

.hero-subtitle-enhanced {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ddc131;
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

.subtitle-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-description-enhanced {
    font-size: 1.4rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    color: #ddc131;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(221, 193, 49, 0.5);
}

.promotion-box-enhanced {
    background: linear-gradient(135deg, rgba(221, 193, 49, 0.95), rgba(196, 176, 40, 0.95));
    border-radius: 25px;
    padding: 30px 40px;
    margin: 40px auto;
    max-width: 700px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(221, 193, 49, 0.4);
    backdrop-filter: blur(10px);
}

.promotion-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

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

.promo-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.promo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.discount-text {
    color: #1a1a1a;
    font-weight: 900;
    font-size: 1.4rem;
    text-shadow: none;
}

.promo-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: glow 3s infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-cta-enhanced {
    margin-top: 50px;
}

.btn-hero-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(39, 174, 96, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-hero-enhanced:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(39, 174, 96, 0.5);
    color: white;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-hero-enhanced:hover .btn-shine {
    left: 100%;
}

.cta-subtext {
    margin-top: 20px;
}

.cta-subtext p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 0;
}

.cta-subtext a {
    color: #ddc131;
    font-weight: 700;
    text-decoration: none;
}

.cta-subtext a:hover {
    text-decoration: underline;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-dot {
    width: 8px;
    height: 8px;
    background: #ddc131;
    border-radius: 50%;
}

.scroll-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Jamaica Tennis Academy Enhanced Hero */
.jamaica-hero-section-enhanced {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 50%, #1a472a 100%);
    margin-top: 0;
    z-index: 1;
}

.jamaica-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/JNPTA Tennis/1 (1).jpeg') center/cover;
    z-index: 1;
}

.jamaica-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 71, 42, 0.85) 0%, 
        rgba(45, 90, 61, 0.75) 50%, 
        rgba(26, 71, 42, 0.85) 100%);
    z-index: 2;
}

.jamaica-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="jamaica-particles" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%2334495e" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23jamaica-particles)"/></svg>');
    z-index: 3;
    animation: float 20s infinite linear;
}

.jamaica-hero-title-enhanced .title-accent {
    color: #3498db;
    font-size: 4.5rem;
    text-shadow: 3px 3px 20px rgba(52, 152, 219, 0.5);
}

.jamaica-hero-subtitle-enhanced {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

.jamaica-mission-box-enhanced {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.95), rgba(41, 128, 185, 0.95));
    border-radius: 25px;
    padding: 30px 40px;
    margin: 40px auto;
    max-width: 700px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(52, 152, 219, 0.4);
    backdrop-filter: blur(10px);
}

.jamaica-mission-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.jamaica-mission-icon {
    font-size: 2rem;
}

.jamaica-mission-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.jamaica-mission-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.impact-text {
    color: #1a472a;
    font-weight: 900;
    font-size: 1.3rem;
    text-shadow: none;
}

.jamaica-hero-cta-enhanced {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-mission-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(231, 76, 60, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-mission-enhanced:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(231, 76, 60, 0.5);
    color: white;
}

.btn-involved-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-involved-enhanced:hover {
    background: white;
    color: #1a472a;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 255, 255, 0.3);
}

/* Montego Bay Tennis Camp Enhanced Hero */
.montego-hero-section-enhanced {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #1e3a8a 100%);
    margin-top: 0;
    z-index: 1;
}

.montego-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/Montego/1 (2).jpg') center/cover;
    z-index: 1;
}

.montego-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.85) 0%, 
        rgba(55, 48, 163, 0.75) 50%, 
        rgba(30, 58, 138, 0.85) 100%);
    z-index: 2;
}

.montego-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="montego-particles" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ddc131" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23montego-particles)"/></svg>');
    z-index: 3;
    animation: float 20s infinite linear;
}

.montego-adventure-box-enhanced {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.95), rgba(46, 204, 113, 0.95));
    border-radius: 25px;
    padding: 30px 40px;
    margin: 40px auto;
    max-width: 700px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(39, 174, 96, 0.4);
    backdrop-filter: blur(10px);
}

.montego-adventure-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.montego-adventure-icon {
    font-size: 2rem;
}

.montego-adventure-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.montego-adventure-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.montego-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
}

.montego-feature-icon {
    font-size: 1.2rem;
}

.montego-feature-text {
    font-size: 1rem;
}

.btn-adventure-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ddc131, #c4b028);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(221, 193, 49, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-adventure-enhanced:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(221, 193, 49, 0.5);
    color: white;
}

.btn-adventure-enhanced:hover .btn-shine {
    left: 100%;
}

/* Responsive for Enhanced Heroes */
@media (max-width: 768px) {
    .hero-title-enhanced {
        font-size: 2.8rem;
    }
    
    .title-accent {
        font-size: 3.2rem;
    }
    
    .hero-subtitle-enhanced {
        font-size: 1.6rem;
    }
    
    .hero-description-enhanced {
        font-size: 1.2rem;
    }
    
    .promotion-box-enhanced, .jamaica-mission-box-enhanced, .montego-adventure-box-enhanced {
        padding: 25px 30px;
        margin: 30px 20px;
    }
    
    .btn-hero-enhanced, .btn-mission-enhanced, .btn-involved-enhanced, .btn-adventure-enhanced {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
    
    .jamaica-hero-cta-enhanced {
        flex-direction: column;
        align-items: center;
    }
    
    .montego-adventure-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* ===================================
   JAMAICA TENNIS ACADEMY STYLES
   =================================== */

/* Content Cards */
.content-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(41, 128, 185, 0.1) 100%);
    padding: 80px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%233498db" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>');
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.stat-item {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #3498db;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(52, 152, 219, 0.2);
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Tier System */
.tier-system {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(39, 174, 96, 0.1) 100%);
    padding: 80px 0;
    position: relative;
}

.tier-system::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tier-pattern" width="35" height="35" patternUnits="userSpaceOnUse"><circle cx="17.5" cy="17.5" r="1.5" fill="%2327ae60" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23tier-pattern)"/></svg>');
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.tier-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.tier-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.tier-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(39, 174, 96, 0.2);
}

.tier-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.tier-description {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* ===================================
   MONTEGO BAY TENNIS CAMP STYLES
   =================================== */

/* Experience Grid for Montego Bay */
.montego-experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.montego-experience-item {
    background: white;
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
}

.montego-experience-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    color: white;
    padding: 120px 0;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pricing-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><rect x="12" y="12" width="6" height="6" fill="%23ddc131" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23pricing-pattern)"/></svg>');
}

.price-card {
    background: rgba(255,255,255,0.12);
    border-radius: 30px;
    padding: 70px;
    text-align: center;
    border: 3px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(15px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.price-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.15);
    border-color: var(--primary-color);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.price-amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(221, 193, 49, 0.3);
}

.price-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price-description {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Dates Section */
.dates-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.dates-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dates-pattern" width="35" height="35" patternUnits="userSpaceOnUse"><circle cx="17.5" cy="17.5" r="1.5" fill="%2327ae60" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23dates-pattern)"/></svg>');
}

.date-card {
    background: white;
    border-radius: 30px;
    padding: 60px;
    margin-bottom: 50px;
    border-left: 8px solid var(--adventure-green);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.date-card:hover {
    transform: translateX(20px) translateY(-5px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
    border-left-color: var(--primary-color);
}

.date-month {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--adventure-green);
    margin-bottom: 1.5rem;
}

.date-dates {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.date-spots {
    font-size: 1.1rem;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Enhanced Gallery for Montego Bay */
.montego-gallery-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(248,249,250,0.8) 0%, rgba(255,255,255,0.9) 100%);
    position: relative;
}

.montego-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="montego-gallery-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23ddc131" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23montego-gallery-pattern)"/></svg>');
}

.montego-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.montego-gallery-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    background: white;
}

.montego-gallery-item:hover {
    transform: scale(1.08) translateY(-15px) rotate(1deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    border-color: var(--adventure-green);
}

.montego-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

/* Adventure Button */
.btn-adventure {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 20px 50px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(255,255,255,0.3);
    position: relative;
    z-index: 1;
}

.btn-adventure:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255,255,255,0.4);
    color: var(--adventure-green);
}

/* Montego Bay Adventure Introduction Styles */
.location-feature {
    padding: 20px;
}

.feature-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.included-features {
    padding: 20px;
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.05) 0%, rgba(46, 204, 113, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.2);
}

.feature-icon-large {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.3;
}

/* Responsive for Montego Bay */
@media (max-width: 768px) {
    .price-amount {
        font-size: 3rem;
    }
    
    .montego-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .date-card {
        padding: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px 15px;
    }
    
    .feature-icon-large {
        font-size: 2.5rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
}
