/* Component-specific Styles for Savan Sangham 2.0 Web Campaign */

/* 1. Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 140px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(194, 24, 91, 0.08), transparent 50%),
                radial-gradient(circle at bottom left, rgba(200, 150, 42, 0.08), transparent 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-title-badge {
    align-self: flex-start;
    background: rgba(139, 26, 74, 0.08);
    color: var(--primary);
    border: 1px solid var(--glass-border);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--primary);
}

.hero-content h1 span {
    color: var(--gold);
    display: block;
    font-size: 2.2rem;
    margin-top: 5px;
}

.hero-tagline {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.hero-poster-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-poster-frame {
    width: 100%;
    max-width: 420px;
    background: var(--white);
    padding: 16px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(139, 26, 74, 0.2);
    border: 1px solid rgba(200, 150, 42, 0.2);
    transform: rotate(2deg);
    transition: var(--transition);
}

.hero-poster-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-poster-frame img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* 2. Countdown Timer */
.countdown-container {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    margin-bottom: 24px;
}

.countdown-box {
    background: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    width: 75px;
    height: 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--card-shadow);
}

.countdown-box .time {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.countdown-box .label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* 3. Details / Keypoints Section */
.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.detail-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.detail-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(139, 26, 74, 0.06);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.detail-card:hover .detail-icon-circle {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.detail-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
}

.detail-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.dress-code-banner {
    margin-top: 48px;
    background: linear-gradient(135deg, rgba(139, 26, 74, 0.95) 0%, rgba(194, 24, 91, 0.95) 100%);
    color: var(--white);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 26, 74, 0.25);
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.dress-code-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(200, 150, 42, 0.15), transparent 70%);
}

.dress-code-title {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.dress-code-desc {
    font-size: 2rem;
    font-weight: 700;
}

/* 4. Events & Stalls Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    text-align: center;
    padding: 32px 24px;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.event-card .icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--blush);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.event-card:hover .icon-wrapper {
    background: var(--primary);
    color: var(--white);
}

.event-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.event-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Testimonials Marquee */
.testimonials-section {
    overflow: hidden;
}

.testimonials-section .section-header {
    margin-bottom: 36px;
}

.testimonials-marquee {
    width: 100%;
    overflow: hidden;
    padding: 8px 0 12px;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.testimonials-track {
    display: flex;
    align-items: stretch;
    gap: 20px;
    width: max-content;
    animation: testimonials-scroll 35s linear infinite;
    will-change: transform;
}

.testimonials-marquee:hover .testimonials-track {
    animation-play-state: paused;
}

@keyframes testimonials-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    flex: 0 0 auto;
    width: min(340px, 82vw);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    color: var(--gold);
    margin-bottom: 12px;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.testimonial-quote {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-grow: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .testimonials-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 12px;
    }

    .testimonials-marquee {
        -webkit-mask-image: none;
        mask-image: none;
    }

    .testimonial-card[aria-hidden="true"] {
        display: none;
    }
}

/* Stalls Specific Grid & Circle Layout */
.stalls-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stall-card {
    text-align: center;
}

.stall-img-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 16px;
    border: 3px solid var(--gold);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    background: var(--white);
}

.stall-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.stall-card:hover .stall-img-circle {
    transform: rotate(5deg) scale(1.05);
    border-color: var(--primary);
}

.stall-card:hover img {
    transform: scale(1.15);
}

.stall-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
}

/* 5. Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    border: 2px solid var(--glass-border);
    padding: 39px 31px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.pricing-card.active-card {
    border-color: var(--gold);
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(200, 150, 42, 0.15);
}

.pricing-card.active-card:hover {
    transform: translateY(-5px) scale(1.03);
}

.pricing-card.featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gold-gradient);
    color: var(--text-dark);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 35px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.pricing-header h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: baseline;
    margin-bottom: 12px;
}

.pricing-price span {
    font-size: 1.5rem;
    font-weight: 500;
    margin-right: 4px;
}

.pricing-seats {
    font-size: 0.85rem;
    color: var(--primary-light);
    font-weight: 600;
    background: rgba(194, 24, 91, 0.08);
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 24px;
}

.pricing-card.vip .pricing-seats {
    color: #b8860b;
    background: rgba(200, 150, 42, 0.12);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-features li svg {
    color: var(--primary-light);
    flex-shrink: 0;
}

.pricing-card.featured .pricing-features li svg {
    color: var(--gold);
}

/* 6. Organizer Cards */
.organizers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.organizer-card {
    display: flex;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.organizer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 26, 74, 0.12);
    border-color: rgba(139, 26, 74, 0.25);
}

.organizer-img-wrapper {
    width: 180px;
    flex-shrink: 0;
    position: relative;
    background: var(--blush);
}

.organizer-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.organizer-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.organizer-info h3 {
    font-size: 1.4rem;
    color: var(--primary);
}

