/* Contact Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary-color: #2563EB;
    --text-color: #0f172a;
    --text-muted: #64748b;
}

* {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background: #FAFAFA;
}

/* Navbar */
.navbar {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-color);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-link {
    font-weight: 500;
    color: #4b5563 !important;
    padding: 0 1.8rem !important;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.btn-nav-login {
    font-weight: 600;
    color: #1f2937;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.btn-nav-login:hover {
    background: #f3f4f6;
}

.btn-nav-signup {
    background-color: #2563EB;
    color: white;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    border: none;
    transition: background 0.2s;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
}

.btn-nav-signup:hover {
    background-color: #1d4ed8;
    color: white;
}

/* Mobile navbar */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav {
        margin-bottom: 1rem;
    }
    
    .nav-link {
        padding: 0.5rem 1rem !important;
    }
    
    .d-flex.gap-2 {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-nav-login,
    .btn-nav-signup {
        width: 100%;
        text-align: center;
        display: block;
    }
}

/* Hero Section */
.contact-hero {
    padding: 10rem 0 6rem 0;
    background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 100%);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #EFF6FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 1rem;
    transition: gap 0.2s;
}

.contact-link:hover {
    gap: 0.6rem;
}

.contact-form-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.contact-form-card h3 {
    font-weight: 700;
    color: var(--text-color);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-form .form-control {
    padding: 0.75rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: none;
    font-size: 1rem;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: white;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: #EEF2FF;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #f1f5f9;
    background: transparent;
}

.accordion-button {
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1.5rem 0;
    background-color: transparent;
    color: var(--text-color);
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--primary-color);
}

.accordion-body {
    padding: 0 0 1.5rem 0;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: #000 !important;
    color: #fff;
    border-top: 1px solid #1f2937;
}

.footer h6 {
    color: #fff;
    font-weight: 700;
}

.footer a {
    transition: color 0.2s;
}

.footer a:hover {
    color: #fff !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
