/* ==========================================================================
   BANGALORE HINDI PANDIT - COMPLETE STYLES
   ========================================================================== */

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root {
    --saffron: #FF6B35;
    --saffron-dark: #E55A2B;
    --orange: #FF8C42;
    --maroon: #C92E3F;
    --maroon-dark: #8B1538;
    --gold: #FFB627;
    --gold-light: #FFD93D;
    --cream: #FFF8E7;
    --brown: #2C1810;
    --brown-light: #4A3228;
    --white: #FFFFFF;
    --whatsapp: #25D366;
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: "Poppins", sans-serif;
    background: var(--cream);
    color: var(--brown);
    line-height: 1.6;
    min-width: 320px;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ==========================================================================
   HEADER - WORLD CLASS DESIGN
   ========================================================================== */
.header-topbar {
    background: linear-gradient(90deg, #8B1538, #C92E3F, #FF6B35, #FFB627, #FF8C42);
    background-size: 200% 100%;
    animation: topbar-flow 6s ease infinite;
    padding: 8px 0;
    text-align: center;
    font-size: 0.82rem;
    color: white;
    position: relative;
    z-index: 10001;
}
.header-topbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.header-topbar a {
    color: #FFD93D;
    font-weight: 700;
    margin-left: 5px;
}
.header-topbar .separator {
    opacity: 0.3;
}
@keyframes topbar-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.header-main {
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 2px solid transparent;
    background-image: linear-gradient(rgba(255,255,255,0.97), rgba(255,255,255,0.97)), linear-gradient(135deg, #FFB627 0%, #FF6B35 50%, #C92E3F 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 4px 30px rgba(139, 21, 56, 0.1);
    z-index: 10000;
    transition: all 0.4s ease;
}
.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FFB627, #FF6B35, #C92E3F);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}
.logo:hover .logo-icon {
    transform: rotate(10deg) scale(1.05);
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--maroon-dark);
}
.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--saffron);
}

.nav-links-desktop {
    display: flex;
    gap: 8px;
}
.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brown);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--saffron), var(--gold));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 80%;
}
.nav-link.active {
    color: var(--maroon);
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--maroon), var(--saffron));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}
.header-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 46, 63, 0.4);
}
.header-whatsapp-btn {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--whatsapp), #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.header-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--maroon);
    border-radius: 3px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-overlay.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85%;
    height: 100vh;
    height: 100dvh;
    background: white;
    z-index: 10002;
    visibility: hidden;
    pointer-events: none;
    transition: right 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}
.mobile-drawer.active {
    right: 0 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}
.mobile-drawer-header {
    background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-drawer-header .logo-title,
.mobile-drawer-header .logo-subtitle { color: white; }
.drawer-close {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}
.mobile-drawer-content {
    padding: 20px;
}
.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--brown);
    border-radius: 10px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}
.mobile-nav-link i { width: 24px; color: var(--saffron); }
.mobile-nav-link:hover, .mobile-nav-link.active {
    background: var(--cream);
    color: var(--maroon);
}
.mobile-drawer-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}
.mobile-drawer-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 10px;
}
.mobile-drawer-footer .btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp), #128C7E);
    color: white;
}
.mobile-drawer-footer .btn-call {
    background: linear-gradient(135deg, var(--maroon), var(--saffron));
    color: white;
}

.mobile-brand-tag {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding-left: 12px;
    border-left: 3px solid;
    border-image: linear-gradient(180deg, #FFB627, #FF6B35, #C92E3F) 1;
}
.mobile-brand-tag .tagline {
    font-size: 0.85rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8B1538, #FF6B35, #FFB627);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mobile-brand-tag .location {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--maroon);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FFF8E7 0%, #FFECD2 50%, #FFE5D9 100%);
    padding-top: 140px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFB627' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 0;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--brown);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 182, 39, 0.3);
}
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--maroon-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-title .highlight {
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--brown-light);
    max-width: 600px;
    margin: 0 auto 30px;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: linear-gradient(135deg, var(--saffron), var(--maroon));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}
.btn-secondary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--brown);
    box-shadow: 0 4px 15px rgba(255, 182, 39, 0.4);
}
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 182, 39, 0.5);
}
.btn-lg { padding: 15px 30px; font-size: 1rem; }

/* ==========================================================================
   SECTION STYLES
   ========================================================================== */
.section {
    padding: 80px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--maroon-dark);
    margin-bottom: 15px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--brown-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
    background: linear-gradient(135deg, var(--maroon-dark), var(--maroon), var(--saffron));
    padding: 60px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
}
.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--brown);
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}
.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

/* ==========================================================================
   SERVICES SHOWCASE GRID
   ========================================================================== */
.services-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.showcase-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}
.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 21, 56, 0.15);
}
.showcase-card-image {
    height: 200px;
    overflow: hidden;
}
.showcase-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.showcase-card:hover .showcase-card-image img {
    transform: scale(1.1);
}
.showcase-card-content {
    padding: 22px;
}
.showcase-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--maroon-dark);
    margin-bottom: 8px;
}
.showcase-card-description {
    font-size: 0.88rem;
    color: var(--brown-light);
    line-height: 1.6;
    margin-bottom: 12px;
}
.showcase-card-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 15px;
}
.showcase-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.showcase-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background-image: linear-gradient(to right, #e52d27 0%, #b31217 51%, #e52d27 100%);
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 15px rgba(229, 45, 39, 0.4);
    border-radius: 10px;
    border: none;
    text-decoration: none;
    transition: all 0.5s ease;
}
.showcase-btn:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(229, 45, 39, 0.6);
}
.showcase-btn.whatsapp-btn {
    background-image: linear-gradient(to right, #02AAB0 0%, #00CDAC 51%, #02AAB0 100%);
    background-size: 200% auto;
    box-shadow: 0 0 15px rgba(2, 170, 176, 0.4);
}
.showcase-btn.whatsapp-btn:hover {
    background-position: right center;
    box-shadow: 0 0 25px rgba(2, 170, 176, 0.6);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
    background: linear-gradient(135deg, #FFF8E7, #FFECD2);
    padding: 80px 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.stars {
    color: var(--gold);
    margin-bottom: 15px;
}
.testimonial-text {
    font-size: 0.95rem;
    color: var(--brown-light);
    line-height: 1.7;
    margin-bottom: 20px;
}
.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}
.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--maroon-dark);
}
.author-info span {
    font-size: 0.85rem;
    color: #888;
}

/* ==========================================================================
   AREAS SECTION
   ========================================================================== */
.areas-section {
    padding: 80px 0;
}
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.area-tag {
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brown);
    transition: all 0.3s ease;
}
.area-tag:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--brown);
    transform: translateY(-2px);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--saffron), var(--gold), var(--orange));
    padding: 80px 0;
    text-align: center;
}
.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}
.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.btn-white {
    background: white;
    color: var(--maroon);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: linear-gradient(180deg, var(--brown), var(--brown-light));
    color: white;
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer-col p, .footer-col a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    display: block;
}
.footer-col a:hover {
    color: var(--gold);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* ==========================================================================
   STICKY BOTTOM MOBILE MENU
   ========================================================================== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #8B1538 0%, #C92E3F 20%, #FF6B35 40%, #FFB627 60%, #FF8C42 80%, #C92E3F 100%);
    background-size: 300% 100%;
    animation: menu-gradient 6s ease infinite;
    padding: 0;
    z-index: 9999;
    box-shadow: 0 -8px 35px rgba(201, 46, 63, 0.6);
}
@keyframes menu-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.mobile-bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding: 8px 5px 20px;
}
.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: white;
    text-decoration: none;
    flex: 1;
    max-width: 70px;
    font-size: 0.6rem;
    font-weight: 600;
}
.mobile-bottom-nav .nav-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.3);
}
.mobile-bottom-nav .whatsapp-main {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    width: 58px !important;
    height: 58px !important;
    font-size: 1.6rem !important;
    border: 3px solid var(--gold) !important;
    animation: whatsapp-pulse 2s infinite !important;
}
@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1024px) {
    .services-showcase-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }

    .header-topbar { display: none; }
    .header-main { top: 0; }
    .nav-links-desktop { display: none; }
    .header-actions { display: none; }
    .hamburger { display: flex; }

    .hero { padding-top: 100px; }
    .hero-title { font-size: 2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }

    .mobile-brand-tag { display: flex; }
    .header-container { flex-wrap: wrap; }

    .services-showcase-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }

    .section-title { font-size: 2rem; }

    .mobile-bottom-nav { display: block; }
    body { padding-bottom: 90px !important; }

    .showcase-actions { flex-direction: column; }
    .showcase-btn { width: 100%; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .cta-title { font-size: 1.8rem; }
}

