:root {
    --bg-dark: #0a0a0a;
    --bg-card: rgba(30, 30, 30, 0.7);
    --gold-gradient: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --gold-solid: #d4af37;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    background-image: url('back.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Dark overlay to make white text readable against the background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.65); /* Dark tint */
    z-index: -2;
}

h1, h2, h3, .brand-name {
    font-family: var(--font-heading);
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gold-icon {
    color: var(--gold-solid);
}

/* Glassmorphism utility */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
    padding: 20px 0;
    background: transparent;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Glass Logo Containers */
.logo-glass {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0;
    width: 380px;
    height: 80px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.logo-glass:hover {
    background: rgba(30, 30, 30, 0.5);
    border-color: rgba(212, 175, 55, 0.3);
}

#brand-image {
    height: 180px; /* Reduced zoom so text fits perfectly */
    max-width: none;
    width: auto;
    mix-blend-mode: screen;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.8));
    transition: all 0.3s ease;
}

nav.scrolled .logo-glass {
    height: 70px;
    width: 320px;
}

nav.scrolled #brand-image {
    height: 150px;
}

.footer-logo-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0;
    width: 320px;
    height: 80px;
    overflow: hidden;
    margin-bottom: 20px;
}

.footer-brand-image {
    height: 170px; /* Reduced zoom */
    max-width: none;
    mix-blend-mode: screen;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.8));
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

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

/* Hero Section */
#hero {
    position: relative;
    padding-top: 140px; /* Start below navigation bar */
    padding-bottom: 60px;
    text-align: center;
    min-height: 100vh;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    width: 90%;
    max-width: 500px;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    max-height: 90vh;
    overflow-y: auto;
}

.video-showcase {
    width: 90%; /* Reduced size to show space around it */
    max-width: 900px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    background: #000;
}

.video-showcase video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain; /* Prevents clipping on sides */
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* Portfolio */
#portfolio {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.gold-divider {
    height: 3px;
    width: 100px;
    background: var(--gold-gradient);
    margin: 0 auto 15px;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
}

.portfolio-category {
    margin-bottom: 60px;
}

.category-heading {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-main);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mobile-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.video-card {
    /* Pure structural container */
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Separates the glass block from the info */
}

/* Dimensions reflecting physical mobile screen size on a 20" monitor */
.video-card.landscape {
    width: 533px;
}

.video-card.portrait {
    width: 300px;
}

.video-container {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 0;
    overflow: visible; /* Needs space for outer 3D thickness */
    cursor: pointer;
    
    /* 3D Glass Thickness Effect */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    
    box-shadow: 
        inset 1px 1px 3px rgba(255,255,255,0.4),
        1px 1px 0 rgba(212, 175, 55, 0.4), /* 1mm */
        2px 2px 0 rgba(212, 175, 55, 0.3), /* 2mm */
        3px 3px 0 rgba(212, 175, 55, 0.2), /* 3mm */
        4px 4px 0 rgba(212, 175, 55, 0.1), /* 4mm */
        8px 8px 15px rgba(0,0,0,0.8); /* Table shadow */
        
    transform: translate(-4px, -4px); /* Shifted left-up */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Disable push effect and pointer for combo preview videos */
.combo-pair-wrapper .video-container {
    cursor: default;
}
.combo-pair-wrapper .video-container:hover {
    transform: translate(-4px, -4px);
    box-shadow: 
        inset 1px 1px 3px rgba(255,255,255,0.4),
        1px 1px 0 rgba(212, 175, 55, 0.4),
        2px 2px 0 rgba(212, 175, 55, 0.3),
        3px 3px 0 rgba(212, 175, 55, 0.2),
        4px 4px 0 rgba(212, 175, 55, 0.1),
        8px 8px 15px rgba(0,0,0,0.8);
}

.video-container:hover {
    transform: translate(-5px, -5px);
    box-shadow: 
        inset 1px 1px 3px rgba(255,255,255,0.5),
        1px 1px 0 rgba(212, 175, 55, 0.5), 
        2px 2px 0 rgba(212, 175, 55, 0.4), 
        3px 3px 0 rgba(212, 175, 55, 0.3), 
        4px 4px 0 rgba(212, 175, 55, 0.2), 
        5px 5px 0 rgba(212, 175, 55, 0.1), /* Extra lift */
        12px 12px 25px rgba(0,0,0,0.9);
}

.video-container.pressed {
    transform: translate(0px, 0px); /* Pushed in fully */
    box-shadow: 
        inset 1px 1px 8px rgba(0,0,0,0.8), /* Dark inner press */
        inset -1px -1px 3px rgba(255,255,255,0.1),
        0px 0px 0 rgba(212, 175, 55, 0), /* Side thickness disappears */
        2px 2px 5px rgba(0,0,0,0.4);
    border-color: rgba(255, 255, 255, 0.1);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* Fix for native fullscreen aspect ratio */
.video-container video:fullscreen {
    object-fit: contain;
}

.video-container video:-webkit-full-screen {
    object-fit: contain;
}

/* The actual "glass" glossy overlay */
.video-container::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 100%);
    pointer-events: none; /* Let clicks pass through */
    z-index: 2;
}

