/* ================================================================
   MaaBaglamukhi WordPress Theme — Main CSS
   Version: 1.0.0
   Design: Custom Premium Spiritual Theme
   Colors: Deep Maroon (#7a1010) + Gold (#FFD700)
   Fonts: Playfair Display + Noto Sans Devanagari + Inter
   ================================================================ */

/* ================================================================
   CSS CUSTOM PROPERTIES
   ================================================================ */
:root {
    --maabag-primary: #7a1010;
    --maabag-primary-dark: #4A0404;
    --maabag-primary-deep: #250101;
    --maabag-accent: #FFD700;
    --maabag-accent-dark: #D4AF37;
    --maabag-accent-deeper: #aa7c11;
    --maabag-dark: #1a0000;
    --maabag-text-dark: #212529;
    --maabag-text-muted: #6c757d;
    --maabag-white: #ffffff;
    --maabag-light-bg: #f8f9fa;
    --maabag-border-gold: rgba(212, 175, 55, 0.3);
    --maabag-border-light: rgba(255, 255, 255, 0.1);

    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-devanagari: 'Noto Sans Devanagari', sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;

    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);
    --shadow-maroon: 0 10px 30px rgba(122, 16, 16, 0.3);
    --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.6);

    --transition-base: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ================================================================
   BASE RESET & TYPOGRAPHY
   ================================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    color: var(--maabag-text-dark);
    background-color: var(--maabag-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: var(--maabag-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--maabag-accent-dark);
}

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

/* ================================================================
   UTILITY CLASSES
   ================================================================ */
.text-gold {
    color: var(--maabag-accent) !important;
}

.text-maroon {
    color: var(--maabag-primary) !important;
}

.text-maroon-deep {
    color: var(--maabag-primary-dark) !important;
}

.bg-maroon {
    background-color: var(--maabag-primary) !important;
}

.bg-maroon-deep {
    background-color: var(--maabag-primary-dark) !important;
}

.bg-dark-divine {
    background: linear-gradient(185deg, var(--maabag-primary-deep) 0%, var(--maabag-dark) 100%) !important;
}

.border-gold {
    border-color: var(--maabag-accent) !important;
}

.section-pad {
    padding: 80px 0;
}

.section-pad-sm {
    padding: 50px 0;
}

