/* ==========================================================================
   Bodia Minimalist Design Tokens
   ========================================================================== */
:root {
    --bg-dark: #0A0A0C;
    --bg-slate: #111115;
    --bg-glass: rgba(10, 10, 12, 0.75);
    --border-glass: rgba(255, 255, 255, 0.05);
    
    --accent-saffron: #FF7E27;
    --accent-gold: #FF9F1C;
    --accent-honey: #E0A96D;
    
    --text-white: #FFFFFF;
    --text-ash: #9A9AA4;
    --text-dark: #0A0A0C;
    
    --grad-primary: linear-gradient(135deg, #FF7E27 0%, #FF9F1C 100%);
    --grad-dark: linear-gradient(180deg, #111115 0%, #0A0A0C 100%);
    
    --shadow-premium: 0 30px 65px rgba(0, 0, 0, 0.7), 0 0 100px rgba(255, 126, 39, 0.02);
    --shadow-glow: 0 0 30px rgba(255, 126, 39, 0.15);
    
    --font-heading: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.03em;
}

p {
    color: var(--text-ash);
    font-size: 15px;
}

/* ==========================================================================
   Ambient Background Glow Blobs
   ========================================================================== */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.18;
}
.blob-orange {
    width: 500px;
    height: 500px;
    background: var(--accent-saffron);
    top: 50px;
    right: -100px;
}
.blob-gold {
    width: 600px;
    height: 600px;
    background: var(--accent-gold);
    top: 900px;
    left: -200px;
}

/* ==========================================================================
   Header & Sticky Nav
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-container {
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    gap: 40px;
}
.nav-item {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-ash);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    padding: 6px 0;
}
.nav-item:hover {
    color: var(--text-white);
}
.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-saffron);
    transition: width 0.3s ease;
}
.nav-item:hover::after {
    width: 100%;
}

/* ==========================================================================
   UI Buttons & Badges
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}
.btn-primary {
    background: var(--grad-primary);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(255, 126, 39, 0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 126, 39, 0.45);
}
.btn-accent {
    background: transparent;
    color: var(--accent-honey);
    border: 1px solid var(--accent-honey);
}
.btn-accent:hover {
    background: rgba(224, 169, 109, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(224, 169, 109, 0.1);
}
.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-glass);
}
.btn-outline:hover {
    border-color: var(--text-white);
    background: rgba(255, 255, 255, 0.02);
}
.btn-sm {
    padding: 10px 22px;
    font-size: 13px;
}
.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}
.btn-xs {
    padding: 8px 16px;
    font-size: 12px;
}
.btn-block {
    display: flex;
    width: 100%;
}

.badge {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.badge-success {
    background: rgba(16, 185, 129, 0.08);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.pipeline-badge {
    background: rgba(245, 158, 11, 0.08);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.2);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}
.partner-badge {
    background: rgba(59, 130, 246, 0.08);
    color: #3B82F6;
    border: 1px solid rgba(59, 130, 246, 0.2);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}
.delivery-badge {
    background: rgba(139, 92, 246, 0.08);
    color: #8B5CF6;
    border: 1px solid rgba(139, 92, 246, 0.2);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

/* ==========================================================================
   Hero Section: Big Bold Typography
   ========================================================================== */
.hero-section {
    padding-top: 170px;
    padding-bottom: 100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.badge-wrapper {
    margin-bottom: 24px;
}
.launch-badge {
    background: rgba(255, 126, 39, 0.08);
    border: 1px solid rgba(255, 126, 39, 0.15);
    color: var(--accent-saffron);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.hero-title {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 28px;
    text-transform: uppercase;
}
.serif-title {
    font-family: var(--font-serif);
    font-weight: 400;
    text-transform: lowercase;
    font-style: italic;
    color: var(--text-white);
}
.saffron-title {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-ash);
    margin-bottom: 44px;
    max-width: 580px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Immersive Hero Frame */
.hero-visual {
    display: flex;
    justify-content: center;
}
.minimal-frame {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 0.85;
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.01);
    box-shadow: var(--shadow-premium);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
}
.frame-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 126, 39, 0.12) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}
.abstract-svg-illustration {
    z-index: 1;
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    display: block;
}

