/* ===============================
   GLOBAL RESET
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: white;
    color: #222;
}

/* ===============================
   NAVBAR
================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 2000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: #e9db24;
    box-shadow: 0 6px 20px rgba(120, 90, 20, 0.25);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #7a4a00;
}

/* ===============================
   LOGO ADJUSTMENT
================================ */

.logo {
    display: flex;
    align-items: center;
    /* vertical center */
}

.logo img {
    height: 48px;
    /* MAIN CONTROL */
    width: auto;
    /* keep ratio */
    max-width: 160px;
    /* safety */
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* OPTIONAL HOVER POLISH */
.logo img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .logo img {
        height: 40px;
        max-width: 130px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 36px;
        max-width: 120px;
    }
}


/* MENU */
.menu {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.menu a {
    text-decoration: none;
    color: #2b2b2b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #7a4a00;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 220px;
    background: #fffdf5;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    font-size: 14px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* CHAT BUTTON */
.chat-btn {
    padding: 10px 18px;
    border-radius: 30px;
    background: white;
    color: black;
    font-weight: 600;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    box-shadow: 0 8px 20px rgba(37, 211, 102, .4);
    transition: 0.3s ease;
}

.chat-btn:hover {
    transform: translateY(-2px);
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #7a4a00;
    border-radius: 3px;
}

/* DROPDOWN – COLOR FIX (DESKTOP + MOBILE) */
.dropdown-menu {
    background: #fff6d6;
}

.dropdown-menu a {
    color: #5a3a00;
    transition: background 0.3s ease, color 0.3s ease;
}

/* DESKTOP HOVER */
.dropdown-menu a:hover {
    background: #f7e3a1;
    color: #2a1a00;
}

/* MOBILE ACTIVE STATE */
.dropdown-menu a:active {
    background: #e9cf78;
}

/* ===============================
   HAMBURGER – YELLOW THEME FIX
   =============================== */

.navbar .hamburger span {
    background: #7a4a00;
}

/* WHEN MENU IS OPEN (OPTIONAL POLISH) */

nav.active~.hamburger span {
    background: #2a1a00;
}

/* ===============================
   PREHERO
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: #FFD700;
    color: #1a0a00;
}

.prehero-section {
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95), rgba(255, 165, 0, 0.95)),
        url('https://images.unsplash.com/photo-1532693322450-2cb5c511067d?w=1920&q=80') center/cover;
    background-attachment: fixed;
    position: relative;
}

.prehero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(255, 215, 0, 0.3) 100%);
    pointer-events: none;
}

.container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Side - Content */
.left-content {
    padding: 20px;
}

.left-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #8B4513;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: bold;
}

.description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #2d1810;
    line-height: 1.8;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.button-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: #8B4513;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 69, 19, 0.5);
    background: #6d3410;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #8B4513;
    color: #8B4513;
}

.btn-secondary:hover {
    background: rgba(139, 69, 19, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 69, 19, 0.3);
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}


/* Right Side - Form */
.right-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    border: 3px solid #8B4513;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.4);
}

.form-title {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(255, 215, 0, 0.3);
    font-weight: bold;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #8B4513;
    font-weight: bold;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #D4A574;
    border-radius: 10px;
    background: #FFF;
    color: #1a0a00;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #8B4513;
    background: #FFFEF8;
    box-shadow: 0 0 15px rgba(139, 69, 19, 0.2);
}

.form-group input::placeholder {
    color: rgba(139, 69, 19, 0.5);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #FFF;
    color: #1a0a00;
}

.radio-group {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    width: auto;
    accent-color: #8B4513;
    cursor: pointer;
}

.radio-option label {
    margin: 0;
    cursor: pointer;
    color: #2d1810;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #8B4513;
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: bold;
    border: 2px solid #FFD700;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.6);
    background: #6d3410;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 69, 19, 0.75);
    backdrop-filter: blur(5px);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: rgba(255, 255, 255, 0.98);
    border: 3px solid #8B4513;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #8B4513;
    cursor: pointer;
    border: none;
    background: none;
    transition: all 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
    color: #6d3410;
}

