
.contact_section {
    background-color: #E8F0EE;
    padding: 80px 0;
}

.contact_section .heading_container h2 {
    color: #2d3a3c;
    font-family: Helvetica;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact_section .heading_container p {
    color: #3E4E50;
    font-family: Helvetica;
    font-size: 18px;
}

.contact_info {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.contact_info h3 {
    color: #111149;
    font-family: Helvetica;
    font-weight: bold;
    margin-bottom: 30px;
    font-size: 24px;
}

.info_item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info_item i {
    color: #111149;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
    width: 20px;
}

.info_detail h5 {
    color: #2d3a3c;
    font-family: Helvetica;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 16px;
}

.info_detail p {
    color: #3E4E50;
    margin: 0;
    font-size: 14px;
}

.contct {
    display: flex !important;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: row !important;
}

.info_detail a {
    color: #111149;
    text-decoration: none;
}

.info_detail a:hover {
    text-decoration: underline;
}

.spiritual_note {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #E8F0EE;
}

.spiritual_note h5 {
    color: #2d3a3c;
    font-family: Helvetica;
    font-weight: bold;
    margin-bottom: 15px;
}

.spiritual_note ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spiritual_note li {
    color: #3E4E50;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form {
    background: white;
    padding: 0px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #111149;
    font-family: Helvetica;
    font-weight: bold;
    margin-bottom: 30px;
    font-size: 24px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 0px;
    border: 2px solid #E8F0EE;
    border-radius: 6px;
    font-family: Helvetica;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #111149;
}

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

.btn_box button {
    background-color: #111149;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-family: Helvetica;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn_box button:hover {
    background-color: #0a0a2e;
}

.social_media {
    text-align: center;
    margin-top: 40px;
}

.social_media h4 {
    color: #2d3a3c;
    font-family: Helvetica;
    font-weight: bold;
    margin-bottom: 20px;
}

.social_links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social_links a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #111149;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social_links a:hover {
    background-color: #0a0a2e;
    transform: translateY(-3px);
}

.social_links a i {
    font-size: 20px;
}

@media (max-width: 768px) {

    .contact_info,
    .contact-form {
        padding: 30px 20px;
    }

    .info_item {
        flex-direction: column;
        text-align: center;
    }

    .info_item i {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .social_links {
        flex-wrap: wrap;
        gap: 15px;
    }
}






* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.containerss {
    width: 100%;
}
.containers {
    width: 50%;
}

/* Header */
.header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.menu-toggle {
    background: white;
    border: 1px solid #ddd;
    padding: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    display: block;
}

.call-button {
    background: #34a65c;
    padding: 12px 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.phone-icon {
    width: 32px;
    height: 32px;
}

.call-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.call-text {
    font-size: 12px;
    opacity: 0.9;
}

.phone-number {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://ext.same-assets.com/1908705538/1601014184.jpeg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    position: relative;
}

.hero-title {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.breadcrumb {
    position: absolute;
    top: 40px;
    right: 40px;
    background: white;
    padding: 12px 30px;
    border-radius: 5px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.breadcrumb a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb span {
    color: #666;
}

.breadcrumb a::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 15px;
    background: #ddd;
    margin-left: 10px;
}

/* Contact Info Cards */
.contact-info {
    padding: 80px 0;
    background: white;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #34a65c;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.info-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 0 0 80px 0;
    display: flex;
    width: 100%;
}

.map-section iframe {
    border-radius: 8px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 0px;
    background: #f9f9f9;
    width: 50%;
}

.contact-form-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}

.form-subtitle {
    text-align: center;
    color: #666;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #34a65c;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: var(--color-accent);
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: var(--color-accent);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #5fb57d, #72b99c);
    padding: 100px 0;
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.bow a{
    background-color: black !important;
    color: white !important;
}
.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 300;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-btn {
    background: var(--color-accent);;
    color: white;
    text-decoration: none;
    padding: 15px 50px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: var(--color-accent);;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-column p {
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #34a65c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background: #2d8f4d;
}

.footer-column h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 25px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #34a65c;
}

.hours-list,
.contact-list {
    margin-bottom: 25px;
}

.book-btn {
    display: inline-block;
    border: 2px solid #34a65c;
    color: #34a65c;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background: #34a65c;
    color: white;
}

/* Copyright */
.copyright {
    background: #34a65c;
    padding: 20px 0;
    color: white;
}

.copyright .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .info-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

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

    .breadcrumb {
        position: static;
        margin-top: 20px;
        display: inline-flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .call-button {
        display: none;
    }

    .copyright .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
    }

    .contact-form-section h2,
    .cta-content h2 {
        font-size: 28px;
    }
}
