/* 
 * MAABAGLAMUKHI.GURU - GLOBAL DESIGN SYSTEM
 * Version 1.0
 */

:root {
    /* Color Palette */
    --maroon: #7B1E1E;
    --maroon-dark: #5B1D1D;
    --maroon-deep: #4A0404;
    --maroon-rich: #450102;
    --gold: #FFD700;
    --gold-bright: #FFD700;
    --gold-deep: #C8A000;
    --gold-subtle: rgba(255, 215, 0, 0.3);
    --white: #FFFFFF;
    --off-white: #FDFDFD;
    --text-main: #2A1A1A;
    --text-dark: #2A1A1A;
    --text-muted: #666666;
    --bg-light: #FFFFFF;
    --bg-cream: #FDF8F2;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    
    /* Shadows */
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Base Styles */
body {
    font-family: 'Poppins', 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    margin: 0;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--maroon-deep);
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: var(--section-padding);
}

/* Typography System */
.display-1 { font-size: 3.5rem; line-height: 1.2; }
.display-2 { font-size: 3rem; line-height: 1.2; }
.display-3 { font-size: 2.5rem; line-height: 1.2; }

@media (max-width: 768px) {
    .display-1 { font-size: 2.5rem; }
    .display-2 { font-size: 2.2rem; }
    .display-3 { font-size: 2rem; }
    .section { padding: 50px 0; }
}

/* Button System */
.btn-premium {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-maroon {
    background-color: var(--maroon);
    color: var(--white);
}

.btn-maroon:hover {
    background-color: var(--maroon-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--maroon-deep);
}

.btn-gold:hover {
    background-color: #ffc400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline-gold {
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--maroon-deep);
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--maroon-deep);
}

/* Form Styling */
.form-control-premium {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

.form-control-premium:focus {
    border-color: var(--maroon);
    outline: none;
    box-shadow: 0 0 10px rgba(123, 30, 30, 0.1);
}

/* Cards */
.card-premium {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.03);
}

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

/* Navbar Styles */
.main-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.nav-link-custom {
    color: var(--text-dark) !important;
    font-weight: 600;
    padding: 10px 20px !important;
    position: relative;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-smooth);
}

.nav-link-custom:hover::after {
    width: calc(100% - 40px);
}

/* Marquee / Top Bar */
.top-bar {
    background: var(--maroon-deep);
    color: var(--white);
    font-size: 0.85rem;
}

.top-bar-link {
    color: var(--white);
    opacity: 0.9;
}

.top-bar-link:hover {
    color: var(--gold);
    opacity: 1;
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.15;
}