.video-card.landscape .video-container {
    aspect-ratio: 16/9;
}

.video-card.portrait .video-container {
    aspect-ratio: 9/16;
}

/* Ensure responsiveness for actual mobile devices viewing the site */
@media (max-width: 600px) {
    .video-card.landscape, 
    .video-card.portrait {
        width: 100%;
    }
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.video-card:hover .video-container video {
    opacity: 1;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold-solid);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.video-container:hover .play-icon {
    opacity: 1;
}

.card-info {
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-solid);
    font-family: var(--font-heading);
}

.want-btn {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--gold-solid);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-heading);
}

.want-btn:hover {
    background: var(--gold-gradient);
    color: #000;
}

/* Balance Section */
#balance {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #111 100%);
}

.balance-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
}

.balance-container h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.balance-container p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-solid);
}

.input-group input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    color: var(--text-main);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.input-group .prefix-text {
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 16px; /* Nudge downwards to match baseline */
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 500;
}

.input-group input.prefixed-input {
    padding-left: 85px;
}

.input-group input:focus {
    border-color: var(--gold-solid);
}

.balance-container .btn {
    width: 100%;
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s;
}

.modal.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    width: 90%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    transform: translateY(0);
    transition: transform 0.3s;
}

.modal.hidden .modal-content {
    transform: translateY(20px);
}

.modal-content.video-content {
    max-width: 900px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.modal-content.video-content video {
    width: 100%;
    border-radius: 12px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
    z-index: 2;
}

.close-modal:hover {
    color: var(--text-main);
}

.modal-step h2 {
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.modal-subtitle {
    color: var(--text-muted);
    margin-bottom: 25px;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-main);
    font-size: 1rem;
    outline: none;
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold-solid);
}

.file-input {
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px dashed var(--glass-border);
    border-radius: 8px;
    color: var(--text-muted);
}

.full-width {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.price-summary {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.price-row.highlight {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--glass-border);
}

.payment-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 15px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-main);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.pay-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-solid);
    color: var(--gold-solid);
}

.success-icon {
    margin-bottom: 20px;
}

.booking-number-box {
    margin: 20px 0;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px dashed var(--gold-solid);
    border-radius: 8px;
    font-size: 1.2rem;
}

.small-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Footer */
footer {
    background: #050505;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content .brand-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: inline-block;
}

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

/* Utilities */
.text-center { text-align: center; }

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
}

/* --- Video Pop-up Modal --- */
.modal-overlay.hidden {
    display: none !important;
}

.modal-overlay.flex {
    display: flex !important;
}

.video-modal-box {
    background: #000;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.video-modal-box.landscape {
    width: 80vw;
    max-width: 1200px;
    aspect-ratio: 16/9;
}

.video-modal-box.portrait {
    height: 80vh;
    max-height: 900px;
    aspect-ratio: 9/16;
}

.video-wrapper {
    width: 100%;
    height: 100%;
}

#modal-video-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#close-video-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

