/* ======= CSS VARIABLES ======= */
:root {
    /* Colors */
    --clr-saffron: #f36c21;
    --clr-saffron-hover: #d55815;
    --clr-gold: #d4af37;
    --clr-deep-red: #8b0000;
    --clr-black: #1a1a1a;
    --clr-off-white: #faf9f6;
    --clr-white: #ffffff;
    --clr-whatsapp: #25d366;
    --clr-whatsapp-hover: #1ebc58;
    --clr-text: #4a4a4a;
    --clr-surface: #fff8eb;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Effects */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 40px rgba(243, 108, 33, 0.08);
    --shadow-sticky: 0 -5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

/* ======= RESET & BASE ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text);
    background-color: var(--clr-off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    color: var(--clr-black);
}

a {
    text-decoration: none;
    color: inherit;
}

/* ======= HEADER ======= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background-color: var(--clr-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-saffron);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: var(--clr-gold);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    color: var(--clr-text);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--clr-saffron);
    transition: var(--transition);
}

nav a:hover, nav a:hover::after {
    color: var(--clr-saffron);
    width: 100%;
}

/* ======= HERO SECTION ======= */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('mandala_bg.png') center/cover no-repeat;
    background-attachment: fixed;
    padding: 4rem 5%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(250, 249, 246, 0.85),
        rgba(250, 249, 246, 0.95)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease forwards;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--clr-saffron);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.badge i {
    color: var(--clr-gold);
    margin-right: 0.3rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    color: var(--clr-black);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero .subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--clr-text);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--clr-saffron-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(243, 108, 33, 0.3);
}

.btn-whatsapp {
    background-color: var(--clr-whatsapp);
    color: var(--clr-white);
}

.btn-whatsapp:hover {
    background-color: var(--clr-whatsapp-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.3);
}

/* TRUST INDICATORS */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-saffron);
}

.trust-item i {
    font-size: 1.8rem;
    color: var(--clr-gold);
}

.trust-item span {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--clr-black);
}

/* ======= SERVICES SECTION ======= */
.services {
    padding: 6rem 5%;
    background-color: var(--clr-white);
    position: relative;
}

.section-heading {
    text-align: center;
    margin-bottom: 4rem;
}

.section-heading h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--clr-saffron);
    margin: 0 auto 1.5rem;
    border-radius: 5px;
}

.divider.left {
    margin-left: 0;
}

.section-heading p {
    font-size: 1.1rem;
    color: var(--clr-text);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--clr-surface);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(243, 108, 33, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--clr-saffron), var(--clr-gold));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-soft);
    font-size: 1.8rem;
    color: var(--clr-saffron);
}

.service-card:hover .icon-wrapper {
    background-color: var(--clr-saffron);
    color: var(--clr-white);
    transform: scale(1.1) rotate(5deg);
    transition: var(--transition);
}

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

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

/* ======= ABOUT SECTION ======= */
.about {
    padding: 6rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-list {
    list-style: none;
    margin-top: 2rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.about-list i {
    color: var(--clr-saffron);
    font-size: 1.2rem;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-frame {
    width: 350px;
    height: 450px;
    background: linear-gradient(135deg, var(--clr-saffron), var(--clr-gold));
    border-radius: var(--radius-lg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 20px 0 rgba(243, 108, 33, 0.15);
}

.image-frame i {
    font-size: 8rem;
    color: var(--clr-white);
    opacity: 0.9;
}

/* ======= FOOTER ======= */
footer {
    background-color: var(--clr-black);
    color: var(--clr-white);
    padding: 5rem 5% 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    color: var(--clr-white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--clr-saffron);
}

.footer-col p {
    color: #b3b3b3;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.8rem;
}

.footer-col p i {
    color: var(--clr-saffron);
    margin-top: 5px;
}

.footer-col a {
    color: #b3b3b3;
    display: block;
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--clr-saffron);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    padding: 0;
}

.social-icons a:hover {
    background-color: var(--clr-saffron);
    color: var(--clr-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: #b3b3b3;
    font-size: 0.9rem;
}

/* ======= STICKY MOBILE FOOTER ======= */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--clr-white);
    display: none;
    padding: 0.8rem;
    box-shadow: var(--shadow-sticky);
    z-index: 9999;
}

.btn-sticky {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    color: var(--clr-white);
}

.btn-sticky.call {
    background-color: var(--clr-saffron);
}

.btn-sticky.whatsapp {
    background-color: var(--clr-whatsapp);
}
/* ======= MUSIC BUTTON ======= */
.music-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    background-color: var(--clr-white);
    color: var(--clr-saffron);
    border: 1px solid rgba(243, 108, 33, 0.2);
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.music-btn:hover {
    background-color: var(--clr-surface);
    color: var(--clr-saffron-hover);
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(243, 108, 33, 0.15);
}

.music-btn.playing {
    animation: rotateSlow 4s linear infinite;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ======= RESPONSIVENESS (MEDIA QUERIES) ======= */
@media (max-width: 900px) {
    .about {
        flex-direction: column;
        text-align: center;
    }
    
    .divider.left {
        margin: 0 auto 1.5rem;
    }
    
    .about-list li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    header {
        justify-content: center;
    }
    
    header nav {
        display: none; /* Can be replaced with hamburger menu later */
    }
    
    .hero {
        padding: 6rem 5% 4rem;
        min-height: 70vh;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-indicators {
        gap: 1.5rem;
    }
    
    /* Show sticky footer on mobile */
    .sticky-footer {
        display: flex;
        gap: 0.5rem;
    }
    
    /* Add padding to body so content isn't hidden by sticky footer */
    body {
        padding-bottom: 70px;
    }
    
    /* Adjust music button position to not overlap sticky footer */
    .music-btn {
        bottom: 110px;
        right: 20px;
        left: auto;
    }
    
    .image-frame {
        width: 100%;
        max-width: 350px;
        height: 350px;
    }
}

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

/* ======= WELCOME OVERLAY ======= */
#welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--clr-saffron), #ff9800);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    transition: opacity 1.8s ease-in-out, visibility 1.8s;
    padding: 1rem;
}

#welcome-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.welcome-content {
    text-align: center;
    animation: scaleUp 2.5s ease forwards;
}

.welcome-icon {
    font-size: clamp(4rem, 12vw, 6rem);
    margin-bottom: 1rem;
    color: var(--clr-white);
    animation: pulse 2.5s infinite;
}

.welcome-content h1 {
    font-size: clamp(2.4rem, 10vw, 6rem);
    color: var(--clr-white);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.welcome-content p {
    font-size: clamp(1rem, 4vw, 1.4rem);
    opacity: 0.95;
    font-family: var(--font-heading);
    font-style: italic;
    letter-spacing: 1px;
}

@keyframes scaleUp {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

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



/* ======= SPIRITUAL & RESPONSIVE TWEAKS ======= */
body {
    background-image: radial-gradient(circle at top center, rgba(212, 175, 55, 0.05) 0%, transparent 80%);
}

.service-card {
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg) 0px var(--radius-lg) 0px; /* Traditional curve pattern */
}

.icon-wrapper {
    background: linear-gradient(135deg, #fff, var(--clr-surface));
    border: 2px solid rgba(212, 175, 55, 0.3);
}

@media (max-width: 400px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .btn {
        width: 100%;
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
}