/* Payment Modal specific styles */
.payment-info {
    text-align: center;
    margin-top: 30px;
}

.qr-code {
    width: 250px;
    height: 250px;
    margin: 20px auto;
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
    border: 2px solid #D4A574;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.upi-id {
    font-size: 1.3rem;
    color: #8B4513;
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    word-break: break-all;
    border: 2px solid #D4A574;
    font-weight: bold;
}

.payment-note {
    color: #2d1810;
    margin-top: 15px;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .left-content {
        text-align: center;
    }

    .button-group {
        justify-content: center;
    }

    .right-form {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .prehero-section {
        padding: 20px 15px;
    }

    .right-form {
        padding: 25px 20px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .qr-code {
        width: 200px;
        height: 200px;
    }

    .radio-group {
        flex-direction: column;
        gap: 15px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Georgia', serif;
    background: #FFD700;
    color: #1a0a00;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: manipulation;
}

input,
select,
textarea,
button {
    font-size: 16px !important;
    /* Prevents zoom on iOS */
}

.prehero-section {
    min-height: 100vh;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95), rgba(244, 222, 182, 0.95)),
        url('https://images.unsplash.com/photo-1532693322450-2cb5c511067d?w=1920&q=80') center/cover;
    background-attachment: fixed;
    position: relative;
}

.prehero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(255, 215, 0, 0.3) 100%);
    pointer-events: none;
}

.container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .prehero-section {
        padding: 15px 10px;
        min-height: auto;
    }

    .container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 10px;
    }
}

/* Left Side - Content */
.left-content {
    padding: 20px;
}

.left-content h1 {
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    color: #100f0f;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: bold;
}