.eyebrow-text {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--maabag-primary), var(--maabag-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.eyebrow-text.light {
    background: linear-gradient(90deg, #ff8800, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-title.gradient-gold {
    background: linear-gradient(90deg, #ff8800, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider-gold {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--maabag-primary), var(--maabag-accent));
    border-radius: 2px;
    margin: 0 auto 20px;
}

/* ================================================================
   TOP MARQUEE BAR
   ================================================================ */
.top-marquee-bar {
    background: linear-gradient(90deg, var(--maabag-primary-dark), var(--maabag-primary));
    color: var(--maabag-accent);
    padding: 9px 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.marquee-track {
    display: inline-block;
    animation: marqueeScroll 40s linear infinite;
    padding-left: 100%;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ================================================================
   STICKY HEADER
   ================================================================ */
.sticky-header-v3 {
    position: relative;
    z-index: 1050;
    width: 100%;
}

.sticky-header-v3.is-sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

/* ================================================================
   NAVBAR
   ================================================================ */
.main-navbar-v3 {
    background: #ffffff !important;
    border-bottom: 2px solid rgba(122, 16, 16, 0.08);
    padding: 10px 0;
    transition: var(--transition-base);
}

.main-logo-v3 {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-link-v3 {
    font-weight: 600;
    font-size: 0.93rem;
    color: var(--maabag-primary-dark) !important;
    padding: 8px 14px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    position: relative;
}

.nav-link-v3::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--maabag-accent);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link-v3:hover::after,
.nav-link-v3.active::after {
    transform: scaleX(1);
}

.nav-link-v3:hover,
.nav-link-v3.active {
    color: var(--maabag-primary) !important;
    background: rgba(122, 16, 16, 0.05);
}

/* CTA Buttons in Nav */
.btn-nav-gold-v3 {
    background: linear-gradient(135deg, var(--maabag-accent) 0%, var(--maabag-accent-dark) 100%) !important;
    color: var(--maabag-primary-dark) !important;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 9px 22px !important;
    border: none;
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-nav-gold-v3:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
    color: #1a0000 !important;
}

.btn-nav-green-v3 {
    background: #25D366 !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 9px 18px !important;
    border: none;
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-nav-green-v3:hover {
    background: #1ebe5d !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Dropdown Menus */
.dropdown-menu-dark-v3 {
    background: linear-gradient(180deg, #3d0202 0%, #1e0101 100%) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: var(--radius-md) !important;
    margin-top: 8px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
    min-width: 220px;
}

.dropdown-menu-dark-v3 .dropdown-item {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 0.92rem;
    padding: 9px 20px !important;
    border-radius: 8px;
    transition: var(--transition-base);
    margin: 2px 8px;
    width: calc(100% - 16px);
}

.dropdown-menu-dark-v3 .dropdown-item:hover {
    background: rgba(255, 215, 0, 0.12) !important;
    color: var(--maabag-accent) !important;
    padding-left: 28px !important;
}

.dropdown-mega-menu {
    min-width: 900px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-radius: var(--radius-lg) !important;
}

.mega-column-section h6 {
    color: var(--maabag-accent) !important;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
}

/* ================================================================
   MOBILE OFFCANVAS MENU
   ================================================================ */
.mobile-offcanvas {
    position: fixed;
    top: 0;
    left: -310px;
    width: 300px;
    height: 100vh;
    z-index: 9999;
    background: linear-gradient(180deg, var(--maabag-primary-dark) 0%, var(--maabag-dark) 100%);
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.6);
    overflow-y: auto;
    color: #ffffff;
}

.mobile-offcanvas.open {
    left: 0;
}

.mobile-offcanvas-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-offcanvas-backdrop.open {
    opacity: 1;
    visibility: visible;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-premium {
    background: linear-gradient(135deg, var(--maabag-primary-deep) 0%, var(--maabag-primary-dark) 50%, #2a0505 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 70% 50%, rgba(255, 215, 0, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(122, 16, 16, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

.hero-premium::after {
    content: '🔱';
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25vw;
    opacity: 0.04;
    pointer-events: none;
    line-height: 1;
}

.hero-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-pill);
    padding: 7px 18px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--maabag-accent);
}

.hero-h1-v3 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-h1-v3 .text-highlight {
    background: linear-gradient(135deg, var(--maabag-accent) 0%, #ff8800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtext {
    font-size: 1.08rem;
    color: rgba(255, 248, 235, 0.82);
    line-height: 1.75;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--maabag-accent) 0%, var(--maabag-accent-dark) 100%);
    color: var(--maabag-primary-dark);
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 40px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    text-decoration: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255, 215, 0, 0.5);
    color: #1a0000;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 34px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--maabag-accent);
    color: var(--maabag-accent);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--maabag-accent);
    line-height: 1;
    display: block;
}

.hero-stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 4px;
    display: block;
}

/* Hero Image Box */
.hero-image-box {
    position: relative;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-dark);
    transition: var(--transition-slow);
}

.hero-image-box:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.4);
}

.hero-image-box img {
    border-radius: var(--radius-md);
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.hero-floating-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--maabag-accent) 0%, var(--maabag-accent-dark) 100%);
    color: var(--maabag-primary-dark);
    padding: 16px 22px;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatBadge 4s ease-in-out infinite alternate;
}

.hero-floating-badge .badge-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.hero-floating-badge .badge-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    display: block;
    margin-top: 4px;
}

@keyframes floatBadge {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-8px);
    }
}

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.services-section {
    background: linear-gradient(185deg, var(--maabag-primary-deep) 0%, var(--maabag-primary-dark) 100%);
    padding: 80px 0;
    overflow: hidden;
}

