/* ================================================ */
/* Root Variables */
:root {
    --primary-deep: #d44127;
    --primary-light: #ff7359;
    --accent-bg: #fff5f3;
    --text-dark: #333;
    --text-muted: #666;
    --border-color: #ffd1ca;
    --shadow-color: rgba(212, 65, 39, 0.1);
}

/* ================================================ */
/* Contact Info Section */
.contact-info-section {
    background: var(--accent-bg);
}

.contact-card {
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.card-icon {
    font-size: 30px;
    color: var(--primary-deep);
    margin-bottom: 15px;
}

.contact-card h5 {
    color: var(--primary-deep);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
}

.contact-card p, .contact-card a {
    color: var(--text-muted);
    font-size: 14px;
}

.contact-card a:hover {
    color: var(--primary-deep);
}

/* ================================================ */
/* Map Section */
.map-section {
    background: white;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow-color);
}

/* ================================================ */
/* Heading Styles */
.section-header {
    position: relative;
}

.section-header h2 {
    font-weight: 700;
    color: var(--primary-deep);
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-light), var(--primary-deep));
    margin: 15px auto 0;
    border-radius: 5px;
}

.section-header p {
    color: var(--text-muted);
    font-style: italic;
    font-size: 18px;
}

/* ================================================ */
/* Form Styles */
.pooja-form {
    padding: 40px;
}
.pooja-form label:focus{
box-shadow: none !important;
}

.form-label{
font-size: 14px !important;
font-weight: 600;
color: #d44127 !important;
}

.custom-input {
    /* border: 1px solid var(--border-color); */
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-input:focus {
    border-color: #d44127 !important;
    box-shadow: none !important;
    /* box-shadow: 0 0 8px rgba(255, 115, 89, 0.3); */
    outline: none;
}

.custom-checkbox:checked {
    background-color: var(--primary-deep);
    border-color: var(--primary-deep);
}

/* Button */
.pooja-btn {
    background: linear-gradient(to right, var(--primary-deep), var(--primary-light));
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 40px;
    font-size: 16px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.pooja-btn:hover {
    transform: scale(1.05);
    opacity: 0.95;
}

/* ================================================ */
/* Responsiveness */
@media (max-width: 991px) {
    .contact-info-section .row > div {
        margin-bottom: 30px;
    }
    .pooja-form {
        padding: 30px 20px;
    }
    .section-header h2 {
        font-size: 26px;
    }
    .section-header p {
        font-size: 16px;
    }
    .contact-card {
        padding: 25px 15px;
    }
    .card-icon {
        font-size: 40px;
    }
    .map-container iframe {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .pooja-btn {
        width: 100%;
    }
}
/* ================================================ */