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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: 48px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e3a8a;
    margin: 0;
}

.logo-text p {
    font-size: 0.875rem;
    color: #2563eb;
    margin: 0;
    font-weight: 500;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-cta {
    background: #2563eb;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
    transition: all 0.2s;
    white-space: nowrap;
}

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

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
    background: #eff6ff;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #374151;
    transition: all 0.3s;
}

.mobile-nav {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    border-radius: 0.375rem;
    margin-bottom: 0.5rem;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #2563eb;
    background: #eff6ff;
}

.mobile-nav-cta {
    display: block;
    text-align: center;
    background: #2563eb;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    margin-bottom: 0.5rem;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero .highlight {
    color: #93c5fd;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #dbeafe;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #2563eb;
    color: white;
    border: 2px solid #2563eb;
}

.btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

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

/* On the dark hero gradient, a blue outline disappears - use white instead */
.hero .btn-secondary {
    color: white;
    border-color: white;
}

.hero .btn-secondary:hover {
    background: white;
    color: #1e3a8a;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #f9fafb;
}

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

.section-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #dbeafe;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #2563eb;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #6b7280;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.service-image {
    position: relative;
    height: 192px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: #2563eb;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: white;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.75rem;
}

.service-content p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.service-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

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

/* Destinations Section */
.destinations-section {
    padding: 5rem 0;
    background: white;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.destination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #f9fafb;
    color: #111827;
    font-weight: 600;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.destination-item svg {
    color: #2563eb;
    flex-shrink: 0;
}

.destination-item:hover {
    background: #eff6ff;
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-2px);
}

/* Capabilities Section */
.capabilities {
    padding: 5rem 0;
    background: #1e3a8a;
    color: white;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.capabilities-content h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.capabilities-content p {
    font-size: 1.125rem;
    color: #dbeafe;
    margin-bottom: 2rem;
}

.capabilities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.1);
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.capability-item svg {
    color: #93c5fd;
    flex-shrink: 0;
}

.capability-item span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: #f9fafb;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

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

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #f3f4f6;
}

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

.footer-logo-img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.footer-logo-text h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0;
}

.footer-logo-text p {
    font-size: 0.75rem;
    color: #93c5fd;
    margin: 0;
}

.footer-description {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #9ca3af;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: #2563eb;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #f3f4f6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-bottom a {
    color: #9ca3af;
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: #f3f4f6;
}

/* Legal Pages */
.legal-section {
    padding: 5rem 0;
    background: white;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content .updated-date {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.legal-content p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    color: #6b7280;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #2563eb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-nav {
        display: none;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .capabilities-list {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Service Detail Section */
.service-detail {
    padding: 5rem 0;
    background: white;
}

.service-detail.alt {
    background: #f9fafb;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-detail-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.25rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-detail-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
}

.benefits-list li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-image img {
        height: 300px;
    }
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background: white;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #2563eb;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #6b7280;
}

/* EFC Section */
.efc-section {
    padding: 5rem 0;
    background: white;
}

.efc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.efc-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid #2563eb;
}

.efc-number {
    font-size: 3rem;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 1rem;
}

.efc-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.75rem;
}

.efc-card p {
    color: #6b7280;
    line-height: 1.8;
}

.efc-balance {
    background: #1e3a8a;
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.efc-balance h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.efc-balance p {
    color: #dbeafe;
    line-height: 1.8;
}

/* Why Us Section */
.why-us-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-us-content h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

.why-us-content p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feature-item svg {
    color: #16a34a;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 500;
    color: #111827;
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .efc-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Info Section */
.contact-info {
    padding: 5rem 0;
    background: #f9fafb;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #2563eb;
}

.contact-info-card h3 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: #6b7280;
    margin-bottom: 0.5rem;
    overflow-wrap: break-word;
}

.contact-info-card a {
    color: #2563eb;
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: white;
}

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

.contact-form-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.sidebar-card h3 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.sidebar-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.support-card {
    background: #1e3a8a;
    color: white;
}

.support-card h3,
.support-card p {
    color: white;
}

.support-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.support-item svg {
    color: #93c5fd;
}

.quote-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quote-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.quote-link:hover {
    text-decoration: underline;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    color: #374151;
}

.hours-day {
    font-weight: 500;
}

.hours-time {
    color: #6b7280;
}

.hours-note {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

/* Success Message */
.success-message {
    padding: 5rem 0;
    background: #f9fafb;
}

.success-card {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.success-icon {
    color: #16a34a;
    margin-bottom: 1.5rem;
}

.not-found-icon {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.success-card h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.success-card p {
    color: #6b7280;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}