/* ==========================================================================
   Section & Layout Archetypes
   ========================================================================== */
section {
    padding: 120px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 80px;
}
.section-title {
    font-size: 42px;
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 16px;
    color: var(--text-ash);
}
.section-indicator {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--accent-honey);
    display: block;
    margin-bottom: 12px;
}

.section-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}
.layout-reverse .section-intro {
    order: 2;
}

.pillar-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--accent-saffron);
    display: block;
    margin-bottom: 16px;
}
.section-headline {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.serif-sub {
    font-family: var(--font-serif);
    font-weight: 400;
    text-transform: lowercase;
    font-style: italic;
    color: var(--accent-honey);
}
.section-desc {
    font-size: 16px;
    color: var(--text-ash);
    line-height: 1.7;
}

/* ==========================================================================
   01 / Curated Eateries Animated SVGs
   ========================================================================== */
.eateries-visual-panel {
    width: 100%;
    max-width: 440px;
    background: var(--bg-slate);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-premium);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.abstract-svg-panel {
    animation: simpleFloat 6s ease-in-out infinite;
}

/* ==========================================================================
   02 / Self-Pickup Animated Routing
   ========================================================================== */
.interactive-pickup-widget {
    width: 100%;
    max-width: 440px;
    background: var(--bg-slate);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-premium);
    margin: 0 auto;
}
.pickup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 18px;
    margin-bottom: 28px;
}
.pickup-header h4 {
    font-size: 16px;
    font-weight: 700;
}
.live-dot {
    font-size: 10px;
    font-weight: 700;
    color: #10B981;
    letter-spacing: 0.05em;
    animation: blinkGlow 1.5s infinite alternate;
}

.abstract-route-svg {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 32 / 20;
}
.route-line-active-anim {
    stroke-dashoffset: 400;
    animation: routeTravel 8s linear infinite;
}

/* ==========================================================================
   03 / Pre-Order Scheduler Animated clock
   ========================================================================== */
.interactive-scheduler-card {
    width: 100%;
    max-width: 440px;
    background: var(--bg-slate);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-premium);
    margin: 0 auto;
}
.abstract-clock-svg {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 32 / 18;
}
.clock-hour-hand {
    transform-origin: 160px 90px;
    animation: clockRotate 40s linear infinite;
}
.clock-minute-hand {
    transform-origin: 160px 90px;
    animation: clockRotate 6s linear infinite;
}

/* ==========================================================================
   04 / Temple Prasad (Abadha) Module (Incense smoke)
   ========================================================================== */
.prasad-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-slate) 100%);
}

.temple-interactive-widget {
    width: 100%;
    max-width: 580px;
    background: var(--bg-slate);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-premium);
    margin: 0 auto;
}
.temple-interactive-widget h3 {
    font-size: 16px;
    color: var(--accent-honey);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.temple-selector-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}
.temple-btn {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 16px 12px;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.temple-btn:hover {
    border-color: rgba(255, 255, 255, 0.15);
}
.temple-btn.active {
    background: rgba(255, 126, 39, 0.03);
    border-color: var(--accent-saffron);
}
.temple-btn strong {
    display: block;
    font-size: 13px;
    color: var(--text-white);
    margin-bottom: 2px;
}
.temple-btn.active strong {
    color: var(--accent-saffron);
}
.temple-btn span {
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-ash);
}

