/* ============================================
   Sacred Vedic Rituals — Stylesheet
   Color Palette:
   - Deep Saffron:    #c4813d / #d4944d
   - Sacred Red:      #8b2323 / #a52a2a
   - Temple Gold:     #c49a3d / #f5a623
   - Deep Maroon:     #3a0a0a / #5c1a1a
   - Warm Cream:      #faf3e8 / #f5efe4
   - Dark Sacred:     #1a0a05 / #2a1008
   ============================================ */

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --saffron: #c4813d;
    --saffron-light: #d4944d;
    --saffron-glow: #f5a623;
    --sacred-red: #8b2323;
    --sacred-red-light: #a52a2a;
    --maroon-deep: #3a0a0a;
    --maroon: #5c1a1a;
    --gold: #c49a3d;
    --gold-light: #e8c36a;
    --cream: #faf3e8;
    --cream-dark: #f0e6d4;
    --dark: #1a0a05;
    --dark-light: #2a1008;
    --text: #3a2a1a;
    --text-light: #6a5a4a;
    --white: #fffdf8;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'EB Garamond', 'Georgia', serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: var(--saffron);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--saffron-glow);
}

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

/* === Typography === */
h1, h2, h3, h4 {
    font-family: 'Cinzel', 'Georgia', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--maroon-deep);
}

.section {
    padding: 6rem 0;
    position: relative;
}

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

.section-sanskrit {
    font-family: 'Noto Sans Devanagari', serif;
    font-size: 1rem;
    color: var(--saffron);
    letter-spacing: 0.3em;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--maroon-deep);
}

.title-ornament {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--saffron), transparent);
    margin: 1rem auto;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

/* === Sacred Particles === */
.sacred-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--saffron-glow);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 8s infinite ease-in-out;
    box-shadow: 0 0 6px var(--saffron-glow), 0 0 12px rgba(245, 166, 35, 0.3);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 10s; }
.particle:nth-child(2) { left: 25%; animation-delay: 1.5s; animation-duration: 8s; }
.particle:nth-child(3) { left: 40%; animation-delay: 3s; animation-duration: 12s; }
.particle:nth-child(4) { left: 55%; animation-delay: 0.5s; animation-duration: 9s; }
.particle:nth-child(5) { left: 70%; animation-delay: 2s; animation-duration: 11s; }
.particle:nth-child(6) { left: 85%; animation-delay: 4s; animation-duration: 7s; }
.particle:nth-child(7) { left: 15%; animation-delay: 5s; animation-duration: 10s; }
.particle:nth-child(8) { left: 60%; animation-delay: 3.5s; animation-duration: 9s; }

@keyframes floatParticle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    20% { opacity: 0.6; }
    50% { opacity: 0.8; }
    80% { opacity: 0.4; }
    100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

/* === Navigation === */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
    background: transparent;
}

.main-nav.scrolled {
    background: rgba(26, 10, 5, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    text-decoration: none;
}

.om-symbol {
    font-family: 'Noto Sans Devanagari', serif;
    font-size: 2rem;
    color: var(--saffron-glow);
    text-shadow: 0 0 20px rgba(245, 166, 35, 0.4);
    transition: text-shadow 0.3s ease;
}

.om-symbol:hover {
    text-shadow: 0 0 30px rgba(245, 166, 35, 0.7);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--cream);
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--saffron-glow);
}

.nav-cta {
    background: linear-gradient(135deg, var(--saffron), var(--sacred-red));
    padding: 0.6rem 1.5rem !important;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 129, 61, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s ease;
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(160deg, var(--maroon-deep) 0%, var(--dark) 40%, #1a0505 70%, var(--maroon) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(196, 129, 61, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(139, 35, 35, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(245, 166, 35, 0.1) 0%, transparent 40%);
}

.mandala-bg {
    position: absolute;
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.06;
    background:
        repeating-conic-gradient(from 0deg, transparent 0deg 10deg, rgba(196, 154, 61, 0.3) 10deg 11deg),
        repeating-conic-gradient(from 5deg, transparent 0deg 15deg, rgba(196, 154, 61, 0.2) 15deg 16deg);
    border-radius: 50%;
    animation: rotateMandala 120s linear infinite;
}

@keyframes rotateMandala {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 900px;
}

.hero-sanskrit {
    margin-bottom: 2rem;
}

.sanskrit-text {
    font-family: 'Noto Sans Devanagari', serif;
    font-size: 1.4rem;
    color: var(--saffron-glow);
    letter-spacing: 0.2em;
    text-shadow: 0 0 30px rgba(245, 166, 35, 0.3);
}

.hero-title {
    font-size: 4rem;
    color: var(--cream);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--saffron-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-divider {
    width: 200px;
    margin: 0 auto 2rem;
    color: var(--saffron);
    opacity: 0.6;
}

.divider-svg {
    width: 100%;
    height: auto;
}

.hero-tagline {
    font-size: 1.2rem;
    color: rgba(250, 243, 232, 0.8);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-style: italic;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--saffron), var(--sacred-red));
    color: var(--cream);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(196, 129, 61, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(196, 129, 61, 0.5);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(196, 129, 61, 0.5);
    border-radius: 4px;
}

.btn-secondary:hover {
    background: rgba(196, 129, 61, 0.15);
    border-color: var(--saffron);
    color: var(--saffron-glow);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.scroll-indicator span {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250, 243, 232, 0.4);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--saffron), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* === About Section === */
.about-section {
    background: var(--cream);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--saffron), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image-frame {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sacred-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    color: var(--saffron);
    animation: rotateMandala 60s linear infinite;
}

.frame-svg {
    width: 100%;
    height: 100%;
}

.about-image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(58, 10, 10, 0.3);
}

