/* ==================== HERO SECTION WITH SLIDESHOW ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

/* Slideshow Container */
.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* Zoom animation for active slide */
.slide.active {
    animation: zoomIn 8s ease-in-out infinite;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.88) 0%, rgba(10, 22, 40, 0.45) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 5;
    pointer-events: none;
}

.slide-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.slide-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.35);
}

.slide-btn:active {
    transform: scale(0.95);
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot.active {
    background: var(--primary);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.dot.active:hover {
    background: var(--primary);
}

/* Hero Content - Keep your existing styles */
.hero-content {
    max-width: 720px;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(196, 30, 58, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(196, 30, 58, 0.2);
    backdrop-filter: blur(4px);
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
}

.stat-number .suffix {
    font-size: 1.6rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

/* ==================== RESPONSIVE FOR SLIDESHOW ==================== */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .slide-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: 80px 0 40px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 1.8rem;
    }
    
    .slideshow-controls {
        padding: 0 12px;
    }
    
    .slide-btn {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
    
    .slide-indicators {
        bottom: 24px;
        gap: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        justify-content: center;
    }
    
    .slide-btn {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
    }
    
    .slideshow-controls {
        padding: 0 8px;
    }
}
/* ==================== BIG 4 TILES ==================== */
.big-4 {
    padding: 80px 0 60px;
    background: var(--white);
}

.tiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tile {
    background: var(--off-white);
    padding: 36px 28px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.tile:hover::before {
    transform: scaleX(1);
}

.tile:hover {
    border-color: rgba(196, 30, 58, 0.2);
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.tile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(196, 30, 58, 0.10);
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 16px;
    transition: var(--transition);
}

.tile:hover .tile-icon {
    background: var(--primary);
    color: var(--white);
}

.tile h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
}

.tile p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.tile-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-size: 1rem;
    transition: var(--transition);
}

.tile:hover .tile-arrow {
    transform: translateX(6px);
}

/* ==================== SEATING SECTION ==================== */
.section-seating {
    background: var(--off-white);
}

.seating-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.seating-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.seating-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.seating-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.seating-card h4 {
    font-weight: 700;
    padding: 16px 20px 4px;
    color: var(--secondary);
}

.seating-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0 20px 20px;
    line-height: 1.6;
}

/* ==================== DECOR SECTION ==================== */
.section-decor {
    background: var(--white);
}

.decor-packages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.decor-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.decor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.decor-image {
    height: 160px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 12px;
}

.decor-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--secondary);
}

.decor-card h4 {
    font-weight: 700;
    padding: 16px 20px 4px;
    color: var(--secondary);
}

.decor-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0 20px 8px;
    line-height: 1.6;
}

.decor-card .price {
    display: block;
    font-weight: 700;
    color: var(--primary);
    padding: 0 20px 20px;
    font-size: 0.95rem;
}

/* ==================== SOUND SECTION ==================== */
.section-sound {
    background: var(--off-white);
}

.sound-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.sound-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.sound-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.sound-card i {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.sound-card h4 {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
}

.sound-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.sound-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.sound-guarantee i {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.sound-guarantee h4 {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.sound-guarantee p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ==================== EVENTS SECTION ==================== */
.section-events {
    background: var(--white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-card {
    background: var(--off-white);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.event-card:hover {
    border-color: rgba(196, 30, 58, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.event-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.event-card h4 {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.event-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ==================== TENT MAKING SECTION ==================== */
.section-tent {
    background: var(--secondary);
    color: var(--white);
}

.section-tent .section-tag {
    background: rgba(196, 30, 58, 0.2);
    color: var(--primary);
}

.tent-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tent-text h2 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.tent-text h2 span {
    color: var(--primary);
}

.tent-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.tent-text p strong {
    color: var(--white);
}

.tent-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    margin: 24px 0 32px;
}

.tent-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.tent-features i {
    color: var(--primary);
}

.tent-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.tent-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
}

.tent-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    background: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.testimonial-stars {
    color: #f5a623;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--secondary);
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ==================== TRUST BADGES ==================== */
.trust-badges {
    padding: 50px 0;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.badge i {
    font-size: 1.8rem;
    color: var(--primary);
}

.badge strong {
    display: block;
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 700;
}

.badge span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ==================== FINAL CTA ==================== */
.final-cta {
    padding: 80px 0;
    background: var(--secondary);
    text-align: center;
    border-top: 4px solid var(--primary);
}

.final-cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.final-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto 32px;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .seating-grid,
    .decor-packages,
    .sound-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tent-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tent-image img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: 80px 0 40px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .tiles-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .tile {
        padding: 24px 16px;
    }

    .tile-icon {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }

    .seating-grid,
    .decor-packages,
    .sound-grid,
    .events-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .badge {
        justify-content: flex-start;
    }

    .tent-features {
        grid-template-columns: 1fr;
    }

    .final-cta-content h2 {
        font-size: 2rem;
    }

    .sound-guarantee {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        justify-content: center;
    }

    .tiles-grid {
        grid-template-columns: 1fr;
    }

    .badges-grid {
        grid-template-columns: 1fr;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .final-cta-buttons .btn {
        justify-content: center;
    }

    .tent-image img {
        height: 200px;
    }

    .tent-image-badge {
        bottom: 12px;
        right: 12px;
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}