.temple-details-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 24px;
    animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.temple-details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.temple-details-header h4 {
    font-size: 18px;
    font-weight: 700;
}
.temple-details-card p {
    font-size: 13px;
    margin-bottom: 20px;
}
.temple-menu h5 {
    font-size: 12px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.temple-menu ul {
    list-style: none;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 20px;
}
.temple-menu li {
    margin-bottom: 6px;
}
.temple-booking-info {
    font-size: 11px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 14px;
}

.prasad-illustration-box {
    margin-bottom: 20px;
}
.temple-svg-vector {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 30 / 12;
}
.smoke-line {
    stroke-dasharray: 20 60;
    animation: smokeFloat 4s linear infinite;
}
.smoke-2 {
    animation-delay: 2s;
}

/* ==========================================================================
   Alliance Hub: Enlarged Form Inputs for Visibility
   ========================================================================== */
.alliance-section {
    background: linear-gradient(180deg, var(--bg-slate) 0%, var(--bg-dark) 100%);
}

.alliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.alliance-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}
.alliance-tab-btn {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    color: var(--text-ash);
    padding: 14px 24px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.alliance-tab-btn:hover {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.15);
}
.alliance-tab-btn.active {
    background: var(--grad-primary);
    color: var(--text-white);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 126, 39, 0.25);
}

.alliance-form-container {
    background: var(--bg-slate);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--shadow-premium);
    min-height: 480px;
}
.alliance-form {
    animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.form-title-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.form-title-group h3 {
    font-size: 22px;
}
.form-description {
    font-size: 14px;
    color: var(--text-ash);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 18px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-ash);
    margin-bottom: 6px;
}

/* Enlarged text fields for good visibility */
.enlarged-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 16px 18px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 17px;
    outline: none;
    transition: all 0.3s;
}
.enlarged-input:focus {
    border-color: var(--accent-saffron);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 15px rgba(255, 126, 39, 0.1);
}
select.enlarged-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%239A9AA4' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 18px;
    padding-right: 45px !important;
}
textarea.enlarged-input {
    resize: vertical;
}

/* AI Terminal Frame Styling */
.alliance-console-box {
    display: flex;
    flex-direction: column;
}
.console-card {
    background: #060608;
    border: 1px solid #1f1f2a;
    border-radius: 24px;
    height: 100%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}
.console-header {
    background: #111116;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid #1f1f2a;
}
.console-dots {
    color: #FF5F56;
    font-size: 12px;
    letter-spacing: -2px;
}
.console-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    color: var(--text-ash);
}
.console-status {
    font-size: 9px;
    font-weight: 800;
    color: #10B981;
    letter-spacing: 0.05em;
}

.console-body {
    padding: 24px;
    flex: 1;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    color: #CCCCCC;
    line-height: 1.6;
    overflow-y: auto;
    background: #060608;
}
.console-line {
    margin-bottom: 12px;
    white-space: pre-wrap;
}
.text-green { color: #10B981; }
.text-gold { color: var(--accent-gold); }
.text-dim { color: #666666; }

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background: #050507;
    padding: 100px 0 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-ash);
    margin-top: 16px;
    margin-bottom: 24px;
    max-width: 330px;
}
.copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.1) !important;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    color: var(--text-white);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 14px;
}
.foot-link {
    font-size: 13px;
    color: var(--text-ash);
    text-decoration: none;
    transition: color 0.3s;
}
.foot-link:hover {
    color: var(--accent-honey);
}
.admin-lock {
    color: #F59E0B;
}

.foot-address {
    font-size: 13px;
    color: var(--text-ash);
    margin-bottom: 14px;
}
.foot-address strong {
    color: var(--text-white);
}

.call-link, .email-link {
    color: var(--accent-honey);
    text-decoration: none;
    font-weight: 600;
}
.call-link:hover, .email-link:hover {
    text-decoration: underline;
}

.love-signature {
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--accent-gold);
    margin-top: 35px;
}

/* ==========================================================================
   Animations & Transitions Keyframes
   ========================================================================== */
@keyframes blinkGlow {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes simpleFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

@keyframes clockRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes routeTravel {
    0% { stroke-dashoffset: 400; }
    100% { stroke-dashoffset: 0; }
}

@keyframes smokeFloat {
    0% { stroke-dashoffset: 80; opacity: 0; }
    50% { opacity: 0.7; }
    100% { stroke-dashoffset: 0; opacity: 0; }
}

/* ==========================================================================
   Responsive Breakpoints & Responsive Drawer Layouts
   ========================================================================== */

/* Hamburger Toggle Button Styles */
.menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 150;
    outline: none;
    position: relative;
}
.menu-toggle .hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Morphing hamburger lines into 'X' */
.menu-toggle.is-active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--accent-saffron);
}
.menu-toggle.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--accent-saffron);
}