.service-card-v5 {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #ffffff;
    border: 2px solid rgba(255, 215, 0, 0.15) !important;
    border-radius: var(--radius-md);
    padding: 24px !important;
    text-decoration: none !important;
    height: 100%;
    transition: var(--transition-base);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card-v5:hover {
    transform: translateY(-6px);
    border-color: var(--maabag-accent) !important;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15) !important;
    background: linear-gradient(135deg, #ffffff 60%, #fffde7 100%);
}

.service-badge-pill {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--maabag-primary), var(--maabag-accent-dark));
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-icon-wrapper-v5 {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: #fef9c3;
    border: 1px solid #fde047;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.8rem;
    transition: var(--transition-base);
    color: var(--maabag-primary);
}

.service-card-v5:hover .service-icon-wrapper-v5 {
    background: var(--maabag-accent);
    border-color: var(--maabag-accent);
    color: var(--maabag-primary-dark);
}

.service-name-v5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--maabag-primary-dark);
    margin-bottom: 4px;
}

.service-desc-v5 {
    font-size: 0.87rem;
    color: var(--maabag-text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

.service-price-tag {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--maabag-primary);
    margin-top: 6px;
    display: inline-block;
}

/* ================================================================
   SERVICES FIXED 9-CARD GRID
   ================================================================ */
.services-grid-9 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 10px 0 50px;
}

.svc-grid-item {
    display: flex;
    flex-direction: column;
}

.svc-grid-item .service-card-v5 {
    flex: 1;
}

@media (max-width: 991.98px) {
    .services-grid-9 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 575.98px) {
    .services-grid-9 {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-section {
    background: linear-gradient(185deg, var(--maabag-primary-deep) 0%, #150000 100%);
    padding: 90px 0;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.about-section::before {
    content: 'ॐ';
    position: absolute;
    left: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30vw;
    opacity: 0.025;
    color: var(--maabag-accent);
    pointer-events: none;
    line-height: 1;
}

.about-image-frame {
    position: relative;
    padding: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.22);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-dark), 0 0 40px rgba(255, 215, 0, 0.04);
    max-width: 480px;
    margin: 0 auto;
    transition: var(--transition-slow);
}

.about-image-frame:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.4);
}

.about-image-frame img {
    border-radius: var(--radius-md);
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-frame:hover img {
    transform: scale(1.04);
}

.about-exp-badge {
    position: absolute;
    bottom: -12px;
    right: -12px;
    background: linear-gradient(135deg, var(--maabag-accent) 0%, var(--maabag-accent-deeper) 100%);
    color: var(--maabag-primary-dark);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.25);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatBadge 4s ease-in-out infinite alternate;
}

.about-tagline {
    color: var(--maabag-accent);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 16px;
}

.about-heading span {
    background: linear-gradient(120deg, var(--maabag-accent) 0%, #fff4d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-desc {
    color: rgba(255, 245, 235, 0.82);
    font-size: 1rem;
    line-height: 1.8;
}

.about-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: var(--radius-md);
    padding: 22px;
    height: 100%;
    transition: var(--transition-base);
}

.about-feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 215, 0, 0.35);
    transform: translateY(-4px);
}

.about-feature-icon {
    font-size: 2.2rem;
    color: var(--maabag-accent);
    margin-bottom: 12px;
    display: block;
    transition: transform 0.4s ease;
}

.about-feature-card:hover .about-feature-icon {
    transform: scale(1.1) rotate(8deg);
}

.about-feature-title {
    color: #ffd54a;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.about-feature-text {
    font-size: 0.85rem;
    color: rgba(255, 244, 214, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
}

.btn-about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--maabag-accent) 0%, #ffa500 100%);
    color: var(--maabag-primary-dark);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 38px;
    border-radius: var(--radius-pill);
    border: none;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.25);
    transition: var(--transition-base);
}

.btn-about-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(255, 215, 0, 0.4);
    color: #000000;
}

/* ================================================================
   MAA BAGLAMUKHI — ABOUT TOP SECTION
   ================================================================ */
.maa-about-section {
    background: linear-gradient(160deg, #0a0000 0%, #1c0202 50%, #0f0101 100%);
    border-top: 2px solid rgba(255, 215, 0, 0.18);
    border-bottom: 2px solid rgba(255, 215, 0, 0.18);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.maa-about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 70% at 65% 50%, rgba(255, 215, 0, 0.045) 0%, transparent 70%);
    pointer-events: none;
}