/* Animations */
@keyframes topbar-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Header Main */
.header-main {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #FFB627, #FF6B35, #C92E3F);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 4px 30px rgba(139, 21, 56, 0.1);
    z-index: 9999;
    transition: all 0.3s ease;
}
.header-main.scrolled { top: 0; }

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

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, #FFB627, #FF6B35, #C92E3F);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}
.logo:hover .logo-icon { transform: rotate(10deg) scale(1.05); box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5); }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-title { font-size: 1.1rem; font-weight: 700; color: var(--maroon-dark); }
.logo-subtitle { font-size: 0.75rem; font-weight: 600; color: var(--saffron); }

/* Mobile Brand Tag */
.mobile-brand-tag { display: none; }
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }

    .header-main { top: 30px; }
    .mobile-brand-tag {
        display: flex; flex-direction: column; gap: 2px;
        padding-left: 12px; border-left: 3px solid; border-image: linear-gradient(180deg, #FFB627, #FF6B35) 1;
    }
    .mobile-brand-tag .tagline {
        font-size: 0.8rem; font-weight: 700;
        background: linear-gradient(135deg, #8B1538, #FF6B35); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .mobile-brand-tag .location { font-size: 0.65rem; color: #666; }
    .logo-title { font-size: 0.9rem; }
    .logo-subtitle { font-size: 0.65rem; }
}

/* Navigation */
.nav-links-desktop { display: flex; gap: 30px; }
.nav-link {
    font-size: 0.9rem; font-weight: 500; color: var(--brown);
    position: relative; padding: 5px 0; transition: color 0.3s;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: linear-gradient(90deg, var(--saffron), var(--gold)); transition: width 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--maroon); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-call-btn {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 20px; border-radius: 50px;
    background: linear-gradient(135deg, #C92E3F, #8B1538);
    color: white; font-weight: 600; font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(201, 46, 63, 0.3); transition: all 0.3s;
}
.header-call-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201, 46, 63, 0.4); }
.header-whatsapp-btn {
    width: 45px; height: 45px; border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: white; transition: all 0.3s;
}
.header-whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5); }

/* Hamburger */
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    padding: 10px; cursor: pointer; background: none; border: none;
}
.hamburger span { display: block; width: 28px; height: 3px; background: var(--maroon); border-radius: 3px; transition: all 0.3s; }
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }

    .nav-links-desktop, .header-actions { display: none !important; }
    .hamburger { display: flex; }
}

/* Mobile Drawer Content & Header */
.mobile-drawer-header { background: linear-gradient(135deg, #8B1538, #C92E3F); padding: 20px; display: flex; justify-content: space-between; align-items: center; }
.mobile-drawer-header .logo-text { color: white; }
.mobile-drawer-header .logo-subtitle { color: rgba(255,255,255,0.8); }
.drawer-close { background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
.mobile-drawer-content { padding: 20px; }
.mobile-nav-link { display: flex; align-items: center; gap: 12px; padding: 15px 0; font-size: 1rem; font-weight: 500; border-bottom: 1px solid #eee; color: var(--brown); transition: color 0.3s; }
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--saffron); }
.mobile-drawer-footer { padding: 20px; display: flex; flex-direction: column; gap: 10px; }

/* Navigation Links */
.nav-links-desktop { display: flex; align-items: center; gap: 8px; }
.nav-link {
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brown);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--maroon); background: rgba(139, 21, 56, 0.08); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 2px;
    background: linear-gradient(90deg, #FF6B35, #C92E3F);
    transition: all 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { left: 16px; right: 16px; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-call-btn {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #C92E3F, #8B1538);
    color: white; border-radius: 50px;
    font-weight: 600; font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(201, 46, 63, 0.3);
    transition: all 0.3s ease;
}
.header-call-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201, 46, 63, 0.4); }
.header-whatsapp-btn {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}
.header-whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 26px; height: 3px; background: var(--maroon); border-radius: 3px; transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 992px) {
    .nav-links-desktop { display: none; }
    .hamburger { display: flex; }
    .header-call-btn span { display: none; }
}

