/* ===== ROOT VARIABLES ===== */
:root {
    --primary-maroon: #800000;
    --primary-saffron: #FF9933;
    --primary-orange: #FF5722;
    --gold: #D4AF37;
    --cream: #FFF9F0;
    --light-saffron: #FFF5E6;
    --text-dark: #333333;
    --text-light: #5a3d3d;
    --white: #FFFFFF;
    --success-green: #28a745;
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.left-aligned {
    text-align: center;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--light-saffron), var(--cream));
    color: var(--primary-maroon);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 153, 51, 0.3);
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.15);
    letter-spacing: 0.5px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.section-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: var(--primary-maroon);
    margin-bottom: 20px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.section-divider.left {
    justify-content: center;
}

.section-divider span:first-child,
.section-divider span:last-child {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-saffron), transparent);
}

.section-divider.light span:first-child,
.section-divider.light span:last-child {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.divider-icon {
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== PAGE HEADER ===== */
.page-header {
    position: relative;
    min-height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(128, 0, 0, 0.92), rgba(255, 87, 34, 0.88)),
        url('../images/contact-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0 50px;
    overflow: hidden;
    line-height: normal;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 153, 51, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-item {
    position: absolute;
    font-size: 2rem;
    opacity: 0.4;
    animation: floatAnimation 15s infinite ease-in-out;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.float-item:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.float-item:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: 3s;
    font-size: 3rem;
}

.float-item:nth-child(3) {
    bottom: 30%;
    left: 15%;
    animation-delay: 5s;
}

.float-item:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(5deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    75% {
        transform: translateY(20px) rotate(-5deg);
    }
}

.page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.breadcrumb a:hover {
    color: var(--primary-saffron);
    background: rgba(255, 255, 255, 0.1);
}

.breadcrumb span:not(:last-child) {
    opacity: 0.6;
}

.page-header h1 {
    font-family: 'Tiro Devanagari Hindi', serif;
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header .subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    opacity: 0.95;
    letter-spacing: 3px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.page-header .tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.header-decorative {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.header-decorative span:first-child,
.header-decorative span:last-child {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.header-decorative .icon {
    font-size: 1.5rem;
}

/* ===== INTRO SECTION ===== */
.intro-section {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
    position: relative;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-maroon), var(--primary-saffron), var(--primary-orange));
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-maroon), var(--primary-orange));
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.95rem;
    margin-bottom: 25px;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(128, 0, 0, 0.3);
}

.intro-content h2 {
    font-family: 'Tiro Devanagari Hindi', serif;
    font-size: 2.8rem;
    color: var(--primary-maroon);
    margin-bottom: 25px;
}

.intro-content .lead-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.intro-verse {
    background: linear-gradient(135deg, var(--light-saffron), var(--cream));
    padding: 35px 45px;
    border-radius: 20px;
    border-left: 5px solid var(--primary-saffron);
    position: relative;
    overflow: hidden;
}

.intro-verse::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: rgba(128, 0, 0, 0.05);
    font-family: serif;
}

.intro-verse .sanskrit {
    font-family: 'Tiro Devanagari Hindi', serif;
    font-size: 1.8rem;
    color: var(--primary-maroon);
    margin-bottom: 12px;
    position: relative;
}

.intro-verse .translation {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.1rem;
    position: relative;
}

/* ===== CONTACT CARDS SECTION ===== */
.contact-cards-section {
    position: relative;
    padding: 100px 0;
    background: var(--cream);
    overflow: hidden;
}

.decorative-mandala {
    position: absolute;
    width: 400px;
    height: 400px;
    opacity: 0.05;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="none" stroke="%23800000" stroke-width="0.5"/><circle cx="50" cy="50" r="35" fill="none" stroke="%23800000" stroke-width="0.5"/><circle cx="50" cy="50" r="25" fill="none" stroke="%23800000" stroke-width="0.5"/><circle cx="50" cy="50" r="15" fill="none" stroke="%23800000" stroke-width="0.5"/></svg>');
    background-size: contain;
    animation: rotateMandala 60s linear infinite;
}

.decorative-mandala.left {
    left: -150px;
    top: 20%;
}

.decorative-mandala.right {
    right: -150px;
    bottom: 20%;
    animation-direction: reverse;
}

@keyframes rotateMandala {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* FIXED: Changed from 4 columns to 3 since there are only 3 cards */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.contact-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(128, 0, 0, 0.08);
    border: 1px solid rgba(255, 153, 51, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-saffron), var(--primary-maroon));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 153, 51, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(128, 0, 0, 0.15);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover::after {
    opacity: 1;
}

.card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--light-saffron), var(--cream));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.2);
    position: relative;
}

.contact-card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary-saffron), var(--primary-orange));
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.3);
}

.contact-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--primary-maroon);
    margin-bottom: 5px;
}

.contact-card h4 {
    font-family: 'Tiro Devanagari Hindi', serif;
    font-size: 1.1rem;
    color: var(--primary-saffron);
    margin-bottom: 20px;
    font-weight: normal;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 5px;
    position: relative;
}

.contact-card p strong {
    color: var(--text-dark);
    display: block;
    margin-top: 10px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--light-saffron), var(--cream));
    color: var(--primary-maroon);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 153, 51, 0.3);
    position: relative;
}

.card-link:hover {
    background: linear-gradient(135deg, var(--primary-saffron), var(--primary-orange));
    color: var(--white);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.3);
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 20px;
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-green);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white), var(--light-saffron));
    position: relative;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.form-info {
    position: sticky;
    top: 100px;
}

.form-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

.form-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px;
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(128, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(128, 0, 0, 0.1);
    border-color: rgba(255, 153, 51, 0.3);
}