.maa-about-row {
    min-height: 420px;
}

/* Left image column */
.maa-about-img-wrap {
    position: relative;
    height: 100%;
    min-height: 420px;
    overflow: visible;
    padding: 40px 20px 28px 28px;
    display: flex;
    align-items: stretch;
}

.maa-about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    min-height: 380px;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55), 0 0 0 2px rgba(255, 215, 0, 0.15);
    transition: transform 0.6s ease;
}

.maa-about-img-wrap:hover .maa-about-img {
    transform: scale(1.03);
}

/* Placeholder for no image */
.maa-about-img-placeholder {
    width: 100%;
    min-height: 420px;
    background: linear-gradient(145deg, #4a0404, #250101);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.maa-placeholder-inner {
    text-align: center;
}

.maa-placeholder-om {
    font-size: 6rem;
    color: rgba(255, 215, 0, 0.35);
    font-family: var(--font-devanagari);
    line-height: 1;
    margin-bottom: 12px;
}

.maa-placeholder-label {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 215, 0, 0.7);
    margin: 0;
    line-height: 1.3;
}

/* Overlay badge at bottom of image */
.maa-img-overlay-badge {
    display: none;
}

.maa-overlay-devanagari {
    font-family: var(--font-devanagari);
    font-size: 1.6rem;
    font-weight: 700;
    color: rgba(255, 215, 0, 0.9);
    line-height: 1;
    display: block;
}

.maa-overlay-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    display: block;
    letter-spacing: 1px;
}

/* Right content column */
.maa-about-content {
    padding: 52px 48px 52px 44px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Eyebrow pill */
.maa-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-pill);
    padding: 6px 18px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--maabag-accent);
    margin-bottom: 18px;
    width: fit-content;
}

/* Title */
.maa-about-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--maabag-accent);
    margin-bottom: 4px;
    line-height: 1.2;
}

/* Subtitle in italic */
.maa-about-subtitle {
    font-size: 0.92rem;
    color: rgba(255, 244, 200, 0.65);
    font-style: italic;
    margin-bottom: 20px;
}

/* Description paragraphs */
.maa-about-desc {
    font-size: 0.97rem;
    color: rgba(255, 245, 230, 0.88);
    line-height: 1.8;
    margin-bottom: 0;
}

.maa-about-desc strong {
    color: #ffffff;
    font-weight: 600;
}

/* CTA italic text */
.maa-about-cta-text {
    font-size: 0.9rem;
    color: rgba(255, 244, 200, 0.65);
    font-style: italic;
    margin-top: 20px;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* 3 Action Buttons */
.maa-about-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.maa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 12px 26px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
}

/* Dark / outline button */
.maa-btn-dark {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.maa-btn-dark:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--maabag-accent);
    color: var(--maabag-accent);
    transform: translateY(-2px);
}

/* Gold / primary button */
.maa-btn-gold {
    background: linear-gradient(135deg, var(--maabag-accent) 0%, var(--maabag-accent-dark) 100%);
    color: var(--maabag-primary-dark);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.28);
}

.maa-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(255, 215, 0, 0.45);
    color: #000;
}

/* WhatsApp green button */
.maa-btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.maa-btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
    color: white;
}

/* Responsive */
@media (max-width: 991.98px) {
    .maa-about-content {
        padding: 40px 28px;
    }

    .maa-about-img-wrap {
        min-height: 320px;
    }

    .maa-about-img {
        min-height: 320px;
    }
}

@media (max-width: 767.98px) {
    .maa-about-content {
        padding: 32px 20px;
    }

    .maa-about-btns {
        flex-direction: column;
    }

    .maa-btn {
        justify-content: center;
        width: 100%;
    }
}

/* ================================================================
   TESTIMONIALS SECTION
   ================================================================ */
.testimonials-section {
    background: var(--maabag-light-bg);
    padding: 80px 0;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(122, 16, 16, 0.08);
    border-radius: var(--radius-md);
    padding: 30px;
    height: 100%;
    transition: var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(122, 16, 16, 0.07);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(122, 16, 16, 0.1);
    border-color: var(--maabag-accent);
}

