/* ==========================================================================
   SRI GOENKA MANDIR FATEHPUR (MITRA INFOTECH) - DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

:root {
    /* Color Palette */
    --primary: #991B1B;           /* Sacred Crimson / Temple Red */
    --primary-dark: #7C2D12;      /* Deep Maroon */
    --saffron: #D97706;          /* Deep Saffron */
    --saffron-gold: #F59E0B;     /* Warm Gold */
    --saffron-light: #FEF3C7;    /* Light Saffron Cream */
    
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    
    --bg-main: #FFFFFF;
    --bg-light: #FFFBEB;
    --bg-card: #FFFFFF;
    --bg-dark: #0F172A;
    
    --text-primary: #1C1917;
    --text-secondary: #44403C;
    --text-muted: #78716C;
    --text-light: #F8FAFC;
    
    --border-color: #FDE68A;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 20px -4px rgba(124, 45, 18, 0.12);
    --shadow-lg: 0 20px 30px -10px rgba(15, 23, 42, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-dark);
}

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

ul {
    list-style: none;
}

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

.container {
    width: 92%;
    max-width: 1240px;
    margin: 0 auto;
}

.section-padding {
    padding: 70px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--saffron) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gold {
    color: var(--saffron-gold) !important;
}

.text-green {
    color: var(--whatsapp) !important;
}

.font-bold {
    font-weight: 800;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(153, 27, 27, 0.35);
    border: 1px solid var(--saffron-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(153, 27, 27, 0.45);
    background: linear-gradient(135deg, var(--saffron) 0%, var(--primary) 100%);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

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

.btn-outline {
    border-color: var(--saffron);
    color: var(--primary-dark);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--saffron);
    color: #FFFFFF;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.825rem;
}

.btn-block {
    width: 100%;
}

/* ==================== TOP BAR ==================== */
.top-bar {
    background-color: var(--bg-dark);
    color: #CBD5E1;
    font-size: 0.8rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    width: 100%;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.announcement {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-sacred {
    background: rgba(245, 158, 11, 0.2);
    color: #FBBF24;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.75rem;
    border: 1px solid rgba(245, 158, 11, 0.4);
    white-space: nowrap;
}

.top-contacts {
    display: flex;
    align-items: center;
    gap: 14px;
}

.live-status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: #E2E8F0;
    white-space: nowrap;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--whatsapp);
    box-shadow: 0 0 8px var(--whatsapp);
    animation: pulse 1.5s infinite;
}

.top-link {
    color: #E2E8F0;
    font-weight: 600;
    white-space: nowrap;
}

.top-link.wa {
    color: #4ADE80;
}

/* ==================== HEADER ==================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--saffron-gold);
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 10px 0;
    gap: 16px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--saffron) 100%);
    color: #FFFFFF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 10px rgba(153, 27, 27, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: var(--primary-dark);
    white-space: nowrap;
}

.brand-sub {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--saffron);
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;

}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background-color: var(--saffron-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-call-header {
    background-color: var(--saffron-light);
    color: var(--primary-dark);
    padding: 8px 14px;
    font-size: 0.825rem;
    border: 1px solid var(--saffron-gold);
    border-radius: var(--radius-full);
}

.btn-call-header:hover {
    background-color: var(--primary);
    color: #FFFFFF;
}

.btn-book-header {
    background-color: var(--primary-dark);
    color: #FFFFFF;
    padding: 8px 14px;
    font-size: 0.825rem;
    border: 1px solid var(--saffron-gold);
    border-radius: var(--radius-full);
}

.btn-book-header:hover {
    background-color: var(--saffron);
}

.mobile-toggle {
    display: none;
    background: var(--saffron-light);
    border: 1px solid var(--saffron-gold);
    border-radius: var(--radius-sm);
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-dark);
    cursor: pointer;
}

/* ==================== PAGE VIEWS ==================== */
.page-view {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.page-view.active {
    display: block;
    opacity: 1;
}

.page-header-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-dark) 100%);
    color: #FFFFFF;
    padding: 50px 0;
    text-align: center;
    border-bottom: 3px solid var(--saffron-gold);
}

.page-header-banner h1 {
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.page-header-banner p {
    font-size: 1.1rem;
    color: #E2E8F0;
    max-width: 700px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 40px;
}

.section-header.center {
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--saffron);
    background: var(--saffron-light);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
}

.section-header h2 {
    font-size: 2.1rem;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    padding: 50px 0 70px 0;
    background: radial-gradient(circle at 90% 10%, rgba(217, 119, 6, 0.08) 0%, transparent 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--saffron-light);
    color: #92400E;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    border: 1px solid var(--saffron-gold);
}

.trust-pill .gold {
    color: var(--saffron);
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.stat-card {
    text-align: left;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.hero-img-wrapper {
    position: relative;
}

.hero-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 440px;
    object-fit: cover;
    border: 3px solid var(--saffron-gold);
}

.hero-glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border: 1px solid var(--saffron-gold);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-glass-card.top-right {
    top: 20px;
    right: -10px;
}

.hero-glass-card.bottom-left {
    bottom: 20px;
    left: -10px;
}

.glass-icon {
    width: 38px;
    height: 38px;
    background-color: var(--primary);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-dot {
    width: 10px;
    height: 10px;
    background-color: var(--whatsapp);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--whatsapp);
    animation: pulse 1.5s infinite;
}

/* META VERIFICATION STRIP & BOX */
.meta-approval-strip {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1E293B 100%);
    padding: 40px 0;
    border-top: 3px solid var(--saffron-gold);
    border-bottom: 3px solid var(--saffron-gold);
}