/* Mobile Drawer Styles */
.mobile-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; background: linear-gradient(135deg, #C92E3F, #8B1538); }
.mobile-drawer-header .logo-text .logo-title, .mobile-drawer-header .logo-text .logo-subtitle { color: white; }
.drawer-close { width: 40px; height: 40px; background: rgba(255,255,255,0.2); border: none; border-radius: 50%; color: white; font-size: 1.2rem; cursor: pointer; }
.mobile-drawer-content { padding: 20px; }
.mobile-nav-link { display: flex; align-items: center; gap: 12px; padding: 15px; font-size: 1rem; font-weight: 500; color: var(--brown); border-radius: 10px; transition: all 0.3s ease; }
.mobile-nav-link:hover, .mobile-nav-link.active { background: var(--cream); color: var(--maroon); }
.mobile-nav-link i { width: 24px; color: var(--saffron); }
.mobile-drawer-buttons { display: flex; flex-direction: column; gap: 10px; padding: 20px; border-top: 1px solid #eee; margin-top: 15px; }
.mobile-drawer-buttons .btn { width: 100%; justify-content: center; }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FFF8E7 0%, #FFECD2 50%, #FFE5D9 100%);
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(201, 46, 63, 0.08) 0%, transparent 70%); border-radius: 50%; }
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 700px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: linear-gradient(135deg, #C92E3F, #8B1538); color: white; border-radius: 50px; font-size: 0.85rem; font-weight: 500; margin-bottom: 20px; animation: fadeInUp 0.6s ease; }
.hero-badge i { animation: bounce 2s infinite; }
.hero-title { font-size: 3rem; font-weight: 800; color: var(--brown); line-height: 1.2; margin-bottom: 20px; animation: fadeInUp 0.6s ease 0.1s backwards; }
.hero-title .highlight { background: linear-gradient(135deg, #C92E3F, #FF6B35); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: 1.1rem; color: var(--brown-light); margin-bottom: 30px; animation: fadeInUp 0.6s ease 0.2s backwards; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 15px; animation: fadeInUp 0.6s ease 0.3s backwards; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Mobile Toggle Media Query */
@media (max-width: 1024px) {
    .nav-links-desktop, .header-actions { display: none !important; }
    .hamburger { display: flex !important; }
    .mobile-brand-tag { display: flex; }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE5D9 50%, #FFD7BA 100%);
    overflow: hidden;
    padding-top: 100px;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 182, 39, 0.15) 0%, transparent 50%);
    pointer-events: none;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}
.hero-badge { display: inline-block; padding: 8px 20px; background: linear-gradient(135deg, #FFB627, #FF8C42); color: var(--brown); border-radius: 50px; font-weight: 600; font-size: 0.85rem; margin-bottom: 20px; }
.hero-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: var(--maroon-dark); margin-bottom: 20px; line-height: 1.2; }
.hero-title .highlight { background: linear-gradient(135deg, #FF6B35, #C92E3F); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: 1.1rem; color: var(--brown-light); margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 50px; font-weight: 600;
    font-size: 0.95rem; transition: all 0.3s ease; border: none; cursor: pointer;
    text-decoration: none;
}
.btn-primary { background: linear-gradient(135deg, #C92E3F, #8B1538); color: white; box-shadow: 0 4px 20px rgba(201, 46, 63, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201, 46, 63, 0.4); }
.btn-secondary { background: white; color: var(--maroon); border: 2px solid var(--maroon); }
.btn-secondary:hover { background: var(--maroon); color: white; }
.btn-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); color: white; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
.btn-lg { padding: 15px 35px; font-size: 1rem; }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #FFF8E7 0%, #FFECD2 50%, #FFE5D9 100%);
    overflow: hidden;
    padding-top: 100px;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 70%; height: 200%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 182, 39, 0.1));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: linear-gradient(135deg, #FFB627, #FF8C42); border-radius: 50px; font-size: 0.85rem; font-weight: 600; color: var(--brown); margin-bottom: 20px; animation: bounce 2s infinite; }
.hero-title { font-size: 3rem; font-weight: 800; color: var(--maroon-dark); line-height: 1.2; margin-bottom: 20px; }
.hero-title .highlight { background: linear-gradient(135deg, #FF6B35, #C92E3F); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: 1.1rem; color: var(--brown-light); margin-bottom: 30px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; font-weight: 600; font-size: 0.9rem; border-radius: 50px; transition: all 0.3s ease; border: none; cursor: pointer; text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, #C92E3F, #8B1538); color: white; box-shadow: 0 4px 20px rgba(201, 46, 63, 0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201, 46, 63, 0.5); }
.btn-secondary { background: linear-gradient(135deg, #FFB627, #F59F00); color: var(--brown); box-shadow: 0 4px 20px rgba(255, 182, 39, 0.4); }
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255, 182, 39, 0.5); }
.btn-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); color: white; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5); }
.btn-lg { padding: 15px 30px; font-size: 1rem; }

/* ==========================================================================
   SECTION STYLES
   ========================================================================== */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-title { font-size: 2.5rem; font-weight: 800; color: var(--maroon-dark); margin-bottom: 15px; }
.section-subtitle { font-size: 1.1rem; color: var(--brown-light); max-width: 600px; margin: 0 auto; }

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
    background: linear-gradient(135deg, #8B1538, #C92E3F, #FF6B35);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; z-index: 1; }
.stat-card { text-align: center; padding: 30px 20px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.2); transition: all 0.3s ease; }
.stat-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.15); }
.stat-icon { width: 60px; height: 60px; margin: 0 auto 15px; background: linear-gradient(135deg, #FFB627, #FF8C42); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--brown); }
.stat-number { font-size: 2.5rem; font-weight: 800; color: white; margin-bottom: 5px; }
.stat-label { font-size: 0.9rem; color: rgba(255, 255, 255, 0.9); font-weight: 500; }
@media (max-width: 1024px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }


.btn-secondary { background: white; color: var(--maroon); border: 2px solid var(--maroon); }
.btn-secondary:hover { background: var(--maroon); color: white; }
.btn-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); color: white; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn i { font-size: 1rem; }

/* Responsive Hero */
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }

    .hero { padding-top: 140px; min-height: auto; padding-bottom: 60px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
}

/* ==========================================================================
   SECTION STYLES
   ========================================================================== */
.section { padding: 80px 0; }
.section-alt { background: white; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-title { font-size: 2.5rem; font-weight: 700; color: var(--maroon-dark); margin-bottom: 15px; }
.section-subtitle { font-size: 1.1rem; color: var(--brown-light); max-width: 600px; margin: 0 auto; }
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }

    .section { padding: 50px 0; }
    .section-title { font-size: 1.8rem; }
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
    background: linear-gradient(135deg, #8B1538, #C92E3F, #FF6B35);
    padding: 60px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-card { text-align: center; padding: 30px 20px; background: rgba(255,255,255,0.1); border-radius: 20px; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); transition: all 0.3s ease; }