.testimonial-stars {
    color: #f5c518;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--maabag-accent);
}

.testimonial-avatar-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--maabag-primary), var(--maabag-accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    border: 2px solid var(--maabag-accent);
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--maabag-primary-dark);
    margin-bottom: 2px;
}

.testimonial-meta {
    font-size: 0.82rem;
    color: var(--maabag-text-muted);
}

/* ================================================================
   BOOKING CTA SECTION
   ================================================================ */
.booking-cta-section {
    background: linear-gradient(135deg, var(--maabag-primary-dark) 0%, var(--maabag-primary) 50%, #5a0c0c 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(255, 215, 0, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.booking-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.booking-cta-title span {
    background: linear-gradient(90deg, var(--maabag-accent), #ff8800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-cta-text {
    font-size: 1.05rem;
    color: rgba(255, 245, 235, 0.82);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 40px;
    border-radius: var(--radius-pill);
    border: none;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
    transition: var(--transition-base);
    margin: 8px;
}

.btn-cta-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
    color: white;
}

.btn-cta-call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 40px;
    border-radius: var(--radius-pill);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: var(--transition-base);
    margin: 8px;
    backdrop-filter: blur(10px);
}

.btn-cta-call:hover {
    background: var(--maabag-accent);
    color: var(--maabag-primary-dark);
    border-color: var(--maabag-accent);
    transform: translateY(-3px);
}

/* ================================================================
   GALLERY SECTION
   ================================================================ */
.gallery-section {
    background: var(--maabag-white);
    padding: 80px 0;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-base);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 350px !important;
    display: block;
    transition: transform 0.6s ease;
    object-fit: scale-down !important;
    object-position: center;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(74, 4, 4, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ================================================================
   BLOG / NEWS SECTION
   ================================================================ */
.blog-section {
    background: var(--maabag-light-bg);
    padding: 80px 0;
}

.blog-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 24px;
}

.blog-card-cat {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--maabag-primary);
    background: rgba(122, 16, 16, 0.07);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--maabag-primary-dark);
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--maabag-text-muted);
    line-height: 1.65;
    margin-bottom: 18px;
}

.blog-card-meta {
    font-size: 0.8rem;
    color: var(--maabag-text-muted);
    display: flex;
    align-items: center;
    gap: 16px;
}

.read-more-link {
    color: var(--maabag-primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.read-more-link:hover {
    color: var(--maabag-accent-dark);
    gap: 10px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
    background: linear-gradient(180deg, #1a0000 0%, #0d0000 100%);
    color: rgba(255, 255, 255, 0.78);
    padding: 70px 0 0;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--maabag-primary), var(--maabag-accent), var(--maabag-primary));
}

.footer-logo {
    max-height: 65px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
    background: #fff;
}

.footer-about-text {
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maabag-accent);
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-social-link:hover {
    background: var(--maabag-accent);
    color: var(--maabag-primary-dark);
    transform: translateY(-3px);
    border-color: var(--maabag-accent);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--maabag-accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '🔸';
    font-size: 0.6rem;
    flex-shrink: 0;
}

.footer-links a:hover {
    color: var(--maabag-accent);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maabag-accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 215, 0, 0.08);
    padding: 20px 0;
    margin-top: 50px;
}

.footer-bottom-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin: 0;
}

/* ================================================================
   PAGE TEMPLATES
   ================================================================ */

/* Single Post / Page */
.page-hero {
    background: linear-gradient(135deg, var(--maabag-primary-deep), var(--maabag-primary-dark));
    padding: 60px 0;
    color: white;
    text-align: center;
}

.page-hero h1 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.breadcrumb-divine {
    background: transparent;
    justify-content: center;
    padding: 0;
}

.breadcrumb-divine .breadcrumb-item a {
    color: var(--maabag-accent);
}

.breadcrumb-divine .breadcrumb-item.active,
.breadcrumb-divine .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Single Service Card */
.single-service-header {
    background: linear-gradient(135deg, var(--maabag-primary-deep), var(--maabag-primary-dark));
    padding: 70px 0;
    color: white;
}

