:root {
    /* Colors */
    --primary-black: #0C0C0C;
    --off-white: #F5F4F0;
    --gold-accent: #FFC200;
    --deep-red: #5C1A1B;
    --navy-blue: #0F1C2E;

    /* Fonts */
    --font-heading: 'Gambarino', serif;
    --font-body: 'Ranade', sans-serif;

    /* Font Sizes */
    --h1-size: 100px;
    --h2-size: 56px;
    --h3-size: 36px;
    --h4-size: 24px;
    --body-size: 17px;
    --small-size: 14px;

    /* Spacing */
    --section-padding: 100px 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--body-size);
    color: var(--primary-black);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.mobile-break {
    display: none;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    background: radial-gradient(circle at center, #ffffff 0%, #f0f0f0 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.8s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    position: relative;
    animation: simplePulse 2s ease-in-out infinite;
}

.pigeon-loader {
    width: 180px;
    height: auto;
    display: block;
    margin: 0 auto 40px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.05));
}

.preloader-caption {
    font-family: var(--font-heading);
    color: var(--deep-red);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: capitalize;
}

@keyframes simplePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: normal;
    line-height: 1.1;
}

h1 {
    font-size: clamp(48px, 6.5vw, var(--h1-size));
    white-space: nowrap;
}

h2 {
    font-size: var(--h2-size);
}

h3 {
    font-size: var(--h3-size);
}

h4 {
    font-family: var(--font-heading);
    font-size: var(--h4-size);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Base Layout */
section {
    padding: var(--section-padding);
    max-width: 1200px;
    margin: 0 auto;
}

.dark-bg {
    background-color: var(--primary-black);
    color: var(--off-white);
    max-width: 100%;
}

.dark-bg section {
    max-width: 1200px;
}

/* Components */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--gold-accent);
    color: var(--primary-black);
}

.btn-primary:hover {
    background-color: #e6af00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 194, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--off-white);
    border: 1px solid var(--off-white);
}

.btn-outline:hover {
    background-color: var(--off-white);
    color: var(--primary-black);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    :root {
        --h1-size: 80px;
        --h2-size: 48px;
        --h3-size: 32px;
    }
}

/* Navigation */
nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.hero-content {
    text-align: center;
    padding-top: 80px;
    position: relative;
    z-index: 10;
    max-width: 1400px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content>.reveal {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.hero-bottom-wrapper {
    margin-top: auto;
    /* padding-bottom: 10px; */
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(245, 244, 240, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold-accent);
    transform: scale(1.3);
}

.gold-text {
    color: var(--gold-accent);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.tagline {
    font-size: 24px;
    margin: 10px 0 35px;
    font-weight: 300;
    color: rgba(245, 244, 240, 0.8);
}

.hero-details {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.detail-item .label {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 8px;
}

.detail-item .value {
    font-size: 20px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Common Layouts */
.center-text {
    text-align: center;
}

.max-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--gold-accent);
    margin: 30px 0;
}

.divider.center {
    margin-left: auto;
    margin-right: auto;
}

/* Intercession Section Styles */
#intercession {
    background-color: var(--off-white);
    padding: 120px 20px;
}

.grand-total-box {
    background: var(--navy-blue);
    color: var(--off-white);
    padding: 40px 60px;
    border-radius: 30px;
    display: inline-block;
    margin: 20px auto 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 194, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.grand-total-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 194, 0, 0.05) 0%, transparent 70%);
}

.grand-total-box .total-label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-accent);
    margin-bottom: 12px;
    font-weight: 800;
}

.grand-total-box .total-count {
    font-size: 80px;
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.intercession-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    perspective: 1000px;
}

.intercession-card {
    position: relative;
    height: 300px;
    background: transparent;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.intercession-card.offered {
    transform: rotateY(180deg);
}

.card-main,
.card-thanks {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: #fff;
    border-radius: 20px;
    padding: 20px 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.card-thanks {
    transform: rotateY(180deg);
    background: var(--navy-blue);
    color: var(--off-white);
    text-align: center;
}

.intercession-card .card-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.intercession-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--primary-black);
}

.intercession-card .count {
    font-size: 28px;
    font-family: var(--font-heading);
    color: var(--deep-red);
    margin-bottom: 2px;
    font-weight: 700;
}

.count-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 20px;
}

.user-controls {
    width: 100%;
    margin-top: auto;
}