/* Glassmorphic Mobile Drawer Overlay */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(8, 8, 10, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: calc(100px + env(safe-area-inset-top)) 24px calc(40px + env(safe-area-inset-bottom));
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.4s ease,
                visibility 0.4s;
    border-left: 1px solid var(--border-glass);
}
.mobile-menu-drawer.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    width: 100%;
    margin-top: 20px;
}
.mobile-nav-item {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-ash);
    text-decoration: none;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(15px);
    position: relative;
    padding: 6px 0;
}
.mobile-menu-drawer.open .mobile-nav-item {
    opacity: 1;
    transform: translateY(0);
}
/* Link animations staggered entries */
.mobile-menu-drawer.open .mobile-nav-item:nth-child(1) { transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s; }
.mobile-menu-drawer.open .mobile-nav-item:nth-child(2) { transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s; }
.mobile-menu-drawer.open .mobile-nav-item:nth-child(3) { transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s; }
.mobile-menu-drawer.open .mobile-nav-item:nth-child(4) { transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.4s; }
.mobile-menu-drawer.open .mobile-cta-btn { transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s; opacity: 1; transform: translateY(0); }

.mobile-nav-item:hover,
.mobile-nav-item:focus {
    color: var(--text-white);
    transform: scale(1.05);
}
.mobile-nav-item:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 2px;
    background: var(--accent-saffron);
}
.mobile-cta-btn {
    opacity: 0;
    transform: translateY(15px);
    width: 100%;
    max-width: 280px;
    margin-top: 15px;
}
.mobile-drawer-footer {
    text-align: center;
    border-top: 1px solid var(--border-glass);
    padding-top: 24px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .hero-grid,
    .section-layout,
    .alliance-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-visual,
    .eateries-visual-panel,
    .interactive-pickup-widget,
    .temple-interactive-widget,
    .alliance-console-box {
        order: 2; /* Visual elements below descriptions on tablet */
    }
    
    .hero-content,
    .section-intro,
    .alliance-forms-box {
        order: 1; /* Form & content first */
    }

    .hero-title {
        font-size: clamp(34px, 6vw, 56px);
    }
    .section-headline {
        font-size: clamp(28px, 4.5vw, 40px);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-links,
    .nav-cta {
        display: none !important;
    }
    .logo-badge-pill {
        padding: 6px 14px;
    }
    
    /* Alliance responsive flex settings */
    .alliance-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .alliance-forms-box {
        order: 1;
    }
    .alliance-console-box {
        order: 2;
        min-height: auto;
    }
    .console-card {
        min-height: 380px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 18px;
    }
    
    .main-header {
        height: 68px;
    }
    .nav-container {
        height: 68px;
    }
    .logo-badge-pill {
        padding: 5px 12px !important;
    }
    .bodia-logo-svg {
        width: 88px !important;
        height: 27px !important;
    }
    
    /* Hero section font sizing & layout improvements */
    .hero-section {
        padding-top: 105px;
        padding-bottom: 45px;
    }
    .launch-badge {
        font-size: 11px;
        padding: 5px 12px;
        letter-spacing: 0.05em;
        font-weight: 800;
    }
    .hero-title {
        font-size: clamp(30px, 9vw, 42px);
        margin-bottom: 18px;
        line-height: 1.15;
        letter-spacing: -0.02em;
    }
    .hero-subtitle {
        font-size: 15.5px;
        color: #E5E5EA; /* Highly visible bright off-white */
        margin-bottom: 32px;
        line-height: 1.65;
        font-weight: 400;
    }
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
        padding: 16px 32px;
        font-size: 16px;
        font-weight: 700;
    }
    
    .minimal-frame {
        width: 100%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 0.85;
    }
    
    /* Section specific mobile legibility upgrades */
    .section-headline {
        font-size: clamp(26px, 7vw, 36px);
        line-height: 1.15;
        margin-bottom: 16px;
    }
    .section-desc {
        font-size: 15px;
        color: #E2E2E8; /* Brightened for high contrast */
        line-height: 1.7;
    }
    .pillar-number {
        font-size: 12px;
        margin-bottom: 12px;
        font-weight: 800;
    }
    
    .eatery-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    
    .interactive-pickup-widget,
    .interactive-scheduler-card,
    .temple-interactive-widget,
    .alliance-form-container {
        padding: 20px;
    }
    
    /* Swipeable Temple Pill Selector with Premium Contrast */
    .temple-selector-row {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 4px 4px 12px;
        margin-bottom: 22px;
        width: 100%;
    }
    .temple-selector-row::-webkit-scrollbar {
        display: none;
    }
    .temple-btn {
        flex: 0 0 190px; /* Highly touchable swipe pills */
        padding: 14px 12px;
    }
    .temple-btn strong {
        font-size: 13.5px;
        font-weight: 700;
    }
    .temple-btn span {
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 0.05em;
    }
    
    /* Prasad Card Mobile Sizing */
    .temple-details-card {
        padding: 18px;
    }
    .temple-details-header h4 {
        font-size: 17px;
        font-weight: 700;
    }
    .temple-details-card p {
        font-size: 14.5px;
        line-height: 1.6;
        color: #E5E5EA;
    }
    .temple-menu h5 {
        font-size: 12px;
        font-weight: 800;
    }
    .temple-menu ul {
        font-size: 13.5px;
        line-height: 1.7;
    }
    .temple-menu li {
        margin-bottom: 8px;
    }
    
    /* Alliance Form & Console sizing */
    .alliance-tabs {
        flex-direction: column;
        gap: 8px;
    }
    .alliance-tab-btn {
        width: 100%;
        padding: 14px 18px;
        font-size: 14px;
        font-weight: 700;
    }
    
    .form-title-group h3 {
        font-size: 18px;
        font-weight: 700;
    }
    .form-description {
        font-size: 13px;
        line-height: 1.5;
        color: #A0A0AA;
    }
    .form-group label {
        font-size: 14.5px;
        font-weight: 700;
        color: #D1D1D6;
    }
    .enlarged-input {
        font-size: 16px; /* Avoid mobile Safari auto zoom on focus */
        padding: 14px 16px;
    }
    
    .console-body {
        font-size: 13px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ==========================================================================
   Bodia HD Vector Logo Styling & Premium Glassmorphic Badge
   ========================================================================== */
.bodia-logo-svg {
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

/* Premium Frosted Floating Logo Badge */
.logo-badge-pill {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 8px 18px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 0 30px rgba(255, 214, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.logo-badge-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: none;
    z-index: 1;
}

.logo-badge-pill:hover::before {
    animation: shineSweep 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-badge-pill:hover {
    transform: translateY(-2px) scale(1.03);
    background: #FFFFFF;
    box-shadow: 0 10px 25px rgba(255, 214, 0, 0.2), 0 0 50px rgba(255, 126, 39, 0.12);
    border-color: rgba(255, 214, 0, 0.4);
}

/* Shine Sweep Animation */
@keyframes shineSweep {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

/* Concentric Yellow "o" Breathing Animation (Pulsing from Bottom Tangency Anchor 106px, 82px) */
.logo-o-outer {
    transform-origin: 106px 82px;
    animation: logoPulse 4s ease-in-out infinite;
}
.logo-o-mid {
    transform-origin: 106px 82px;
    animation: logoPulse 4s ease-in-out infinite;
    animation-delay: 0.6s;
}
.logo-o-inner {
    transform-origin: 106px 82px;
    animation: logoPulse 4s ease-in-out infinite;
    animation-delay: 1.2s;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.06);
        filter: brightness(1.08) drop-shadow(0 0 4px rgba(255, 214, 0, 0.4));
    }
}

/* Twinkly gold-yellow dot on top of letter "i" (transform-origin: 224px, 16px) */
.logo-i-dot {
    transform-origin: 224px 16px;
    animation: logoTwinkle 2.5s ease-in-out infinite;
}

@keyframes logoTwinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.85);
        filter: drop-shadow(0 0 3px rgba(255, 214, 0, 0.6));
    }
}

/* ==========================================================================
   Tactile Bouncy Elastic Tap scaling (Mimics Native iOS/Android App Haptics)
   ========================================================================== */
.btn, 
.temple-btn, 
.alliance-tab-btn, 
.dock-item, 
.logo-badge-pill, 
.menu-toggle {
    transition: transform 0.25s cubic-bezier(0.34, 1.6, 0.64, 1), 
                box-shadow 0.25s, 
                background-color 0.25s, 
                border-color 0.25s,
                filter 0.25s !important;
}
.btn:active, 
.temple-btn:active, 
.alliance-tab-btn:active, 
.dock-item:active, 
.logo-badge-pill:active, 
.menu-toggle:active {
    transform: scale(0.94) !important;
}

/* ==========================================================================
   Blinking Terminal caret for AI Onboarding Console
   ========================================================================== */
.console-line::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 12px;
    background-color: #10B981;
    margin-left: 5px;
    vertical-align: middle;
    animation: blinkConsoleCursor 0.9s infinite steps(2);
    opacity: 0;
}
.console-line:last-child::after {
    opacity: 1;
}

