/* Home Page Specific Styles */

/* Updated Hero Container with better spacing for floating nav */
.hero-container {
    margin: 20px;
    margin-top: 10px;
    position: relative;
    height: calc(100vh - 50px);
    min-height: 600px; /* Increased from 550px */
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 24px;
    overflow: hidden;
}

/* Subtract Image Div */
.hero-subtract-image {
    position: absolute;
    bottom: -1px;
    left: -1px;
    width: auto;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.hero-subtract-image img {
    display: block;
    width: auto;
    height: auto;
    max-width: 300px;
    max-height: 200px;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Hero bottom text positioning */
.hero-container .hero-bottom-text {
    position: absolute;
    bottom: 20px;
    left: 15px;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 210px;
    width: 210px;
    pointer-events: none;
    flex-direction: row-reverse;
}

.hero-container .hero-bottom-icon {
    position: relative;
    width: 28px;
    height: 28px;
    background: #BAF631;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    top: -10px;
    left: -15px;
    box-shadow: 0 2px 10px rgba(186, 246, 49, 0.4);
}

.hero-container .hero-bottom-text-content {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    color: #ffffff;
    text-align: left;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-placeholder-image {
    position: absolute;
    bottom: 10%;
    right: 8%;
    width: 280px;
    height: 200px;
    background: linear-gradient(135deg, #BAF631 0%, #9FD928 100%);
    border-radius: 20px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(186, 246, 49, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.hero-placeholder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f0f0f0"/><circle cx="50" cy="40" r="15" fill="%23ddd"/><path d="M20 70 L35 55 L50 70 L65 55 L80 70 L80 85 L20 85 Z" fill="%23ddd"/></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
}

.hero-placeholder-text {
    position: relative;
    z-index: 6;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Updated hero content positioning */
.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 500px;
    padding: 3.5rem 2.5rem; /* Increased top padding */
    padding-top: 4.5rem; /* Extra top padding for desktop */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .hero-container {
        margin: 10px;
        margin-top: 20px;
        height: auto;
        min-height: 85vh; /* Increased for mobile */
        border-radius: 20px;
    }
    
    .hero-content {
        padding: 3rem 2.5rem;
        padding-top: 4rem; /* More top padding on mobile */
        min-height: 85vh;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-price {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-showcase {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-container {
        min-height: 90vh; /* Even taller on very small screens */
    }
    
    .hero-content {
        padding: 2.5rem 2rem;
        padding-top: 4rem; /* Maintain top spacing */
        min-height: 90vh;
    }
    
    .hero-container .hero-bottom-text {
        display: none;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
}

@media (min-width: 1400px) {
    .hero-content {
        max-width: 550px;
        padding: 5rem 2.5rem;
        padding-top: 6rem; /* Extra space for large screens */
    }
    
    .hero-title {
        font-size: 4rem;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    font-weight: 400;
    max-width: 400px;
}

.hero-price {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.85;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    background: #BAF631;
    color: #333;
    padding: 0.5rem 1.8rem;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(186, 246, 49, 0.4);
    align-self: flex-start;
    border: 2px solid transparent;
}

.hero-cta:hover {
    background: transparent;
    color: #BAF631;
    border-color: #BAF631;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(186, 246, 49, 0.3);
    text-decoration: none;
}

.hero-showcase {
    position: absolute;
    bottom: 5%;
    right: 8%;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    max-width: 240px;
}

.showcase-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 1rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    text-align: center;
}

.showcase-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.showcase-icon {
    width: 32px;
    height: 32px;
    background: #BAF631;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1rem;
    margin: 0 auto 0.6rem;
}

.showcase-text {
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
    .hero-container {
        margin: 10px;
        margin-top: 20px;
        height: auto;
        min-height: 80vh;
        border-radius: 20px;
    }
    
    .hero-subtract-image {
        display: none;
    }
    
    .hero-container .hero-bottom-text {
        display: none;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-price {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-showcase {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-container .hero-bottom-text {
        display: none;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
}

@media (min-width: 1400px) {
    .hero-content {
        max-width: 550px;
        padding: 5rem 2.5rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
}

/* Content sections styling */
.content-sections {
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.section-container {
    margin: 20px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

/* Orange section */
.orange-section {
    background: #FF6B35;
    color: white;
    height: 480px;
    display: flex;
    overflow: hidden;
    border-radius: 24px;
}

.orange-section .section-content {
    flex: 0 0 30%;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.orange-section .section-badge {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.2rem;
    width: fit-content;
}

.orange-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.3rem;
}

.orange-section .section-price {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.orange-section .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    opacity: 0.9;
    line-height: 1.4;
}

.orange-section .section-designer {
    font-size: 0.85rem;
    margin-bottom: 2rem;
    opacity: 0.7;
    font-weight: 500;
}

.orange-section .section-cta {
    background: transparent;
    color: white;
    padding: 0.8rem 1.6rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.orange-section .section-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.orange-section .section-image-container {
    flex: 0 0 70%;
    background: #e8e8e8;
    padding: 0;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.orange-section .section-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

/* Green inverted section */
.green-section {
    background: #f5f5f5;
    color: white;
    height: 480px;
    display: flex;
    overflow: hidden;
    border-radius: 24px;
}

.green-section .section-image-container {
    flex: 0 0 60%;
    background: #e8e8e8;
    padding: 0;
    position: relative;
    height: 100%;
    overflow: hidden;
    order: 1;
}

.green-section .section-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

.green-section .section-content {
    flex: 0 0 40%;
    padding: 0;
    display: flex;
    flex-direction: column;
    z-index: 2;
    position: relative;
    order: 2;
    height: 100%;
}

.green-section .section-content-top {
    flex: 0 0 280px;
    padding: 2rem 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
    background: #C8FF00;
    margin: 0;
    color: #333;
    z-index: 3;
    min-height: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.green-section .section-content-bottom {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0;
    overflow: hidden;
    height: 100%;
    min-height: 0;
    align-items: stretch;
    margin-top: -20px;
}

.green-section .bottom-image-left {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: block;
    flex: 1;
}

.green-section .bottom-image-right {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: block;
    flex: 1;
}

.green-section .section-badge {
    background: #333;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
    width: fit-content;
}

.green-section .section-title {
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.3rem;
    color: #333;
}

.green-section .section-price {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.green-section .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: #333;
}

.green-section .section-designer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
}

.green-section .section-designer {
    font-size: 0.8rem;
    margin-bottom: 0;
    font-weight: 500;
    color: #333;
    display: inline-block;
}

.green-section .section-cta {
    background: #333;
    color: #C8FF00;
    padding: 0.4rem 1.2rem;
    border: 2px solid #333;
    border-radius: 35px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    width: fit-content;
    margin: 0;
    flex-shrink: 0;
}

.green-section .section-cta:hover {
    background: #C8FF00;
    color: #333;
    border-color: #333;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Blue section - Lloret de Mar with proper overlay */
.blue-section {
    color: white;
    min-height: 480px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

/* Dynamic background image from data attribute */
.blue-section[data-bg-image] {
    background-image: var(--bg-image);
}

/* Overlay using ::before pseudo-element */
.blue-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Gradient overlay from black 100% opacity to transparent */
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 1) 0%,     /* Black 100% opacity */
        rgba(0, 0, 0, 0.7) 40%,   /* Fade to 70% */
        rgba(0, 0, 0, 0.2) 70%,   /* Fade to 20% */
        rgba(0, 0, 0, 0) 100%     /* Completely transparent */
    );
    z-index: 1;
    pointer-events: none;
}

/* Decorative pattern overlay */
.blue-section::after {
    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"><path d="M20,20 Q50,5 80,20 Q85,50 80,80 Q50,95 20,80 Q5,50 20,20" fill="rgba(255,255,255,0.02)"/></svg>') repeat;
    background-size: 150px 150px;
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.blue-section .section-content {
    padding: 3.5rem 3rem;
    max-width: 100%;
    z-index: 2;
    position: relative;
    text-align: left;
}

.blue-section .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Split title styling */
.blue-section .section-title {
    margin-bottom: 1rem;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.blue-section .section-title .main-title {
    font-size: 3.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.blue-section .section-title .subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    color: #BAF631;
    display: block;
    margin-top: 0.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.blue-section .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    text-align: left;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Desktop: 4 columns */
.blue-section .lloret-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 900px;
}

.lloret-feature {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 1.5rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
    transition: all 0.3s ease;
}

.lloret-feature:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.lloret-feature-icon {
    width: 45px;
    height: 45px;
    background: #BAF631;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.2rem;
    margin: 0 0 0.8rem 0;
    box-shadow: 0 4px 15px rgba(186, 246, 49, 0.3);
}

.lloret-feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.lloret-feature p {
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1.3;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.blue-section .section-cta {
    background: #BAF631;
    color: #333;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(186, 246, 49, 0.4);
    margin-top: 1.5rem;
}

.blue-section .section-cta:hover {
    background: #A8E02C;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(186, 246, 49, 0.5);
    text-decoration: none;
}

/* Tablet: 2 columns */
@media (max-width: 1024px) {
    .blue-section .lloret-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

/* Mobile: Stack features (1 column) */
@media (max-width: 900px) {
    .blue-section .section-content {
        padding: 3rem 2rem;
        max-width: 100%;
    }

    .blue-section .section-title .main-title {
        font-size: 2.4rem;
    }

    .blue-section .section-title .subtitle {
        font-size: 1.4rem;
    }

    .blue-section .section-subtitle {
        max-width: 100%;
        text-align: left;
    }

    /* FORCE single column on mobile */
    .blue-section .lloret-features {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .lloret-feature {
        padding: 1.2rem 1rem;
        text-align: left;
        width: 100%;
        max-width: none;
    }

    .lloret-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0 0 0.6rem 0;
    }
}

/* Very small mobile */
@media (max-width: 480px) {
    .blue-section .section-content {
        padding: 3rem 1.5rem;
    }

    .blue-section .section-title .main-title {
        font-size: 2rem;
    }

    .blue-section .section-title .subtitle {
        font-size: 1.2rem;
    }

    .blue-section .lloret-features {
        grid-template-columns: 1fr !important;
        gap: 0.8rem;
    }

    .lloret-feature {
        padding: 1rem 0.8rem;
    }
}

/* Featured Packs Section - Dark Theme */
.featured-packs-section {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    padding: 5rem 3rem;
    margin: 20px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.featured-packs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(186, 246, 49, 0.03) 0%, transparent 70%),
                radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.featured-packs-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.featured-packs-header .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #BAF631 0%, #A8E02C 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.featured-packs-header .section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.featured-packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

/* Pack cards styling to match packs page */
.featured-packs-section .pack-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.featured-packs-section .pack-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.featured-packs-section .pack-card.featured {
    border: 2px solid #C8FF00;
    transform: scale(1.02);
}

.featured-packs-section .pack-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #C8FF00;
    color: #333;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 15px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
}

.featured-packs-section .pack-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.featured-packs-section .pack-level-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-packs-section .pack-content {
    padding: 2rem;
}

.featured-packs-section .pack-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.featured-packs-section .pack-subtitle {
    color: #C8FF00;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.featured-packs-section .pack-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.featured-packs-section .pack-features {
    margin-bottom: 2rem;
}

.featured-packs-section .pack-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.featured-packs-section .pack-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.featured-packs-section .pack-feature i {
    color: #C8FF00;
    font-size: 0.9rem;
}

.featured-packs-section .pack-pricing {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.featured-packs-section .pack-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.featured-packs-section .pack-price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #C8FF00;
    line-height: 1;
}

.featured-packs-section .pack-price-period {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.featured-packs-section .pack-cta {
    background: #C8FF00;
    color: #333;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.featured-packs-section .pack-cta:hover {
    background: #BAF631;
    color: #333;
    text-decoration: none;
    transform: translateY(-2px);
}

.packs-cta-section {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.cta-button {
    background: linear-gradient(135deg, #BAF631 0%, #A8E02C 100%);
    color: #333;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 20px rgba(186, 246, 49, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(186, 246, 49, 0.3);
    text-decoration: none;
    color: #333;
}

/* Updated Stats section - Green background with black text */
.stats-section {
    background: linear-gradient(135deg, #BAF631 0%, #C8FF00 100%);
    color: #333;
    padding: 4rem 3rem;
    min-height: auto;
    position: relative;
    overflow: hidden;
}

/* Add subtle pattern overlay for texture */
.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"><circle cx="50" cy="50" r="2" fill="rgba(0,0,0,0.05)"/><circle cx="20" cy="20" r="1" fill="rgba(0,0,0,0.03)"/><circle cx="80" cy="30" r="1.5" fill="rgba(0,0,0,0.04)"/><circle cx="30" cy="80" r="1" fill="rgba(0,0,0,0.03)"/><circle cx="70" cy="70" r="1.5" fill="rgba(0,0,0,0.04)"/></svg>') repeat;
    background-size: 80px 80px;
    opacity: 0.6;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stats-section .stat-item .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.stats-section .stat-item .stat-label {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

/* New Sponsors Section */
.sponsors-section {
    background: #0a0807;
    padding: 3rem 3rem;
    margin: 20px;
    margin-top: 0;
    border-radius: 0 0 24px 24px;
    position: relative;
    overflow: hidden;
}

.sponsors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
}

.sponsors-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.sponsors-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sponsors-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 3rem;
    font-weight: 400;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.5rem;
    transition: all 0.3s ease;
    min-height: 60px;
}

.sponsor-item:hover {
    transform: translateY(-2px);
}

.sponsor-logo {
    max-width: 120px;
    max-height: 50px;
    width: auto;
    height: auto;
    opacity: 0.4;
    filter: grayscale(100%) brightness(1.1);
    transition: all 0.3s ease;
}

.sponsor-item:hover .sponsor-logo {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

/* Placeholder for sponsor logos when no image is available */
.sponsor-placeholder {
    width: 120px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.sponsor-item:hover .sponsor-placeholder {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .stats-section {
        padding: 3rem 2rem;
    }

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

    .stats-section .stat-item .stat-number {
        font-size: 2.5rem;
    }

    .sponsors-section {
        padding: 2.5rem 2rem;
        margin: 10px;
        margin-top: 0;
        border-radius: 0 0 20px 20px;
    }

    .sponsors-title {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .sponsors-subtitle {
        margin-bottom: 2rem;
    }

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

    .sponsor-item {
        padding: 0.8rem 0.4rem;
        min-height: 50px;
    }

    .sponsor-logo {
        max-width: 100px;
        max-height: 40px;
    }

    .sponsor-placeholder {
        width: 100px;
        height: 40px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sponsors-section {
        padding: 2rem 1.5rem;
        margin: 8px;
        margin-top: 0;
        border-radius: 0 0 18px 18px;
    }

    .sponsors-title {
        font-size: 1.3rem;
    }

    .sponsors-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .sponsor-item {
        padding: 1rem 0.5rem;
        min-height: 60px;
    }

    .sponsor-logo {
        max-width: 90px;
        max-height: 35px;
    }

    .sponsor-placeholder {
        width: 90px;
        height: 35px;
        font-size: 0.65rem;
    }
}

/* ============================================
   PADEL & GO EXPERIENCE SECTION - FIXED VERSION
   More compact desktop, responsive mobile
   ============================================ */

/* Main Experience Section Container */
.experience-section {
    margin: 20px;
}

/* Experience Container - Flexbox Layout */
.experience-container {
    display: flex;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    min-height: 420px;
    max-height: 550px;
}

/* Left Side - Images (40% width) */
.experience-images {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.experience-image-top,
.experience-image-bottom {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.experience-image-top {
    border-bottom: 2px solid #fff;
}

.experience-image-top img,
.experience-image-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

/* Right Side - Content (60% width) */
.experience-content {
    flex: 0 0 60%;
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

/* Badge */
.experience-badge {
    background: #BAF631;
    color: #1a1a1a;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 1rem;
}

/* Title */
.experience-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.experience-title .title-highlight {
    color: #BAF631;
    font-size: 2.7rem;
    display: block;
}

/* Description Text */
.experience-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0.8rem;
}

.experience-subdescription {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Stats Grid */
.experience-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: #BAF631;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.3;
    margin-top: 0.2rem;
}

/* ============================================
   RESPONSIVE - TABLET (768px - 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .experience-content {
        padding: 2.5rem 2.5rem;
    }

    .experience-title {
        font-size: 2.2rem;
    }

    .experience-title .title-highlight {
        font-size: 2.4rem;
    }

    .experience-description {
        font-size: 0.9rem;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (below 768px)
   Stack vertically, white content visible
   ============================================ */
@media (max-width: 768px) {
    .experience-section {
        margin: 10px;
    }

    .experience-container {
        flex-direction: column;
        min-height: auto;
        max-height: none;
    }

    /* Images on top - Fixed height */
    .experience-images {
        flex: none;
        height: 280px;
        flex-direction: row;
    }

    .experience-image-top {
        border-bottom: none;
        border-right: 2px solid #fff;
    }

    /* Content below - Auto height, fully visible */
    .experience-content {
        flex: none;
        padding: 2.5rem 2rem;
    }

    .experience-title {
        font-size: 2rem;
    }

    .experience-title .title-highlight {
        font-size: 2.2rem;
    }

    .experience-description {
        font-size: 0.9rem;
        margin-bottom: 0.7rem;
    }

    .experience-subdescription {
        font-size: 0.85rem;
        margin-bottom: 1.3rem;
    }

    .experience-stats {
        gap: 1rem;
    }

    .stat-value {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (below 480px)
   ============================================ */
@media (max-width: 480px) {
    .experience-section {
        margin: 8px;
    }

    .experience-container {
        border-radius: 20px;
    }

    /* Smaller image height on very small screens */
    .experience-images {
        height: 200px;
        flex-direction: column;
    }

    .experience-image-top {
        border-right: none;
        border-bottom: 2px solid #fff;
    }

    /* More compact content padding */
    .experience-content {
        padding: 2rem 1.5rem;
    }

    .experience-badge {
        font-size: 0.7rem;
        padding: 0.35rem 1rem;
    }

    .experience-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .experience-title .title-highlight {
        font-size: 2rem;
    }

    .experience-description {
        font-size: 0.85rem;
    }

    .experience-subdescription {
        font-size: 0.8rem;
    }

    /* Stack stats vertically on very small screens for better readability */
    .experience-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .stat-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .stat-value {
        font-size: 1.1rem;
    }
}

/* ============================================
   RESPONSIVE - LARGE DESKTOP (above 1400px)
   ============================================ */
@media (min-width: 1400px) {
    .experience-content {
        padding: 3rem 3.5rem;
    }

    .experience-title {
        font-size: 2.8rem;
    }

    .experience-title .title-highlight {
        font-size: 3rem;
    }

    .experience-description {
        font-size: 1rem;
    }
}

/* Mobile responsive improvements */
@media (max-width: 768px) {
    .orange-section {
        flex-direction: column;
        height: auto;
        background: #FF6B35;
        padding: 0;
    }

    .orange-section .section-image-container {
        flex: none;
        order: -1;
        padding: 0;
        background: #e8e8e8;
        width: calc(100% + 20px);
        margin: 0 -10px;
        border-radius: 0;
        height: 280px;
        overflow: hidden;
    }

    .orange-section .section-image {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        margin: 0;
        max-width: none;
    }

    .orange-section .section-content {
        padding: 2.5rem 2rem;
        max-width: 100%;
        text-align: left;
        flex: none;
        order: 1;
        background: #FF6B35;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .green-section {
        flex-direction: column;
        height: auto;
        background: #C8FF00;
        padding: 0;
    }

    .green-section .section-image-container {
        flex: none;
        order: -1;
        padding: 0;
        background: #e8e8e8;
        width: calc(100% + 20px);
        margin: 0 -10px;
        border-radius: 0;
        height: 280px;
        overflow: hidden;
    }

    .green-section .section-content {
        padding: 0;
        max-width: 100%;
        text-align: left;
        flex: none;
        order: 1;
        display: flex;
        flex-direction: column;
        background: #C8FF00;
        height: auto;
    }

    .green-section .section-content-top {
        padding: 2rem 2rem 2.5rem 2rem;
        margin-bottom: 0;
        border-radius: 0;
        flex: none;
        background: #C8FF00;
        width: 100%;
        box-sizing: border-box;
    }

    .green-section .section-content-bottom {
        display: none;
    }

    .green-section .section-designer-wrapper {
        display: block;
    }

    .blue-section .section-content {
        padding: 4rem 2rem;
        max-width: 100%;
        text-align: left;
    }

    .blue-section .section-title {
        font-size: 2.8rem;
    }

    .lloret-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .featured-packs-section {
        padding: 4rem 2rem;
        margin: 10px;
        border-radius: 20px;
    }

    .featured-packs-header .section-title {
        font-size: 2.5rem;
    }

    .featured-packs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-section {
        padding: 3rem 2rem;
    }

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

    .stat-item .stat-number {
        font-size: 2.5rem;
    }

    .experience-container {
        flex-direction: column;
        min-height: auto;
    }

    .experience-images {
        flex: none;
        height: 400px;
        flex-direction: row;
    }

    .experience-image-top {
        border-bottom: none;
        border-right: 2px solid #fff;
    }

    .experience-content {
        flex: none;
        padding: 3rem 2.5rem;
    }

    .experience-title {
        font-size: 2.5rem;
    }

    .experience-title .title-highlight {
        font-size: 2.7rem;
    }
}

@media (max-width: 480px) {
    .orange-section .section-image-container {
        height: 240px;
        width: calc(100% + 16px);
        margin: 0 -8px;
        border-radius: 0;
        overflow: hidden;
    }

    .green-section .section-image-container {
        width: calc(100% + 16px);
        margin: 0 -8px;
        height: 240px;
    }

    .blue-section .section-content {
        padding: 3rem 1.5rem;
    }

    .blue-section .section-title {
        font-size: 2.2rem;
    }

    .featured-packs-section {
        padding: 3rem 1.5rem;
        margin: 8px;
        border-radius: 18px;
    }

    .featured-packs-header .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .experience-section {
        margin: 8px;
    }

    .experience-container {
        border-radius: 18px;
    }

    .experience-images {
        height: 250px;
        flex-direction: column;
    }

    .experience-image-top {
        border-right: none;
        border-bottom: 2px solid #fff;
    }

    .experience-content {
        padding: 2rem 1.5rem;
    }

    .experience-title {
        font-size: 1.9rem;
    }

    .experience-title .title-highlight {
        font-size: 2.1rem;
    }

    .experience-badge {
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .stat-value {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}
/* ============================================
   TOP COACHES SECTION STYLES
   Add this to your index.css file
   ============================================ */

/* White section for coaches */
.white-section.coaches-section {
    background: #ffffff;
    color: #333;
    height: 480px;
    display: flex;
    overflow: hidden;
    border-radius: 24px;
}

/* Image container - 40% width on left */
.white-section.coaches-section .section-image-container {
    flex: 0 0 40%;
    background: #e8e8e8;
    padding: 0;
    position: relative;
    height: 100%;
    overflow: hidden;
    order: 1;
}

.white-section.coaches-section .section-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

/* Content area - 60% width on right */
.white-section.coaches-section .section-content {
    flex: 0 0 60%;
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative;
    order: 2;
    background: #ffffff;
}

/* Badge styling */
.white-section.coaches-section .section-badge {
    background: #333;
    color: #BAF631;
    padding: 0.4rem 1rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    width: fit-content;
}

/* Title styling */
.white-section.coaches-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    color: #333;
}

/* Subtitle styling */
.white-section.coaches-section .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #666;
    max-width: 500px;
}

/* CTA Button styling */
.white-section.coaches-section .section-cta {
    background: #333;
    color: #BAF631;
    padding: 0.8rem 2rem;
    border: 2px solid #333;
    border-radius: 35px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.white-section.coaches-section .section-cta:hover {
    background: #BAF631;
    color: #333;
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */
@media (max-width: 1024px) {
    .white-section.coaches-section .section-content {
        padding: 3rem 2.5rem;
    }

    .white-section.coaches-section .section-title {
        font-size: 2.5rem;
    }

    .white-section.coaches-section .section-subtitle {
        font-size: 1rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */
@media (max-width: 900px) {
    /* Stack vertically on mobile */
    .white-section.coaches-section {
        flex-direction: column;
        height: auto;
        min-height: 500px;
    }

    /* Image on top - 40% height */
    .white-section.coaches-section .section-image-container {
        flex: 0 0 40%;
        min-height: 250px;
        order: 1;
    }

    /* Content below - 60% */
    .white-section.coaches-section .section-content {
        flex: 0 0 60%;
        order: 2;
        padding: 2.5rem 2rem;
    }

    .white-section.coaches-section .section-title {
        font-size: 2.2rem;
    }

    .white-section.coaches-section .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .white-section.coaches-section .section-cta {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .white-section.coaches-section {
        min-height: 450px;
    }

    .white-section.coaches-section .section-image-container {
        min-height: 200px;
    }

    .white-section.coaches-section .section-content {
        padding: 2rem 1.5rem;
    }

    .white-section.coaches-section .section-title {
        font-size: 1.9rem;
        margin-bottom: 1rem;
    }

    .white-section.coaches-section .section-subtitle {
        font-size: 0.9rem;
    }
}