.verification-box-full {
    background: rgba(255,255,255,0.03);
    border: 2px solid var(--saffron-gold);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.v-header {
    text-align: center;
    margin-bottom: 24px;
}

.meta-badge {
    display: inline-block;
    background: rgba(37, 211, 102, 0.15);
    color: #4ADE80;
    border: 1px solid #25D366;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.v-header h2 {
    color: #FFFFFF;
    font-size: 1.7rem;
    margin-bottom: 8px;
}

.v-header p {
    color: #CBD5E1;
    font-size: 0.9rem;
    max-width: 800px;
    margin: 0 auto;
}

.v-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.v-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.v-card strong {
    color: var(--saffron-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.v-card span {
    color: #FFFFFF;
    font-size: 0.9rem;
    word-break: break-word;
}

/* Timings Grid */
.timings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.timing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.timing-card.highlight {
    border: 2px solid var(--saffron-gold);
    box-shadow: var(--shadow-md);
}

.t-icon {
    font-size: 2rem;
    color: var(--saffron);
    margin-bottom: 14px;
}

.timing-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.t-time {
    display: inline-block;
    background: var(--saffron-light);
    color: var(--primary-dark);
    font-weight: 800;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.timing-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Seva Preview Grid */
.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.seva-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 28px 24px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.seva-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.seva-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.seva-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 18px;
    flex-grow: 1;
}

/* ==================== ABOUT & SERVICES PAGE ==================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.lead {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.about-points {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.point-item {
    display: flex;
    gap: 14px;
}

.point-icon {
    font-size: 1.3rem;
    color: var(--primary);
    background-color: var(--saffron-light);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-item h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.point-item p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.about-media {
    position: relative;
}

.about-img {
    border-radius: var(--radius-lg);
    width: 100%;
    border: 3px solid var(--saffron-gold);
}

.experience-card {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background-color: var(--bg-dark);
    color: #FFFFFF;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--saffron-gold);
}

.exp-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--saffron-gold);
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 600;
    max-width: 150px;
}

.services-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sd-header {
    background: var(--saffron-light);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.sd-category {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sd-header h3 {
    font-size: 1.15rem;
    margin-top: 4px;
}

.sd-body {
    padding: 20px;
    flex-grow: 1;
}

.sd-body p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 14px;
}

.sd-list li {
    font-size: 0.825rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.sd-footer {
    padding: 16px 20px;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
}

/* ==================== CONTACT & FOOTER ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 16px;
    position: relative;
}

.contact-card.live-card {
    border: 2px solid var(--whatsapp);
    background: rgba(37, 211, 102, 0.08);
}

.card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--whatsapp);
    color: #FFFFFF;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: var(--radius-full);
}

.c-icon {
    width: 44px;
    height: 44px;
    background-color: var(--primary);
    color: #FFFFFF;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-card.live-card .c-icon {
    background-color: var(--whatsapp);
}

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.825rem;
    margin-bottom: 4px;
}

.contact-link-big {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary-dark);
}

.wa-link {
    color: var(--whatsapp-dark);
}

.form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.form-header {
    margin-bottom: 24px;
}

.form-header h2 {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.site-form .form-group {
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.825rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

/* Footer */
.site-footer {
    background-color: var(--bg-dark);
    color: #94A3B8;
    padding-top: 50px;
    font-size: 0.875rem;
    border-top: 3px solid var(--saffron-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo-text.light .brand-name { color: #FFFFFF; }
.logo-text.light .brand-sub { color: var(--saffron-gold); }

.footer-col h4 {
    color: #FFFFFF;
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a:hover {
    color: var(--saffron-gold);
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social-link {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.08);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    background: var(--saffron);
}

.contact-col p {
    margin-bottom: 10px;
}

.footer-bottom {
    padding: 18px 0;
    font-size: 0.775rem;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* STICKY FLOATING BAR */
.floating-live-bar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.live-pill {
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
}

.live-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 8px;
    border-radius: var(--radius-full);
    color: #FFFFFF;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.call-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: 2px solid var(--saffron-gold);
}

.call-btn:hover { transform: scale(1.05); }

.wa-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: 2px solid #4ADE80;
}

.wa-btn:hover { transform: scale(1.05); }

.btn-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.btn-icon.pulse { animation: pulseIcon 1.5s infinite; }

.btn-text {
    display: flex;
    flex-direction: column;
}

.small-tag {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.num-text {
    font-size: 0.85rem;
    font-weight: 800;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 420px;
    padding: 28px;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    border: 2px solid var(--saffron-gold);
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--text-muted);
    cursor: pointer;
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.m-icon {
    width: 44px;
    height: 44px;
    background: var(--saffron-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 10px auto;
}

/* Toast */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--bg-dark);
    color: #FFFFFF;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    border-left: 4px solid var(--whatsapp);
    animation: slideIn 0.3s ease-out;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

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

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ==================== RESPONSIVE MEDIA QUERIES ==================== */
@media (max-width: 1120px) {
    .mobile-toggle {
        display: flex !important;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        padding: 20px;
        border-bottom: 2px solid var(--saffron-gold);
        box-shadow: var(--shadow-lg);
        display: none;
    }

    .main-nav.open {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .nav-link {
        width: 100%;
        padding: 10px 14px;
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .timings-grid, .services-preview-grid, .services-full-grid, .v-details-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 2.4rem; }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 6px;
    }

    .announcement, .top-contacts {
        font-size: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .timings-grid, .services-preview-grid, .services-full-grid, .v-details-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .floating-live-bar { bottom: 14px; right: 14px; }
    
    .btn-call-header span {
        display: none;
    }

    .btn-book-header {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .brand-name {
        font-size: 1rem;
    }
}