@keyframes blinkConsoleCursor {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* ==========================================================================
   Floating Bottom Dock Navigation System (Mobile Only)
   ========================================================================== */
.mobile-bottom-dock {
    display: none; /* completely hidden on desktop */
}

@media (max-width: 768px) {
    .mobile-bottom-dock {
        display: flex;
        position: fixed;
        bottom: calc(18px + env(safe-area-inset-bottom));
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 36px);
        max-width: 410px;
        height: 64px;
        background: rgba(10, 10, 14, 0.72);
        backdrop-filter: blur(28px);
        -webkit-backdrop-filter: blur(28px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 35px;
        z-index: 98; /* floats below overlays, above content */
        box-shadow: 0 16px 45px rgba(0, 0, 0, 0.75), 0 0 50px rgba(255, 126, 39, 0.04);
        justify-content: space-around;
        align-items: center;
        padding: 0 16px;
    }
    
    /* Ensure body doesn't get clipped behind dock */
    body {
        padding-bottom: calc(95px + env(safe-area-inset-bottom)) !important;
    }
    
    .dock-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #8A8A93;
        height: 100%;
        flex: 1;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .dock-icon {
        font-size: 19px;
        margin-bottom: 2px;
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        display: inline-block;
    }
    
    .dock-label {
        font-family: var(--font-heading);
        font-size: 9.5px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }
    
    /* Active navigation triggers saffron glow and floating shifts */
    .dock-item.active {
        color: var(--accent-saffron);
    }
    
    .dock-item.active .dock-icon {
        transform: translateY(-4px) scale(1.18);
        filter: drop-shadow(0 0 6px rgba(255, 126, 39, 0.5));
    }
    
    /* Hide top header CTA button inside main bar to avoid double visual noise on tablet */
    .nav-cta {
        display: none !important;
    }
}

/* ==========================================================================
   Compliance & Legal Pages (Privacy Policy & Terms) Visual Redesign
   ========================================================================== */
.legal-section {
    padding: 130px 0 80px 0;
    position: relative;
    z-index: 10;
}

.legal-container {
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-card {
    background: var(--bg-slate);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

/* Subtle inner card border highlight */
.legal-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255, 126, 39, 0.03);
    pointer-events: none;
}

.legal-title {
    font-size: clamp(2.2rem, 5.5vw, 3.2rem);
    font-family: var(--font-heading);
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    text-align: center;
    letter-spacing: -0.03em;
}

.legal-meta {
    font-size: 12px;
    color: var(--accent-honey);
    text-align: center;
    margin-bottom: 48px;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.legal-meta::before, .legal-meta::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 1px;
    background-color: var(--border-glass);
}

.legal-body {
    font-family: var(--font-body);
}

.legal-body h3 {
    font-size: clamp(1.2rem, 3.5vw, 1.5rem);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--accent-gold);
    border-left: 3px solid var(--accent-saffron);
    padding-left: 16px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

/* First heading doesn't need huge margin top */
.legal-body > h3:first-of-type,
.legal-body > *:first-child + h3 {
    margin-top: 0;
}

.legal-body p {
    color: #E2E2E8; /* Bright off-white for perfect dark mode readability */
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
    letter-spacing: -0.005em;
}

.legal-body strong {
    color: var(--accent-honey);
    font-weight: 600;
}

/* Lists formatting */
.legal-body ul, .legal-body ol {
    margin-bottom: 28px;
    padding-left: 4px;
}

.legal-body ul {
    list-style: none; /* Strip standard bullet */
}

.legal-body ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #E2E2E8;
    font-size: 15px;
    line-height: 1.7;
}