.service-price-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--maabag-accent), var(--maabag-accent-dark));
    color: var(--maabag-primary-dark);
    font-weight: 800;
    font-size: 1.3rem;
    padding: 10px 28px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}

.service-duration-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
}

/* ================================================================
   SIDEBAR
   ================================================================ */
.sidebar-widget {
    background: #ffffff;
    border: 1px solid rgba(122, 16, 16, 0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.sidebar-widget-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--maabag-primary-dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(122, 16, 16, 0.1);
    position: relative;
}

.sidebar-widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--maabag-accent);
}

/* Sidebar CTA */
.sidebar-cta {
    background: linear-gradient(135deg, var(--maabag-primary-dark), var(--maabag-primary));
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    color: white;
    margin-bottom: 24px;
}

.sidebar-cta h5 {
    color: var(--maabag-accent);
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.sidebar-cta p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 18px;
}

/* ================================================================
   404 PAGE
   ================================================================ */
.error-404-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--maabag-primary-deep), var(--maabag-primary-dark));
    color: white;
    text-align: center;
    padding: 80px 0;
}

.error-404-number {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--maabag-accent), #ff8800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-404-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: white;
    margin-bottom: 16px;
}

/* ================================================================
   FLOATING WHATSAPP BUTTON
   ================================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9990;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: var(--transition-base);
    animation: waPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    }

    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7);
    }
}

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ================================================================
   RESPONSIVE OVERRIDES
   ================================================================ */
@media (max-width: 991.98px) {
    .section-pad {
        padding: 60px 0;
    }

    .hero-premium {
        min-height: auto;
    }

    .hero-h1-v3 {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
    }

    .about-section {
        padding: 65px 0;
    }

    .about-image-frame {
        margin-bottom: 40px;
    }

    .dropdown-mega-menu {
        min-width: unset !important;
        left: 0 !important;
        transform: none !important;
    }
}

@media (max-width: 767.98px) {
    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats-row {
        justify-content: center;
    }

    .main-navbar-v3 .navbar-brand {
        order: 1;
    }

    .main-navbar-v3 .navbar-toggler {
        order: 2;
    }

    .section-pad {
        padding: 50px 0;
    }

    .services-section {
        padding: 60px 0;
    }

    .about-section::before {
        display: none;
    }

    .hero-floating-badge,
    .about-exp-badge {
        right: 5px;
        bottom: 5px;
    }

    .gallery-item img {
        height: 180px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 575.98px) {
    .top-marquee-bar {
        font-size: 0.75rem;
    }

    .hero-premium {
        padding: 50px 0;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .booking-cta-section {
        padding: 60px 0;
    }

    .btn-cta-whatsapp,
    .btn-cta-call {
        width: 100%;
        justify-content: center;
    }
}

/* ================================================================
   DEVANAGARI / HINDI TEXT STYLING
   ================================================================ */
.text-devanagari {
    font-family: var(--font-devanagari);
}

.mantra-text {
    font-family: var(--font-devanagari);
    font-size: 1.1rem;
    color: var(--maabag-accent);
    text-align: center;
    letter-spacing: 1px;
    margin: 20px 0;
}

/* ================================================================
   TRUST BADGES / FEATURES BAR
   ================================================================ */
.trust-bar {
    background: #ffffff;
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.trust-icon {
    font-size: 2rem;
    color: var(--maabag-primary);
    flex-shrink: 0;
}

.trust-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--maabag-primary-dark);
    line-height: 1.3;
}

.trust-sublabel {
    font-size: 0.75rem;
    color: var(--maabag-text-muted);
}

.trust-item-link {
    text-decoration: none;
    display: block;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.trust-item-link:hover {
    text-decoration: none;
    opacity: 0.85;
    transform: translateY(-2px);
}

/* ================================================================
   SEARCH FORM
   ================================================================ */
.search-form-wrap .search-field {
    border: 2px solid rgba(122, 16, 16, 0.15);
    border-radius: var(--radius-pill) 0 0 var(--radius-pill);
    padding: 12px 20px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.search-form-wrap .search-field:focus {
    border-color: var(--maabag-primary);
}

.search-form-wrap .search-submit {
    background: var(--maabag-primary);
    color: white;
    border: none;
    border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
    padding: 12px 24px;
    cursor: pointer;
    transition: var(--transition-base);
}

.search-form-wrap .search-submit:hover {
    background: var(--maabag-primary-dark);
}


/* ================================================================
   HERO SLIDER
   ================================================================ */

.maabag-hero-slider-section {
    position: relative;
    overflow: hidden;
    background: var(--maabag-primary-dark);
}


/* ================================================================
   LANGUAGE SWITCHER — GTranslate Integration
   ================================================================ */

/* ── Desktop Navbar Wrapper ──────────────────────────────────── */
.lang-switcher-wrap {
    display: flex;
    align-items: center;
    position: relative;
}

/* GTranslate generates a <div class="gtranslate_wrapper"> */
.lang-switcher-wrap .gtranslate_wrapper,
#navLangSwitcher .gtranslate_wrapper {
    display: flex;
    align-items: center;
}

/* The select dropdown generated by GTranslate */
.lang-switcher-wrap select,
#navLangSwitcher select {
    appearance: none;
    -webkit-appearance: none;
    background: rgba(122, 16, 16, 0.08);
    border: 1.5px solid rgba(122, 16, 16, 0.25);
    border-radius: 50px;
    color: var(--maabag-primary-dark);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 7px 32px 7px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a1010' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    min-width: 120px;
}

.lang-switcher-wrap select:hover,
#navLangSwitcher select:hover {
    border-color: var(--maabag-primary);
    background-color: rgba(122, 16, 16, 0.13);
    box-shadow: 0 4px 14px rgba(122, 16, 16, 0.15);
}