/* Footer */
.footer-main {
    background: linear-gradient(135deg, #450102 0%, #2d0101 100%);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* Animation Utilities */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Divine Consultation Form */
.divine-consultation-form {
    padding: 20px;
    background: #fff;
}

.form-title {
    font-size: 1.5rem;
    color: var(--maroon-deep);
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.floating-label-group label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--maroon);
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.floating-label-group i {
    position: absolute;
    left: 15px;
    top: 38px;
    color: var(--gold);
    font-size: 1.2rem;
}

.floating-label-group .form-control,
.floating-label-group .form-select {
    padding-left: 45px;
    height: 50px;
    border-radius: 8px;
    border: 1px solid #eee;
    font-size: 0.9rem;
}

.btn-confirm-booking {
    width: 100%;
    padding: 15px;
    background: var(--maroon);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.btn-confirm-booking:hover {
    background: var(--maroon-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Helper Classes */
.text-maroon { color: var(--maroon) !important; }
.text-gold { color: var(--gold) !important; }
.italic { font-style: italic; }
.shadow-lg { box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important; }
.bg-maroon { background-color: var(--maroon) !important; }
.bg-maroon-deep { background-color: var(--maroon-deep) !important; }

/* Footer Styling */
.footer-main {
    background: linear-gradient(135deg, #450102 0%, #2d0101 100%);
    color: var(--white);
    padding: 80px 0 20px;
    border-top: 5px solid var(--gold);
}

.footer-heading {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    transition: var(--transition-smooth);
}

.footer-social-icon:hover {
    background: var(--gold);
    color: var(--maroon-deep);
    transform: translateY(-3px);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-main { padding: 50px 0 20px; text-align: center; }
    .footer-heading { margin-top: 20px; }
    .footer-link { justify-content: center; }
    .footer-social-icon { margin: 0 auto; }
}

/* ========================================================================
   CONTACT PAGE — Intl Tel Input & Map Embed Styles
   ======================================================================== */
.iti { width: 100%; }
.iti__country-list {
    z-index: 1050;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1.5px solid #D4AF37;
    background: #ffffff;
    max-height: 320px;
    min-width: 300px;
    width: max-content;
    max-width: 90vw;
    overflow-y: auto;
}
.iti__selected-flag {
    background: rgba(255,252,245,0.95);
    border-radius: 12px 0 0 12px;
    padding: 0 12px;
}
.iti__selected-dial-code {
    color: #1a1a1a !important;
    font-weight: 700;
    font-size: 15px !important;
    margin-left: 4px;
}
.iti--allow-dropdown input { padding-left: 100px !important; }
.iti--separate-dial-code .iti__selected-flag { background: transparent !important; }

/* Map embed */
.map-embed-wrapper { padding: 0; }
.map-responsive iframe {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    border: 2px solid rgba(212,175,55,0.3) !important;
}
.map-directions-link {
    text-decoration: none;
    transition: color 0.3s ease;
}
.map-directions-link:hover { color: #fff !important; }

/* Contact details grid mobile */
.contact-details-card .detail-row { display: flex; align-items: flex-start; }
@media (max-width: 767px) {
    .contact-details-card {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
    .contact-details-card .detail-row { flex-direction: column; }
    .contact-details-card .detail-icon-wrap { margin-bottom: 8px; }
}

/* ========================================================================
   BOOKING PAGE — Premium Styles
   ======================================================================== */
.bk-page { background: linear-gradient(135deg, #fffbf0 0%, #fff5e6 100%); min-height: 100vh; }

/* Hero */
.bk-hero {
    position: relative;
    padding: 130px 0 100px;
    background: linear-gradient(135deg, #1c0000 0%, #3a0000 50%, #150000 100%) !important;
    border-bottom: 4px solid #D4AF37;
    overflow: hidden;
}
.bk-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}
.bk-hero-bg {
    position: absolute; inset: 0;
    background: url('images/baglamukhi-hawan.webp') center/cover no-repeat;
    background-attachment: fixed;
    opacity: 0.15;
    mix-blend-mode: overlay;
    z-index: 1;
}
.bk-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(28, 0, 0, 0.8) 0%, rgba(58, 0, 0, 0.6) 50%, rgba(21, 0, 0, 0.9) 100%);
    z-index: 1;
}
.bk-eyebrow {
    display: inline-block;
    background: linear-gradient(90deg, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0.2) 50%, rgba(212,175,55,0.1) 100%);
    color: #FFD700;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(212,175,55,0.4);
    box-shadow: 0 4px 15px rgba(212,175,55,0.1);
    backdrop-filter: blur(5px);
}
.bk-hero-title {
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 4rem) !important;
    font-weight: 800;
    line-height: 1.15;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
    letter-spacing: -0.5px;
    font-family: var(--font-serif), Cinzel, Georgia, serif;
    margin-bottom: 8px;
}
.bk-hero-subtitle {
    display: block;
    color: #FFD700;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.35);
    margin-bottom: 24px;
    font-family: var(--font-serif), Cinzel, Georgia, serif;
}
.bk-hero-desc {
    color: #FFF4D6 !important;
    font-size: 1.12rem;
    max-width: 750px;
    line-height: 1.8;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    opacity: 0.95;
    margin: 0 auto;
}
.bk-crumb-link { color: rgba(255,255,255,0.72); text-decoration: none; font-weight: 500; }
.bk-crumb-link:hover { color: #FFD700; }
.bk-crumb-active { color: #FFD700 !important; }

/* Buttons */
.btn-bk-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #4A0404; border: none; font-weight: 700;
    box-shadow: 0 8px 25px rgba(212,175,55,0.25);
    transition: all 0.3s ease;
}
.btn-bk-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(212,175,55,0.4); color: #3a0505; }
.btn-bk-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff; border: none; font-weight: 700;
    transition: all 0.3s ease;
}
.btn-bk-whatsapp:hover { transform: translateY(-2px); color: #fff; }

/* Form Section */
.bk-form-section { padding: 40px 0 30px; }
.bk-main-card {
    background: #fff; border-radius: 28px; overflow: hidden;
    box-shadow: 0 25px 80px rgba(74,4,4,0.12);
    border: 1px solid rgba(212,175,55,0.12);
}
.bk-form-col { background: #fff; padding: 35px 30px; }
.bk-form-inner { max-width: 420px; margin: 0 auto; }
.bk-purn-img { width: 72px; height: auto; margin-bottom: 20px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15)); }
.bk-form-title { color: #4A0404; font-size: 1.6rem; font-weight: 800; margin-bottom: 6px; }
.bk-form-subtitle { color: #8C5B2F; font-size: 0.9rem; margin-bottom: 30px; }

/* Form Fields */
.bk-field-group { margin-bottom: 22px; }
.bk-label {
    display: block; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.2px;
    color: #5d0f11; margin-bottom: 8px;
}
.bk-required { color: #dc3545; }
.bk-input {
    width: 100%; height: 64px; background: #f7f3ed !important;
    border: 2px solid transparent !important;
    border-radius: 16px !important; padding: 14px 18px !important;
    font-size: 0.98rem !important; color: #2A1A1A;
    transition: all 0.3s ease !important;
}
.bk-input:focus {
    background: #fff !important;
    border-color: #FFD700 !important;
    box-shadow: 0 0 0 4px rgba(255,215,0,0.12) !important;
    outline: none !important;
}
.bk-input.bk-input-error { border-color: #dc3545 !important; }
.bk-input::placeholder { color: #999; }
.bk-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%235d0f11' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L1 4h14z'/%3E%3C/svg%3E") !important; background-repeat: no-repeat !important; background-position: right 16px center !important; padding-right: 42px !important; cursor: pointer; }
.bk-textarea { resize: vertical; min-height: 110px; }
.bk-hint { display: block; font-size: 0.78rem; color: #8C5B2F; margin-top: 6px; line-height: 1.5; }
.bk-field-error { color: #dc3545; font-size: 0.82rem; margin-top: 6px; font-weight: 600; background: rgba(220,53,69,0.08); border: 1px solid rgba(220,53,69,0.2); padding: 8px 12px; border-radius: 8px; display: none; }
.bk-phone-wrapper { position: relative; }
.bk-phone-wrapper.bk-phone-error .bk-phone-input { border-color: #dc3545 !important; box-shadow: 0 0 0 3px rgba(220,53,69,0.15) !important; }
.bk-phone-input { padding-left: 72px !important; }
.bk-phone-wrapper .iti { width: 100% !important; }
.bk-phone-wrapper .iti__selected-flag { border-radius: 12px 0 0 12px !important; }

/* Submit Button */
.btn-bk-submit {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #4A0404; font-weight: 800; font-size: 1rem;
    text-transform: uppercase; letter-spacing: 1.5px;
    border: none; border-radius: 14px;
    box-shadow: 0 8px 25px rgba(212,175,55,0.35);
    transition: all 0.3s ease; padding: 16px 30px;
}
.btn-bk-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(212,175,55,0.5); }
.btn-bk-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* Trust Row */
.bk-trust-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.bk-trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: #28a745; font-weight: 600; }
.bk-trust-item i { font-size: 1rem; }

/* Or Divider */
.bk-or-divider { display: flex; align-items: center; gap: 12px; margin: 24px 0; }
.bk-or-divider::before, .bk-or-divider::after { content: ''; flex: 1; height: 1px; background: rgba(212,175,55,0.2); }
.bk-or-divider span { color: #999; font-size: 0.85rem; font-weight: 500; }

/* WhatsApp Button */
.btn-bk-wa-full {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff; border: none; font-size: 0.95rem; font-weight: 700;
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease; text-decoration: none;
    box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.btn-bk-wa-full:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 10px 30px rgba(37,211,102,0.4); }

/* Info Column */
.bk-info-col {
    background: linear-gradient(160deg, #6b0000 0%, #4a0000 100%);
    padding: 48px 44px; color: #fff;
}
.bk-info-inner { max-width: 580px; }
.bk-info-eyebrow { display: block; color: #D4AF37; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.bk-info-title { color: #fff2dc !important; font-size: 1.6rem; font-weight: 800; margin-bottom: 16px; line-height: 1.3; }
.bk-info-text { color: rgba(255,255,255,0.9) !important; font-size: 0.98rem; line-height: 1.8; margin-bottom: 32px; }

/* Features Grid */
.bk-features-grid { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.bk-feature-item { display: flex; align-items: flex-start; gap: 16px; transition: transform 0.3s ease; }
.bk-feature-item:hover { transform: translateX(8px); }
.bk-feature-icon {
    width: 64px; height: 64px; flex-shrink: 0;
    background: rgba(255,196,0,0.08); border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,196,0,0.15);
}
.bk-feature-icon i { font-size: 1.5rem; color: #D4AF37; }
.bk-feature-title { color: #fff2dc !important; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.bk-feature-desc { color: rgba(255,255,255,0.8) !important; font-size: 0.88rem; line-height: 1.6; margin: 0; }

/* CTA Box */
.bk-cta-box {
    display: flex; align-items: center; gap: 20px;
    background: rgba(255,215,0,0.06); border: 2px dashed rgba(212,175,55,0.3);
    border-radius: 16px; padding: 24px; margin-bottom: 28px;
}
.bk-cta-icon { width: 52px; height: 52px; background: rgba(212,175,55,0.12); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bk-cta-icon i { font-size: 1.6rem; color: #D4AF37; }
.bk-cta-title { color: #fff2dc !important; font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.bk-cta-text { color: rgba(255,255,255,0.8) !important; font-size: 0.9rem; margin: 0; }
.bk-cta-phone { color: #D4AF37; font-weight: 800; text-decoration: none; }
.bk-cta-phone:hover { color: #fff; }

/* Stats Row */
.bk-stats-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.bk-stat-item { text-align: center; flex: 1; min-width: 80px; }
.bk-stat-num { display: block; color: #D4AF37; font-size: 1.5rem; font-weight: 800; line-height: 1; }
.bk-stat-label { display: block; color: rgba(255,240,220,0.72); font-size: 0.75rem; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.bk-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* Trust Bar */
.bk-trust-bar { padding: 30px 0 50px; }
.bk-trust-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff; padding: 12px 24px; border-radius: 50px;
    box-shadow: 0 4px 20px rgba(74,4,4,0.08); border: 1px solid rgba(212,175,55,0.15);
    transition: all 0.3s ease;
}
.bk-trust-badge:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(74,4,4,0.12); }
.bk-trust-badge i { font-size: 1.3rem; color: #28a745; }
.bk-trust-badge span { font-size: 0.88rem; font-weight: 600; color: #4A0404; }

/* Success State */
.bk-success-state { text-align: center; padding: 20px 0; }
.bk-success-icon { width: 80px; height: 80px; background: linear-gradient(135deg, #28a745, #20c997); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; box-shadow: 0 10px 30px rgba(40,167,69,0.3); }
.bk-success-icon i { font-size: 2.5rem; color: #fff; }
.bk-success-title { color: #4A0404; font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; }
.bk-success-text { color: #666; font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; }
.bk-success-whatsapp { max-width: 320px; margin: 0 auto; }

/* Responsive */
@media (max-width: 991px) {
    .bk-form-col { padding: 40px 28px; }
    .bk-info-col { padding: 40px 28px; }
}
@media (max-width: 767px) {
    .bk-form-inner { padding: 0 4px; }
    .bk-form-col { padding: 28px 16px !important; }
    .bk-info-col { padding: 28px 16px !important; }
    .bk-hero { padding: 70px 0 50px; }
    .bk-hero-title { font-size: 1.8rem !important; }
    .bk-hero-desc { font-size: 0.95rem !important; }
    .btn-bk-gold, .btn-bk-whatsapp { width: 100%; justify-content: center; }
    .bk-form-col, .bk-info-col { padding: 32px 20px; }
    .bk-features-grid { gap: 16px; }
    .bk-stats-row { justify-content: center; }
    .bk-trust-row { gap: 12px; }
    .bk-trust-badge { padding: 10px 16px; }
    .bk-trust-badge span { font-size: 0.78rem; }
    .bk-feature-icon { width: 52px; height: 52px; }
    .bk-feature-icon i { font-size: 1.3rem; }
}