#close-video-modal:hover {
    background: rgba(212, 175, 55, 0.8);
    transform: scale(1.1);
}

/* --- Custom Desire Section --- */
.custom-desire-section {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.desire-heading {
    margin-top: 40px;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.desire-sub {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-top: 10px;
}

.custom-window-container {
    position: relative;
    width: 250px;
    height: 250px;
    cursor: pointer;
    transition: transform 0.4s ease;
    margin-bottom: 20px;
}

.custom-window-container:hover {
    transform: scale(1.05);
}

.custom-canvas-glass {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 
        inset 1px 1px 3px rgba(255,255,255,0.2),
        4px 4px 15px rgba(0,0,0,0.9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.canvas-border {
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(212, 175, 55, 0.6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.custom-canvas-glass::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

/* Fullscreen Button */
.fullscreen-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.8);
    color: #D4AF37;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.fullscreen-btn:hover {
    background: rgba(212, 175, 55, 0.9);
    color: #fff;
    transform: scale(1.1);
}

/* --- UPI Payment Styles --- */
.upi-payment-section {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.payment-instruction {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.qr-box {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold-solid);
}

#dynamic-qr-code {
    width: 200px;
    height: 200px;
    display: block;
    margin: 0 auto;
}

.upi-id-text {
    color: #333;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 10px;
    letter-spacing: 1px;
}

.pulse-icon {
    animation: pulse 2s infinite;
}

/* --- Combo Ads Styles --- */
.combo-pair-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    border: 2px solid rgba(212, 175, 55, 0.5); /* Thin golden rectangle */
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

/* Hovering the pair wrapper activates the video container hover effects */
.combo-pair-wrapper:hover {
    border-color: rgba(212, 175, 55, 1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.combo-pair-wrapper:hover .video-container video {
    opacity: 1;
}

.combo-pair-wrapper .video-card {
    margin-bottom: 0;
    min-width: 0;
}

.combo-ref-box {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--gold-light);
    font-weight: bold;
    letter-spacing: 2px;
}

/* On mobile, stack the combo videos */
@media (max-width: 768px) {
    .combo-pair-wrapper {
        flex-direction: column;
        gap: 20px;
    }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* --- Form Layout Helpers --- */
.form-row {
    display: flex;
    gap: 20px;
}

.flex-1 {
    flex: 1;
}

.premium-select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-main);
    font-size: 1rem;
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(212, 175, 55, 1)' 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 15px center;
    background-size: 16px;
    cursor: pointer;
}

.premium-select:focus {
    outline: none;
    border-color: var(--gold-light);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

.premium-select option {
    background: #111;
    color: #fff;
}

/* Premium Card Reference Badge Styling */
.card-ref-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--gold-solid);
    color: var(--gold-solid);
    padding: 4px 12px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    pointer-events: none;
    transition: all 0.3s ease;
}

.video-container:hover .card-ref-badge {
    border-color: #fff;
    color: #fff;
    box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}

/* --- Help Preference Selector & Layout System --- */
.help-selector-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: -5px;
    margin-bottom: 20px;
    width: 100%;
}

.help-selector-container {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    user-select: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.help-selector-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: bold;
    font-family: var(--font-body);
}

.help-radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-main);
    transition: color 0.2s ease;
}

.help-radio-label:hover {
    color: var(--gold-solid);
}

.help-radio-label input[type="radio"] {
    accent-color: #007bff; /* modern blue dot for selected state */
    width: 14px;
    height: 14px;
    cursor: pointer;
}

/* Two-Column Form and Sidebar Layout */
.order-modal-layout {
    display: flex;
    flex-direction: row;
    gap: 25px;
    width: 100%;
    align-items: stretch;
    transition: all 0.4s ease;
}

.order-form-left {
    flex: 1;
    min-width: 0;
}

