* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    color: #2d3a4b;
    background: #f8fafc;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 10px 20px;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #4a90e2 !important;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    max-height: 40px;
    max-width: 50px;
    border: 0.5px black solid;
    border-radius: 55%;
}

.navbar-brand i {
    margin-right: 10px;
    font-size: 28px;
}

.navbar-brand span {
    color: #2d3a4b;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #2d3a4b !important;
    margin: 0 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #4a90e2 !important;
    background-color: rgba(74, 144, 226, 0.1);
}

.nav-link.active {
    color: #4a90e2 !important;
    background-color: rgba(74, 144, 226, 0.1);
    font-weight: 600;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.contact-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #2d3a4b;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

.contact-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-info {
    padding: 40px;
    background: linear-gradient(135deg, #4a90e2 0%, #3a7cd3 100%);
    color: white;
    height: 100%;
}

.contact-info h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
}

.info-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.info-content p {
    color: rgba(255, 255, 255, 0.9);
}

.business-hours {
    margin-top: 40px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact Form */
.contact-form {
    padding: 40px;
}

.contact-form h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #2d3a4b;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #4a90e2;
    border-radius: 2px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

textarea.form-control {
    height: auto;
    min-height: 120px;
    resize: vertical;
}

.btn-primary {
    background: linear-gradient(135deg, #4a90e2 0%, #3a7cd3 100%);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

/* Success Modal Styles */
.modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
}

.modal-header {
    background: linear-gradient(135deg, #4a90e2 0%, #3a7cd3 100%);
    color: white;
    border-bottom: none;
}

.modal-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
}

.success-icon {
    font-size: 60px;
    color: #4a90e2;
    margin-bottom: 20px;
}

.modal-body h4 {
    font-family: 'Poppins', sans-serif;
    color: #2d3a4b;
    margin-bottom: 15px;
}

.modal-body p {
    color: #4a5568;
    margin-bottom: 10px;
}

.modal-footer {
    border-top: none;
    justify-content: center;
    padding-top: 0;
}

/* Form validation styles */
.was-validated .form-control:valid {
    border-color: #28a745;
    /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); */
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid {
    border-color: #dc3545;
    /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e"); */
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.was-validated .form-control:invalid~.invalid-feedback {
    display: block;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: #f8fafc;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #2d3a4b 0%, #1a202c 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-icon {
    font-size: 32px;
    color: #4a90e2;
    margin-right: 12px;
}

.footer-logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: white;
}

.footer-logo-text span {
    color: #4a90e2;
}

.footer-about {
    max-width: 300px;
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #cbd5e0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #4a90e2;
    transform: translateY(-3px);
}

.footer-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #4a90e2;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #4a90e2;
    transform: translateX(5px);
}

.footer-links i {
    margin-right: 10px;
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 15px;
    font-size: 20px;
    color: #4a90e2;
    margin-top: 3px;
}

.footer-contact div {
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #cbd5e0;
    font-size: 14px;
}

.footer-bottom a {
    color: #4a90e2;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.payment-methods i {
    font-size: 28px;
    color: #cbd5e0;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        padding: 20px;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
    }

    .nav-link {
        margin: 5px 0;
        padding: 10px 15px !important;
    }

    .contact-info {
        padding: 30px;
    }

    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 1.8rem;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 1.8rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 1.5rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}