.legal-body ul li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-saffron);
    font-size: 11px;
}

.legal-body ol {
    padding-left: 20px;
}

.legal-body ol li {
    margin-bottom: 12px;
    color: #E2E2E8;
    font-size: 15px;
    line-height: 1.7;
    padding-left: 4px;
}

.legal-body ol li::marker {
    color: var(--accent-saffron);
    font-weight: 700;
    font-family: var(--font-heading);
}

/* Responsive adjustment for small viewports */
@media (max-width: 768px) {
    .legal-section {
        padding: 100px 0 60px 0;
    }
    
    .legal-card {
        padding: 28px 20px;
        border-radius: 18px;
    }
    
    .legal-meta {
        margin-bottom: 32px;
    }
}

/* ==========================================================================
   Curated Eateries Showcase Interactive Animations
   ========================================================================== */
.curated-showcase-svg {
    overflow: visible;
    width: 100%;
    height: auto;
    aspect-ratio: 38 / 26;
    display: block;
}

.ring-pulse {
    transform-origin: 95px 135px;
    animation: pulseRing 3s infinite ease-in-out;
}

.ring-rotate {
    transform-origin: 95px 135px;
    animation: rotateRing 15s infinite linear;
}

.cloche-group {
    transform-origin: 95px 135px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.eateries-visual-panel:hover .cloche-group {
    transform: translateY(-8px) scale(1.05);
}

.steam-wave {
    stroke-dasharray: 20;
    stroke-dashoffset: 40;
    opacity: 0;
    animation: riseSteam 4s infinite linear;
    transform-origin: 95px 135px;
}

.steam-1 {
    animation-delay: 0.5s;
}
.steam-2 {
    animation-delay: 2s;
}

.audit-pulse {
    animation: pulseGreen 2s infinite ease-in-out;
    transform-origin: 16px 14px;
}

.star-float {
    animation: floatStars 6s infinite ease-in-out;
}
.star-1 {
    animation-delay: 0s;
}
.star-2 {
    animation-delay: 3s;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.96);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.04);
        opacity: 0.6;
    }
    100% {
        transform: scale(0.96);
        opacity: 0.2;
    }
}

@keyframes rotateRing {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes riseSteam {
    0% {
        stroke-dashoffset: 40;
        opacity: 0;
        transform: translateY(4px) scale(0.9);
    }
    15% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0;
        transform: translateY(-25px) scale(1.1);
    }
}

@keyframes pulseGreen {
    0% {
        transform: scale(0.95);
        filter: drop-shadow(0 0 2px rgba(16, 185, 129, 0.4));
    }
    50% {
        transform: scale(1.25);
        filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.8));
    }
    100% {
        transform: scale(0.95);
        filter: drop-shadow(0 0 2px rgba(16, 185, 129, 0.4));
    }
}

@keyframes floatStars {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-6px) scale(1.15);
    }
}