.lang-switcher-wrap select:focus,
#navLangSwitcher select:focus {
    outline: none;
    border-color: var(--maabag-accent);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

/* Flag images next to language name */
.lang-switcher-wrap .gt-lang-code,
#navLangSwitcher .gt-lang-code {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--maabag-primary-dark);
}

/* GTranslate "flags" widget look */
.lang-switcher-wrap a.gt-current-lang,
#navLangSwitcher a.gt-current-lang {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1.5px solid rgba(122, 16, 16, 0.2);
    background: rgba(122, 16, 16, 0.06);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--maabag-primary-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lang-switcher-wrap a.gt-current-lang:hover,
#navLangSwitcher a.gt-current-lang:hover {
    background: rgba(122, 16, 16, 0.12);
    border-color: var(--maabag-primary);
}

/* Flag images */
.lang-switcher-wrap img,
#navLangSwitcher img {
    width: 20px !important;
    height: 14px !important;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Dropdown list for flags widget */
.lang-switcher-wrap .gt-languages,
#navLangSwitcher .gt-languages {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #ffffff;
    border: 1px solid rgba(122, 16, 16, 0.12);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    min-width: 160px;
    z-index: 9999;
    overflow: hidden;
    padding: 6px 0;
}

.lang-switcher-wrap .gt-languages a,
#navLangSwitcher .gt-languages a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #4A0404;
    text-decoration: none;
    transition: background 0.2s ease;
}

.lang-switcher-wrap .gt-languages a:hover,
#navLangSwitcher .gt-languages a:hover {
    background: rgba(122, 16, 16, 0.06);
    color: #7a1010;
}


/* ── Mobile Offcanvas Switcher ───────────────────────────────── */
.mobile-lang-switcher {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
}

.mobile-lang-switcher .gtranslate_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mobile-lang-switcher select {
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 32px 8px 14px;
    width: 100%;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FFD700' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.mobile-lang-switcher select:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.mobile-lang-switcher select option {
    background: #250101;
    color: #ffffff;
}

.mobile-lang-switcher a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 215, 0, 0.25);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.mobile-lang-switcher a:hover,
.mobile-lang-switcher a.gt-current-lang {
    background: rgba(255, 215, 0, 0.15);
    border-color: #FFD700;
    color: #FFD700;
}

.mobile-lang-switcher img {
    width: 20px !important;
    height: 14px !important;
    border-radius: 2px;
    object-fit: cover;
}


