/* ==========================================
    GLOBAL LAPTOP VIEW FIX (Compact & Optimized)
========================================== */
html {
    font-size: 13.5px;
}

body {
    overflow-x: hidden;
}

.container-custom {
    max-width: 1200px !important;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================
    HOME PAGE - HERO SECTION
========================== */
.hero-section {
    position: relative;
    overflow: hidden;
    background: #FFFDF6;
    padding: 35px 0 35px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    gap: 30px;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: #FFF1C7;
    color: #8B5E00;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* ==========================
   BRAND HEADER STYLING
========================== */
.hero-brand {
    margin-bottom: 15px;
}

.main-brand-title {
    font-family: 'Cinzel', serif !important;
    font-size: 46px !important;
    color: #3E2A1D !important;
    font-weight: 700 !important;
    margin: 0 !important;
    line-height: 1.1 !important;
}

.sub-brand-tag {
    display: block !important;
    font-size: 14px !important; 
    color: #88651E !important; 
    font-weight: 600 !important;
    margin-top: 3px !important;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 44px;
    line-height: 1.15;
    color: #3E2A1D;
    margin-bottom: 12px;
}

.hero-title span {
    color: #D4A017;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    max-width: 600px;
    margin-bottom: 15px;
}

/* Features */
.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 15px 0;
}

.hero-features div {
    background: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,.04);
    font-weight: 500;
    font-size: 14px;
}

/* ===============================
    PREMIUM BUTTONS
=================================*/
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-primary,
.btn-secondary,
.btn-whatsapp {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 190px;
    height: 48px;
    padding: 0 24px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: .35s ease;
}

/* BOOK */
.btn-primary {
    color: #fff;
    background: linear-gradient(135deg,#F7C948,#D4A017);
    box-shadow: 0 8px 20px rgba(212,160,23,.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(212,160,23,.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
    transform: skewX(-25deg);
    transition: .8s;
}

.btn-primary:hover::before {
    left: 140%;
}

/* CALL */
.btn-secondary {
    background: #fff;
    border: 2px solid #D4A017;
    color: #5A3E1B;
    box-shadow: 0 5px 15px rgba(0,0,0,.04);
}

.btn-secondary:hover {
    background: #D4A017;
    color: #fff;
    transform: translateY(-3px);
}

/* WHATSAPP */
.btn-whatsapp {
    background: #1EBE5D;
    color: #fff;
    box-shadow: 0 5px 15px rgba(37,211,102,.2);
}

.btn-whatsapp:hover {
    background: #1EBE5D;
    transform: translateY(-3px);
}

/* Right Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 380px;
    border-radius: 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
}

.image-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: #FFE08A;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .3;
}

.hero-bg-left,
.hero-bg-right {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(90px);
}

.hero-bg-left {
    background: #FFF2C8;
    top: -100px;
    left: -100px;
}

.hero-bg-right {
    background: #FFE9AE;
    bottom: -100px;
    right: -100px;
}

/*==============================
  MAA KALIKA SECTION
===============================*/
.maa-kalika-section {
    padding: 20px 0;
    background: linear-gradient(to bottom,#FFFDF6,#FFF8EA);
}

.maa-grid {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 40px;
    align-items: center;
}

.maa-image {
    text-align: center;
}

.maa-image img {
    width: 100%;
    max-width: 560px;
    height: 420px; /* Image ki height yahan control ho jayegi */
    object-fit: cover; /* Image stretch nahi hogi, perfectly fit hogi */
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,.1);
    border: 6px solid #fff;
}

.section-tag {
    display: inline-block;
    background: #FFF0C9;
    color: #A36C00;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 10px;
}

.maa-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 34px;
    color: #4D3319;
    line-height: 1.2;
    margin-bottom: 12px;
}

.maa-content h2 span {
    color: #D4A017;
}

.maa-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.maa-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 15px 0;
}

.maa-points div {
    background: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,.04);
    font-weight: 500;
    font-size: 14px;
}

/*==============================
  WHY CHOOSE SECTION
==============================*/
.why-section {
    padding: 45px 0;
    background: #fffdf8;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.why-card {
    background: #fff;
    border: 1px solid #F2E6C8;
    border-radius: 18px;
    padding: 22px 18px;
    text-align: center;
    transition: .3s;
    box-shadow: 0 8px 25px rgba(0,0,0,.04);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,#FFD34D,#D4A017);
    transform: scaleX(0);
    transition: .3s;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#FFF5D8,#FFD45A);
    box-shadow: 0 6px 15px rgba(212,160,23,.2);
}

.why-icon i {
    font-size: 26px;
    color: #8B5A00;
}

.why-card h3 {
    font-size: 17px;
    color: #3d2813;
    margin-bottom: 8px;
}

.why-card p {
    color: #666;
    line-height: 1.6;
    font-size: 13.5px;
}

/*=====================================
  TESTIMONIALS SECTION (Centered & Button)
======================================*/
.testimonials-section {
    padding: 45px 0;
    background: #FFFDF8;
    text-align: center !important;
}

.testimonials-header {
    text-align: center !important;
    max-width: 750px;
    margin: 0 auto 25px auto;
}

.testimonials-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 34px;
    color: #3A2615;
    margin: 10px 0;
    font-weight: 700;
}

.testimonials-header p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
    text-align: left;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #F2E6C8;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
    transition: .3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.testimonial-card::before {
    content: "❝";
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 45px;
    color: #F4D06F;
    opacity: .2;
}

