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

:root {
    /* Color Palette - Trust, Security, Financial Growth */
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --accent-gold: #f59e0b;
    --success-green: #10b981;
    --dark-navy: #1e293b;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --white: #ffffff;
    --text-dark: #1f2937;
    --border-color: #e2e8f0;
    
    /* Typography */
    --font-family: 'Inter', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-blue);
}

.logo i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

/* Hero Section */
.hero {
    background-color: #000000;
    background-image: url('https://cdn1.genspark.ai/user-upload-image/4_generated/7dffbb6c-c83e-48c5-b9b8-9e82a93cb35c');
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="truck-pattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M10 20h30v15h-30z" fill="rgba(255,255,255,0.03)"/><circle cx="15" cy="40" r="3" fill="rgba(255,255,255,0.03)"/><circle cx="35" cy="40" r="3" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23truck-pattern)"/></svg>') repeat;
    opacity: 0.1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.1);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: var(--accent-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-top: 18rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: var(--font-weight-normal);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-gold);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.cta-button:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Mission Section */
.mission {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.mission-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.mission-icon i {
    font-size: 2rem;
    color: var(--white);
}



.mission-card h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Expanded Mission Styles */
.mission-intro {
    margin-bottom: 4rem;
}

.mission-problem {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 5px solid #ef4444;
}

.mission-problem h3 {
    font-size: 1.8rem;
    color: #ef4444;
    margin-bottom: 1.5rem;
    font-weight: var(--font-weight-bold);
}

.mission-problem p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.mission-problem ul {
    list-style: none;
    margin-top: 1.5rem;
}

.mission-problem li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.mission-problem li i {
    color: #ef4444;
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.mission-solution {
    text-align: center;
    margin-bottom: 3rem;
}

.mission-solution h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.mission-tagline {
    font-size: 1.3rem;
    color: var(--medium-gray);
    font-style: italic;
    font-weight: var(--font-weight-medium);
}

.mission-details {
    margin-top: 1.5rem;
}

.mission-details p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.solution-benefits {
    list-style: none;
    margin-top: 1rem;
}

.solution-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.solution-benefits li::before {
    content: "✓";
    color: var(--success-green);
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
    margin-top: 1px;
}

.mission-commitment {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 4rem 0;
    margin-top: 4rem;
    border-radius: var(--border-radius-lg);
}

.commitment-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.commitment-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: var(--font-weight-bold);
}

.commitment-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.commitment-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

.commitment-promise {
    font-size: 1.2rem;
    font-weight: var(--font-weight-medium);
    font-style: italic;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hero Benefits Section */
.hero-benefits {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-benefits-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://page.gensparksite.com/v1/base64_upload/6681247989af07f377bf2d954c361246') center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-benefits-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(245, 158, 11, 0.3) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.hero-benefits-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 100%;
    margin-top: 8%;
}

.rotating-text-container {
    position: relative;
    height: 100px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: -15%;
    max-width: 350px;
}

.rotating-text {
    position: absolute;
    font-size: 3rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--white);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-in-out;
}

.rotating-text.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-benefits-subtitle {
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 0.95;
    line-height: 1.2;
    max-width: none;
    margin-top: 8rem;
    margin-left: 0;
    letter-spacing: 0.1em;
    word-spacing: 0.3em;
    transform: scaleX(1.2);
    transform-origin: center center;
    white-space: nowrap;
    overflow: visible;
    text-align: center;
    width: 100%;
}



/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Form */
.contact-form-container {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 600px;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--medium-gray);
}

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

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: var(--font-family);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

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

.submit-btn {
    background: var(--accent-gold);
    color: var(--white);
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-disclaimer {
    font-size: 0.9rem;
    color: var(--medium-gray);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.5;
}

/* Testimonials Carousel (within contact section) */
.testimonials-carousel {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--accent-gold);
    height: 75%;
    max-height: 500px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.testimonials-header h3 {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.testimonials-header p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.testimonial-slides-container {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-slides {
    position: relative;
    flex: 1;
    min-height: 320px;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease-in-out;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-quote {
    margin-bottom: 1.5rem;
}

.testimonial-quote i {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    display: block;
}

.testimonial-quote p {
    font-style: italic;
    line-height: 1.5;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.author-info span {
    display: block;
    color: var(--medium-gray);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.author-info .experience {
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    color: var(--accent-gold);
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

/* Testimonial Navigation */
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active,
.testimonial-dot:hover {
    background: var(--accent-gold);
    transform: scale(1.2);
}

/* Footer */
.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact i {
    color: var(--accent-gold);
    margin-right: 8px;
}

.footer-contact a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #d97706;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-benefits {
        min-height: 400px;
    }
    
    .hero-benefits-content {
        margin-top: 5%;
    }
    
    .rotating-text {
        font-size: 3rem;
    }
    
    .rotating-text-container {
        height: 90px;
        justify-content: center;
        margin-left: 0;
        max-width: none;
    }
    
    .hero-benefits-subtitle {
        font-size: 1rem;
        max-width: none;
        margin-top: 4rem;
        margin-left: 0;
        letter-spacing: 0.08em;
        word-spacing: 0.2em;
        transform: scaleX(1.1);
        white-space: nowrap;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        max-width: none;
        padding: 2rem 1.5rem;
    }
    
    .testimonials-carousel {
        height: auto;
        min-height: 300px;
        max-height: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .nav {
        display: none;
    }
    
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 2rem;
    }
    
    .mission-problem {
        padding: 2rem;
    }
    
    .mission-solution h2 {
        font-size: 2rem;
    }
    
    .commitment-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    

    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container,
    .mission-card {
        padding: 2rem 1.5rem;
    }
    
    .mission-problem {
        padding: 1.5rem;
    }
    
    .mission-problem h3 {
        font-size: 1.5rem;
    }
    
    .mission-solution h2 {
        font-size: 1.8rem;
    }
    
    .mission-tagline {
        font-size: 1.1rem;
    }
    
    .commitment-content {
        padding: 0 1rem;
    }
    
    .commitment-content h2 {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .testimonials-carousel {
        padding: 1.5rem 1.25rem;
    }
    
    .testimonials-header h3 {
        font-size: 1.3rem;
    }
    
    .testimonial-slides {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .hero-benefits {
        min-height: 350px;
    }
    
    .hero-benefits-content {
        margin-top: 15%;
    }
    
    .rotating-text {
        font-size: 2.5rem;
    }
    
    .rotating-text-container {
        height: 80px;
        margin-bottom: 1.5rem;
        margin-left: 0;
        max-width: none;
        justify-content: center;
    }
    
    .hero-benefits-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
        margin-top: 3rem;
        margin-left: 0;
        letter-spacing: 0.05em;
        word-spacing: 0.15em;
        transform: scaleX(1.05);
        white-space: nowrap;
    }
    

    
    .testimonials-carousel {
        padding: 1.25rem 1rem;
        height: auto;
        min-height: 250px;
    }
    
    .testimonials-header h3 {
        font-size: 1.15rem;
    }
    
    .testimonial-slides {
        min-height: 200px;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .rating {
        align-self: flex-end;
    }
}

/* Form Validation Styles */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #ef4444;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: var(--success-green);
}

/* Loading State */
.submit-btn:disabled {
    background: var(--medium-gray);
    cursor: not-allowed;
    transform: none;
}

.submit-btn.loading {
    background: var(--medium-gray);
}

.submit-btn.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}