.diya-icon {
    width: 80px;
    height: 100px;
}

.diya-svg {
    width: 100%;
    height: 100%;
}

.vedic-quote {
    font-family: 'Noto Sans Devanagari', serif;
    font-size: 1.05rem;
    color: var(--maroon);
    border-left: 3px solid var(--saffron);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    background: rgba(196, 129, 61, 0.06);
    border-radius: 0 8px 8px 0;
    line-height: 2;
}

.quote-translation {
    display: block;
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.vedic-quote cite {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    color: var(--saffron);
    margin-top: 0.5rem;
    font-style: normal;
    letter-spacing: 0.1em;
}

.about-lead {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.about-text-col p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.credential-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, rgba(196, 129, 61, 0.1), rgba(139, 35, 35, 0.08));
    border: 1px solid rgba(196, 129, 61, 0.2);
    border-radius: 6px;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--maroon);
}

/* === Services Section === */
.services-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 50%, var(--cream) 100%);
}

/* Carousel wrapper */
.services-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 -2rem;
    padding: 1rem 0 2rem;
    mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
}

.services-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollCarousel 40s linear infinite;
    padding: 0.5rem 2rem;
}

.services-carousel:hover .services-track {
    animation-play-state: paused;
}

@keyframes scrollCarousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 360px;
    min-width: 360px;
    flex-shrink: 0;
    cursor: pointer;
}

.service-card-link .service-card::after {
    content: 'Learn more →';
    display: block;
    margin-top: 1.2rem;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: var(--saffron);
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card-link:hover .service-card::after {
    opacity: 1;
    transform: translateY(0);
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(196, 129, 61, 0.15);
    transition: all 0.4s ease;
    overflow: hidden;
    width: 100%;
    min-width: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--sacred-red), var(--saffron));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(58, 10, 10, 0.12);
    border-color: rgba(196, 129, 61, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(245, 166, 35, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    color: var(--saffron);
}

.service-svg {
    width: 100%;
    height: 100%;
}

.card-title {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 0.3rem;
    color: var(--maroon-deep);
}

.card-sanskrit {
    font-family: 'Noto Sans Devanagari', serif;
    text-align: center;
    font-size: 0.9rem;
    color: var(--saffron);
    margin-bottom: 1.2rem;
    letter-spacing: 0.1em;
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    text-align: center;
}

.card-benefits {
    list-style: none;
    padding: 0;
}

.card-benefits li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text);
}

.card-benefits li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--saffron);
    font-size: 0.7rem;
    top: 0.15rem;
}

/* === Gallery Section === */
.gallery-section {
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 30%, var(--cream-dark) 100%);
    padding-bottom: 5rem;
    overflow: hidden;
}

.gallery-carousel {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0.5rem 0;
    mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
}

.gallery-carousel--left .gallery-track {
    animation: galleryScrollLeft 50s linear infinite;
}

.gallery-carousel--right .gallery-track {
    animation: galleryScrollRight 55s linear infinite;
}

.gallery-carousel:hover .gallery-track {
    animation-play-state: paused;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    padding: 0.5rem 1.5rem;
}

.gallery-carousel--left {
    margin-bottom: 1.5rem;
}

@keyframes galleryScrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes galleryScrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.gallery-item {
    flex-shrink: 0;
    width: 340px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: default;
    transition: transform 0.3s ease;
}