.organizer-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.organizer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.organizer-contact {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

.organizer-contact:hover {
    color: var(--primary-light);
}

/* 7. Live Map Section */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: stretch;
}

.map-container {
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    height: 450px;
    background: var(--white);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 8. Registration & Payment Form Card */
.payment-flow-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--blush);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.1);
    background: var(--white);
}

/* Photo Upload Block */
.photo-upload-wrapper {
    border: 2px dashed var(--glass-border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    background: var(--blush);
    transition: var(--transition);
    position: relative;
}

.photo-upload-wrapper:hover {
    border-color: var(--primary-light);
    background: var(--white);
}

.photo-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    cursor: pointer;
}

.photo-preview {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 10px auto 0;
    border: 2px solid var(--gold);
    display: none;
}

/* QR Code Section */
.qr-payment-wrapper {
    text-align: center;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    background: var(--blush);
    margin-bottom: 24px;
}

.qr-code-img {
    width: 200px;
    height: 200px;
    margin: 0 auto 16px;
    background: var(--white);
    padding: 8px;
    border-radius: 12px;
    border: 2px solid var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-code-img img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.upi-id-box {
    background: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: monospace;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.copy-btn {
    border: none;
    background: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

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

/* 9. Printable Digital Ticket Pass */
.pass-viewport-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
    padding: 10px;
}

.ticket-pass {
    width: 100%;
    max-width: 380px;
    min-height: 620px;
    background-color: #4A0E2E;
    background-image: url('../assets/pass%20background.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    color: var(--white);
    border-radius: 20px;
    border: 2px solid var(--gold);
    box-shadow: 0 25px 60px rgba(41, 7, 26, 0.45);
    position: relative;
    overflow: hidden;
    user-select: none;
    display: flex;
    flex-direction: column;
}

/* Soft overlay so attendee details stay readable on the artwork */
.ticket-pass::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(45, 8, 25, 0.15) 0%,
        rgba(45, 8, 25, 0.35) 42%,
        rgba(45, 8, 25, 0.55) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Hide legacy ticket perforation styling */
.ticket-pass::before,
.ticket-pass-right-cut,
.ticket-divider {
    display: none;
}

.ticket-header {
    padding: 28px 20px 18px;
    text-align: center;
    border-bottom: 1px solid rgba(200, 150, 42, 0.25);
    position: relative;
    z-index: 2;
}

.ticket-header h2 {
    font-size: 1.55rem;
    color: var(--gold-light);
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.ticket-header p {
    font-family: 'Dancing Script', cursive;
    color: var(--gold);
    font-size: 1.2rem;
}

.ticket-body {
    padding: 20px 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.ticket-photo-frame {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3.5px solid var(--gold);
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.ticket-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ticket-info {
    width: 100%;
}

.ticket-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.ticket-phone {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.ticket-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gold-gradient);
    color: var(--text-dark);
}

.ticket-badge.vip {
    background: linear-gradient(135deg, #FFE082 0%, #D4AF37 50%, #AA7C11 100%);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.ticket-badge.regular {
    background: var(--primary-light);
    color: var(--white);
}

.ticket-footer {
    padding: 16px 20px 24px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.ticket-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 12px;
    text-align: left;
    background: rgba(45, 8, 25, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(200, 150, 42, 0.35);
}

.ticket-detail-item .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

.ticket-detail-item .val {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}

.ticket-qr-wrapper {
    background: var(--white);
    padding: 8px;
    border-radius: 12px;
    width: 110px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.ticket-id {
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--gold-light);
    letter-spacing: 1px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

/* 10. Footer Section */
.footer-section {
    background: #1C0511;
    color: var(--white);
    padding: 60px 0 20px;
    border-top: 3px solid var(--gold);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

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

.footer-logo span {
    color: var(--gold);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        width: 100%;
    }

    .hero-content {
        width: 100%;
        align-items: stretch;
    }
    
    .hero-title-badge {
        align-self: center;
    }

    .hero-content h1 {
        font-size: 2.75rem;
        text-align: center;
    }

    .hero-content h1 span,
    .hero-content .font-script,
    .hero-tagline {
        text-align: center;
    }

    .countdown-container {
        width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: none;
        width: 100%;
    }

    .pricing-card {
        padding: 24px 20px;
        width: 100%;
    }

    .pricing-card.featured {
        transform: none;
        grid-column: auto;
        order: -1;
    }

    .pricing-card.featured.active-card,
    .pricing-card.active-card {
        transform: none;
    }

    .pricing-card.featured.active-card:hover,
    .pricing-card.active-card:hover {
        transform: translateY(-3px);
    }

    .pricing-header h3 {
        font-size: 1.4rem;
    }

    .pricing-price {
        font-size: 2.4rem;
    }

    .pricing-features li {
        font-size: 0.88rem;
    }

    .pricing-card .btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: calc(100dvh - 56px);
        padding-top: 64px;
        padding-bottom: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-grid {
        gap: 16px;
    }

    .hero-content {
        gap: 12px;
        width: 100%;
        align-items: stretch;
    }

    .hero-title-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
        letter-spacing: 1px;
        align-self: center;
    }

    .hero-content h1 {
        font-size: 2.25rem;
        line-height: 1.15;
        width: 100%;
    }

    .hero-content h1 span {
        font-size: 1.25rem;
        margin-top: 4px;
    }

    .hero-content .font-script {
        font-size: 1.35rem;
        line-height: 1.3;
        width: 100%;
    }

    .hero-tagline {
        font-size: 0.9rem;
        line-height: 1.5;
        width: 100%;
    }

    .countdown-container {
        gap: 10px;
        margin-top: 8px;
        margin-bottom: 14px;
        width: 100%;
    }

    .countdown-box {
        flex: 1;
        width: auto;
        min-width: 0;
        max-width: none;
        height: 68px;
        border-radius: 14px;
    }

    .countdown-box .time {
        font-size: 1.45rem;
    }

    .countdown-box .label {
        font-size: 0.65rem;
        margin-top: 3px;
    }

    .hero-cta-wrap {
        margin-top: 6px !important;
        width: 100%;
    }

    .hero-cta-wrap .btn-lg {
        padding: 13px 20px;
        font-size: 0.95rem;
        width: 100%;
        max-width: none;
    }

    .hero-poster-wrapper {
        display: none;
    }

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
    }

    .details-grid .detail-card:last-child {
        grid-column: 1 / -1;
        width: 100%;
    }

    .detail-card.glass-card {
        padding: 16px 12px;
    }

    .detail-icon-circle {
        width: 44px;
        height: 44px;
    }

    .detail-icon-circle i,
    .detail-icon-circle svg {
        width: 22px !important;
        height: 22px !important;
    }

    .detail-card h3 {
        font-size: 1rem;
    }

    .detail-card p {
        font-size: 0.8rem;
    }

    .dress-code-banner {
        margin-top: 28px;
        padding: 20px 14px;
        width: 100%;
    }

    .dress-code-desc {
        font-size: 1.4rem;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
    }

    .event-card {
        padding: 16px 10px;
    }

    .event-card .icon-wrapper {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }

    .event-card .icon-wrapper i,
    .event-card .icon-wrapper svg {
        width: 22px !important;
        height: 22px !important;
    }

    .event-card h3 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .event-card p {
        font-size: 0.75rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .testimonial-card {
        width: min(300px, 78vw);
        padding: 18px;
    }

    .testimonial-quote {
        font-size: 0.88rem;
        margin-bottom: 12px;
    }

    .testimonials-track {
        gap: 14px;
        animation-duration: 28s;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        min-height: 280px !important;
        height: 280px !important;
    }

    .stalls-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
    }

    .stall-img-circle {
        width: 100px;
        height: 100px;
    }

    .stall-card h3 {
        font-size: 0.9rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        width: 100%;
    }

    .pricing-card {
        padding: 22px 18px;
        border-radius: 18px;
        width: 100%;
    }

    .pricing-card.featured {
        order: -1;
        grid-column: auto;
    }

    .pricing-card.featured::before {
        font-size: 0.6rem;
        top: 16px;
        right: -32px;
        padding: 4px 32px;
    }

    .pricing-header h3 {
        font-size: 1.25rem;
    }

    .pricing-price {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .pricing-price span {
        font-size: 1.1rem;
    }

    .pricing-seats {
        font-size: 0.78rem;
        padding: 4px 10px;
        margin-bottom: 14px;
    }

    .pricing-features {
        gap: 8px;
        margin-bottom: 18px;
    }

    .pricing-features li {
        font-size: 0.85rem;
        gap: 8px;
    }

    .pricing-features li svg {
        width: 16px !important;
        height: 16px !important;
    }

    .pricing-card .btn {
        width: 100%;
        padding: 11px 16px;
        font-size: 0.88rem;
    }

    .organizers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: none;
        width: 100%;
    }

    .organizer-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .organizer-img-wrapper {
        width: 100%;
        height: 120px;
    }

    .organizer-info {
        padding: 12px;
        gap: 4px;
    }

    .organizer-info h3 {
        font-size: 1rem;
    }

    .organizer-role {
        font-size: 0.7rem;
    }

    .organizer-desc {
        font-size: 0.72rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .organizer-contact {
        font-size: 0.75rem;
        margin-top: 6px;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .section-header p {
        font-size: 0.9rem;
    }
}

@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }

    .countdown-box {
        height: 62px;
    }

    .countdown-box .time {
        font-size: 1.3rem;
    }

    .cards-grid {
        gap: 8px;
    }

    .event-card h3 {
        font-size: 0.82rem;
    }

    .organizers-grid {
        gap: 8px;
    }

    .details-grid,
    .stalls-grid,
    .organizers-grid {
        gap: 8px;
    }
}
