:root {
    --fca-primary-blue: #0066CC;
    --fca-accent-green: #66CC33;
    --fca-accent-cyan: #00CCFF;
    --fca-dark-bg: #0a0e27;
    --fca-light-bg: #ffffff;
    --fca-text-dark: #1a1a1a;
    --fca-text-light: #f5f5f5;
    --fca-border-dark: #2d3748;
    --fca-border-light: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--fca-light-bg);
    color: var(--fca-text-dark);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode {
    background-color: var(--fca-dark-bg);
    color: var(--fca-text-light);
}

/* Header Band */
.header-band {
    background: linear-gradient(135deg, var(--fca-light-bg) 0%, #f9f9f9 100%);
    border-bottom: 3px solid var(--fca-primary-blue);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

body.dark-mode .header-band {
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1428 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 0 1 auto;
}

.logo-section img {
    max-height: 60px;
    width: auto;
    display: block;
}

.site-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--fca-primary-blue);
}

body.dark-mode .site-title {
    color: var(--fca-accent-cyan);
}

.contact-details {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--fca-text-dark);
    text-decoration: none;
}

body.dark-mode .contact-item {
    color: var(--fca-text-light);
}

.contact-item strong {
    color: var(--fca-primary-blue);
    font-weight: 600;
}

body.dark-mode .contact-item strong {
    color: var(--fca-accent-cyan);
}

.dark-mode-toggle {
    background: none;
    border: 2px solid var(--fca-primary-blue);
    color: var(--fca-primary-blue);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dark-mode-toggle:hover {
    background-color: var(--fca-primary-blue);
    color: var(--fca-light-bg);
}

body.dark-mode .dark-mode-toggle {
    border-color: var(--fca-accent-cyan);
    color: var(--fca-accent-cyan);
}

body.dark-mode .dark-mode-toggle:hover {
    background-color: var(--fca-accent-cyan);
    color: var(--fca-dark-bg);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 500px;
    background-image: url('../images/hero-van.jpg');
    background-size: cover;
    background-position: center;
    background-color: #1e3a8a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-section {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-details {
        justify-content: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-section {
    margin-bottom: 60px;
    padding: 40px 30px;
    background: var(--fca-light-bg);
    border: 1px solid #bbb;
    border-left: 4px solid #0047B2;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

body.dark-mode .content-section {
    background: #1a1f3a;
    border: 1px solid #444;
    border-left-color: var(--fca-accent-cyan);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.content-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--fca-primary-blue);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

body.dark-mode .content-section h2 {
    color: var(--fca-accent-cyan);
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--fca-accent-green);
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--fca-text-dark);
}

body.dark-mode .content-section p {
    color: var(--fca-text-light);
}

.content-section ul {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.content-section ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--fca-text-dark);
}

body.dark-mode .content-section ul li {
    color: var(--fca-text-light);
}

.content-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--fca-accent-green);
    font-weight: bold;
}

/* Service Options Grid */
.service-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.service-option-button {
    background: var(--fca-primary-blue);
    color: white;
    padding: 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.service-option-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25);
}

.service-option-button h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 0;
}

.service-option-button p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Pricing Box */
.pricing-box {
    background: var(--fca-light-bg);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #bbb;
    border-left: 4px solid #4CAF50;
    margin-top: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

body.dark-mode .pricing-box {
    background: #1a1f3a;
    border: 1px solid #444;
    border-left-color: #4CAF50;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Two Ways Grid */
.two-ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.way-box {
    background: var(--fca-primary-blue);
    color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.way-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25);
}

.way-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.way-box p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* Testimonial Box */
.testimonial-box {
    background: var(--fca-light-bg);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #bbb;
    border-left: 4px solid #4CAF50;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

body.dark-mode .testimonial-box {
    background: #1a1f3a;
    border: 1px solid #444;
    border-left-color: #4CAF50;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.challenge-box {
    background: var(--fca-primary-blue);
    color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25);
}

.challenge-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.challenge-box p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* Contact Form Section */
.contact-section {
    background: var(--fca-light-bg);
    padding: 60px 30px;
    margin: 60px 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

body.dark-mode .contact-section {
    background: #1a1f3a;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-section h2 {
    color: var(--fca-primary-blue);
    margin-bottom: 10px;
    font-size: 32px;
}

body.dark-mode .contact-section h2 {
    color: var(--fca-accent-cyan);
}

.contact-section > p {
    font-size: 16px;
    color: var(--fca-text-dark);
    margin-bottom: 30px;
}

body.dark-mode .contact-section > p {
    color: var(--fca-text-light);
}

.contact-form-wrapper {
    max-width: 600px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--fca-text-dark);
}

body.dark-mode .form-group label {
    color: var(--fca-text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--fca-border-light);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    background: var(--fca-light-bg);
    color: var(--fca-text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
    background: #2d3748;
    color: var(--fca-text-light);
    border-color: var(--fca-border-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--fca-primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group select:focus,
body.dark-mode .form-group textarea:focus {
    border-color: var(--fca-accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 204, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--fca-primary-blue) 0%, #0052a3 100%);
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.3);
}

body.dark-mode .submit-button {
    background: linear-gradient(135deg, var(--fca-accent-cyan) 0%, #00a8d8 100%);
    color: var(--fca-dark-bg);
}

body.dark-mode .submit-button:hover {
    box-shadow: 0 6px 16px rgba(0, 204, 255, 0.4);
}

/* Footer Banner */
.footer-banner {
    background: linear-gradient(135deg, var(--fca-primary-blue) 0%, var(--fca-accent-cyan) 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-top: 60px;
    border-top: 3px solid var(--fca-accent-green);
    transition: all 0.3s ease;
}

body.dark-mode .footer-banner {
    background: linear-gradient(135deg, #003d99 0%, #0099cc 100%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px 0;
    text-align: left;
    color: rgba(255, 255, 255, 0.95);
}

.footer-content strong {
    font-weight: 700;
    display: block;
    font-size: 16px;
    margin-bottom: 12px;
    color: white;
}

.footer-content p {
    font-size: 14px;
    line-height: 1.6;
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.95);
}

.footer-content a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-content a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 768px) {
    .content-section {
        padding: 25px 15px;
    }

    .content-section h2 {
        font-size: 24px;
    }

    .challenges-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
