/* Breadcrumb Section */
.contact-page .main_menu {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.breadcrumb_bg {
    position: relative;
    background-image: url("../img/about-page-cover.png");
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    margin-top: 0;
}

.breadcrumb_bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(18, 221, 109, 0.6); /* semi-transparent green */
    backdrop-filter: blur(4px);
    z-index: 1;
}

.breadcrumb_iner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.breadcrumb_iner_item h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.breadcrumb_iner_item p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 0;
    opacity: 0.9;
}

.breadcrumb_img {
    text-align: right;
}

.breadcrumb_img img {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}


/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #40B977 0%, #2d8254 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: #fff;
    clip-path: ellipse(70% 100% at 50% 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Info Section */
.contact-info {
    padding: 60px 0;
    background: #fff;
}

.info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(64, 185, 119, 0.1);
}

.info-card .icon {
    width: 80px;
    height: 80px;
    background: #e8f5ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.info-card:hover .icon {
    background: #40B977;
}

.info-card .icon i {
    font-size: 32px;
    color: #40B977;
    transition: all 0.3s ease;
}

.info-card:hover .icon i {
    color: #fff;
}

.info-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.info-card .phone {
    font-size: 24px;
    color: #40B977;
    font-weight: 600;
    margin: 10px 0;
}

.info-card .email {
    color: #40B977;
    font-weight: 500;
}

.info-card .description {
    font-size: 14px;
    color: #888;
    margin-top: 5px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-wrapper h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.form-wrapper p {
    color: #666;
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-form .form-control {
    border: 2px solid #e8e8e8;
    padding: 12px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #40B977;
    box-shadow: 0 0 0 3px rgba(64, 185, 119, 0.1);
}

.contact-form textarea.form-control {
    min-height: 150px;
}

.contact-form .btn_1 {
    width: 100%;
    padding: 15px;
}

/* Business Hours & FAQ Section */
.contact-info-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.business-hours {
    margin-bottom: 40px;
}

.business-hours h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.business-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-hours li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.business-hours li:last-child {
    border-bottom: none;
}

.business-hours .day {
    color: #333;
    font-weight: 500;
}

.business-hours .time {
    color: #666;
}

/* FAQ Section */
.faq-section h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.faq-section .card {
    border: none;
    margin-bottom: 15px;
    background: transparent;
}

.faq-section .card-header {
    padding: 0;
    border: none;
    background: transparent;
}

.faq-section .btn-link {
    width: 100%;
    text-align: left;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.faq-section .btn-link:hover {
    color: #40B977;
}

.faq-section .card-body {
    padding: 15px 20px;
    color: #666;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #fff;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

#map {
    height: 500px;
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-page .main_menu .navbar {
        padding: 15px 0;
    }

    .contact-page .main_menu .nav-item {
        margin: 5px 0;
    }

    .contact-page .main_menu .navbar-collapse {
        background: #fff;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
    }

    .contact-page .main_menu .nav-link {
        padding: 10px 15px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .contact-form-section .row > div:first-child {
        margin-bottom: 40px;
    }

    .info-card {
        margin-bottom: 30px;
    }

    .contact-hero {
        padding: 120px 0 80px;
    }

    .hero-content {
        padding: 30px 0;
    }
}

@media (max-width: 768px) {
    .contact-page .main_menu .navbar-brand img {
        max-height: 45px;
    }

    .contact-hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        padding: 20px 0;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .info-card {
        margin-bottom: 20px;
    }

    .contact-form-section {
        padding: 40px 0;
    }

    .form-wrapper,
    .contact-info-wrapper {
        padding: 25px;
    }

    #map {
        height: 400px;
    }

    .info-card .icon {
        width: 70px;
        height: 70px;
    }

    .info-card .icon i {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .contact-page .main_menu .navbar {
        padding: 10px 0;
    }

    .contact-page .main_menu .navbar-brand img {
        max-height: 40px;
    }

    .contact-hero {
        padding: 80px 0 40px;
    }

    .hero-content {
        padding: 15px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        padding: 0 15px;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .info-card {
        padding: 25px 20px;
        margin-bottom: 15px;
    }

    .info-card .icon {
        width: 60px;
        height: 60px;
    }

    .info-card .icon i {
        font-size: 24px;
    }

    .form-wrapper h2 {
        font-size: 24px;
    }

    .contact-form .form-control {
        padding: 10px 12px;
    }

    #map {
        height: 300px;
    }

    .business-hours h3,
    .faq-section h3 {
        font-size: 20px;
    }

    .business-hours li {
        flex-direction: column;
        text-align: center;
    }

    .business-hours .time {
        margin-top: 5px;
    }
}

@media (max-width: 360px) {
    .contact-hero {
        padding: 60px 0 30px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .info-card {
        padding: 20px 15px;
    }

    .info-card .icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .info-card .icon i {
        font-size: 20px;
    }

    .info-card h3 {
        font-size: 20px;
    }

    .form-wrapper,
    .contact-info-wrapper {
        padding: 20px 15px;
    }
} 