.description {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: #2d1810;
    line-height: 1.8;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

@media (max-width: 768px) {
    .left-content {
        padding: 10px;
        text-align: center;
    }

    .left-content h1 {
        margin-bottom: 15px;
    }

    .description {
        margin-bottom: 25px;
    }
}

.button-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .button-group {
        justify-content: center;
        gap: 15px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

.btn-primary {
    background: #8B4513;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 69, 19, 0.5);
    background: #6d3410;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #8B4513;
    color: #8B4513;
}

.btn-secondary:hover {
    background: rgba(139, 69, 19, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 69, 19, 0.3);
}

/* Right Side - Form */
.right-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 25px;
    border-radius: 20px;
    border: 3px solid #8B4513;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.4);
    max-height: 85vh;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .right-form {
        padding: 15px 20px;
        max-height: none;
        border-radius: 15px;
        border-width: 2px;
    }
}

@media (max-width: 480px) {
    .right-form {
        padding: 15px;
    }
}

.form-title {
    font-size: 1.3rem;
    color: #8B4513;
    margin-bottom: 12px;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(255, 215, 0, 0.3);
    font-weight: bold;
}

.price-tag {
    background: linear-gradient(135deg, #8B4513, #6d3410);
    color: #FFD700;
    font-size: 1rem;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 50px;
    text-align: center;
    margin-bottom: 12px;
    border: 2px solid #FFD700;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
}

.price-tag .amount {
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

.step {
    display: flex;
    align-items: center;
    gap: 6px;
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #D4A574;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #8B4513;
    box-shadow: 0 0 15px rgba(139, 69, 19, 0.5);
    transform: scale(1.1);
}

.step.completed .step-number {
    background: #2d7a2d;
}

.step-label {
    font-size: 0.85rem;
    color: #8B4513;
    font-weight: 600;
}

.step-divider {
    width: 30px;
    height: 2px;
    background: #D4A574;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation Buttons */
.step-navigation {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.btn-prev,
.btn-next {
    flex: 1;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: bold;
    border: 2px solid #8B4513;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-prev {
    background: transparent;
    color: #8B4513;
}

.btn-prev:hover {
    background: rgba(139, 69, 19, 0.1);
}

.btn-next {
    background: #8B4513;
    color: #FFD700;
    border-color: #FFD700;
}

.btn-next:hover {
    background: #6d3410;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.4);
}

.btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #8B4513;
    font-weight: bold;
    font-size: 0.85rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #D4A574;
    border-radius: 10px;
    background: #FFF;
    color: #1a0a00;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #8B4513;
    background: #FFFEF8;
    box-shadow: 0 0 15px rgba(139, 69, 19, 0.2);
}

.form-group input::placeholder {
    color: rgba(139, 69, 19, 0.5);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #FFF;
    color: #1a0a00;
}

.radio-group {
    display: flex;
    gap: 15px;
    margin-top: 6px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    width: auto;
    accent-color: #8B4513;
    cursor: pointer;
}

.radio-option label {
    margin: 0;
    cursor: pointer;
    color: #2d1810;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: #8B4513;
    color: #FFD700;
    font-size: 1rem;
    font-weight: bold;
    border: 2px solid #FFD700;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.6);
    background: #6d3410;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 69, 19, 0.75);
    backdrop-filter: blur(5px);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background: rgba(255, 255, 255, 0.98);
    border: 3px solid #8B4513;
    border-radius: 20px;
    padding: 25px 30px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
    top: 2rem;
}

.modal.active {
    align-items: flex-start;
    padding-top: 80px;
    /* header height ke hisaab se */
}


@media (max-width: 768px) {
    .modal {
        padding: 10px;
        align-items: flex-start;
    }

    .modal-content {
        padding: 20px 15px;
        border-radius: 15px;
        border-width: 2px;
        max-height: 95vh;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .modal {
        padding: 5px;
    }

    .modal-content {
        padding: 15px 12px;
        border-radius: 12px;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #8B4513;
    cursor: pointer;
    border: none;
    background: none;
    transition: all 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
    color: #6d3410;
}

/* Payment Modal specific styles */
.payment-info {
    text-align: center;
    margin-top: 15px;
}

.payment-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: center;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .payment-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.payment-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.payment-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.qr-code {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    background: #fff;
    padding: 8px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
    border: 2px solid #D4A574;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.upi-id {
    font-size: 1rem;
    color: #8B4513;
    margin: 0;
    padding: 10px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    word-break: break-all;
    border: 2px solid #D4A574;
    font-weight: bold;
}

.payment-note {
    color: #2d1810;
    margin-top: 10px;
    font-size: 0.85rem;
}

.pay-now-btn {
    width: 100%;
    padding: 14px;
    background: #8B4513;
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: bold;
    border: 2px solid #FFD700;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.pay-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.6);
    background: #6d3410;
}

@media (max-width: 600px) {
    .payment-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.payment-section {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px dashed #D4A574;
}

.payment-section-title {
    font-size: 1rem;
    color: #8B4513;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
}

.upload-section {
    margin-top: 12px;
    padding: 12px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px dashed #8B4513;
    border-radius: 15px;
    text-align: center;
}

.upload-section h4 {
    color: #8B4513;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.upload-section p {
    color: #2d1810;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.file-upload-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-upload-input {
    width: 100%;
    padding: 8px;
    border: 2px solid #D4A574;
    border-radius: 10px;
    background: #fff;
    color: #1a0a00;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-input:hover {
    border-color: #8B4513;
    background: #FFFEF8;
}

.file-upload-input:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 10px rgba(139, 69, 19, 0.2);
}

.upload-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.file-name-display {
    margin-top: 6px;
    padding: 6px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 8px;
    color: #8B4513;
    font-size: 0.8rem;
    display: none;
}

.file-name-display.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .left-content {
        text-align: center;
    }

    .button-group {
        justify-content: center;
    }

    .right-form {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .prehero-section {
        background-attachment: scroll;
    }

    .form-title {
        font-size: 1.2rem;
    }

    .price-tag {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .price-tag .amount {
        font-size: 1.1rem;
    }

    .step-indicator {
        margin-bottom: 12px;
        gap: 8px;
    }

    .step-number {
        width: 26px;
        height: 26px;
        font-size: 0.85rem;
    }

    .step-label {
        font-size: 0.8rem;
    }

    .step-divider {
        width: 25px;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-group input,
    .form-group select {
        font-size: 0.85rem;
        padding: 8px 10px;
    }

    .qr-code {
        width: 120px;
        height: 120px;
    }

    .upi-id {
        font-size: 0.8rem;
        padding: 6px;
    }

    .payment-note {
        font-size: 0.7rem;
    }

    .upload-section {
        padding: 10px;
    }

    .upload-section h4 {
        font-size: 0.9rem;
    }

    .upload-section p {
        font-size: 0.75rem;
    }

    .btn-prev,
    .btn-next {
        font-size: 0.85rem;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .prehero-section {
        padding: 20px 15px;
    }

    .right-form {
        padding: 25px 20px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .qr-code {
        width: 100px;
        height: 100px;
    }

    .radio-group {
        flex-direction: column;
        gap: 10px;
    }

    .step-navigation {
        gap: 8px;
    }

    .btn-prev,
    .btn-next {
        font-size: 0.8rem;
        padding: 9px;
        letter-spacing: 0.5px;
    }

    .payment-section-title {
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .form-title {
        font-size: 1.1rem;
    }

    .price-tag {
        font-size: 0.85rem;
        padding: 6px 10px;
    }

    .price-tag .amount {
        font-size: 1rem;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .qr-code {
        width: 90px;
        height: 90px;
    }
}

/* ===============================
   HERO (ROTATING TEXT)
================================ */
.hero {
    height: 130px;
    display: flex;
    align-items: center;
    background: white;
    overflow: hidden;
}

.hero-track {
    width: 100%;
    overflow: hidden;
}

/* MOVING STRIP */
.hero-marquee {
    display: flex;
    width: 200%;
    animation: marqueeMove 18s linear infinite;
}

/* EACH TEXT BLOCK */
.marquee-content {
    width: 100%;
    white-space: nowrap;
    font-size: 24px;
    font-weight: 600;
    color: black;
    display: flex;
    align-items: center;
}

@keyframes marqueeMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* ===============================
   SERVICES
================================ */

.services {
    padding: 80px 40px;
    background: linear-gradient(to right,
            #e9db24 0%,
            #ffffff 50%,
            #e9db24 100%);

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    height: 420px;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    transition: 0.35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.05);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.25));
}

.overlay {
    position: absolute;
    bottom: 30px;
    left: 25px;
    right: 25px;
    color: #fff;
}

.overlay h2 {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

/* ===============================
   CTA
================================ */
.astro-cta {
    padding: 70px 20px;
    background: linear-gradient(to right,
            #e9db24 0%,
            #ffffff 50%,
            #e9db24 100%);
    display: flex;
    justify-content: center;
}

.astro-cta-box {
    max-width: 760px;
    background: white;
    border-radius: 22px;
    padding: 40px 35px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.astro-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.15);
    color: black;
    margin-bottom: 14px;
}

.astro-cta-box h2 {
    color: black;
    margin-bottom: 10px;
}

.astro-cta-box h2 span {
    color: red;
}

.astro-cta-box p {
    color: black;
    margin-bottom: 22px;
}

.astro-btn {
    padding: 12px 28px;
    border-radius: 999px;
    background: #e9db24;
    color: black;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.astro-btn:hover {
    transform: translateY(-2px);
}

/* ===============================
   FOOTER
================================ */
.astro-footer {
    background: white;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col h3,
.footer-col h4 {
    color: black;
    margin-bottom: 15px;
}

.footer-col p,
.footer-col ul li a {
    color: black;
    text-decoration: none;
}

.footer-col li {
    list-style-type: none;
    margin: 5px;
    font-size: 16px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s ease, transform 0.25s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    text-decoration: none;

}


.footer-social a:hover {
    background: #e9cf78;
    color: black;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #5a3a00;
}

.footer-social a:hover {
    transform: translateY(-6px);
}

.footer-col ul li a:hover {
    color: red;
}

/* ===============================
   FOOTER BRAND (LOGO + TEXT)
================================ */

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* TEXT STACK */
.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

/* Bhakti */
.brand-bhakti {
    font-size: 22px;
    font-weight: 700;
    color: black;
}

/* Vansh */
.brand-vansh {
    font-size: 20px;
    font-weight: 600;
    color: #e60781;
    /* matches your yellow theme */
}

/* MOBILE ADJUSTMENT */
@media (max-width: 600px) {
    .footer-brand {
        justify-content: center;
    }

    .footer-col {
        text-align: left;
    }
}


/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
    .services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    nav.active {
        max-height: 600px;
    }

    .menu {
        flex-direction: column;
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .services {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   MOBILE DROPDOWN FIX (FINAL)
   =============================== */
@media (max-width: 768px) {

    .dropdown-menu {
        position: static;
        /* override absolute */
        opacity: 1;
        /* override desktop */
        visibility: visible;
        /* override desktop */
        transform: none;
        /* override desktop */
        display: none;
        /* real hide */
        box-shadow: none;
        margin-top: 10px;
        text-align: center;
    }

    nav {
        background: #fff6d6;
        /* match theme */
    }

    .dropdown-menu a {
        justify-content: center;
    }

    .menu>li,
    .menu>a {
        text-align: center;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        /* toggle works */
    }
}

/* MOBILE TAP = DESKTOP HOVER */
.footer-social a:active,
.footer-social a:focus {
    background: #e9cf78;
    transform: scale(0.92);
}

/* ===============================
   YOUTUBE SECTION – PRIEST STYLE
================================ */

.yt-intro {
    text-align: center;
    margin-bottom: 50px;
}

.yt-intro h2 {
    font-size: 26px;
    color: black;
    margin: 40px;
    font-size: 50px;
}

.yt-intro p {
    font-size: 20px;
    color: black;
    max-width: 700px;
    margin: 0 auto;
}

.yt-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

/* MAIN VIDEO */
.yt-main {
    position: relative;
    padding-top: 56.25%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(122, 74, 0, 0.35);
    margin-bottom: 40px;
}

.yt-main iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* SMALL VIDEOS */
.yt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.yt-card {
    background: #fff6d6;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 16px 35px rgba(122, 74, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yt-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.yt-card span {
    display: block;
    padding: 14px;
    text-align: center;
    font-weight: 600;
    color: #7a4a00;
    font-size: 0.95rem;
}

.yt-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(122, 74, 0, 0.35);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
    .yt-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .yt-grid {
        grid-template-columns: 1fr;
    }

    .yt-card img {
        height: 200px;
    }
}

/* ============================
   FLOATING BUTTONS – WAVE FIX
============================ */

.floating-call,
.floating-whatsapp {
    position: fixed;
    bottom: 18px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    z-index: 9999;
    background-clip: padding-box;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    animation: floatWave 3.8s ease-in-out infinite;
}

/* CALL – LEFT */
.floating-call {
    left: 18px;
    background: #1e88e5;
}

/* WHATSAPP – RIGHT */
.floating-whatsapp {
    right: 18px;
    background: #25d366;
    animation-delay: 1.6s;
}

/* FLOATING UP & DOWN */
@keyframes floatWave {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

/* 🔥 REAL WAVE RING */
.floating-call::after,
.floating-whatsapp::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: ripple 2.8s ease-out infinite;
    pointer-events: none;
}

/* DIFFERENT WAVE COLORS */
.floating-call::after {
    border: 2px solid rgba(30, 136, 229, 0.45);
}

.floating-whatsapp::after {
    border: 2px solid rgba(37, 211, 102, 0.45);
    animation-delay: 1.6s;
}

/* WAVE ANIMATION (RELEASING OUTWARD) */
@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.7);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* SOFT HOVER */
.floating-call:hover,
.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.05);
}

/* MOBILE */
@media (max-width: 600px) {

    .floating-call,
    .floating-whatsapp {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}