.gallery-item--wide {
    width: 440px;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-placeholder {
    width: 100%;
    aspect-ratio: 400 / 280;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.gallery-illustration {
    width: 100%;
    height: 100%;
    display: block;
}

.gallery-caption {
    display: block;
    text-align: center;
    padding: 0.8rem 0.5rem 0.3rem;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .gallery-item {
        width: 280px;
    }

    .gallery-item--wide {
        width: 350px;
    }
}

/* More Rituals */
.more-rituals {
    margin-top: 4rem;
    text-align: center;
}

.more-rituals-inner {
    background: linear-gradient(135deg, var(--maroon-deep), var(--dark));
    padding: 3rem;
    border-radius: 12px;
    color: var(--cream);
    box-shadow: 0 10px 40px rgba(58, 10, 10, 0.2);
}

.more-rituals-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: rgba(250, 243, 232, 0.9);
}

.more-rituals-text strong {
    color: var(--saffron-glow);
}

/* === Significance Section === */
.significance-section {
    background: linear-gradient(180deg, var(--maroon-deep) 0%, var(--dark) 100%);
    color: var(--cream);
}

.significance-section .section-title {
    color: var(--cream);
}

.significance-section .title-ornament {
    background: linear-gradient(90deg, transparent, var(--saffron-glow), transparent);
}

.significance-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(250, 243, 232, 0.85);
}

.lead-text strong {
    color: var(--saffron-glow);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.pillar {
    padding: 2rem;
    border: 1px solid rgba(196, 129, 61, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.pillar:hover {
    background: rgba(196, 129, 61, 0.08);
    border-color: rgba(196, 129, 61, 0.3);
}

.pillar-number {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--saffron);
    opacity: 0.4;
    margin-bottom: 1rem;
}

.pillar h3 {
    font-size: 1.2rem;
    color: var(--saffron-glow);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.pillar p {
    font-size: 0.95rem;
    color: rgba(250, 243, 232, 0.7);
    line-height: 1.7;
}

/* === Testimonials === */
.testimonials-section {
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(196, 129, 61, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-quote {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    color: var(--saffron);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.author-name {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: var(--maroon);
    font-weight: 600;
}

.author-detail {
    font-size: 0.8rem;
    color: var(--saffron);
    letter-spacing: 0.05em;
}

/* === Process Section === */
.process-section {
    background: var(--cream-dark);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-number {
    font-family: 'Noto Sans Devanagari', serif;
    font-size: 2.5rem;
    color: var(--saffron);
    margin-bottom: 1rem;
    line-height: 1;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--maroon-deep);
}

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

.step-connector {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--saffron), transparent);
    margin-top: 3.5rem;
    flex-shrink: 0;
}

/* === Contact Section === */
.contact-section {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(196, 129, 61, 0.15);
    box-shadow: 0 5px 20px rgba(58, 10, 10, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    border: 1px solid rgba(196, 129, 61, 0.2);
    border-radius: 6px;
    background: var(--cream);
    color: var(--text);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(196, 129, 61, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

/* Contact Info Card */
.contact-info-col {
    position: sticky;
    top: 100px;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--maroon-deep), var(--dark));
    padding: 2.5rem;
    border-radius: 12px;
    color: var(--cream);
    text-align: center;
    box-shadow: 0 10px 40px rgba(58, 10, 10, 0.2);
}

.info-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.lotus-svg {
    width: 100%;
    height: 100%;
}

.contact-info-card h3 {
    color: var(--saffron-glow);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.info-items {
    text-align: left;
}

.info-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(196, 129, 61, 0.15);
}

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

.info-label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 0.3rem;
}

.info-item a,
.info-item span {
    color: rgba(250, 243, 232, 0.9);
    font-size: 1rem;
}

.info-item a:hover {
    color: var(--saffron-glow);
}

.info-note {
    margin-top: 2rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: left;
}

.info-note p {
    font-size: 0.85rem;
    color: rgba(250, 243, 232, 0.7);
    line-height: 1.6;
}

/* === Footer === */
.main-footer {
    background: var(--dark);
    color: var(--cream);
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.om-symbol-large {
    font-family: 'Noto Sans Devanagari', serif;
    font-size: 3rem;
    color: var(--saffron);
    text-shadow: 0 0 30px rgba(245, 166, 35, 0.3);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--saffron-light);
    margin-bottom: 2rem;
}

.footer-verse {
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(196, 129, 61, 0.15);
    border-bottom: 1px solid rgba(196, 129, 61, 0.15);
}

.sanskrit-verse {
    font-family: 'Noto Sans Devanagari', serif;
    font-size: 1.05rem;
    color: var(--saffron-light);
    line-height: 2;
    margin-bottom: 0.25rem;
}

.verse-meaning {
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(250, 243, 232, 0.5);
    margin-top: 0.75rem;
}

.footer-bottom {
    padding-top: 1.5rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(250, 243, 232, 0.4);
    margin-bottom: 0.5rem;
}

.footer-blessing {
    font-family: 'Noto Sans Devanagari', serif;
    font-size: 1rem;
    color: var(--saffron);
    opacity: 0.6;
    letter-spacing: 0.2em;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section {
        padding: 4rem 0;
    }

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

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 10, 5, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .service-card-link {
        width: 300px;
        min-width: 300px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid .testimonial-card:last-child {
        max-width: 100%;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 1px;
        height: 30px;
        margin: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-col {
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .credential-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 1.2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* === Animations on scroll === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