.stars {
    color: #E0A800;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.testimonial-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 13.5px;
}

.testimonial-card h4 {
    margin: 0;
    color: #3B2A1A;
    font-size: 15px;
}

.testimonial-card span {
    display: block;
    margin-top: 3px;
    color: #888;
    font-size: 12.5px;
}

.testimonial-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-view-reviews {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 2px solid #D4A017;
    color: #5A3E1B;
    padding: 11px 26px;
    border-radius: 14px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,.04);
    transition: .3s ease;
}

.btn-view-reviews:hover {
    background: #D4A017;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212,160,23,.25);
}

/*====================================
  ABOUT HOME
====================================*/
.about-home-section {
    padding: 45px 0;
    background: #FFFDF8;
}

.about-home-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: center;
}

.guru-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #F3E5BF;
    box-shadow: 0 15px 35px rgba(0,0,0,.06);
}

.guru-image-box img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: linear-gradient(135deg,#FFD34D,#E0A800);
    color: #fff;
    border-radius: 12px;
    padding: 10px 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(224,168,0,.3);
}

.experience-badge strong {
    display: block;
    font-size: 22px;
    line-height: 1;
}

.experience-badge span {
    font-size: 12px;
    font-weight: 600;
}

.about-home-content h2 {
    font-size: 34px;
    line-height: 1.2;
    color: #3A2615;
    margin: 8px 0 12px 0;
}

.about-home-content h2 span {
    color: #D69A00;
}

.about-home-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 14.5px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 15px 0;
}

.about-highlights div {
    background: #fff;
    border: 1px solid #F2E6C8;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 600;
    color: #3A2615;
    box-shadow: 0 5px 15px rgba(0,0,0,.04);
    font-size: 13.5px;
}

.about-highlights i {
    color: #D69A00;
    margin-right: 6px;
}

.about-home-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

/*=====================================
  CTA SECTION
======================================*/
.cta-section {
    padding: 45px 0;
    background: #FFFDF8;
}

.cta-box {
    background: linear-gradient(135deg,#FFF7E5,#FFF1CC);
    border: 1px solid #F3DFC0;
    border-radius: 22px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
}

.cta-box h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: #3B2816;
    line-height: 1.2;
    margin: 10px 0;
    position: relative;
    z-index: 2;
}

.cta-box h2 span {
    color: #D4A017;
}

.cta-box p {
    max-width: 680px;
    margin: 0 auto;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-buttons a {
    min-width: 190px;
}

/*=====================================
  FAQ SECTION (Centered & Optimized)
======================================*/
.faq-section {
    padding: 45px 0 !important;
    background: #FFFDF8;
    text-align: center !important;
}

.faq-header {
    text-align: center !important;
    max-width: 750px;
    margin: 0 auto 25px auto;
}

.faq-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 34px;
    color: #3A2615;
    margin: 10px 0;
    font-weight: 700;
}

.faq-header p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.faq-wrapper {
    max-width: 850px;
    margin: 0 auto 25px auto;
    text-align: left;
}

.faq-item {
    background: #fff;
    border: 1px solid #F2E5C4;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,.03);
    transition: .3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    text-align: left;
}

.faq-question span {
    font-size: 15px;
    font-weight: 600;
    color: #3A2615;
    line-height: 1.4;
}

.faq-question i {
    color: #D4A017;
    font-size: 15px;
    transition: .3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    padding: 0 20px;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 350px;
    padding: 0 20px 15px 20px;
    border-top-color: #F4E8CB;
}

.faq-answer p {
    margin: 12px 0 0 0;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-footer-btn {
    text-align: center;
    margin-top: 25px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 2px solid #D4A017;
    color: #5A3E1B;
    padding: 11px 26px;
    border-radius: 14px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,.04);
    transition: .3s ease;
}

.btn-view-all:hover {
    background: #D4A017;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212,160,23,.25);
}

/* ===========================
  HOME SERVICES
=========================== */
.home-services {
    padding: 45px 0;
    background: #fff;
    text-align: center;
}

.home-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 25px 0 20px 0;
}

.home-service-card {
    background: #fff;
    border: 2px solid #F2E3C2;
    border-radius: 16px;
    padding: 22px 15px;
    text-decoration: none;
    color: #35210E;
    transition: .3s;
    box-shadow: 0 8px 20px rgba(0,0,0,.04);
}

.home-service-card i {
    font-size: 34px;
    color: #D4A017;
    margin-bottom: 10px;
}

.home-service-card h4 {
    font-size: 17px;
    margin: 0;
    font-weight: 700;
}

.home-service-card:hover {
    transform: translateY(-6px);
    border-color: #D4A017;
    box-shadow: 0 15px 30px rgba(0,0,0,.08);
}

.home-services-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* ==========================================
  RESPONSIVE FOR TABLETS & MOBILES
========================================== */
@media(max-width: 992px) {
    .hero-grid,
    .maa-grid,
    .about-home-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid,
    .home-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-home-content {
        text-align: center;
    }
}

@media(max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .why-grid,
    .testimonial-grid,
    .home-service-grid,
    .about-highlights,
    .hero-features,
    .maa-points {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons a,
    .btn-primary,
    .btn-secondary,
    .btn-whatsapp {
        width: 100%;
        max-width: 320px;
    }
}