.stat-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.15); }
.stat-icon { width: 60px; height: 60px; margin: 0 auto 15px; background: linear-gradient(135deg, #FFB627, #FF8C42); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--brown); }
.stat-number { font-size: 2.5rem; font-weight: 800; color: white; }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-top: 5px; }
@media (max-width: 1024px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   SERVICES SHOWCASE GRID
   ========================================================================== */
.services-showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 30px 0; }
.showcase-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.08); transition: all 0.4s ease; border: 1px solid rgba(0,0,0,0.06); }
.showcase-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(139, 21, 56, 0.15); }
.showcase-card-image { position: relative; height: 200px; overflow: hidden; }
.showcase-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.showcase-card:hover .showcase-card-image img { transform: scale(1.1); }
.showcase-card-badge { position: absolute; top: 15px; left: 15px; background: linear-gradient(135deg, #FFB627, #FF8C42); color: var(--brown); padding: 6px 14px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; }
.showcase-card-content { padding: 22px; }
.showcase-card-title { font-size: 1.2rem; font-weight: 700; color: var(--maroon-dark); margin-bottom: 8px; }
.showcase-card-description { font-size: 0.88rem; color: var(--brown-light); line-height: 1.6; margin-bottom: 12px; }
.showcase-card-meta { display: flex; gap: 15px; font-size: 0.8rem; color: #666; margin-bottom: 15px; }
.showcase-card-meta span { display: flex; align-items: center; gap: 5px; }
@media (max-width: 1024px) { .services-showcase-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }
 .services-showcase-grid { grid-template-columns: 1fr; } }

.stat-icon { width: 60px; height: 60px; margin: 0 auto 15px; background: linear-gradient(135deg, #FFB627, #FF8C42); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--brown); box-shadow: 0 4px 15px rgba(255, 182, 39, 0.4); }
.stat-number { font-size: 2.5rem; font-weight: 800; color: white; margin-bottom: 5px; }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.9); font-weight: 500; }
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }
 .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   SERVICES SHOWCASE GRID
   ========================================================================== */
.services-showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 30px 0; }
.showcase-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.08); transition: all 0.4s ease; border: 1px solid rgba(0,0,0,0.06); }
.showcase-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(139, 21, 56, 0.15); }
.showcase-card-image { position: relative; height: 200px; overflow: hidden; }
.showcase-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.showcase-card:hover .showcase-card-image img { transform: scale(1.1); }
.showcase-card-badge { position: absolute; top: 15px; left: 15px; background: linear-gradient(135deg, #FFB627, #FF8C42); color: var(--brown); padding: 6px 14px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; }
.showcase-card-content { padding: 22px; }
.showcase-card-title { font-size: 1.2rem; font-weight: 700; color: var(--maroon-dark); margin-bottom: 8px; }
.showcase-card-description { font-size: 0.88rem; color: var(--brown-light); line-height: 1.6; margin-bottom: 12px; }
.showcase-card-meta { display: flex; gap: 15px; font-size: 0.8rem; color: #666; margin-bottom: 15px; }
.showcase-card-meta span { display: flex; align-items: center; gap: 5px; }
.showcase-actions { display: flex; gap: 10px; margin-top: 15px; }
.showcase-btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 12px 14px; text-align: center; text-transform: uppercase; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.5px; background-image: linear-gradient(to right, #e52d27 0%, #b31217 51%, #e52d27 100%); background-size: 200% auto; color: white; box-shadow: 0 0 15px rgba(229, 45, 39, 0.4); border-radius: 10px; border: none; text-decoration: none; transition: all 0.5s ease; }
.showcase-btn:hover { background-position: right center; color: #fff; text-decoration: none; transform: translateY(-2px); box-shadow: 0 0 25px rgba(229, 45, 39, 0.6); }
.showcase-btn.whatsapp-btn { background-image: linear-gradient(to right, #02AAB0 0%, #00CDAC 51%, #02AAB0 100%); box-shadow: 0 0 15px rgba(2, 170, 176, 0.4); }
.showcase-btn.whatsapp-btn:hover { box-shadow: 0 0 25px rgba(2, 170, 176, 0.6); }
.showcase-btn i { font-size: 0.85rem; }
@media (max-width: 1024px) { .services-showcase-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }
 .services-showcase-grid { grid-template-columns: 1fr; } .showcase-actions { flex-direction: column; } }

/* Dual Action Buttons */
.showcase-actions { display: flex; gap: 10px; margin-top: 15px; }

/* View More Button - RED GRADIENT */
.showcase-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 18px;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background-image: linear-gradient(to right, #e52d27 0%, #b31217 51%, #e52d27 100%);
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 15px rgba(229, 45, 39, 0.4);
    border-radius: 10px;
    border: none;
    text-decoration: none;
    transition: all 0.5s ease;
}
.showcase-btn:hover {
    background-position: right center;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(229, 45, 39, 0.6);
}

/* WhatsApp Button - TEAL GRADIENT */
.showcase-btn.whatsapp-btn {
    background-image: linear-gradient(to right, #02AAB0 0%, #00CDAC 51%, #02AAB0 100%);
    background-size: 200% auto;
    box-shadow: 0 0 15px rgba(2, 170, 176, 0.4);
}
.showcase-btn.whatsapp-btn:hover {
    background-position: right center;
    box-shadow: 0 0 25px rgba(2, 170, 176, 0.6);
}

/* Responsive */
@media (max-width: 1024px) { .services-showcase-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }
 .services-showcase-grid { grid-template-columns: 1fr; } .showcase-actions { flex-direction: column; } }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section { background: linear-gradient(135deg, #FFF8E7, #FFECD2); padding: 80px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card { background: white; padding: 30px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.testimonial-card .stars { color: #FFB627; margin-bottom: 15px; }
.testimonial-card p { font-size: 0.95rem; color: var(--brown-light); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .author-avatar { width: 50px; height: 50px; background: linear-gradient(135deg, #FFB627, #FF6B35); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; }
.testimonial-card .author h4 { font-size: 1rem; font-weight: 600; color: var(--maroon-dark); }
.testimonial-card .author span { font-size: 0.85rem; color: var(--brown-light); }
@media (max-width: 1024px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   AREAS SECTION
   ========================================================================== */
.areas-section { padding: 60px 0; }
.areas-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.area-tag { padding: 10px 20px; background: white; border: 2px solid var(--gold); border-radius: 50px; font-size: 0.9rem; font-weight: 500; color: var(--brown); transition: all 0.3s ease; }
.area-tag:hover { background: var(--gold); color: var(--brown); transform: translateY(-2px); }

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section { background: linear-gradient(135deg, #FF6B35, #FFB627, #FF8C42); padding: 80px 0; text-align: center; }
.cta-content h2 { font-size: 2.5rem; font-weight: 700; color: white; margin-bottom: 15px; }
.cta-content p { font-size: 1.1rem; color: rgba(255,255,255,0.9); margin-bottom: 30px; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }
 .cta-content h2 { font-size: 1.8rem; } .cta-buttons { flex-direction: column; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: linear-gradient(180deg, #2C1810, #1a0f0a); padding: 60px 0 0; color: white; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-col h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 20px; color: var(--gold); }
.footer-col p, .footer-col li { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 2; }
.footer-col ul { list-style: none; }
.footer-col a { color: rgba(255,255,255,0.8); transition: color 0.3s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 15px; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.footer-social a:hover { background: var(--gold); color: var(--brown); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }
 .footer-grid { grid-template-columns: 1fr; text-align: center; } .footer-social { justify-content: center; } }

/* ==========================================================================
   STICKY BOTTOM MOBILE MENU
   ========================================================================== */
.mobile-bottom-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: linear-gradient(90deg, #8B1538, #C92E3F, #FF6B35, #FFB627, #FF8C42); background-size: 300% 100%; animation: menu-gradient 6s ease infinite; padding: 0; z-index: 9999; box-shadow: 0 -8px 35px rgba(201, 46, 63, 0.6); }
@keyframes menu-gradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }
 .mobile-bottom-nav { display: block; } body { padding-bottom: 85px !important; } }
.mobile-bottom-nav-inner { display: flex; justify-content: space-around; align-items: flex-end; padding: 8px 5px 15px; max-width: 500px; margin: 0 auto; }
.mobile-bottom-nav .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: white; text-decoration: none; flex: 1; max-width: 70px; transition: all 0.3s ease; }
.mobile-bottom-nav .nav-item:active { transform: scale(0.9); }
.mobile-bottom-nav .nav-item span:not(.nav-icon) { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; text-shadow: 0 2px 6px rgba(0,0,0,0.4); }
.mobile-bottom-nav .nav-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: all 0.3s ease; border: 2px solid rgba(255,255,255,0.3); }
.mobile-bottom-nav .whatsapp-main { background: linear-gradient(135deg, #25D366, #128C7E); width: 58px; height: 58px; font-size: 1.6rem; border: 3px solid #FFD93D; animation: whatsapp-glow 2s ease-in-out infinite; box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5); }
@keyframes whatsapp-glow { 0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5); } 50% { box-shadow: 0 6px 35px rgba(37, 211, 102, 0.8); } }
.mobile-bottom-nav .center-item { transform: translateY(-12px); }

.testimonial-card { background: white; padding: 30px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.testimonial-card .stars { color: #FFB627; margin-bottom: 15px; }
.testimonial-card .testimonial-text { font-size: 0.95rem; color: var(--brown-light); line-height: 1.7; margin-bottom: 20px; }
.author-info { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 50px; height: 50px; background: linear-gradient(135deg, #FF6B35, #FFB627); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1rem; }
.author-info h4 { font-size: 1rem; font-weight: 600; color: var(--maroon-dark); }
.author-info span { font-size: 0.85rem; color: var(--saffron); }
@media (max-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }
 .testimonials-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   AREAS SECTION
   ========================================================================== */
.areas-section { background: white; padding: 80px 0; }
.areas-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; max-width: 900px; margin: 0 auto; }
.area-tag { padding: 12px 25px; background: linear-gradient(135deg, #FFF8E7, #FFECD2); border: 2px solid #FFB627; border-radius: 50px; font-weight: 600; color: var(--maroon-dark); transition: all 0.3s ease; }
.area-tag:hover { background: linear-gradient(135deg, #FFB627, #FF8C42); color: white; transform: translateY(-2px); box-shadow: 0 5px 20px rgba(255, 182, 39, 0.3); }

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section { background: linear-gradient(135deg, #8B1538, #C92E3F, #FF6B35); padding: 80px 0; text-align: center; }
.cta-box { max-width: 700px; margin: 0 auto; }
.cta-title { font-size: 2.5rem; font-weight: 700; color: white; margin-bottom: 15px; }
.cta-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.9); margin-bottom: 30px; }
.cta-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.cta-section .btn-primary { background: white; color: var(--maroon); }
.cta-section .btn-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: linear-gradient(180deg, #2C1810, #1a0f0a); padding: 60px 0 30px; color: white; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; color: #FFB627; }
.footer-col p { color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.8; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.8); transition: all 0.3s ease; }
.footer-col ul li a:hover { color: #FFB627; padding-left: 5px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 12px; }
.footer-contact li i { color: #FF6B35; width: 20px; text-align: center; }
.footer-social { display: flex; gap: 15px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transition: all 0.3s ease; }
.footer-social a:hover { background: #FF6B35; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; color: rgba(255,255,255,0.6); font-size: 0.85rem; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }
 .footer-grid { grid-template-columns: 1fr; } .cta-title { font-size: 1.8rem; } }

/* ==========================================================================
   MOBILE BOTTOM NAV - STICKY
   ========================================================================== */
.mobile-bottom-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: linear-gradient(90deg, #8B1538, #C92E3F, #FF6B35, #FFB627, #FF8C42); background-size: 300% 100%; animation: menu-gradient 6s ease infinite; padding: 0; z-index: 9999; box-shadow: 0 -8px 35px rgba(201, 46, 63, 0.6); }
@keyframes menu-gradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }
 .mobile-bottom-nav { display: block !important; } body { padding-bottom: 95px !important; } }
.mobile-bottom-nav-inner { display: flex; justify-content: space-around; align-items: flex-end; padding: 8px 5px 20px; max-width: 500px; margin: 0 auto; }
.mobile-bottom-nav .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: white; text-decoration: none; transition: all 0.3s ease; flex: 1; max-width: 70px; }
.mobile-bottom-nav .nav-item:active { transform: scale(0.9); }
.mobile-bottom-nav .nav-item span:not(.nav-icon) { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; text-shadow: 0 2px 6px rgba(0,0,0,0.4); }
.mobile-bottom-nav .nav-icon { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; box-shadow: 0 6px 20px rgba(0,0,0,0.35); transition: all 0.3s ease; border: 3px solid rgba(255,255,255,0.3); }
.mobile-bottom-nav .nav-icon.whatsapp-main { background: linear-gradient(135deg, #25D366, #128C7E); width: 60px; height: 60px; font-size: 1.8rem; border: 4px solid #FFD93D; animation: whatsapp-glow 2s ease-in-out infinite; }
@keyframes whatsapp-glow { 0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7); } 50% { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.9); } }
.mobile-bottom-nav .center-item { transform: translateY(-15px); }

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.whatsapp-float { position: fixed; bottom: 110px; right: 20px; width: 60px; height: 60px; background: linear-gradient(135deg, #25D366, #128C7E); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.8rem; box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5); z-index: 9998; transition: all 0.3s ease; animation: pulse-whatsapp 2s infinite; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6); }
@keyframes pulse-whatsapp { 0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5); } 50% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.8), 0 0 0 15px rgba(37, 211, 102, 0.1); } }
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }
 .whatsapp-float { display: none; } }

.cta-content { max-width: 800px; margin: 0 auto; }
.cta-title { font-size: 2.5rem; font-weight: 700; color: white; margin-bottom: 15px; }
.cta-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.9); margin-bottom: 30px; }
.cta-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.cta-section .btn-primary { background: white; color: var(--maroon); }
.cta-section .btn-whatsapp { background: #25D366; }
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }
 .cta-title { font-size: 1.8rem; } .cta-buttons { flex-direction: column; } .cta-buttons .btn { width: 100%; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: linear-gradient(180deg, #2C1810, #1a0f0a); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo-text { margin-bottom: 15px; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transition: all 0.3s ease; }
.social-links a:hover { background: var(--saffron); transform: translateY(-3px); }
.footer-col h4 { color: white; font-size: 1.1rem; font-weight: 600; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: all 0.3s ease; }
.footer-col ul li a:hover { color: var(--saffron); padding-left: 5px; }
.footer-col ul li i { color: var(--saffron); margin-right: 8px; width: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.footer-bottom a { color: var(--saffron); }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }
 .footer-grid { grid-template-columns: 1fr; text-align: center; } .social-links { justify-content: center; } .footer-col ul li a { justify-content: center; display: block; } }

/* ==========================================================================
   MOBILE BOTTOM STICKY NAV
   ========================================================================== */
.mobile-bottom-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: linear-gradient(90deg, #8B1538, #C92E3F, #FF6B35, #FFB627, #FF8C42); background-size: 300% 100%; animation: menu-gradient 6s ease infinite; padding: 0; z-index: 9999; box-shadow: 0 -8px 35px rgba(201, 46, 63, 0.6); }
@keyframes menu-gradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.mobile-bottom-nav-inner { display: flex; justify-content: space-around; align-items: flex-end; padding: 8px 5px 20px; max-width: 500px; margin: 0 auto; }
.mobile-bottom-nav .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: white; text-decoration: none; transition: all 0.3s ease; flex: 1; max-width: 70px; }
.mobile-bottom-nav .nav-item:active { transform: scale(0.9); }
.mobile-bottom-nav .nav-item span:not(.nav-icon) { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; text-shadow: 0 2px 6px rgba(0,0,0,0.4); }
.mobile-bottom-nav .nav-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: all 0.3s ease; }
.mobile-bottom-nav .whatsapp-main { background: linear-gradient(135deg, #25D366, #128C7E) !important; width: 58px !important; height: 58px !important; font-size: 1.6rem !important; border: 3px solid #FFD93D; transform: translateY(-12px); animation: whatsapp-glow 2s ease-in-out infinite; }
@keyframes whatsapp-glow { 0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7); } 50% { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.9); } }
.mobile-bottom-nav .center-item { transform: translateY(-12px); }
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }
 .mobile-bottom-nav { display: block; } body { padding-bottom: 90px !important; } }

/* ==========================================================================
   PAGE HEADERS
   ========================================================================== */
.page-header { background: linear-gradient(135deg, #8B1538, #C92E3F, #FF6B35); padding: 120px 0 60px; text-align: center; }
.page-header h1 { font-size: 2.5rem; font-weight: 700; color: white; margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,0.9); font-size: 1.1rem; }
.breadcrumb { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: #FFD93D; }

/* ==========================================================================
   RESPONSIVE UTILITIES
   ========================================================================== */
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }

    .header-topbar { font-size: 0.75rem; padding: 6px 0; }
    .logo-text { display: none; }
    .mobile-brand-tag { display: flex !important; flex-direction: column; gap: 2px; padding-left: 12px; border-left: 3px solid; border-image: linear-gradient(180deg, #FFB627, #FF6B35, #C92E3F) 1; }
    .mobile-brand-tag .tagline { font-size: 0.85rem; font-weight: 700; background: linear-gradient(135deg, #8B1538, #FF6B35, #FFB627); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .mobile-brand-tag .location { font-size: 0.65rem; color: #C92E3F; }
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }
 .footer-grid { grid-template-columns: 1fr; text-align: center; } .social-links { justify-content: center; } }

/* ==========================================================================
   MOBILE BOTTOM NAV - STICKY
   ========================================================================== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #8B1538 0%, #C92E3F 20%, #FF6B35 40%, #FFB627 60%, #FF8C42 80%, #C92E3F 100%);
    background-size: 300% 100%;
    animation: menu-gradient 6s ease infinite;
    padding: 0;
    z-index: 9999;
    box-shadow: 0 -8px 35px rgba(201, 46, 63, 0.6);
}
@keyframes menu-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }

    .mobile-bottom-nav { display: block; }
    body { padding-bottom: 85px !important; }
}
.mobile-bottom-nav-inner { display: flex; justify-content: space-around; align-items: flex-end; padding: 8px 5px 18px; }
.mobile-bottom-nav .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: white; text-decoration: none; flex: 1; max-width: 70px; transition: all 0.3s ease; }
.mobile-bottom-nav .nav-item:active { transform: scale(0.9); }
.mobile-bottom-nav .nav-item span:not(.nav-icon) { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; text-shadow: 0 2px 6px rgba(0,0,0,0.4); }
.mobile-bottom-nav .nav-icon { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; box-shadow: 0 6px 20px rgba(0,0,0,0.35); transition: all 0.3s ease; border: 3px solid rgba(255,255,255,0.3); }
.mobile-bottom-nav .whatsapp-main { background: linear-gradient(135deg, #25D366, #128C7E); width: 60px !important; height: 60px !important; font-size: 1.8rem !important; border: 4px solid #FFD93D !important; animation: whatsapp-glow 2s ease-in-out infinite; }
@keyframes whatsapp-glow { 0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7); } 50% { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.9); } }
.mobile-bottom-nav .center-item { transform: translateY(-12px); }

/* ==========================================================================
   GALLERY PAGE
   ========================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { position: relative; border-radius: 15px; overflow: hidden; aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(139,21,56,0.9), transparent); display: flex; align-items: flex-end; padding: 20px; opacity: 0; transition: opacity 0.3s ease; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { color: white; font-size: 1.1rem; font-weight: 600; }
@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }
 .gallery-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; }
.contact-info-card { background: linear-gradient(135deg, #8B1538, #C92E3F); padding: 40px; border-radius: 20px; color: white; }
.contact-info-card h3 { font-size: 1.5rem; margin-bottom: 30px; }
.contact-info-item { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.contact-info-item i { width: 50px; height: 50px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.contact-info-item h4 { font-size: 1rem; margin-bottom: 3px; }
.contact-info-item p { font-size: 0.9rem; opacity: 0.9; }
.contact-form { background: white; padding: 40px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--brown); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px 18px; border: 2px solid #eee; border-radius: 10px; font-size: 1rem; transition: all 0.3s ease; font-family: inherit; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--saffron); outline: none; box-shadow: 0 0 0 4px rgba(255,107,53,0.1); }
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-form .btn { width: 100%; padding: 16px; font-size: 1rem; }
@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   SCROLL TOP BUTTON
   ========================================================================== */
.scroll-top { position: fixed; bottom: 100px; right: 20px; width: 50px; height: 50px; background: linear-gradient(135deg, #C92E3F, #8B1538); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; box-shadow: 0 4px 20px rgba(201,46,63,0.4); opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 999; }
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(201,46,63,0.5); }

.nav .whatsapp-main { background: linear-gradient(135deg, #25D366, #128C7E) !important; width: 60px !important; height: 60px !important; font-size: 1.8rem !important; border: 4px solid #FFD93D !important; animation: whatsapp-glow 2s ease-in-out infinite; }
@keyframes whatsapp-glow { 0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7), 0 4px 15px rgba(0,0,0,0.3); } 50% { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.9), 0 4px 20px rgba(37, 211, 102, 0.5); } }


/* ==========================================================================
   PREMIUM CTA SECTION - WORLD CLASS DESIGN
   ========================================================================== */
.premium-cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0a0a 0%, #2C1810 25%, #4A2020 50%, #2C1810 75%, #1a0a0a 100%);
    background-size: 400% 400%;
    animation: cta-gradient-bg 15s ease infinite;
    overflow: hidden;
}
@keyframes cta-gradient-bg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-bg-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 182, 39, 0.15) 0%, transparent 50%);
    pointer-events: none;
}
.cta-floating-elements { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; overflow: hidden; }
.cta-float { position: absolute; border-radius: 50%; opacity: 0.1; animation: float-cta 20s ease-in-out infinite; }
.cta-float-1 { width: 300px; height: 300px; background: linear-gradient(135deg, #FF6B35, #FFB627); top: -100px; left: -50px; }
.cta-float-2 { width: 200px; height: 200px; background: linear-gradient(135deg, #C92E3F, #8B1538); bottom: -50px; right: -50px; animation-delay: -7s; }
.cta-float-3 { width: 150px; height: 150px; background: linear-gradient(135deg, #FFB627, #FF6B35); top: 50%; left: 50%; animation-delay: -14s; }
@keyframes float-cta { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 25% { transform: translate(30px, -30px) rotate(90deg); } 50% { transform: translate(0, -50px) rotate(180deg); } 75% { transform: translate(-30px, -30px) rotate(270deg); } }

/* CTA Content */
.premium-cta-content { position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto; }
.cta-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 24px; background: linear-gradient(135deg, rgba(255, 182, 39, 0.2), rgba(255, 107, 53, 0.2)); border: 1px solid rgba(255, 182, 39, 0.4); border-radius: 50px; color: #FFB627; font-size: 0.85rem; font-weight: 600; margin-bottom: 25px; animation: pulse-badge 2s ease-in-out infinite; }
@keyframes pulse-badge { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } }
.cta-badge i { animation: rotate-icon 4s linear infinite; }
@keyframes rotate-icon { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.premium-cta-title { font-size: 3rem; font-weight: 800; color: white; margin-bottom: 20px; line-height: 1.2; }
.premium-cta-title .highlight { background: linear-gradient(135deg, #FFB627, #FF6B35, #C92E3F); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.premium-cta-subtitle { font-size: 1.15rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 40px; line-height: 1.8; }

/* CTA Buttons Container */
.cta-buttons-premium { display: flex; justify-content: center; gap: 20px; margin-bottom: 50px; flex-wrap: wrap; }
/* CTA WhatsApp Button */
.cta-whatsapp-btn { display: inline-flex; align-items: center; gap: 12px; padding: 18px 35px; background: linear-gradient(135deg, #25D366, #128C7E); color: white; border-radius: 60px; font-weight: 700; font-size: 1.1rem; text-decoration: none; box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), inset 0 2px 0 rgba(255,255,255,0.2); transition: all 0.4s ease; position: relative; overflow: hidden; }
.cta-whatsapp-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.6s ease; }
.cta-whatsapp-btn:hover::before { left: 100%; }
.cta-whatsapp-btn:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5); }
.cta-whatsapp-btn i { font-size: 1.4rem; }
/* CTA Call Button */
.cta-call-btn { display: inline-flex; align-items: center; gap: 12px; padding: 18px 35px; background: linear-gradient(135deg, #C92E3F, #8B1538); color: white; border-radius: 60px; font-weight: 700; font-size: 1.1rem; text-decoration: none; box-shadow: 0 8px 30px rgba(201, 46, 63, 0.4), inset 0 2px 0 rgba(255,255,255,0.2); transition: all 0.4s ease; position: relative; overflow: hidden; }
.cta-call-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.6s ease; }
.cta-call-btn:hover::before { left: 100%; }
.cta-call-btn:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(201, 46, 63, 0.5); }
.cta-call-btn i { font-size: 1.4rem; }

/* CTA Info Cards */
.cta-info-cards { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.cta-info-card { display: flex; align-items: center; gap: 15px; padding: 20px 30px; background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; transition: all 0.3s ease; }
.cta-info-card:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 182, 39, 0.3); transform: translateY(-3px); }
.cta-info-icon { width: 50px; height: 50px; background: linear-gradient(135deg, #FFB627, #FF6B35); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: white; box-shadow: 0 4px 15px rgba(255, 182, 39, 0.3); }
.cta-info-card:nth-child(2) .cta-info-icon { background: linear-gradient(135deg, #25D366, #128C7E); box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }
.cta-info-card:nth-child(3) .cta-info-icon { background: linear-gradient(135deg, #C92E3F, #8B1538); box-shadow: 0 4px 15px rgba(201, 46, 63, 0.3); }
.cta-info-text h4 { color: white; font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.cta-info-text p { color: rgba(255, 255, 255, 0.7); font-size: 0.85rem; }
/* CTA Trust Badges */
.cta-trust { display: flex; justify-content: center; gap: 20px; margin-top: 40px; flex-wrap: wrap; }
.cta-trust-badge { display: flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; font-weight: 500; }
.cta-trust-badge i { color: #FFB627; font-size: 1rem; }

/* Responsive */
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }

    .premium-cta-section { padding: 60px 0; }
    .premium-cta-title { font-size: 1.8rem; }
    .premium-cta-subtitle { font-size: 1rem; }
    .cta-buttons-premium { flex-direction: column; align-items: center; }
    .cta-whatsapp-btn, .cta-call-btn { width: 100%; max-width: 300px; justify-content: center; }
    .cta-info-cards { flex-direction: column; align-items: center; }
    .cta-info-card { width: 100%; max-width: 300px; }
    .cta-trust { flex-direction: column; align-items: center; gap: 10px; }
}
/* Hide old CTA section */
.cta-section { display: none !important; }

/* ==========================================================================
   PREMIUM FOOTER - WORLD CLASS DESIGN
   ========================================================================== */
.premium-footer {
    position: relative;
    background: linear-gradient(180deg, #1a0a0a 0%, #2C1810 50%, #1a0a0a 100%);
    padding: 80px 0 0;
    overflow: hidden;
    margin-top: 0;
}
/* Wave Top */
.footer-wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%231a0a0a' d='M0,50L60,55C120,60,240,70,360,65C480,60,600,45,720,40C840,35,960,40,1080,50C1200,60,1320,75,1380,82.5L1440,90L1440,100L1380,100C1320,100,1200,100,1080,100C960,100,840,100,720,100C600,100,480,100,360,100C240,100,120,100,60,100L0,100Z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
}
/* Background Overlay */
.footer-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(201, 46, 63, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* Om Background Watermark */
.footer-om-bg {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 400px;
    color: rgba(255, 107, 53, 0.03);
    pointer-events: none;
    z-index: 0;
}
/* Main Grid */
.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}
/* Brand Column */
.footer-brand-col { }
.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.footer-logo-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #FFB627, #FF6B35);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 182, 39, 0.3);
}
.footer-logo-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}
.footer-logo-info span {
    font-size: 0.85rem;
    color: #FFB627;
    font-weight: 600;
}
.footer-brand-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Social Icons */
.footer-social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}
.social-icon:hover {
    background: linear-gradient(135deg, #FF6B35, #FFB627);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}
.social-icon.whatsapp:hover {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}
/* Footer Columns */
.footer-col { }
.footer-col-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35, #FFB627);
    border-radius: 3px;
}
.footer-links-list { list-style: none; padding: 0; margin: 0; }
.footer-links-list li { margin-bottom: 12px; }
.footer-links-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.footer-links-list li a i {
    color: #FF6B35;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}
.footer-links-list li a:hover {
    color: #FFB627;
    padding-left: 8px;
}
.footer-links-list li a:hover i {
    transform: translateX(5px);
}

/* Contact Info */
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.footer-contact-item .contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 182, 39, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFB627;
    font-size: 1rem;
}
.footer-contact-item .contact-info h5 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.footer-contact-item .contact-info p,
.footer-contact-item .contact-info a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    text-decoration: none;
}
.footer-contact-list li .contact-info a:hover {
    color: #FFB627;
}
/* Footer Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}
.footer-copyright strong { color: #FFB627; }
.footer-designed p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}
.footer-designed i { color: #e52d27; margin: 0 3px; }
/* Floating Call Button */
.footer-floating-call {
    position: absolute;
    right: 30px;
    bottom: 100px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C92E3F, #8B1538);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 8px 25px rgba(201, 46, 63, 0.5);
    transition: all 0.3s ease;
    z-index: 10;
    animation: floating-call 3s ease-in-out infinite;
}
.footer-floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(201, 46, 63, 0.6);
}
@keyframes floating-call {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-main-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .footer-om-bg { font-size: 300px; opacity: 0.02; }
}
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }

    .premium-footer { padding: 60px 0 0; }
    .footer-wave-top { height: 60px; }
    .footer-main-grid { grid-template-columns: 1fr; gap: 35px; text-align: center; }
    .footer-col-title::after { left: 50%; transform: translateX(-50%); }
    .footer-links-list li a { justify-content: center; }
    .footer-logo-wrap { justify-content: center; }
    .footer-social-icons { justify-content: center; }
    .footer-contact-item { justify-content: center; }
    .footer-contact-item .contact-icon { margin: 0 auto; }
    .footer-bottom-bar { flex-direction: column; text-align: center; }
    .footer-floating-call { display: none; }
}
/* Hide old footer */
.footer { display: none !important; }

/* Contact Items - Fixed */
.footer-contact-items { display: flex; flex-direction: column; gap: 20px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 15px; }
.footer-contact-item .contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 182, 39, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFB627;
    font-size: 1.1rem;
}
.footer-contact-item .whatsapp-icon { background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(18, 140, 126, 0.2)); }
.footer-contact-item .whatsapp-icon i { color: #25D366; }
.footer-contact-item .contact-info { flex: 1; }
.footer-contact-item .contact-info .contact-label {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.footer-contact-item .contact-info .contact-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    text-decoration: none;
    display: block;
    line-height: 1.4;
}
.footer-contact-item .contact-info .contact-value:hover { color: #FFB627; }

/* Contact Items Responsive */
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }

    .footer-contact-items { align-items: center; }
    .footer-contact-item { width: 100%; max-width: 300px; }
    .footer-contact-item .contact-icon { margin: 0 auto; }
}

/* Icon Direct Styling */
.contact-icon i, .footer-contact-item .contact-icon i {
    font-size: 1.1rem;
    line-height: 1;
}
/* Make sure Font Awesome icons display */
.footer [class*="fa-"] {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}


/* ==========================================================================
   PUJA PAGE STYLES
   ========================================================================== */
/* ==========================================================================
   PUJA PAGE STYLES - PREMIUM DESIGN
   ========================================================================== */

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root {
    --saffron: #FF6B35;
    --saffron-dark: #E55A2B;
    --orange: #FF8C42;
    --maroon: #C92E3F;
    --maroon-dark: #8B1538;
    --gold: #FFB627;
    --gold-light: #FFD93D;
    --cream: #FFF8E7;
    --brown: #2C1810;
    --brown-light: #4A3228;
    --white: #FFFFFF;
    --whatsapp: #25D366;
}

/* ==========================================================================
   PUJA HERO SECTION
   ========================================================================== */
.puja-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a0a0a 0%, #2C1810 50%, #4A2020 100%);
    overflow: hidden;
    padding: 120px 20px 60px;
}

.puja-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    filter: blur(2px);
}

.puja-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26, 10, 10, 0.7) 0%, rgba(44, 24, 16, 0.9) 100%);
}

.puja-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 0.8s ease;
}

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

.puja-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 182, 39, 0.2), rgba(255, 107, 53, 0.2));
    border: 1px solid rgba(255, 182, 39, 0.4);
    color: #FFB627;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.puja-hero-badge i {
    animation: pulse 2s infinite;
}

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

.puja-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.puja-hero h1 span {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 10px;
    opacity: 0.9;
}

.puja-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.8;
}

.puja-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.puja-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.puja-hero-btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.puja-hero-btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.puja-hero-btn-call {
    background: linear-gradient(135deg, #C92E3F, #8B1538);
    color: white;
    box-shadow: 0 8px 30px rgba(201, 46, 63, 0.4);
}

.puja-hero-btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 46, 63, 0.5);
}

/* Decorative Elements */
.puja-hero-decoration {
    position: absolute;
    z-index: 1;
}

.puja-hero-decoration-1 {
    top: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 182, 39, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.puja-hero-decoration-2 {
    bottom: 15%;
    right: 8%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 46, 63, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ==========================================================================
   PUJA GALLERY SECTION
   ========================================================================== */
.puja-gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF8E7 0%, #FFECD2 100%);
}

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

.section-header-center h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--maroon-dark);
    margin-bottom: 15px;
}

.section-header-center p {
    font-size: 1.1rem;
    color: var(--brown-light);
    max-width: 600px;
    margin: 0 auto;
}

.puja-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.puja-gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.puja-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 21, 56, 0.2);
}

