/* CSS Design System for Cosmic Energy Power */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-teal: #2F9C95;
    --primary-pink: #E86A9E;
    --bg-soft-pink: #FFF2F7;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;

    /* Chakra Gradient Colors */
    --chakra-1: #E85C5C;
    --chakra-2: #F29C52;
    --chakra-3: #F4C15D;
    --chakra-4: #5FBF8F;
    --chakra-5: #4BA3C7;
    --chakra-6: #5C6BC0;
    --chakra-7: #8E5FAF;

    --chakra-gradient: linear-gradient(90deg,
            var(--chakra-1),
            var(--chakra-2),
            var(--chakra-3),
            var(--chakra-4),
            var(--chakra-5),
            var(--chakra-6),
            var(--chakra-7));

    --transition: all 0.3s ease;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.08);
    --border-radius-lg: 30px;
    --border-radius-md: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-serif {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 50px 0;
}

@media (min-width: 768px) {
    section {
        padding: 80px 0;
    }
}

/* Typography Helpers */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius-lg);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-teal);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #25807a;
    box-shadow: 0 5px 15px rgba(47, 156, 149, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--primary-pink);
    color: var(--primary-pink);
}

.btn-secondary:hover {
    background-color: var(--primary-pink);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(232, 106, 158, 0.3);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-teal);
}

.btn-white:hover {
    background-color: #f8f8f8;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-pink {
    background-color: var(--primary-pink);
    color: var(--white);
}

.btn-pink:hover {
    background-color: #d15689;
    box-shadow: 0 5px 15px rgba(232, 106, 158, 0.3);
    transform: translateY(-2px);
}

/* 1. Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a:hover {
    color: var(--primary-teal);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-teal);
    transition: var(--transition);
}

@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        display: none;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        text-align: center;
    }
}

/* 2. Hero Section */
/* .hero {
    background: radial-gradient(circle at top right, #fff5f8 0%, var(--white) 60%);
    overflow: hidden;
} */

/* HERO CURVE BOTTOM */

.hero {
    position: relative;
    padding-bottom: 120px;
    /* give space for curve */
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='grad1' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%235FBF8F;stop-opacity:0.4' /%3E%3Cstop offset='50%25' style='stop-color:%23F4C15D;stop-opacity:0.4' /%3E%3Cstop offset='100%25' style='stop-color:%23E86A9E;stop-opacity:0.4' /%3E%3C/linearGradient%3E%3ClinearGradient id='grad2' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23E86A9E;stop-opacity:0.3' /%3E%3Cstop offset='50%25' style='stop-color:%23F29C52;stop-opacity:0.3' /%3E%3Cstop offset='100%25' style='stop-color:%235FBF8F;stop-opacity:0.3' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23grad1)' d='M0,160L80,176C160,192,320,224,480,213.3C640,203,800,149,960,144C1120,139,1280,181,1360,202.7L1440,224L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z'%3E%3C/path%3E%3Cpath fill='url(%23grad2)' d='M0,192L60,208C120,224,240,256,360,250.7C480,245,600,203,720,181.3C840,160,960,160,1080,181.3C1200,203,1320,245,1380,266.7L1440,288L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'%3E%3C/path%3E%3Cpath fill='%23FFF2F7' d='M0,224L80,213.3C160,203,320,181,480,181.3C640,181,800,203,960,202.7C1120,203,1280,181,1360,170.7L1440,160L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 40px;
}

@media (min-width: 992px) {
    .hero {
        padding: 100px 0;
    }

    .hero .container {
        grid-template-columns: 1fr 1fr;
    }
}


.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: var(--primary-teal);
}

.hero-content h1 span {
    font-style: italic;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}


.testimonial-hero .hero-content p {
    text-align: center;
}


.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(232, 106, 158, 0.1) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
}