.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--off-white);
    padding: 6px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.stepper button {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: none;
    background: #fff;
    color: var(--primary-black);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stepper button:hover {
    background: var(--gold-accent);
    transform: translateY(-1px);
}

.stepper span {
    font-size: 18px;
    font-weight: 700;
    min-width: 25px;
    text-align: center;
}

.stepper .unit {
    font-size: 13px;
    font-weight: 500;
    margin-left: -5px;
    color: #666;
    margin-right: 5px;
}

.offer-btn {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: var(--navy-blue);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
}

.offer-btn:hover {
    background: var(--deep-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.offer-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #ccc;
    transform: none;
}

.thanks-content span {
    font-size: 44px;
    display: block;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.thanks-content h4 {
    color: var(--gold-accent);
    font-size: 18px;
    margin-bottom: 10px;
}

.thanks-content p {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 25px;
}

.reset-btn {
    background: transparent;
    border: 1px solid var(--gold-accent);
    color: var(--gold-accent);
    padding: 6px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    font-size: 12px;
}

.reset-btn:hover {
    background: var(--gold-accent);
    color: var(--navy-blue);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Adjustments for Intercession Grid */
@media (max-width: 1100px) {
    .intercession-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {
    .intercession-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .intercession-grid {
        display: flex;
        overflow-x: auto;
        grid-template-columns: none;
        gap: 15px;
        padding-bottom: 30px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .intercession-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
    }

    .intercession-grid::-webkit-scrollbar {
        height: 4px;
    }

    .intercession-grid::-webkit-scrollbar-thumb {
        background: var(--gold-accent);
        border-radius: 10px;
    }
}




/* Verse Section */
.verse-section {
    padding: 120px 20px;
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.sacred-quote {
    font-family: var(--font-heading);
    font-size: 32px;
    line-height: 1.4;
    color: var(--primary-black);
    position: relative;
    padding: 0 40px;
}

.sacred-quote::before,
.sacred-quote::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold-accent);
    margin: 30px auto;
    opacity: 0.6;
}

.sacred-quote cite {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--deep-red);
    margin-top: 20px;
    font-style: normal;
    font-weight: 700;
}

@media (max-width: 768px) {
    .sacred-quote {
        font-size: 24px;
        padding: 0 10px;
    }
}

/* About Section */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid var(--gold-accent);
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--deep-red);
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Who Can Attend */
.eligibility-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.eligibility-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.intercession-card h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.highlight-item {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.highlight-item:hover {
    transform: translateY(-8px);
    border-color: var(--gold-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.item-icon {
    width: 64px;
    height: 64px;
    background: var(--off-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--deep-red);
    transition: all 0.3s ease;
}

.highlight-item:hover .item-icon {
    background: var(--gold-accent);
    color: var(--primary-black);
    transform: rotate(-5deg);
}

.item-icon svg {
    width: 32px;
    height: 32px;
}

.highlight-item h3 {
    margin-bottom: 15px;
    font-size: 24px;
    color: var(--primary-black);
}

.highlight-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

/* Timeline/Schedule */
.timeline {
    max-width: 800px;
    margin: 60px auto 0;
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 90px;
    top: 0;
    bottom: -40px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-item .day {
    width: 90px;
    font-weight: 700;
    color: var(--gold-accent);
    padding-top: 5px;
}

.timeline-item .event h4 {
    margin-bottom: 5px;
}

/* Venue */
.venue-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 60px;
    align-items: center;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.btn-outline.dark {
    border-color: var(--primary-black);
    color: var(--primary-black);
    margin-top: 20px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.gallery-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 4px;
}

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

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




/* Registration */
.registration-container {
    max-width: 900px;
    margin: 0 auto;
}

.form-wrapper {
    margin-top: 40px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    background-color: #f9f9f9;
    color: var(--primary-black);
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(255, 194, 0, 0.1);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ff4d4d;
}

.error-message {
    color: #ff4d4d;
    font-size: 11px;
    font-weight: 600;
    margin-top: 5px;
    display: none;
    text-transform: none;
}

.form-group.error .error-message {
    display: block;
}

/* Payment Info Styles */
.payment-info-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.payment-instructions h3 {
    color: var(--deep-red);
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 700;
}

.payment-advance-note {
    font-size: 15px;
    color: var(--primary-black);
    margin-bottom: 20px;
}

.payment-flex-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.qr-code-wrapper {
    text-align: center;
    background: var(--off-white);
    padding: 12px;
    border-radius: 8px;
    width: 140px;
}

.payment-qr {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.qr-label {
    color: var(--primary-black);
    font-size: 11px;
    font-weight: 700;
    margin-top: 8px;
    text-transform: uppercase;
}

.bank-details h4 {
    color: var(--deep-red);
    margin-bottom: 10px;
    font-size: 16px;
    border-bottom: 2px solid var(--gold-accent);
    padding-bottom: 2px;
    display: inline-block;
}

.bank-details p {
    margin-bottom: 4px;
    font-size: 14px;
}

.bank-details p strong {
    width: 70px;
    display: inline-block;
    color: #555;
    font-size: 11px;
    text-transform: uppercase;
}

/* File Upload Styles */
.file-upload-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#payment_screenshot {
    border: 2px dashed #ddd;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    width: 100%;
    background: var(--off-white);
    border-radius: 8px;
}

#payment_screenshot:hover {
    border-color: var(--gold-accent);
}

.file-upload-preview {
    width: 100%;
    min-height: 100px;
    background: var(--off-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #ddd;
}

.file-upload-preview img {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
}

.preview-text {
    color: #999;
    font-size: 13px;
}

.btn.large {
    padding: 16px 32px;
    font-size: 18px;
    display: block;
    margin: 40px auto 0;
}

/* Payment Reminder */
.payment-reminder {
    margin-top: 20px;
    padding: 12px 15px;
    background: #fff8e1;
    border-left: 4px solid var(--gold-accent);
    border-radius: 4px;
}

.payment-reminder p {
    font-size: 13px;
    color: #856404;
    line-height: 1.4;
    margin: 0;
}

/* Registration Support */
.reg-support {
    margin-top: 30px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.reg-support p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.support-links a {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-black);
    text-decoration: none;
    transition: color 0.3s;
}

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

.success-message {
    text-align: center;
    padding: 60px 40px;
    color: var(--gold-accent);
}

.success-message h3 {
    margin-bottom: 15px;
    font-size: 28px;
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 25px 20px;
        margin-top: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .payment-flex-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .payment-info-section {
        padding: 20px !important;
    }

    .success-message {
        padding: 40px 20px;
    }

    .bank-details p {
        display: flex;
        justify-content: flex-start;
        text-align: left;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }

    .bank-details p strong {
        width: 70px;
        flex-shrink: 0;
        font-size: 10px;
    }

    .btn.large {
        padding: 14px 40px;
        font-size: 16px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .form-wrapper {
        padding: 20px 15px;
        border-radius: 8px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px;
        background-color: #fff;
        border-color: #e0e0e0;
    }

    .payment-info-section h3 {
        font-size: 20px;
    }

    .qr-code-wrapper {
        width: 120px;
    }

    /* Preloader Mobile */
    .pigeon-loader {
        width: 120px;
        margin-bottom: 25px;
    }

    .preloader-caption {
        font-size: 16px;
        letter-spacing: 2px;
    }
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-contact h3 {
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact p {
    margin-bottom: 8px;
    opacity: 0.7;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 12px;
    opacity: 0.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    :root {
        --h1-size: 56px;
        --h2-size: 36px;
        --h3-size: 28px;
        --section-padding: 80px 25px;
    }

    h1 {
        line-height: 1.1;
        font-size: 13vw;
        white-space: normal;
    }

    .mobile-break {
        display: block;
    }

    .hero-content {
        padding-top: 15vh;
    }

    .hero-bottom-wrapper {
        padding-bottom: 60px;
    }

    .carousel-dots {
        margin-top: 30px;
    }

    /* Intercession Mobile */
    .intercession-grid {
        display: flex;
        overflow-x: auto;
        grid-template-columns: none;
        gap: 15px;
        padding-bottom: 30px;
        margin-left: -25px;
        margin-right: -25px;
        padding-left: 25px;
        padding-right: 25px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .intercession-card {
        flex: 0 0 80%;
        scroll-snap-align: center;
        padding: 20px;
    }

    .intercession-card .count {
        font-size: 32px;
    }

    .intercession-grid::-webkit-scrollbar {
        height: 6px;
    }

    .intercession-grid::-webkit-scrollbar-thumb {
        background: var(--gold-accent);
        border-radius: 10px;
    }

    /* Highlights Mobile - 2 in a row */
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .highlight-item {
        padding: 30px 15px;
        border-radius: 10px;
    }

    .item-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 15px;
        border-radius: 8px;
    }

    .item-icon svg {
        width: 24px;
        height: 24px;
    }

    .highlight-item h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .highlight-item p {
        font-size: 12px;
        line-height: 1.4;
    }

    .tagline {
        margin-top: 0;
        font-size: 18px;
    }

    .nav-links {
        display: none;
    }

    .section-grid,
    .venue-container,
    .eligibility-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-details {
        display: flex;
        flex-direction: column;
        gap: 4px;
        font-size: 16px;
        margin-top: 20px;
    }

    .hero-actions {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
        width: 100%;
        max-width: 400px;
        margin: 30px auto 0;
    }

    .hero-actions .btn {
        padding: 12px 15px;
        font-size: 13px;
        flex: 1;
        text-align: center;
    }

    .timeline-item {
        gap: 25px;
    }

    .timeline-item .day {
        width: 60px;
    }

    .timeline-item::before {
        left: 60px;
    }

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

    .footer-socials {
        justify-content: center;
    }

    /* Horizontal Gallery on Mobile */
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 30px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin-left: -25px;
        margin-right: -25px;
        padding-left: 25px;
        padding-right: 25px;
    }

    .gallery-item {
        flex: 0 0 85%;
        aspect-ratio: 4/3;
        scroll-snap-align: center;
    }

    .gallery-grid::-webkit-scrollbar {
        height: 6px;
    }

    .gallery-grid::-webkit-scrollbar-thumb {
        background: var(--gold-accent);
        border-radius: 10px;
    }
}

/* Animations */
.bump {
    animation: bump 0.5s ease-out;
}

@keyframes bump {
    0% {
        transform: scale(1);
        color: var(--gold-accent);
    }

    50% {
        transform: scale(1.15);
        color: var(--gold-accent);
    }

    100% {
        transform: scale(1);
    }
}

/* UPI Payment Buttons */
.upi-pay-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
    width: 100%;
}

.upi-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.upi-title::before {
    content: '⚡';
    font-size: 16px;
}

.upi-buttons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.upi-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 10px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #eee;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.upi-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.upi-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.upi-btn:hover .upi-logo {
    transform: scale(1.1);
}

.upi-btn span:last-child {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.upi-btn.gpay:hover {
    border-color: #4285F4;
}

.upi-btn.phonepe:hover {
    border-color: #5f259f;
}

.upi-btn.paytm:hover {
    border-color: #00baf2;
}

.copy-upi-box {
    margin-top: 15px;
    display: flex;
    align-items: center;
    background: #f1f3f5;
    padding: 8px 12px;
    border-radius: 8px;
    justify-content: space-between;
}

.upi-id-text {
    font-family: monospace;
    font-size: 13px;
    color: #333;
    font-weight: 600;
}

.copy-btn {
    background: var(--gold-accent);
    color: var(--primary-black);
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.copy-btn:hover {
    background: var(--primary-black);
    color: #fff;
}

@media (max-width: 480px) {
    .upi-buttons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .upi-btn {
        padding: 10px 5px;
    }

    .upi-btn span {
        font-size: 10px;
    }
}

/* Floating Register Button - Mobile Only */
.floating-reg-btn {
    display: none;
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: var(--gold-accent);
    color: var(--primary-black);
    width: auto;
    height: auto;
    padding: 12px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    text-align: center;
    white-space: nowrap;
    z-index: 2000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(100px) scale(0.5);
    opacity: 0;
}

.floating-reg-btn.show {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .floating-reg-btn {
        display: flex;
    }
}

.floating-reg-btn:active {
    transform: scale(0.95);
}

/* Amount Selector for Payment */
.amount-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

.amount-option {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 8px;
    background: #fff;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-black);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.amount-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--navy-blue);
    border-radius: 50%;
    outline: none;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

.amount-option input[type="radio"]:checked {
    background: var(--gold-accent);
    border-color: var(--gold-accent);
}

.amount-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.amount-option:has(input:checked) {
    border-color: var(--gold-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 194, 0, 0.15);
}

.amount-option:hover {
    background: #fafafa;
}

@media (max-width: 480px) {
    .amount-selector {
        flex-direction: column;
        gap: 10px;
    }
}

/* Social Media Styling */
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--off-white);
    transition: all 0.3s ease;
}

.footer-socials a svg {
    width: 20px;
    height: 20px;
}

.footer-socials a:hover {
    background: var(--gold-accent);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 194, 0, 0.3);
}

.success-social {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.success-social p {
    font-size: 14px;
    margin-bottom: 12px;
    color: #666;
}

.insta-success-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
    text-decoration: none;
}

.insta-success-link .social-icon {
    width: 18px;
    height: 18px;
}

.insta-success-link:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
    color: #fff;
}