.puja-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f5f5f5;
    transition: transform 0.5s ease;
    padding: 10px;
}

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

.puja-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(139, 21, 56, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

.puja-gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.puja-gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maroon);
    font-size: 1.5rem;
    transition: transform 0.4s ease;
}

.puja-gallery-item:hover .puja-gallery-zoom {
    transform: translate(-50%, -50%) scale(1);
}

/* ==========================================================================
   PUJA DETAILS SECTION
   ========================================================================== */
.puja-details-section {
    padding: 80px 0;
    background: white;
}

.puja-details-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.puja-details-main h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--maroon-dark);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.puja-details-main h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--saffron));
    border-radius: 2px;
}

.puja-details-main p {
    font-size: 1.05rem;
    color: var(--brown-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.puja-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.puja-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.puja-details-list li:last-child {
    border-bottom: none;
}

.puja-details-list .list-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.puja-details-list .list-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 4px;
}

.puja-details-list .list-content p {
    font-size: 0.9rem;
    color: var(--brown-light);
    margin: 0;
    line-height: 1.5;
}

/* Sidebar */
.puja-details-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.puja-info-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.puja-info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--maroon-dark);
    margin-bottom: 25px;
    text-align: center;
}

.puja-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.puja-info-item:last-child {
    border-bottom: none;
}

