﻿/* ===== HOME PAGE SPECIFIC STYLES ===== */

/* Prevent horizontal scroll */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a2332 0%, #2563eb 100%);
    color: var(--color-white);
    padding: 4rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: livePulse 2s ease-in-out infinite;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(233, 229, 229, 0.3);
    color: white;
}

.hero-title .highlight {
    color: #fbbf24;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #c6eb25;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.countdown-timer {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    min-width: 80px;
}

.countdown-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    opacity: 0.8;
    margin-top: 0.5rem;
}

.event-live-message {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
    font-weight: 800;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
    animation: fadeIn 0.5s ease-out;
}

.live-indicator {
    width: 15px;
    height: 15px;
    background-color: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 10px #ef4444;
    animation: livePulse 1.5s infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Overview Cards */
.overview-section {
    padding: 4rem 1.5rem;
    background: var(--color-background);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.overview-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.overview-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overview-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.overview-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.overview-text {
    font-size: 0.938rem;
    color: var(--color-secondary);
}

/* Sports Grid */
.sports-section {
    padding: 4rem 1.5rem;
    background: transparent;
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 3rem;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sport-card {
    background: linear-gradient(135deg, var(--card-color) 0%, var(--card-color-dark) 100%);
    padding: 2rem;
    border-radius: 16px;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sport-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sport-card:hover::before {
    opacity: 1;
}

.sport-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.sport-card.volleyball {
    --card-color: #6366f1;
    --card-color-dark: #4f46e5;
}

.sport-card.kabaddi {
    --card-color: #dc2626;
    --card-color-dark: #b91c1c;
}

.sport-card.badminton {
    --card-color: #0891b2;
    --card-color-dark: #0e7490;
}

.sport-card.pickleball {
    --card-color: #059669;
    --card-color-dark: #047857;
}

.sport-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.sport-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sport-stats {
    display: flex;
    justify-content: space-around;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sport-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.sport-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.sport-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Event Information Section */
.event-info-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.info-header {
    text-align: center;
    margin-bottom: 4rem;
}

.info-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.info-tagline {
    font-size: 1.25rem;
    color: var(--color-secondary);
}

/* Key Details Grid */
.key-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.detail-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.highlight-card {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #2563eb, #6366f1) border-box;
}

.detail-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.detail-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.detail-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Registration Fees Section */
.fees-section {
    margin-bottom: 4rem;
}

.fees-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.fees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.fee-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--color-accent);
}

.fee-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.sport-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.fee-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-accent);
}

.fee-amount span {
    font-size: 0.875rem;
    color: var(--color-secondary);
    font-weight: 500;
    display: block;
    margin-top: 0.25rem;
}

/* Host Section / About SRKR */
.host-section {
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.host-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: #DC143C;
    font-weight: 600;
    margin-bottom: 3rem;
}

.host-content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.founder-image {
    text-align: center;
}

.founder-frame {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e3a8a 100%);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
}

.founder-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

.founder-placeholder {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    font-size: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.founder-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-top: 0.5rem;
}

.host-text-content {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 5px solid var(--color-accent);
}

.host-description p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-secondary);
    margin-bottom: 1.25rem;
    text-align: justify;
}

.host-location {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.host-location p {
    margin: 0 !important;
    font-size: 1rem !important;
}

/* Coordinators Section */
.coordinators-section {
    margin-bottom: 4rem;
}

.coordinators-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.coordinators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.coordinator-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.coord-type {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.coord-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.coord-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.coord-name {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.125rem;
}

.coord-phone {
    color: var(--color-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.coord-phone:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}

/* Social Actions */
.social-actions {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e3a8a 100%);
    padding: 3rem;
    border-radius: 16px;
    color: white;
}

.social-links {
    margin-bottom: 2rem;
}

.social-links h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.action-btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.action-btn.primary {
    background: #fbbf24;
    color: var(--color-primary);
}

.action-btn.primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.action-btn.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
}

.action-btn.secondary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* About SRKR College Section */
.about-college-section {
    padding: 5rem 1.5rem;
    background: white;
}

.about-college-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.about-subtitle {
    font-size: 1.5rem;
    color: #DC143C;
    font-weight: 600;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.founder-image {
    text-align: center;
}

.founder-frame {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e3a8a 100%);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
}

.founder-placeholder {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    font-size: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.founder-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-top: 0.5rem;
}

.about-text-content {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 5px solid var(--color-accent);
}

.about-description p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-secondary);
    margin-bottom: 1.25rem;
    text-align: justify;
}

.highlight-text {
    font-weight: 600;
    color: var(--color-primary) !important;
    font-size: 1.125rem !important;
}

.college-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.highlight-icon {
    font-size: 2.5rem;
}

.highlight-info {
    display: flex;
    flex-direction: column;
}

.highlight-label {
    font-size: 0.875rem;
    color: var(--color-secondary);
    font-weight: 500;
}

.highlight-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-accent);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.read-more-btn:hover {
    background: #1d4ed8;
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-header h2 {
        font-size: 2rem;
    }

    .key-details-grid {
        grid-template-columns: 1fr;
    }

    .fees-grid {
        grid-template-columns: 1fr;
    }

    .host-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .coordinators-grid {
        grid-template-columns: 1fr;
    }

    .host-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-frame {
        max-width: 250px;
        margin: 0 auto;
    }

    .founder-placeholder {
        padding: 2rem;
        min-height: 200px;
        font-size: 4rem;
    }

    .host-description p {
        text-align: left;
    }

    .social-buttons {
        flex-direction: column;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
        justify-content: center;
    }

    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-frame {
        max-width: 250px;
        margin: 0 auto;
    }

    .founder-placeholder {
        padding: 2rem;
        min-height: 200px;
        font-size: 4rem;
    }

    .college-highlights {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .about-description p {
        text-align: left;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .countdown-timer {
        gap: 0.75rem;
    }

    .countdown-item {
        padding: 0.75rem 1rem;
        min-width: 60px;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .why-container {
        grid-template-columns: 1fr;
    }

    .why-image {
        min-height: 250px;
        order: -1;
    }

    .section-title-center {
        font-size: 1.875rem;
    }
}

/* ===== IMAGE CAROUSEL ===== */
.carousel-section {
    position: relative;
    width: 100%;
    height: 820px;
    overflow: hidden;
    background: #000;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    background: #000;
}

/* Hero Slide Specific Styles */
.carousel-slide.hero-slide {
    background: linear-gradient(135deg, #1a2332 0%, #2563eb 100%);
    overflow: hidden;
}

.carousel-slide.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}


.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .carousel-section {
        height: auto;
        min-height: auto;
        aspect-ratio: 16 / 9;
    }

    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover !important;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-nav.prev {
        left: 10px;
    }

    .carousel-nav.next {
        right: 10px;
    }

    .carousel-overlay {
        bottom: 60px;
    }

    .carousel-cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .hero-slide {
        padding: 0.5rem;
    }

    .hero-content {
        transform: scale(0.85);
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .hero-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.6rem;
        margin-bottom: 0.25rem;
    }

    .hero-title {
        font-size: 1.2rem;
        margin-bottom: 0.2rem;
        line-height: 1.1;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-align: center;
        max-width: 90%;
    }

    .hero-cta {
        flex-direction: row;
        gap: 0.5rem;
        margin-bottom: 0;
    }

    .cta-btn {
        width: auto;
        padding: 0.35rem 0.7rem;
        font-size: 0.7rem;
    }

    /* Hide countdown on small mobile screens to save space */
    .countdown-timer {
        display: none;
    }
}