body {
    background-color: #f8f9fa;
    font-family: 'Space Grotesk', sans-serif;
    color: #333;
}

h1, h2, h3, h4, h5 {
    font-family: 'Syne', sans-serif;
}

.container {
    max-width: 1200px;
}

.contact-hero-section {
    background: url('/images/taxi-driver.jpg');
    background-size: cover;
    background-position: center center;
    color: white;
    height: 260px;
    min-height: 160px;
    position: relative;
    text-align: left;
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 20, 60, 0.85) 40%, rgba(0, 40, 120, 0.6) 70%, rgba(0, 40, 120, 0.4) 100%);
    z-index: 1;
}

.contact-hero-section .container {
    position: relative;
    z-index: 2;
}

.contact-hero-content {
    max-width: 500px;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}

.contact-hero-content .hero-button-container {
    margin-bottom: 0.8rem;
}

.contact-hero-content .hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 37, 71, 0.65);
    color: #0dcaf0;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
    font-family: 'Space Grotesk', sans-serif;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.18);
}

.contact-hero-content .hero-btn:hover {
    background-color: #001c36;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.contact-hero-content .hero-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 0;
    max-width: 310px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.35;
}

.contact-section {
    padding: 4rem 0;
    background: white;
}

.contact-form-container {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-label {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-family: 'Space Grotesk', sans-serif;
    background-color: #fff;
    transition: all 0.2s;
    height: 48px;
}

.form-control:focus, .form-select:focus {
    border-color: #0C84FE;
    box-shadow: 0 0 0 3px rgba(12, 132, 254, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #999;
    font-style: italic;
}

textarea.form-control {
    height: auto;
    resize: vertical;
}

.btn-send-message {
    background-color: #0C84FE;
    border-color: #0C84FE;
    color: white;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-send-message:hover {
    background-color: #0069d9;
    border-color: #0062cc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(12, 132, 254, 0.3);
    text-decoration: none;
    color: white;
}

.btn-more-faqs {
    background-color: transparent;
    border: 2px solid #0C84FE;
    color: #0C84FE;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-more-faqs:hover {
    background-color: #0C84FE;
    border-color: #0C84FE;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(12, 132, 254, 0.3);
    text-decoration: none;
}

.btn-more-faqs i {
    font-size: 0.9rem;
}

.contact-info-container {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
}

.contact-info-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
}

.contact-info-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-info-list {
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0C84FE, #4A6CF7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.1rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

.social-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #0C84FE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #0069d9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 132, 254, 0.3);
    color: white;
    text-decoration: none;
}

.social-icon i {
    font-size: 0.9rem;
}

.faq-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.faq-header {
    margin-bottom: 3rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border: none;
    border-radius: 12px !important;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    background: white;
    border: none;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #222;
    padding: 1.5rem 2rem;
    border-radius: 12px !important;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: white;
    color: #0C84FE;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230C84FE'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.25rem;
    height: 1.25rem;
}

.accordion-body {
    padding: 0 2rem 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .contact-hero-section {
        height: 220px;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        height: 200px;
        margin-bottom: 30px;
    }

    .contact-hero-content .hero-description {
        max-width: 280px;
        font-size: 0.8rem;
    }

    .contact-section {
        padding: 3rem 0;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .faq-title {
        font-size: 2rem;
    }

    .accordion-button {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .accordion-body {
        padding: 0 1.5rem 1.25rem;
    }
}

@media (max-width: 576px) {
    .contact-hero-section {
        height: 180px;
    }

    .contact-hero-content .hero-description {
        max-width: 250px;
        font-size: 0.75rem;
    }

    .contact-hero-content .hero-btn {
        padding: 0.65rem 1rem;
        font-size: 0.8rem;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 1.25rem;
    }

    .social-icons {
        gap: 0.75rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }
}