.puja-info-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 182, 39, 0.1), rgba(255, 107, 53, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--saffron);
    font-size: 1rem;
}

.puja-info-item span {
    flex: 1;
    font-size: 0.95rem;
    color: var(--brown);
}

.puja-info-item strong {
    color: var(--maroon-dark);
    font-weight: 600;
}

.puja-info-card .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.puja-info-card .cta-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.puja-info-card .cta-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.puja-info-card .cta-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.puja-info-card .cta-call {
    background: linear-gradient(135deg, #C92E3F, #8B1538);
    color: white;
}

.puja-info-card .cta-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 46, 63, 0.4);
}

/* ==========================================================================
   PUJA FEATURES SECTION
   ========================================================================== */
.puja-features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B1538 0%, #C92E3F 50%, #FF6B35 100%);
    position: relative;
    overflow: hidden;
}

.puja-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.puja-features-section .section-header-center h2 {
    color: white;
}

.puja-features-section .section-header-center p {
    color: rgba(255, 255, 255, 0.8);
}

.puja-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.puja-feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.puja-feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.puja-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFB627, #FF8C42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 182, 39, 0.4);
}

.puja-feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.puja-feature-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ==========================================================================
   PUJA PRICING SECTION
   ========================================================================== */
.puja-pricing-section {
    padding: 80px 0;
    background: white;
}