.hero-image img {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* 3. About Section */
.about {
    text-align: center;
    position: relative;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about h2 span {
    font-style: italic;
    color: var(--primary-teal);
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
}

.wave-divider {
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23FFF2F7" fill-opacity="1" d="M0,192L48,197.3C96,203,192,213,288,197.3C384,181,480,139,576,133.3C672,128,768,160,864,176C960,192,1056,192,1152,176C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
}

/* 4. Services Section */
/* .services {
    background-color: var(--bg-soft-pink);
} */

/* 4. SERVICES SECTION */
.services {
    background-color: var(--bg-soft-pink);
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
}

.services::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FFF2F7' d='M0,128L80,144C160,160,320,192,480,192C640,192,800,160,960,144C1120,128,1280,128,1360,128L1440,128L1440,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
}

.services::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23E85C5C' fill-opacity='1' d='M0,192L80,176C160,160,320,128,480,128C640,128,800,160,960,176C1120,192,1280,192,1360,192L1440,192L1440,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    background: radial-gradient(circle, rgba(47, 156, 149, 0.1) 0%, transparent 70%);
}

.service-icon img {
    width: 50px;
    height: 50px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* 5. Chakra CTA Strip */
/* .chakra-strip {
    background: var(--chakra-gradient);
    padding: 60px 0;
    color: var(--white);
    text-align: center;
} */


/* 5. CHAKRA CTA STRIP */
.chakra-strip {
    position: relative;
    background: radial-gradient(circle at bottom right, rgba(232, 106, 158, 0.2), transparent),
        radial-gradient(circle at top left, rgba(47, 156, 149, 0.2), transparent),
        linear-gradient(135deg, #7ad8d1 0%, #f7c9e1 100%);
    padding: 180px 0;
    overflow: hidden;
}

.chakra-strip::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FFF2F7' d='M0,128L80,144C160,160,320,192,480,192C640,192,800,160,960,144C1120,128,1280,128,1360,128L1440,128L1440,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
}

.chakra-strip::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FFFFFF' d='M0,192L80,176C160,160,320,128,480,128C640,128,800,160,960,176C1120,192,1280,192,1360,192L1440,192L1440,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
}

.chakra-content {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 40px;
    text-align: left;
}

@media (min-width: 768px) {
    .chakra-content {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.chakra-text h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--primary-teal);
    margin-bottom: 30px;
    line-height: 1.2;
}

.chakra-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.chakra-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* 6. Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.hero::after,
.services::before,
.services::after,
.chakra-strip::before,
.chakra-strip::after {
    pointer-events: none;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: #fdf6f9;
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-light);
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user h4 {
    font-weight: 600;
}

/* 7. CTA Section */
.final-cta {
    background-color: var(--bg-soft-pink);
    text-align: center;
    padding: 100px 0;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.final-cta h2 span {
    color: var(--primary-pink);
}

.final-cta p {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* 8. Footer */
footer {
    background-color: var(--primary-teal);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-pink);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--bg-soft-pink);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--white);
    color: var(--primary-teal);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* About Page Specific Styles */
.about-hero {
    background: radial-gradient(circle at top right, #fff5f8 0%, var(--white) 60%);
}

.about-hero-list {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
}

.about-hero-list li {
    font-size: 1.1rem;
    color: var(--primary-teal);
    font-weight: 500;
    list-style: none;
}

.about-hero-list i {
    margin-right: 10px;
    color: var(--primary-pink);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.spiritual-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.spiritual-highlights blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--primary-pink);
    border-left: none;
    padding: 0;
    margin: 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    border: 1px solid rgba(232, 106, 158, 0.1);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-pink);
}

.mission-card .card-icon {
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.mission-card h3 {
    margin-bottom: 15px;
    color: var(--primary-teal);
}

.trust-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    padding-left: 0;
}

.trust-list li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: #fdf6f9;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    list-style: none;
}

.trust-list li:hover {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transform: translateX(10px);
}

.trust-list i {
    color: var(--primary-teal);
    font-size: 1.2rem;
}

.commitment-content {
    max-width: 800px;
    margin: 0 auto;
}

.commitment-list-container {
    margin: 40px 0;
    padding: 40px;
    background: radial-gradient(circle at center, #fff2f7 0%, var(--white) 100%);
    border-radius: var(--border-radius-md);
    border: 1px dashed var(--primary-pink);
}

.commitment-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: left;
}

