/* =========================================
   CSS VARIABLES & RESET
   ========================================= */
:root {
    /* Color Palette */
    --primary-color: #800000; /* Deep Maroon */
    --secondary-color: #D4AF37; /* Subtle Gold */
    --accent-color: #FF9933; /* Saffron */
    --bg-light: #FAF7F2; /* Soft Luxury Off-White Cream */
    --bg-white: #FFFFFF;
    --text-main: #333333;
    --text-light: #666666;
    --border-color: #E0E0E0;
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 55px 0;
}

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

.section-title {
    margin-bottom: 30px;
}

.section-title.center {
    text-align: center;
}

.section-title h2 {
    font-size: clamp(1.3rem, 4vw, 2.5rem);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    line-height: 1.25;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-title.center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.subtitle {
    display: block;
    font-size: 1rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 10px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    text-align: center;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

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

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

.btn-secondary {
    background-color: #25D366; /* WhatsApp Green */
    color: var(--bg-white);
}

.btn-secondary:hover {
    background-color: #1EBE5D;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

/* =========================================
   HEADER & NAVBAR
   ========================================= */
header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    border-radius: 50%;
}

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

.logo h1 {
    font-size: 1.7rem;
    margin: 0;
    line-height: 1.1;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
}

.logo span {
    font-size: 0.78rem;
    color: var(--accent-color);
    font-family: var(--font-body);
    letter-spacing: 0.8px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links li a {
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    height: auto;
    background: linear-gradient(135deg, rgba(128,0,0,0.05) 0%, rgba(212,175,55,0.1) 100%);
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
}

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

.hero-text {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    box-sizing: border-box;
}

.hero-text .subtitle {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: clamp(0.75rem, 2.5vw, 0.95rem);
    max-width: 100%;
}

.hero-text h1 {
    font-size: clamp(1.4rem, 5vw, 2.8rem);
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.25;
    margin-bottom: 10px;
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-text h2, .hero-text h3, .hero-subtext {
    font-size: clamp(0.85rem, 2.5vw, 1.25rem);
    color: var(--secondary-color);
    font-family: var(--font-heading);
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.35;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-text p {
    font-size: clamp(0.85rem, 2.8vw, 1.05rem);
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-spinning-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55, 0.45);
    animation: spinClockwise 45s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.hero-spinning-stars::before {
    content: '';
    position: absolute;
    top: 16px; 
    left: 16px; 
    right: 16px; 
    bottom: 16px;
    border-radius: 50%;
    border: 1.5px dashed rgba(212,175,55, 0.65);
}

.hero-img-real {
    position: relative;
    z-index: 2;
    width: 72%;
    height: 72%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    border: 4px solid var(--secondary-color);
    margin: 0 auto;
    display: block;
}

.zodiac-star {
    position: absolute;
    color: var(--secondary-color);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.7));
}

.about-img-real {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--secondary-color);
}

.about-img-real {
    height: 500px;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.portrait {
    height: 500px;
    border-radius: 5px;
    background-image: linear-gradient(45deg, #f3ece1, #e3d3bd);
}

.about-features {
    margin: 30px 0;
}

.about-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.about-features i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom: 3px solid var(--secondary-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--secondary-color);
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    background: linear-gradient(135deg, #3D0000 0%, #1A0000 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    padding: 50px 0;
    text-align: center;
    color: var(--bg-white);
}

.cta-section h2 {
    color: #FFFFFF;
    font-size: clamp(1.4rem, 4vw, 2.1rem);
    line-height: 1.25;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.cta-section p {
    font-size: 0.98rem;
    max-width: 620px;
    line-height: 1.6;
    margin: 0 auto 22px;
    color: rgba(255, 255, 255, 0.88);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cta-buttons .btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.cta-buttons .btn-primary:hover {
    background-color: #F8DA76;
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 30px;
}

.why-icon {
    width: 70px;
    height: 70px;
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    border: 1px solid var(--secondary-color);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: scale(1.1);
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.step {
    flex: 1;
    text-align: center;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid var(--bg-light);
    box-shadow: var(--shadow-md);
}

.step h4 {
    margin-bottom: 10px;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.step-connector {
    flex: 0.5;
    height: 2px;
    background-color: var(--secondary-color);
    margin-top: 30px;
    position: relative;
    z-index: 0;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding-bottom: 20px;
    scrollbar-width: none; /* Firefox */
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

.testimonial-card {
    min-width: 100%;
    scroll-snap-align: center;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    position: relative;
    border: 1px solid var(--border-color);
}

@media (min-width: 768px) {
    .testimonial-card {
        min-width: calc(50% - 15px);
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        min-width: calc(33.333% - 20px);
    }
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.review {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-card::before {
    content: '\201C';
    font-family: serif;
    font-size: 6rem;
    position: absolute;
    top: 10px;
    left: 20px;
    color: rgba(212, 175, 55, 0.15);
    z-index: 0;
    line-height: 1;
}

.client-info h4 {
    margin: 0;
    color: var(--primary-color);
}

.client-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active, .dot:hover {
    background-color: var(--primary-color);
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-family: var(--font-body);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-item.active .faq-question {
    background-color: rgba(128, 0, 0, 0.03);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: var(--bg-white);
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 300px;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.info-items {
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    background-color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-light);
}

.contact-form-wrapper {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(128, 0, 0, 0.1);
}

.submit-btn {
    width: 100%;
}

.form-status {
    margin-top: 15px;
    text-align: center;
    font-weight: 500;
}

.form-status.success {
    color: #25D366;
}

.form-status.error {
    color: #d9534f;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding-top: 70px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer h3, .footer h4 {
    color: var(--secondary-color);
}

.about-col p {
    color: #bbbbbb;
    margin-bottom: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    color: #bbbbbb;
}

.links-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-col p {
    color: #bbbbbb;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-col i {
    color: var(--secondary-color);
}

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.bottom-flex p {
    color: #888;
    font-size: 0.9rem;
}

.legal-links a {
    color: #888;
    font-size: 0.9rem;
    margin-left: 15px;
}

.legal-links a:hover {
    color: var(--secondary-color);
}

/* =========================================
   FLOATING BUTTONS
   ========================================= */
.floating-btn {
    position: fixed;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    z-index: 100;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.whatsapp-btn {
    bottom: 30px !important;
    right: 30px !important;
    left: auto !important;
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.back-to-top {
    display: none !important;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .hero-text h2 {
        font-size: 2.8rem;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    header {
        height: 70px;
    }

    .navbar {
        height: 70px;
        padding: 0 15px;
    }

    .logo a {
        gap: 8px;
    }

    .logo-img {
        height: 42px;
        width: 42px;
        object-fit: contain;
        mix-blend-mode: multiply;
    }

    .logo h1 {
        font-size: 1.22rem;
        line-height: 1.1;
        letter-spacing: -0.2px;
    }

    .logo span {
        font-size: 0.68rem;
        letter-spacing: 0.3px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        overflow-y: auto;
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        transition: 0.4s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-cta {
        display: none; /* Hide button on mobile nav */
    }
    
    .hamburger {
        display: block;
    }

    .whatsapp-btn {
        bottom: 20px !important;
        right: 20px !important;
        left: auto !important;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }

    .section-title h2 {
        font-size: 1.28rem !important;
        line-height: 1.25 !important;
        padding-bottom: 6px;
    }

    .section-title .subtitle {
        font-size: 0.78rem !important;
        letter-spacing: 0.8px;
    }

    .hero-content {
        display: flex;
        flex-direction: column-reverse; /* Image FIRST on mobile */
        text-align: center;
        gap: 25px;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .hero-text .subtitle {
        font-size: 0.78rem;
        letter-spacing: 0.8px;
        margin-bottom: 6px;
        line-height: 1.35;
    }

    .hero-text h1 {
        font-size: 1.18rem;
        line-height: 1.25;
        margin-bottom: 6px;
        letter-spacing: -0.2px;
    }

    .hero-text h2, .hero-text h3, .hero-subtext {
        font-size: 0.78rem !important;
        line-height: 1.35 !important;
        margin-bottom: 10px !important;
        letter-spacing: 0.4px !important;
    }

    .hero-text p {
        font-size: 0.88rem;
        line-height: 1.55;
        margin-bottom: 18px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: row;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        gap: 10px;
        justify-content: center;
    }

    .hero-buttons .btn {
        flex: 1;
        width: 50%;
        justify-content: center;
        padding: 11px 12px;
        font-size: 0.84rem;
        white-space: nowrap;
        border-radius: 8px;
    }

    .hero-buttons .btn i {
        font-size: 0.95rem;
        margin-right: 4px;
    }
    
    .hero-image-wrapper {
        width: 100%;
        max-width: 380px;
        margin: 0 auto 20px auto;
    }
    .about-img-real {
        height: 300px;
    }

    .about-container,
    .contact-container,
    .meet-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .meet-image-frame {
        max-width: 320px;
        margin: 0 auto;
    }

    .meet-exp-tag {
        position: relative;
        inset: auto;
        margin: 15px auto 0 auto;
        max-width: 280px;
        justify-content: center;
    }

    .meet-content-col {
        text-align: center;
    }

    .meet-content-col h2 {
        font-size: 1.28rem !important;
        line-height: 1.25 !important;
        margin-bottom: 10px;
        text-align: center;
    }

    .meet-description {
        font-size: 0.9rem;
        line-height: 1.55;
        margin-bottom: 12px;
        text-align: center;
    }

    .meet-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin: 20px auto 0 auto;
    }

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

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .contact-col p {
        justify-content: center;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .step-connector {
        display: none;
    }
    
    .bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    

}

@media (max-width: 480px) {
    .hero-image-wrapper {
        width: 100%;
        max-width: 320px;
        margin: 0 auto 15px auto;
    }

    .hero-text .subtitle {
        font-size: 0.7rem;
        letter-spacing: 0.4px;
    }

    .hero-text h1 {
        font-size: 1.05rem;
        line-height: 1.22;
    }

    .hero-text h2, .hero-text h3, .hero-subtext {
        font-size: 0.72rem !important;
        line-height: 1.35 !important;
        margin-bottom: 8px !important;
    }

    .hero-text p {
        font-size: 0.82rem;
        line-height: 1.5;
    }

    .section-title h2 {
        font-size: 1.15rem !important;
        line-height: 1.22 !important;
        padding-bottom: 5px;
    }

    .hero-buttons {
        gap: 8px;
    }

    .hero-buttons .btn {
        padding: 10px 8px;
        font-size: 0.78rem;
    }

    .hero-buttons .btn i {
        font-size: 0.85rem;
        margin-right: 3px;
    }

    .meet-image-frame {
        max-width: 280px;
    }

    .meet-exp-num {
        font-size: 1.7rem;
    }

    .meet-exp-text {
        font-size: 0.75rem;
    }

    .timeline-content h3 {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
    }

    .timeline-content p {
        font-size: 0.78rem;
        line-height: 1.45;
    }

    .navbar {
        padding: 0 10px;
    }
    
    .logo a {
        gap: 6px;
    }

    .logo-img {
        height: 36px;
        width: 36px;
    }

    .logo h1 {
        font-size: 1.1rem;
        letter-spacing: -0.3px;
    }

    .logo span {
        font-size: 0.62rem;
        letter-spacing: 0.2px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .whatsapp-btn {
        bottom: 20px;
        left: 20px;
    }
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
    .hero-text h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .hero {
        padding-top: 140px;
        padding-bottom: 40px;
        min-height: auto;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* =========================================
   NEW HOME PAGE SECTIONS
   ========================================= */

/* Decorative Divider */
.decorative-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
}
.decorative-divider .line {
    height: 2px;
    width: 80px;
    background-color: #d88e36;
    position: relative;
}
.decorative-divider .line::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #d88e36;
    border-radius: 50%;
    top: -2px;
}
.decorative-divider .line:first-child::before { right: -6px; }
.decorative-divider .line:last-child::before { left: -6px; }
.decorative-divider i {
    color: #d88e36;
    font-size: 1.5rem;
}

/* 2-Column FAQ Grid */
.faq-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
    margin-top: 40px;
}
.faq-list-item {
    padding: 15px 10px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #444;
}
.faq-list-item i {
    color: #333;
    margin-top: 4px;
    font-size: 1rem;
}

/* 4-Step Process */
.four-steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.four-step-item {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}
.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 2.2rem;
    color: #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}
.icon-circle .badge {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 32px;
    height: 32px;
    background-color: #b26a1d;
    color: #fff;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.four-step-item h4 {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    color: #333;
    max-width: 180px;
    line-height: 1.4;
}
.four-steps-container .step-line {
    flex: 1;
    height: 1px;
    background-color: #ddd;
    margin-top: 50px;
    z-index: 1;
}

@media (max-width: 768px) {
    .faq-two-column {
        grid-template-columns: 1fr;
    }
    .how-it-works {
        padding: 30px 0 !important;
    }
    .how-it-works .section-title {
        margin-bottom: 15px !important;
    }
    .how-it-works .section-title h2 {
        font-size: 1.2rem !important;
    }
    .how-it-works .section-title p {
        font-size: 0.82rem !important;
        margin: 8px auto 0 !important;
    }
    .four-steps-container {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 20px 10px;
        margin-top: 20px;
        align-items: start;
        justify-items: center;
    }
    .four-steps-container .step-line {
        display: none;
    }
    .four-step-item {
        width: 100%;
        max-width: 150px;
    }
    .icon-circle {
        width: 72px;
        height: 72px;
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    .icon-circle .badge {
        width: 24px;
        height: 24px;
        font-size: 0.72rem;
        top: -4px;
        left: -4px;
    }
    .four-step-item h4 {
        font-size: 0.82rem !important;
        line-height: 1.3 !important;
        max-width: 130px;
    }
}

/* =========================================
   GOOGLE REVIEWS SECTION
   ========================================= */
.reviews-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}
.reviews-summary {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.summary-header {
    display: flex;
    align-items: center;
    gap: 20px;
}
.reviews-summary .btn-outline:hover {
    background-color: #f1f3f4;
    color: #333;
}
.reviews-slider-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.gr-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 10;
    cursor: pointer;
    color: #666;
    border: 1px solid #eee;
    font-size: 1.2rem;
    padding-bottom: 2px;
}
.gr-slider-btn:hover {
    background: #f8f9fa;
}
.gr-prev-btn {
    left: 0;
}
.gr-next-btn {
    right: 0;
}
.reviews-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 30px 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-left: 20px;
}
.reviews-slider::-webkit-scrollbar {
    display: none;
}
.google-review-card {
    min-width: 320px;
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    position: relative;
    scroll-snap-align: start;
    border: 1px solid rgba(0,0,0,0.04);
}
.gr-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.gr-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1.1rem;
}
.gr-name-info {
    flex: 1;
}
.gr-name-info h4 {
    margin: 0;
    font-size: 1.05rem;
    color: #333;
    font-family: var(--font-body);
}
.gr-date {
    font-size: 0.8rem;
    color: #777;
}
.gr-stars {
    color: #fbbc04;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.gr-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}
.gr-text a {
    color: #777;
    text-decoration: none;
}
.gr-text a:hover {
    text-decoration: underline;
}
.gr-quote {
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-size: 2rem;
    color: rgba(212,175,55,0.5);
    font-family: serif;
}

@media (max-width: 900px) {
    .reviews-wrapper {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        overflow: hidden;
    }
    .reviews-slider-container {
        width: 100%;
    }
    .reviews-summary {
        align-items: center;
    }
    .summary-header {
        flex-direction: column;
        text-align: center;
    }
    .summary-header div {
        text-align: center !important;
    }
    .gr-slider-btn {
        display: none;
    }
    .google-review-card {
        min-width: 260px;
        width: 85vw;
        padding: 20px;
    }
}

/* =========================================
   NEW 4 SECTIONS (ANIMATION, SERVICES, STATS, CTA)
   ========================================= */

/* Animated Astro Section */
.animated-astro-section {
    background: linear-gradient(135deg, #2b1030 0%, #4a192c 100%);
    position: relative;
    overflow: hidden;
}
.astro-animation-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
.astro-wheel-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    margin: 0 auto;
}
.spinning-zodiac {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55, 0.4);
    animation: spinClockwise 30s linear infinite;
}
.spinning-zodiac::before {
    content: '';
    position: absolute;
    top: 20px; left: 20px; right: 20px; bottom: 20px;
    border-radius: 50%;
    border: 1px dashed rgba(212,175,55, 0.6);
}
.zodiac-star {
    position: absolute;
    color: var(--secondary-color);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(212,175,55,0.8));
}
.center-person {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--secondary-color);
    box-shadow: 0 0 40px rgba(212,175,55,0.5);
    z-index: 2;
    background: #000;
}
.center-person img {
    width: 100%; height: 100%;
    object-fit: cover;
}
@keyframes spinClockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.astro-text-content {
    flex: 1;
}
.astro-benefits {
    list-style: none;
    padding: 0;
}
.astro-benefits li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}
.astro-benefits li i {
    color: var(--secondary-color);
}

/* Featured Services Grid */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 30px;
    margin-top: 40px;
}
.feat-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    border-bottom: 4px solid transparent;
}
.feat-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--secondary-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.feat-icon {
    width: 70px; height: 70px;
    background: rgba(212,175,55,0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: 0.3s;
}
.feat-card:hover .feat-icon {
    background: var(--secondary-color);
    color: #fff;
}
.feat-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}
.feat-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}
.stat-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}
.stat-item .counter {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}
.stat-item p {
    font-size: 1rem;
    color: #eee;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive adjustments for new sections */
@media (max-width: 900px) {
    .astro-animation-container {
        flex-direction: column;
        text-align: center;
    }
    .astro-benefits li {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    /* Responsive scaling handled by aspect-ratio */
}

/* =========================================
   ABOUT PAGE EXPANDED SECTIONS STYLES
   ========================================= */

/* 1. Page Hero Banner */
.page-hero {
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.95) 0%, rgba(60, 0, 0, 0.98) 100%), url('images/hero_bg.jpg') center/cover no-repeat;
    color: var(--bg-white);
    padding: 70px 0 60px;
    text-align: center;
    position: relative;
    box-shadow: inset 0 -10px 20px rgba(0,0,0,0.2);
}

.page-hero h1 {
    color: #FFFFFF;
    font-size: 3rem;
    margin: 15px 0;
    font-weight: 700;
}

.page-hero p {
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
}

.page-hero .subtitle {
    color: var(--secondary-color);
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.breadcrumb a {
    color: var(--secondary-color);
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #FFFFFF;
}

.breadcrumb span {
    color: #FFFFFF;
}

.breadcrumb i {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* 2. Main Biography Enhancements */
.about-img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a0000 100%);
    border: 2px solid var(--secondary-color);
    color: #FFFFFF;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 3;
}

.exp-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.about-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.section-desc {
    max-width: 650px;
    margin: 10px auto 0;
    color: var(--text-light);
    font-size: 1.05rem;
}

/* 3. Spiritual Philosophy & Pillars */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.philosophy-card {
    background: #FFFFFF;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.philosophy-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.philosophy-card:hover .philosophy-icon {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.philosophy-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.philosophy-card p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* 4. Fields of Spiritual Mastery */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.expertise-card {
    background: #FFFFFF;
    padding: 35px 30px;
    border-radius: 12px;
    position: relative;
    border: 1px solid #E8E8E8;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.expertise-card:hover {
    transform: translateY(-6px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(128, 0, 0, 0.08);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expertise-icon {
    font-size: 2.4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.expertise-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.expertise-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* 5. Spiritual Journey Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-inherit: inherit;
    width: 50%;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    width: 44px;
    height: 44px;
    right: -22px;
    background: var(--primary-color);
    border: 3px solid var(--secondary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.1rem;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.timeline-item.right .timeline-dot {
    left: -22px;
}

.timeline-content {
    padding: 25px 30px;
    background: #FFFFFF;
    position: relative;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.timeline-date {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* 6. Impact Statistics Bar */
.stats-bar {
    background: linear-gradient(135deg, #3D0000 0%, #1F0000 100%);
    border-top: 2px solid rgba(212, 175, 55, 0.4);
    border-bottom: 2px solid rgba(212, 175, 55, 0.4);
    color: #FFFFFF;
    padding: 55px 0;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-box {
    padding: 15px 10px;
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 6px rgba(212,175,55,0.4));
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.1;
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.88);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

/* 7. 4-Step Consultation Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    background: #FFFFFF;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.step-num {
    position: absolute;
    top: 15px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(128, 0, 0, 0.12);
}

.step-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(128,0,0,0.05) 0%, rgba(212,175,55,0.15) 100%);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 15px auto 20px;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.5;
}

/* 8. Ethical Pledge & CTA Banner */
.cta-banner-section {
    padding: 40px 0 60px;
}

.cta-banner {
    background: linear-gradient(135deg, #3D0000 0%, #1A0000 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 14px;
    padding: 35px 30px;
    color: #FFFFFF;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    max-width: 850px;
    margin: 0 auto;
}

.cta-banner::before {
    display: none;
}

.cta-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cta-banner h2 {
    color: #FFFFFF;
    font-size: clamp(1.4rem, 4vw, 2.1rem);
    line-height: 1.25;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.cta-banner p {
    max-width: 620px;
    margin: 0 auto 22px;
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-gold {
    background: var(--secondary-color);
    color: #222222;
    font-weight: 700;
}

.btn-gold:hover {
    background: #E5C158;
    color: #000000;
    transform: translateY(-2px);
}

.btn-primary-light {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: #FFFFFF;
}

.btn-primary-light:hover {
    background: var(--secondary-color);
    color: #222222;
    transform: translateY(-2px);
}

/* Responsive Adjustments for Expanded About Page */
@media (max-width: 992px) {
    .page-hero h1 {
        font-size: 2.4rem;
    }
    .cta-banner h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .exp-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 15px;
        width: 100%;
    }
    
    /* Timeline Single Column for Mobile */
    .timeline::after {
        left: 20px;
        width: 2px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 46px;
        padding-right: 5px;
        box-sizing: border-box;
        margin-bottom: 20px;
    }
    
    .timeline-item.left,
    .timeline-item.right {
        left: 0%;
    }
    
    .timeline-dot {
        width: 32px;
        height: 32px;
        left: 4px !important;
        top: 15px;
        font-size: 0.82rem;
        border-width: 2px;
    }

    .timeline-content {
        padding: 16px 18px;
        border-radius: 8px;
    }

    .timeline-date {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }

    .timeline-content h3 {
        font-size: 0.92rem !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
        letter-spacing: 0.2px;
    }

    .timeline-content p {
        font-size: 0.82rem;
        line-height: 1.5;
    }
    
    .stats-bar, .stats-section {
        padding: 30px 0 !important;
    }

    .stats-wrapper, .stats-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px 10px !important;
    }

    .stat-box, .stat-item {
        padding: 8px 4px !important;
    }

    .stat-icon, .stat-item i {
        font-size: 1.6rem !important;
        margin-bottom: 6px !important;
    }

    .stat-number, .stat-item h3 {
        font-size: 1.6rem !important;
        margin-bottom: 4px !important;
        line-height: 1.1 !important;
    }

    .stat-label, .stat-item p {
        font-size: 0.72rem !important;
        letter-spacing: 0.5px !important;
        line-height: 1.35 !important;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 50px 0 40px;
    }
    .page-hero h1 {
        font-size: 1.8rem;
    }
    .cta-section, .cta-banner-section {
        padding: 30px 0 !important;
    }

    .cta-banner {
        padding: 22px 16px !important;
        border-radius: 12px !important;
    }

    .cta-banner h2, .cta-section h2 {
        font-size: 1.25rem !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
    }

    .cta-banner p, .cta-section p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin-bottom: 16px !important;
    }

    .cta-buttons {
        display: flex !important;
        flex-direction: row !important;
        gap: 10px !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 340px !important;
        margin: 0 auto !important;
    }

    .cta-buttons .btn {
        flex: 1 !important;
        width: 50% !important;
        padding: 10px 8px !important;
        font-size: 0.82rem !important;
        white-space: nowrap !important;
        justify-content: center !important;
        border-radius: 8px !important;
    }
    .stats-bar, .stats-section {
        padding: 22px 0 !important;
    }
    .stats-wrapper, .stats-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px 6px !important;
    }
    .stat-box, .stat-item {
        padding: 5px 2px !important;
    }
    .stat-icon, .stat-item i {
        font-size: 1.4rem !important;
        margin-bottom: 4px !important;
    }
    .stat-number, .stat-item h3 {
        font-size: 1.4rem !important;
        margin-bottom: 2px !important;
    }
    .stat-label, .stat-item p {
        font-size: 0.68rem !important;
        letter-spacing: 0.3px !important;
    }
    .about-actions {
        flex-direction: column;
        width: 100%;
    }
    .about-actions .btn {
        width: 100%;
    }

    .cta-banner h2, .cta-section h2 {
        font-size: 1.12rem !important;
    }

    .cta-banner p, .cta-section p {
        font-size: 0.78rem !important;
        line-height: 1.45 !important;
    }

    .cta-buttons {
        gap: 8px !important;
    }

    .cta-buttons .btn {
        padding: 9px 6px !important;
        font-size: 0.76rem !important;
    }
}

/* =========================================
   LIVE YOUR DREAMS GUIDANCE SECTION STYLES
   ========================================= */
.guide-dreams-section {
    background-color: #FFFFFF;
    padding: 55px 0;
    text-align: center;
}

.dreams-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #4A4A4A;
    font-weight: 500;
    line-height: 1.25;
    margin: 0 auto 10px auto;
    letter-spacing: -0.5px;
    text-align: center;
}

.ornamental-flourish {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 14px auto 18px;
    max-width: 400px;
}

.flourish-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, #E58C36, transparent);
    position: relative;
}

.flourish-line::after {
    content: '';
    position: absolute;
    top: -4px;
    right: 0;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #E58C36;
}

.flourish-line:first-child::after {
    left: 0;
    right: auto;
    border-left: none;
    border-right: 8px solid #E58C36;
}

.flourish-icon {
    font-size: 1.6rem;
    color: #E58C36;
}

.dreams-subtitle {
    max-width: 800px;
    margin: 0 auto 35px auto;
    font-size: 1.02rem;
    color: #666666;
    line-height: 1.6;
    text-align: center;
}

.dreams-subtitle strong {
    color: #333333;
    font-weight: 700;
}

.guidance-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.guide-card {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    display: block;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.35s ease;
}

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

.guide-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px 12px;
    transition: background 0.3s ease;
}

.guide-card-overlay h3 {
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 100%;
}

.guide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.guide-card:hover img {
    transform: scale(1.08);
}

.guide-card:hover .guide-card-overlay {
    background: linear-gradient(to top, rgba(128, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.1) 100%);
}

/* Responsive Grid for Guidance Section */
@media (max-width: 1200px) {
    .guidance-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .guidance-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .dreams-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 768px) {
    .guidance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .dreams-title {
        font-size: 1.8rem;
    }
    .guide-card-overlay h3 {
        font-size: 0.92rem;
    }
}

@media (max-width: 480px) {
    .guidance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .guide-card {
        border-radius: 12px;
    }
    .guide-card-overlay {
        padding: 10px 8px;
    }
    .guide-card-overlay h3 {
        font-size: 0.85rem;
    }
}

/* =========================================
   MEET KAMESH PANDIT PROFILE SECTION STYLES
   ========================================= */
.meet-astrologer-section {
    padding: 55px 0;
    position: relative;
    background-color: var(--bg-light);
}

.meet-container {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 40px;
    align-items: center;
}

.meet-image-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.meet-image-frame {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border: 3px solid var(--secondary-color);
    width: 100%;
    max-width: 420px;
}

.meet-astrologer-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.meet-image-frame:hover .meet-astrologer-img {
    transform: scale(1.03);
}

.meet-exp-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.95) 0%, rgba(60, 0, 0, 0.95) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    padding: 12px 16px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.meet-exp-num {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.meet-exp-text {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.3;
}

.meet-content-col .section-title {
    margin-bottom: 15px;
}

.meet-content-col h2 {
    font-size: 2.1rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    line-height: 1.25;
}

.meet-description {
    font-size: 1.02rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 14px;
}

.meet-description strong {
    color: var(--primary-color);
    font-weight: 700;
}

.meet-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 18px;
    margin: 25px 0 35px;
}

.meet-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-main);
    background: #FFFFFF;
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.meet-pill:hover {
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.meet-pill i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.meet-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}

/* Responsive Meet Section */
@media (max-width: 992px) {
    .meet-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .meet-content-col h2 {
        font-size: 2rem;
    }
    .meet-image-frame {
        max-width: 420px;
    }
}

@media (max-width: 576px) {
    .meet-highlights-grid {
        grid-template-columns: 1fr;
    }
    .meet-exp-tag {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        padding: 12px 15px;
    }
    .meet-exp-num {
        font-size: 2rem;
    }
    .meet-actions {
        flex-direction: column;
    }
    .meet-actions .btn {
        width: 100%;
    }
}

/* =========================================
   BLOG PAGE STYLES
   ========================================= */

/* Featured Blog Post Card */
.featured-blog-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    background: #FFFFFF;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    align-items: center;
}

.featured-blog-img {
    position: relative;
    height: 100%;
    min-height: 340px;
}

.featured-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.featured-blog-content {
    padding: 35px 35px 35px 0;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.blog-meta .meta-item i, .blog-meta span i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.featured-blog-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    line-height: 1.35;
    margin-bottom: 14px;
}

.featured-blog-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.author-avatar, .sidebar-author-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    object-fit: cover;
}

.sidebar-author-img {
    width: 90px;
    height: 90px;
    margin: 0 auto 15px;
}

.author-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-main);
}

.author-info span {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* Category Filter Bar */
.blog-filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.filter-pill {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 9px 20px;
    border-radius: 25px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-pill:hover, .filter-pill.active {
    background: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

/* Blog Grid & Sidebar Layout */
.blog-layout-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blog-card {
    background: #FFFFFF;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.blog-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(128, 0, 0, 0.9);
    color: var(--secondary-color);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-body {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-body h3 {
    font-size: 1.18rem;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.blog-card-body p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

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

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

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 45px;
}

.page-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition);
}

.page-link:hover, .page-link.active {
    background: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
}

.page-link.disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* Blog Sidebar Widgets */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.widget {
    background: #FFFFFF;
    padding: 28px 24px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.widget-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.search-form {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.search-form input {
    width: 100%;
    padding: 12px 14px;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.92rem;
}

.search-form button {
    background: var(--primary-color);
    color: #FFFFFF;
    border: none;
    padding: 0 16px;
    cursor: pointer;
    transition: var(--transition);
}

.search-form button:hover {
    background: var(--accent-color);
}

.author-widget .author-tag {
    display: block;
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.author-widget p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.55;
}

.popular-post-item {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.popular-post-item:last-child {
    margin-bottom: 0;
}

.popular-post-item img {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.popular-post-item h5 {
    font-size: 0.9rem;
    line-height: 1.35;
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.popular-post-item h5 a {
    color: var(--text-main);
}

.popular-post-item h5 a:hover {
    color: var(--primary-color);
}

.post-date {
    font-size: 0.78rem;
    color: var(--text-light);
}

.newsletter-icon {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.newsletter-widget p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.55;
    margin-bottom: 15px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

/* Responsive Blog Layout */
@media (max-width: 992px) {
    .featured-blog-card {
        grid-template-columns: 1fr;
    }
    .featured-blog-content {
        padding: 30px;
    }
    .blog-layout-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   SERVICES PAGE EXTRA SECTIONS
   ========================================= */
.why-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.why-service-box {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.why-service-box:hover {
    transform: translateY(-6px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(128,0,0,0.08) 0%, rgba(212,175,55,0.2) 100%);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.why-service-box h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.why-service-box p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.services-booking-wrapper {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
}

.services-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.services-form-grid .form-group.full-width {
    grid-column: 1 / -1;
}

.services-form-grid input,
.services-form-grid select,
.services-form-grid textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    outline: none;
    transition: var(--transition);
    box-sizing: border-box;
}

.services-form-grid input:focus,
.services-form-grid select:focus,
.services-form-grid textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

@media (max-width: 992px) {
    .why-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-services-grid {
        grid-template-columns: 1fr;
    }
    .services-form-grid {
        grid-template-columns: 1fr;
    }
    .services-booking-wrapper {
        padding: 25px 18px;
    }
}