.feature-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-saffron), var(--cream));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text h4 {
    color: var(--primary-maroon);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.quick-contact {
    padding: 35px;
    background: linear-gradient(135deg, var(--primary-maroon), var(--primary-orange));
    border-radius: 20px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quick-contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.quick-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    position: relative;
}

.quick-contact p {
    opacity: 0.9;
    margin-bottom: 15px;
    position: relative;
}

.phone-link {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.phone-link:hover {
    background: var(--white);
    color: var(--primary-maroon);
    transform: scale(1.05);
}

/* ===== FORM CONTAINER ===== */
.form-container {
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 25px 80px rgba(128, 0, 0, 0.12);
    overflow: hidden;
}

.spiritual-form {
    padding: 0;
}

.form-header {
    background: linear-gradient(135deg, var(--primary-maroon), var(--primary-orange));
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.form-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><circle cx="30" cy="30" r="25" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    pointer-events: none;
}

.form-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: block;
    position: relative;
}

.form-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    margin-bottom: 5px;
    position: relative;
}

.form-header p {
    font-family: 'Tiro Devanagari Hindi', serif;
    opacity: 0.9;
    font-size: 1.1rem;
    position: relative;
}

.form-body {
    padding: 40px;
}

.spiritual-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.spiritual-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-row .form-group {
    margin-bottom: 0;
}

.spiritual-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.label-icon {
    font-size: 1.1rem;
}

.required {
    color: var(--primary-orange);
}

.spiritual-form input,
.spiritual-form select,
.spiritual-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 153, 51, 0.2);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--cream);
}

.spiritual-form input:focus,
.spiritual-form select:focus,
.spiritual-form textarea:focus {
    outline: none;
    border-color: var(--primary-saffron);
    background: var(--white);
    box-shadow: 0 5px 20px rgba(255, 153, 51, 0.15);
}

.spiritual-form input::placeholder,
.spiritual-form textarea::placeholder {
    color: #999;
}

.spiritual-form select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23800000" d="M6 9L1 4h10z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.spiritual-form textarea {
    resize: vertical;
    min-height: 130px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-maroon);
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
    margin-bottom: 0;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 35px;
    background: linear-gradient(135deg, var(--primary-saffron), var(--primary-orange));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-maroon), var(--primary-orange));
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.4);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(-1px);
}

.btn-icon {
    font-size: 1.3rem;
}

.form-footer {
    text-align: center;
    margin-top: 25px;
}

.form-footer p {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 100px 0;
    background: var(--white);
}

.map-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(128, 0, 0, 0.12);
}

.map-wrapper {
    position: relative;
}

.map-wrapper iframe {
    display: block;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%) contrast(1);
}

.map-overlay-info {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
}

.overlay-card {
    background: var(--white);
    padding: 28px 32px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    max-width: 320px;
    transition: all 0.3s ease;
}

.overlay-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.overlay-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.overlay-card h4 {
    font-family: 'Cinzel', serif;
    color: var(--primary-maroon);
    font-size: 1.05rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.overlay-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 18px;
    line-height: 1.5;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-maroon);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    background: var(--light-saffron);
    border-radius: 20px;
}

.directions-btn:hover {
    color: var(--white);
    background: var(--primary-saffron);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream), var(--light-saffron));
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 153, 51, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-saffron), var(--primary-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(128, 0, 0, 0.1);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--light-saffron), var(--cream));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-question h4 {
    color: var(--primary-maroon);
    font-size: 1.05rem;
    line-height: 1.4;
    margin: 0;
    padding-top: 8px;
}

.faq-answer {
    padding-left: 60px;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ===== ALERT MESSAGES ===== */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    position: relative;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
    border: 2px solid rgba(40, 167, 69, 0.3);
    color: #155724;
}

.alert-error {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(255, 107, 107, 0.1));
    border: 2px solid rgba(220, 53, 69, 0.3);
    color: #721c24;
}

.alert-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.alert-content {
    flex: 1;
}

.alert-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.alert-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    color: inherit;
}

.alert-close:hover {
    opacity: 1;
}

.alert-success .alert-icon {
    color: #28a745;
}

.alert-error .alert-icon {
    color: #dc3545;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .contact-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .page-header h1 {
        font-size: 3rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .form-info {
        position: static;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .page-header {
        min-height: 40vh;
        padding: 100px 0 60px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .page-header .subtitle {
        font-size: 1.3rem;
    }

    .intro-section {
        padding: 70px 0;
    }

    .intro-content h2 {
        font-size: 2rem;
    }

    .intro-verse {
        padding: 25px;
    }

    .intro-verse .sanskrit {
        font-size: 1.4rem;
    }

    .contact-cards-section {
        padding: 70px 0;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .spiritual-form .form-row {
        grid-template-columns: 1fr;
    }

    .form-body {
        padding: 30px 25px;
    }

    .form-header {
        padding: 30px;
    }

    .map-section {
        padding: 70px 0;
    }

    .map-overlay-info {
        position: static;
        padding: 25px;
        background: var(--white);
    }

    .overlay-card {
        max-width: 100%;
        box-shadow: none;
        padding: 0;
    }

    .faq-section {
        padding: 70px 0;
    }

    .faq-answer {
        padding-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .contact-card {
        padding: 35px 25px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }

    .form-header {
        padding: 25px 20px;
    }

    .form-icon {
        font-size: 2.5rem;
    }

    .form-body {
        padding: 25px 20px;
    }

    .spiritual-form input,
    .spiritual-form select,
    .spiritual-form textarea {
        padding: 14px 16px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .quick-contact {
        padding: 25px 20px;
    }

    .phone-link {
        font-size: 1.3rem;
        padding: 10px 25px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {

    .page-header,
    .floating-elements,
    .decorative-mandala {
        display: none;
    }

    .contact-card,
    .faq-item {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}