@media (min-width: 768px) {
    .commitment-list {
        grid-template-columns: 1fr 1fr;
    }
}

.commitment-list li {
    position: relative;
    padding-left: 25px;
    font-size: 1.05rem;
}

.commitment-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-pink);
    font-size: 1.5rem;
    line-height: 1;
}

.spiritual-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-weight: 600;
    color: var(--primary-teal);
}

.booking-cta {
    background: radial-gradient(circle at top left, rgba(232, 106, 158, 0.1), transparent),
        radial-gradient(circle at bottom right, rgba(47, 156, 149, 0.1), transparent),
        linear-gradient(135deg, #fdf6f9 0%, #fff2f7 100%);
    padding: 100px 0;
}

.booking-cta .chakra-text p {
    margin: 20px 0 30px;
    font-size: 1.1rem;
}

.seo-hidden {
    padding: 30px 0;
    background: #f9f9f9;
    font-size: 0.8rem;
    color: #999;
}

.seo-hidden h2 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.keywords {
    margin-top: 10px;
    opacity: 0.6;
}

.final-quote {
    padding: 100px 0;
    background: var(--white);
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--primary-teal);
    line-height: 1.4;
    margin-bottom: 40px;
}

.brand-footer-text h3 {
    font-size: 2rem;
    color: var(--primary-pink);
    margin-top: 10px;
}

.mt-3 {
    margin-top: 30px;
}

.active {
    color: var(--primary-teal) !important;
    font-weight: 600;
}

@media (max-width: 767px) {
    .spiritual-highlights blockquote {
        font-size: 1.2rem;
    }

    .quote-text {
        font-size: 1.4rem;
    }
}

.about-healer {
    background-color: var(--bg-soft-pink);
}

.mission-vision {
    background-color: var(--bg-soft-pink);
}

.why-choose {
    background: radial-gradient(circle at bottom right, rgba(232, 106, 158, 0.2), transparent),
        radial-gradient(circle at top left, rgba(47, 156, 149, 0.2), transparent),
        linear-gradient(135deg, #7ad8d1 0%, #f7c9e1 100%);
}

/* Contact Page Specific Styles */
.contact-hero {
    background: radial-gradient(circle at top right, #fff2f7 0%, var(--white) 60%),
        url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M20 0l2 10 10 2-10 2-2 10-2-10-10-2 10-2z" fill="%232F9C95" fill-opacity="0.05" fill-rule="evenodd"/></svg>');
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.glow-card-1 {
    border: 1px solid rgba(232, 92, 92, 0.2);
}

.glow-card-1 .contact-icon {
    color: var(--chakra-1);
    text-shadow: 0 0 15px rgba(232, 92, 92, 0.3);
}

.glow-card-2 {
    border: 1px solid rgba(47, 156, 149, 0.2);
}

.glow-card-2 .contact-icon {
    color: var(--primary-teal);
    text-shadow: 0 0 15px rgba(47, 156, 149, 0.3);
}

.glow-card-3 {
    border: 1px solid rgba(142, 95, 175, 0.2);
}

.glow-card-3 .contact-icon {
    color: var(--chakra-7);
    text-shadow: 0 0 15px rgba(142, 95, 175, 0.3);
}

.contact-detail {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
}

.contact-form-section {
    background: radial-gradient(circle at bottom left, #fff2f7 0%, var(--white) 100%);
    padding: 100px 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 30px 20px;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #fdfdfd;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(47, 156, 149, 0.1);
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.social-glow-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.social-glow-icons a {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 1;
}

.social-glow-icons a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.4;
    filter: blur(10px);
}

.glow-fb:hover {
    color: #1877F2;
}

.glow-fb:hover::after {
    background: #1877F2;
}

.glow-ig:hover {
    color: #E4405F;
}

.glow-ig:hover::after {
    background: #E4405F;
}

.glow-tw:hover {
    color: #000000;
}

.glow-tw:hover::after {
    background: #333;
}

.booking-cta-xl {
    padding: 120px 0;
    background: radial-gradient(circle at center, rgba(142, 95, 175, 0.15), transparent),
        linear-gradient(135deg, #fdf6f9 0%, #ebe4f5 100%);
}

.distance-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    padding: 30px;
    background: #fdfdfd;
    border-radius: var(--border-radius-md);
    border: 1px solid #f1f1f1;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-pink);
    background: var(--white);
}

.faq-item h3 {
    margin-bottom: 15px;
    color: var(--primary-teal);
    font-size: 1.25rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.spiritual-quote {
    color: var(--primary-pink);
    font-weight: 500;
    font-style: italic;
}

.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--primary-teal);
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-light);
}

.service-detail-section {
    padding: 80px 0;
}

.service-detail-section:nth-child(even) {
    background-color: var(--bg-soft-pink);
}

.service-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-teal);
}