.puja-pricing-container {
    max-width: 900px;
    margin: 0 auto;
}

.puja-pricing-card {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFECD2 100%);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 182, 39, 0.3);
    position: relative;
    overflow: hidden;
}

.puja-pricing-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 182, 39, 0.2), rgba(255, 107, 53, 0.2));
    border-radius: 50%;
}

.puja-pricing-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--maroon-dark);
    margin-bottom: 15px;
}

.puja-pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--saffron);
    margin-bottom: 10px;
}

.puja-pricing-card .price-note {
    font-size: 1rem;
    color: var(--brown-light);
    margin-bottom: 30px;
}

.puja-pricing-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    text-align: left;
    margin-bottom: 30px;
}

.puja-pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--brown);
}

.puja-pricing-feature i {
    color: var(--whatsapp);
    font-size: 1.1rem;
}

.puja-pricing-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.puja-pricing-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.puja-pricing-btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.puja-pricing-btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.puja-pricing-btn-call {
    background: linear-gradient(135deg, #FFB627, #FF8C42);
    color: var(--brown);
    box-shadow: 0 8px 30px rgba(255, 182, 39, 0.4);
}

.puja-pricing-btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 182, 39, 0.5);
}

/* ==========================================================================
   PUJA FAQ SECTION
   ========================================================================== */
