/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #4b5563;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hidden {
    display: none;
}

/* Navigation Styles */
.nav {
    background-color: #ffffff;
    border-bottom: 1px solid #f3f4f6;
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 0.5rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    height: 4rem;
}

.nav-logo-wrapper {
    display: flex;
    align-items: center;
}

.nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    width: 2.5rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 2.5rem;
    height: 3.25rem;
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: #111827;
}

.nav-menu-desktop {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-link-active {
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}

.nav-links {
    color: #4b5563;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links:hover {
    color: #2563eb;
}

.nav-button {
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s;
}

.nav-button:hover {
    background-color: #1d4ed8;
}

.mobile-menu-btn-wrapper {
    display: flex;
    align-items: center;
}

.mobile-menu-btn {
    color: #6b7280;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.mobile-menu-btn:hover {
    color: #4b5563;
}

.mobile-menu-btn:focus {
    outline: none;
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
    background-color: #ffffff;
    border-top: 1px solid #f3f4f6;
}

.mobile-menu-content {
    padding: 0.5rem 0.5rem 0.75rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-link-active {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 700;
    color: #2563eb;
    background-color: #eff6ff;
    text-decoration: none;
}

.mobile-link {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 700;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.3s;
}

.mobile-link:hover {
    color: #2563eb;
    background-color: #f9fafb;
}

.mobile-cta-wrapper {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
}

.mobile-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 700;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.mobile-cta-btn:hover {
    background-color: #1d4ed8;
}

/* Page Header */
.page-header {
    background: linear-gradient(to bottom right, #dbeafe, #bfdbfe);
    padding: 5rem 0;
}

.page-header-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.page-header-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
}

.page-header-description {
    margin-top: 1rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.25rem;
    color: #6b7280;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.contact-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* .contact-info {
} */

.contact-info-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
}

.contact-info-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
}

.contact-detail-icon-wrapper {
    flex-shrink: 0;
}

.contact-detail-icon {
    width: 3rem;
    height: 3rem;
    background-color: #dbeafe;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
}

.icon {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-detail-content {
    margin-left: 1rem;
}

.contact-detail-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
}

.contact-detail-text {
    color: #6b7280;
    margin-top: 0.25rem;
}

.contact-detail-link {
    color: #2563eb;
    font-weight: 500;
    margin-top: 0.5rem;
    display: inline-block;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-detail-link:hover {
    color: #1d4ed8;
}

.business-hours {
    margin-top: 0.5rem;
    color: #4b5563;
}

.business-hours p {
    margin: 0;
}

.social-links-section {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid #e5e7eb;
}

.social-links-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #f3f4f6;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.social-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* .form-group {
} */

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.5rem;
}

.required {
    color: #ef4444;
}

.optional {
    color: #9ca3af;
    font-size: 0.75rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    /* ring: 2px; */
    border-color: transparent;
    box-shadow: 0 0 0 2px #2563eb;
}

.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    resize: none;
    transition: all 0.3s;
}

.form-textarea:focus {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 2px #2563eb;
}

.form-submit {
    width: 100%;
    background-color: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit:hover {
    background-color: #1d4ed8;
}

.form-submit-text {
    color: #ffffff;
}

.form-submit-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.form-note {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: #e5e7eb;
}

.faq-container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.faq-label {
    font-size: 1rem;
    color: #2563eb;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.faq-title {
    margin-top: 0.5rem;
    font-size: 1.875rem;
    line-height: 2rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #111827;
}

.faq-subtitle {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: #6b7280;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: #4b5563;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: #1e3a8a;
}

.cta-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    color: #bfdbfe;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.cta-btn-primary {
    background-color: #ffffff;
    color: #2563eb;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-btn-primary:hover {
    background-color: #f3f4f6;
}

.cta-btn-secondary {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-btn-secondary:hover {
    background-color: #ffffff;
    color: #2563eb;
}

.cta-btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Footer */
.footer {
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* .footer-brand {
} */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 2.5rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    width: 2.5rem;
    height: 3.25rem;
}

.footer-logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: #111827;
}

.footer-brand-text {
    color: #6b7280;
    font-size: 0.875rem;
}

/* .footer-column {
} */

.footer-heading {
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #4b5563;
}

.footer-link {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #2563eb;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-icon {
    width: 1rem;
    height: 1rem;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #6b7280;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-social-link:hover {
    color: #2563eb;
}

.footer-socials-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Responsive Styles */

/* Mobole (640px and up) */
@media (min-width: 640px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .page-header-title {
        font-size: 3rem;
    }
    
    .contact-container {
        padding: 0 1.5rem;
    }
    
    .faq-container {
        padding: 0 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: row;
    }
    
    .mobile-menu-content {
        padding: 0.5rem 0.75rem 0.75rem 0.75rem;
    }

    .mobile-menu-btn-wrapper {
        display: flex;
    }
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
    .nav-menu-desktop {
        display: flex;
    }
    
    .mobile-menu-btn-wrapper {
        display: none;
    }
    
    .page-header-title {
        font-size: 3.75rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: row;
    }
    
    .footer-socials {
        margin-top: 0;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }
    
    .page-header-container {
        padding: 0 2rem;
    }
    
    .contact-container {
        padding: 0 2rem;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form-wrapper {
        padding: 2.5rem;
    }
    
    .faq-container {
        padding: 0 2rem;
    }
    
    .faq-title {
        font-size: 2.25rem;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
}

/* Large Desktop (1280px and up) */
@media (min-width: 1280px) {
    .page-header-title {
        font-size: 4.5rem;
    }
}