/* Animated Glassmorphic Golden Sidebar */
.order-form-help-sidebar {
    width: 280px;
    min-width: 280px;
    background: rgba(15, 15, 15, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px dashed rgba(212, 175, 55, 0.45);
    border-radius: 12px;
    padding: 20px;
    align-self: flex-start;
    position: sticky;
    top: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateX(0);
}

.order-form-help-sidebar.hidden {
    display: none !important;
    opacity: 0;
    transform: translateX(20px);
    width: 0;
    min-width: 0;
    padding: 0;
    border: none;
}

/* Premium Visual Field Highlighting */
.form-group {
    transition: all 0.3s ease;
}

.form-group label {
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.form-group input,
.form-group textarea,
.form-group select {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group.focused label {
    color: var(--gold-solid) !important;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.form-group.focused input,
.form-group.focused textarea,
.form-group.focused select {
    border-color: var(--gold-solid) !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2) !important;
}

/* Active Styling for calculated boxes */
.order-price-box,
.order-payment-section {
    transition: all 0.3s ease;
}

.order-price-box.focused,
.order-payment-section.focused {
    border-color: var(--gold-solid) !important;
    background: rgba(212, 175, 55, 0.12) !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25) !important;
}

/* Responsive Stacking Queries */
@media (max-width: 900px) {
    .order-modal-layout {
        flex-direction: column;
        gap: 20px;
    }
    .order-form-help-sidebar {
        width: 100%;
        min-width: 100%;
        position: sticky;
        top: 0;
        z-index: 100;
        order: -1; /* Move to the top on mobile */
        background: rgba(10, 10, 10, 0.98);
        box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        border: 1px solid var(--gold-solid);
        margin-bottom: 20px;
        align-self: stretch;
    }
}

/* Contact QR visibility and interaction */
.desktop-qr:hover {
    transform: scale(2.2) translateX(-10px);
    z-index: 10;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8) !important;
}

@media (max-width: 768px) {
    .desktop-qr {
        display: none !important;
    }
}

/* Contact Modal 3D Glass Buttons */
.contact-glass-btn {
    background: rgba(10, 10, 10, 0.6) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    transform: translate(-4px, -4px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    border-radius: 8px !important;
    position: relative;
    overflow: visible;
}

/* Common glossy overlay for buttons */
.contact-glass-btn::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 100%);
    pointer-events: none; 
    z-index: 2;
}

.contact-glass-btn:active {
    transform: translate(0px, 0px) !important;
    box-shadow: 
        inset 1px 1px 8px rgba(0,0,0,0.8),
        inset -1px -1px 3px rgba(255,255,255,0.1),
        0px 0px 0 rgba(0, 0, 0, 0),
        2px 2px 5px rgba(0,0,0,0.4) !important;
}

.cg-gold {
    box-shadow: 
        inset 1px 1px 3px rgba(255,255,255,0.4),
        1px 1px 0 rgba(212, 175, 55, 0.4), 
        2px 2px 0 rgba(212, 175, 55, 0.3), 
        3px 3px 0 rgba(212, 175, 55, 0.2), 
        4px 4px 0 rgba(212, 175, 55, 0.1), 
        8px 8px 15px rgba(0,0,0,0.8) !important;
}
.cg-gold:hover {
    transform: translate(-5px, -5px) !important;
    box-shadow: 
        inset 1px 1px 3px rgba(255,255,255,0.5),
        1px 1px 0 rgba(212, 175, 55, 0.5), 
        2px 2px 0 rgba(212, 175, 55, 0.4), 
        3px 3px 0 rgba(212, 175, 55, 0.3), 
        4px 4px 0 rgba(212, 175, 55, 0.2), 
        5px 5px 0 rgba(212, 175, 55, 0.1), 
        12px 12px 25px rgba(0,0,0,0.9) !important;
}

.cg-red {
    box-shadow: 
        inset 1px 1px 3px rgba(255,255,255,0.4),
        1px 1px 0 rgba(225, 48, 108, 0.4), 
        2px 2px 0 rgba(225, 48, 108, 0.3), 
        3px 3px 0 rgba(225, 48, 108, 0.2), 
        4px 4px 0 rgba(225, 48, 108, 0.1), 
        8px 8px 15px rgba(0,0,0,0.8) !important;
}
.cg-red:hover {
    transform: translate(-5px, -5px) !important;
    box-shadow: 
        inset 1px 1px 3px rgba(255,255,255,0.5),
        1px 1px 0 rgba(225, 48, 108, 0.5), 
        2px 2px 0 rgba(225, 48, 108, 0.4), 
        3px 3px 0 rgba(225, 48, 108, 0.3), 
        4px 4px 0 rgba(225, 48, 108, 0.2), 
        5px 5px 0 rgba(225, 48, 108, 0.1), 
        12px 12px 25px rgba(0,0,0,0.9) !important;
}