.puja-faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF8E7 0%, #FFECD2 100%);
}

.puja-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.puja-faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.puja-faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.puja-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.puja-faq-question:hover {
    background: rgba(255, 182, 39, 0.05);
}

.puja-faq-question h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--brown);
    flex: 1;
}

.puja-faq-question i {
    color: var(--saffron);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.puja-faq-item.active .puja-faq-question i {
    transform: rotate(180deg);
}

.puja-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.puja-faq-item.active .puja-faq-answer {
    max-height: 500px;
}

.puja-faq-answer-content {
    padding: 0 25px 20px;
    font-size: 0.95rem;
    color: var(--brown-light);
    line-height: 1.7;
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1024px) {
    .puja-hero h1 {
        font-size: 2.8rem;
    }

    .puja-hero h1 span {
        font-size: 1.6rem;
    }

    .puja-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .puja-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .puja-details-container {
        grid-template-columns: 1fr;
    }

    .puja-details-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }

    .puja-hero {
        min-height: auto;
        padding: 100px 20px 50px;
    }

    .puja-hero h1 {
        font-size: 2.2rem;
    }

    .puja-hero h1 span {
        font-size: 1.4rem;
    }

    .puja-hero-subtitle {
        font-size: 1rem;
    }

    .puja-hero-buttons {
        flex-direction: column;
    }

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

    .puja-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .puja-gallery-item {
        aspect-ratio: 16/10;
    }

    .puja-features-grid {
        grid-template-columns: 1fr;
    }

    .puja-feature-card {
        padding: 25px 20px;
    }

    .puja-pricing-card {
        padding: 35px 25px;
    }

    .puja-pricing-card .price {
        font-size: 2.5rem;
    }

    .puja-pricing-features {
        grid-template-columns: 1fr;
    }

    .puja-pricing-buttons {
        flex-direction: column;
    }

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

    .section-header-center h2 {
        font-size: 1.8rem;
    }

    .puja-details-main h2 {
        font-size: 1.6rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .puja-hero h1 {
        font-size: 1.8rem;
    }

    .puja-hero h1 span {
        font-size: 1.2rem;
    }

    .puja-hero-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
    }

    .puja-gallery-item {
        aspect-ratio: 4/3;
    }

    .puja-feature-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }
}

/* ==========================================================================
   MOBILE BOTTOM NAV OVERRIDES FOR PUJA PAGES
   ========================================================================== */
@media (max-width: 768px) {
    /* Page header padding for mobile - visible below header */
    .page-header { 
        padding-top: 160px !important; 
    }

    body {
        padding-bottom: 85px !important;
    }
}

/* Puja Gallery Images - Ensure Display */
.puja-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    background-color: #f5f5f5;
    display: block !important;
    visibility: visible !important;
}

.puja-gallery-item {
    background: #f5f5f5;
    min-height: 200px;
}

.showcase-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.puja-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Mobile Drawer Footer - Beautiful Gradient Buttons */
.mobile-drawer-footer {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(180deg, rgba(139, 21, 56, 0.05), rgba(255, 107, 53, 0.05));
    border-top: 1px solid rgba(139, 21, 56, 0.1);
}

.mobile-drawer-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mobile-drawer-footer .drawer-call {
    background: linear-gradient(135deg, #C92E3F, #8B1538, #6B1029) !important;
    color: white !important;
    border: 2px solid rgba(255,255,255,0.2);
}

.mobile-drawer-footer .drawer-call:hover {
    background: linear-gradient(135deg, #E52D27, #C92E3F, #8B1538) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 21, 56, 0.4);
}

.mobile-drawer-footer .drawer-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E, #075E54) !important;
    color: white !important;
    border: 2px solid rgba(255,255,255,0.2);
}

.mobile-drawer-footer .drawer-whatsapp:hover {
    background: linear-gradient(135deg, #2ECC71, #25D366, #128C7E) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.mobile-drawer-footer .drawer-call i,
.mobile-drawer-footer .drawer-whatsapp i {
    font-size: 1.3rem;
}

/* Hamburger Button - Only responds to direct clicks */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10002;
    position: relative;
    pointer-events: auto;
}

@media (max-width: 1024px) {
    .hamburger {
        display: flex !important;
    }
}

.hamburger:active {
    transform: scale(0.95);
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--maroon);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}