/* ── Hide floating GTranslate widget if any ─────────────────── */
/* Prevents duplicate widget appearing at bottom-right corner */
div#google_translate_element {
    display: none !important;
}

/* Hide "Powered by Google" bar */
.goog-te-banner-frame,
.skiptranslate>iframe {
    display: none !important;
}

body {
    top: 0 !important;
}

/* Ensure translated page doesn't shift down */
.goog-te-gadget {
    font-size: 0 !important;
}

.goog-te-gadget .goog-te-combo {
    font-size: 0.82rem !important;
    color: inherit !important;
}


/* ── Responsive: hide desktop switcher on mobile ────────────── */
@media (max-width: 1199.98px) {
    #navLangSwitcher {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    #mobileLangSwitcher {
        display: none !important;
    }
}

/* ================================================================
   ABOUT US DYNAMIC MODAL
   ================================================================ */

/* Overlay / Backdrop */
.about-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10500;
    background: rgba(10, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.about-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* Modal Box */
.about-modal-box {
    position: relative;
    background: linear-gradient(145deg, #1c0101 0%, #2a0404 50%, #160000 100%);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 24px;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.85),
        0 0 60px rgba(255, 215, 0, 0.05),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(60px) scale(0.96);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 215, 0, 0.3) transparent;
}

.about-modal-box::-webkit-scrollbar {
    width: 5px;
}

.about-modal-box::-webkit-scrollbar-track {
    background: transparent;
}

.about-modal-box::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 3px;
}

.about-modal-overlay.is-open .about-modal-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Decorative OM symbol inside modal */
.about-modal-box::before {
    content: 'ॐ';
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28vw;
    opacity: 0.03;
    color: var(--maabag-accent);
    pointer-events: none;
    line-height: 1;
}

/* Close Button */
.about-modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: rgba(255, 215, 0, 0.8);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    z-index: 2;
}

.about-modal-close:hover {
    background: rgba(255, 215, 0, 0.18);
    border-color: var(--maabag-accent);
    color: var(--maabag-accent);
    transform: rotate(90deg) scale(1.1);
}

/* Modal Inner Padding */
.about-modal-inner {
    padding: 50px 48px 42px;
}

@media (max-width: 767.98px) {
    .about-modal-inner {
        padding: 48px 22px 32px;
    }
}

/* Modal Image Frame */
.about-modal-img-frame {
    position: relative;
    border-radius: 18px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.about-modal-img-frame img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}

.about-modal-img-frame:hover img {
    transform: scale(1.04);
}

/* Experience badge inside modal */
.about-modal-exp-badge {
    position: absolute;
    bottom: -12px;
    right: -12px;
    background: linear-gradient(135deg, var(--maabag-accent) 0%, var(--maabag-accent-deeper) 100%);
    color: var(--maabag-primary-dark);
    padding: 14px 18px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatBadge 4s ease-in-out infinite alternate;
}

/* Modal Tagline */
.about-modal-tagline {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--maabag-accent);
    display: block;
    margin-bottom: 12px;
}

/* Modal Heading */
.about-modal-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 14px;
}

.about-modal-heading span {
    background: linear-gradient(120deg, var(--maabag-accent) 0%, #fff4d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modal Description */
.about-modal-desc {
    color: rgba(255, 245, 235, 0.8);
    font-size: 0.97rem;
    line-height: 1.82;
    margin-bottom: 28px;
}

/* Modal Feature Cards */
.about-modal-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: 14px;
    padding: 18px;
    height: 100%;
    transition: var(--transition-base);
}

.about-modal-feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-4px);
}

.about-modal-feature-card:hover .about-feature-icon {
    transform: scale(1.15) rotate(6deg);
}

/* Gold Divider */
.about-modal-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--maabag-primary), var(--maabag-accent));
    border-radius: 2px;
    margin-bottom: 24px;
}

/* Nav trigger link for About Us */
.nav-about-trigger {
    cursor: pointer;
}

/* Mobile: stack image above content */
@media (max-width: 991.98px) {
    .about-modal-img-frame img {
        height: 250px;
    }

    .about-modal-exp-badge {
        bottom: -10px;
        right: 10px;
    }
}