.cg-blue {
    box-shadow: 
        inset 1px 1px 3px rgba(255,255,255,0.4),
        1px 1px 0 rgba(0, 136, 204, 0.4), 
        2px 2px 0 rgba(0, 136, 204, 0.3), 
        3px 3px 0 rgba(0, 136, 204, 0.2), 
        4px 4px 0 rgba(0, 136, 204, 0.1), 
        8px 8px 15px rgba(0,0,0,0.8) !important;
}
.cg-blue:hover {
    transform: translate(-5px, -5px) !important;
    box-shadow: 
        inset 1px 1px 3px rgba(255,255,255,0.5),
        1px 1px 0 rgba(0, 136, 204, 0.5), 
        2px 2px 0 rgba(0, 136, 204, 0.4), 
        3px 3px 0 rgba(0, 136, 204, 0.3), 
        4px 4px 0 rgba(0, 136, 204, 0.2), 
        5px 5px 0 rgba(0, 136, 204, 0.1), 
        12px 12px 25px rgba(0,0,0,0.9) !important;
}

/* Global Hidden Utility Class */
.hidden:not(.modal) {
    display: none !important;
}

/* --- Mobile App UI Overhaul --- */
.menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--gold-solid);
    z-index: 1100;
}

@media (max-width: 768px) {
    /* Enable Hamburger Icon */
    .menu-toggle {
        display: block;
    }
    
    /* Transform Nav Links into a sliding glass panel */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-left: 1px solid var(--glass-border);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    }
    
    .nav-links.mobile-active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        font-size: 1.3rem;
        display: block;
        padding: 10px;
    }
    
    /* Optimize Grids and Layout for Mobile */
    .mobile-grid {
        grid-template-columns: 1fr !important;
        padding: 0 15px;
        gap: 25px;
    }
    
    /* Adjust typography for readability */
    .section-title h2 { font-size: 2.2rem; }
    .desire-heading { font-size: 2.2rem; }
    
    /* Improve button touch targets */
    .btn { padding: 15px 25px; font-size: 1rem; }
}

@media (max-width: 768px) {
    .qr-box-desktop {
        display: none !important;
    }
    .upi-button-mobile {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .desktop-text { display: none !important; }
    .mobile-text { display: inline !important; }
}

.cg-green {
    box-shadow: 
        inset 1px 1px 3px rgba(255,255,255,0.4),
        1px 1px 0 rgba(37, 211, 102, 0.4), 
        2px 2px 0 rgba(37, 211, 102, 0.3), 
        3px 3px 0 rgba(37, 211, 102, 0.2), 
        4px 4px 15px rgba(0,0,0,0.1) !important;
}
.cg-green:hover {
    transform: translate(-5px, -5px) !important;
    box-shadow: 
        inset 1px 1px 3px rgba(255,255,255,0.5),
        1px 1px 0 rgba(37, 211, 102, 0.5), 
        2px 2px 0 rgba(37, 211, 102, 0.4), 
        3px 3px 0 rgba(37, 211, 102, 0.3), 
        4px 4px 0 rgba(37, 211, 102, 0.2), 
        5px 5px 0 rgba(37, 211, 102, 0.1), 
        8px 8px 20px rgba(0,0,0,0.15) !important;
}

/* Circular Black Glass Base for Logo */
.black-glass-logo {
    width: 110px;
    height: 110px;
    margin: -130px auto 75px auto;
    position: relative;
    z-index: 10;
    border-radius: 50%;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.black-glass-logo img {
    width: 120%;
    height: auto;
    margin-top: 3px;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}