.service-detail-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    margin-top: 40px;
    color: var(--text-dark);
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-detail-content ul {
    margin-bottom: 30px;
    padding-left: 0;
}

.service-detail-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.service-detail-content ul li::before {
    content: '\f111';
    /* FontAwesome solid circle */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 8px;
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--primary-pink);
}

.spiritual-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-pink);
}

@media(min-width: 768px) {
    .spiritual-meta {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
    }
}

.spiritual-meta span {
    font-weight: 600;
    color: var(--primary-teal);
    font-size: 1.1rem;
}


.testimonial-hero{
    position:relative;
    overflow:hidden;
    background:#f8f6f7;
    padding:120px 0;
}

/* particle container */

.number-particles{
    position:absolute;
    inset:0;
    pointer-events:none;
    overflow:hidden;
}

/* floating numbers */

.number-particles span{
    position:absolute;
    font-size:32px;
    font-weight:500;
    color:#8fd0d6;
    opacity:0.15;
    animation: floatNumber linear infinite;
}

/* random positions */

.number-particles span:nth-child(1){ left:10%; animation-duration:22s; }
.number-particles span:nth-child(2){ left:25%; animation-duration:18s; }
.number-particles span:nth-child(3){ left:40%; animation-duration:25s; }
.number-particles span:nth-child(4){ left:55%; animation-duration:20s; }
.number-particles span:nth-child(5){ left:70%; animation-duration:28s; }
.number-particles span:nth-child(6){ left:80%; animation-duration:24s; }
.number-particles span:nth-child(7){ left:15%; animation-duration:26s; }
.number-particles span:nth-child(8){ left:35%; animation-duration:21s; }
.number-particles span:nth-child(9){ left:60%; animation-duration:19s; }
.number-particles span:nth-child(10){ left:85%; animation-duration:23s; }

/* floating animation */

@keyframes floatNumber{
    from{
        transform:translateY(120vh) scale(0.8);
    }
    to{
        transform:translateY(-20vh) scale(1.2);
    }
}
.google-rating-badge
{
display: inline-flex;gap: 10px;background: white;padding: 15px 20px;border-radius: 50px;box-shadow: var(--shadow-soft);text-align: center;width: 35%;margin: 1% 35%;}


.testimonial-hero h1.hero-title{
    width: 55%;
    text-align: center;
    margin: 0 auto;
    line-height: 80px;
    margin-bottom: 50px;
}



.about-me{
    padding:80px 0;
    background:linear-gradient(135deg,#f9f6f7,#eef7f6);
}

.about-me-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-me-text h2{
    font-size:42px;
    margin-bottom:15px;
}

.about-me-text span{
    color:#2F9C95;
}

.quote{
    font-style:italic;
    font-size:18px;
    color:#555;
    margin-bottom:10px;
}

.tagline{
    color:#E86A9E;
    font-weight:500;
    margin-bottom:20px;
}

.about-me-highlights p{
    margin:5px 0;
    font-weight:500;
}

.about-me-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* mobile */
@media(max-width:768px){
    .about-me-content{
        grid-template-columns:1fr;
    }
}

.about-below{
    display: block;
    margin: 40px auto;
    width: 70%;
}


.about-below p{
    display: grid;
    margin: 20px auto;
    width: 100%;
}

