/* Corporate & Student Pages - Minimal Professional Design */
:root {
    --corp-white: #ffffff;
    --corp-black: #000000;
    --corp-orange: #ec6810;
    --corp-gray: #f8f8f8;
    --corp-text: #1a1a1a;
    --corp-muted: #666666;
    --corp-border: #e5e5e5;
}

/* Fleet-Style Hero Container */
.corp-hero-container,
.student-hero-container {
    max-width: 1200px;
    margin: 100px auto 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

/* Hero Section - Fleet Style */
.corp-hero,
.student-hero {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: var(--corp-white);
    text-align: center;
    position: relative;
}

.corp-hero::after,
.student-hero::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    z-index: 0;
}

.corp-hero .container,
.student-hero .container {
    position: relative;
    z-index: 1;
}

.corp-hero h1,
.student-hero h1 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6), -1px -1px 0 rgba(0,0,0,0.5), 1px -1px 0 rgba(0,0,0,0.5), -1px 1px 0 rgba(0,0,0,0.5), 1px 1px 0 rgba(0,0,0,0.5);
}

.corp-hero .lead,
.student-hero .lead {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), -1px -1px 0 rgba(0,0,0,0.4), 1px -1px 0 rgba(0,0,0,0.4), -1px 1px 0 rgba(0,0,0,0.4), 1px 1px 0 rgba(0,0,0,0.4);
    line-height: 1.5;
}

/* Buttons */
.corp-btn-primary {
    display: inline-block;
    background: var(--corp-black);
    color: var(--corp-white);
    padding: 16px 36px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--corp-black);
}

.corp-btn-primary:hover {
    background: transparent;
    color: var(--corp-black);
}

.corp-btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--corp-white);
    padding: 16px 36px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--corp-white);
}

.corp-btn-secondary:hover {
    background: var(--corp-white);
    color: var(--corp-black);
}

.student-btn-primary {
    display: inline-block;
    background: var(--corp-white);
    color: var(--corp-black);
    padding: 16px 36px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--corp-white);
}

.student-btn-primary:hover {
    background: transparent;
    color: var(--corp-white);
}

.student-btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--corp-white);
    padding: 16px 36px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--corp-white);
}

.student-btn-secondary:hover {
    background: var(--corp-white);
    color: var(--corp-black);
}

/* Section Base */
.corp-section,
.student-section {
    padding: 100px 0;
}

.corp-section-alt,
.student-section-alt {
    background: var(--corp-gray);
}

.corp-section-title,
.student-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.corp-section-title h2,
.student-section-title h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--corp-text);
    margin-bottom: 12px;
}

.corp-section-title p,
.student-section-title p {
    font-size: 18px;
    color: var(--corp-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Trust Grid */
.corp-trust-grid,
.student-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.corp-trust-item,
.student-trust-item {
    text-align: center;
    padding: 20px;
}

.corp-trust-item i,
.student-trust-item i {
    font-size: 36px;
    color: var(--corp-black);
    margin-bottom: 20px;
    display: inline-block;
    transition: color 0.3s ease;
}

.corp-trust-item:hover i,
.student-trust-item:hover i {
    color: var(--corp-orange);
}

.corp-trust-item h4,
.student-trust-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--corp-text);
    margin-bottom: 8px;
}

.corp-trust-item p,
.student-trust-item p {
    font-size: 15px;
    color: var(--corp-muted);
    line-height: 1.5;
    margin: 0;
}

/* Services Grid */
.corp-services-grid,
.student-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.corp-service-card,
.student-service-card {
    background: var(--corp-white);
    padding: 40px 30px;
    border-top: 3px solid var(--corp-black);
    transition: all 0.3s ease;
    position: relative;
}

.corp-service-card:hover,
.student-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-top-color: var(--corp-orange);
}

.corp-service-icon,
.student-service-icon {
    width: 52px;
    height: 52px;
    background: var(--corp-black);
    color: var(--corp-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.corp-service-card:hover .corp-service-icon,
.student-service-card:hover .student-service-icon {
    background: var(--corp-orange);
}

.corp-service-card h4,
.student-service-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--corp-text);
    margin-bottom: 12px;
}

.corp-service-card p,
.student-service-card p {
    font-size: 15px;
    color: var(--corp-muted);
    line-height: 1.6;
    margin: 0;
}

/* Split Section (Form + Content) */
.corp-split-section,
.student-split-section {
    background: var(--corp-black);
    color: var(--corp-white);
    padding: 100px 0;
}

.corp-split-content h2,
.student-split-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--corp-orange);
}

/* Services List Format - Text paragraphs instead of cards */
.corp-services-list,
.student-services-list {
    max-width: 900px;
    margin: 0 auto;
}

.corp-service-item,
.student-service-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--corp-border);
}

.corp-service-item:last-child,
.student-service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.corp-service-item i,
.student-service-item i {
    font-size: 28px;
    color: var(--corp-black);
    flex-shrink: 0;
    margin-top: 4px;
}

.corp-service-item:hover i,
.student-service-item:hover i {
    color: var(--corp-orange);
}

.corp-service-text h4,
.student-service-text h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--corp-text);
    margin-bottom: 8px;
}

.corp-service-text p,
.student-service-text p {
    font-size: 16px;
    color: var(--corp-muted);
    line-height: 1.7;
    margin: 0;
}

.corp-split-content .lead,
.student-split-content .lead {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.corp-location-tags,
.student-destination-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.corp-location-tag,
.student-destination-tag {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--corp-white);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.corp-location-tag:hover,
.student-destination-tag:hover {
    background: var(--corp-white);
    color: var(--corp-black);
    border-color: var(--corp-white);
}

/* Form Card */
.corp-form-card,
.student-form-card {
    background: var(--corp-white);
    padding: 40px;
    border: 1px solid var(--corp-border);
    border-radius: 2px;
}

.corp-form-card h3,
.student-form-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--corp-text);
    margin-bottom: 30px;
}

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

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

.corp-form-group input,
.corp-form-group select,
.student-form-group input,
.student-form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--corp-border);
    border-radius: 2px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--corp-white);
}

.corp-form-group input:focus,
.corp-form-group select:focus,
.student-form-group input:focus,
.student-form-group select:focus {
    outline: none;
    border-color: var(--corp-black);
}

.corp-form-submit,
.student-form-submit {
    width: 100%;
    padding: 16px;
    background: var(--corp-black);
    color: var(--corp-white);
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.corp-form-submit:hover,
.student-form-submit:hover {
    background: var(--corp-orange);
}

/* Testimonial Section */
.corp-testimonial {
    background: var(--corp-gray);
    padding: 100px 0;
}

.corp-testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    background: var(--corp-white);
    border: 1px solid var(--corp-border);
}

.corp-testimonial-card i {
    font-size: 48px;
    color: var(--corp-border);
    margin-bottom: 30px;
    display: inline-block;
}

.corp-testimonial-card blockquote {
    font-size: 24px;
    color: var(--corp-text);
    line-height: 1.5;
    margin-bottom: 40px;
    font-weight: 400;
}

.corp-testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--corp-text);
    margin-bottom: 4px;
}

.corp-testimonial-role {
    font-size: 14px;
    color: var(--corp-muted);
}

/* Fleet Section - Student Page */
.student-fleet {
    background: var(--corp-white);
    padding: 100px 0;
}

.student-fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.student-fleet-card {
    background: var(--corp-gray);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--corp-border);
}

.student-fleet-card:hover {
    background: var(--corp-black);
    color: var(--corp-white);
}

.student-fleet-card:hover h4 {
    color: var(--corp-white);
}

.student-fleet-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.student-fleet-card.featured {
    background: var(--corp-black);
    color: var(--corp-white);
}

.student-fleet-card.featured h4 {
    color: var(--corp-white);
}

.student-fleet-card.featured p {
    color: rgba(255, 255, 255, 0.8);
}

.student-fleet-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--corp-text);
    margin-bottom: 8px;
}

.student-fleet-card p {
    font-size: 15px;
    color: var(--corp-muted);
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .corp-hero h1,
    .student-hero h1 {
        font-size: 40px;
    }

    .corp-trust-grid,
    .student-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .corp-services-grid,
    .student-services-grid,
    .student-fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .corp-testimonial-card {
        padding: 40px;
    }

    .corp-testimonial-card blockquote {
        font-size: 20px;
    }

    .corp-hero-container,
    .student-hero-container {
        margin: 10px;
        border-radius: 10px;
    }
}

@media (max-width: 767px) {
    .corp-hero,
    .student-hero {
        padding: 80px 0;
    }

    .corp-hero h1,
    .student-hero h1 {
        font-size: 32px;
    }

    .corp-hero .lead,
    .student-hero .lead {
        font-size: 18px;
    }

    .corp-section,
    .student-section,
    .student-fleet,
    .corp-testimonial {
        padding: 60px 0;
    }

    .corp-section-title h2,
    .student-section-title h2 {
        font-size: 28px;
    }

    .corp-trust-grid,
    .student-trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .corp-services-grid,
    .student-services-grid,
    .student-fleet-grid {
        grid-template-columns: 1fr;
    }

    .corp-form-card,
    .student-form-card {
        padding: 30px;
        margin-top: 40px;
    }

    .corp-btn-primary,
    .corp-btn-secondary,
    .student-btn-primary,
    .student-btn-secondary {
        display: block;
        width: 100%;
        margin-bottom: 12px;
        text-align: center;
    }

    .corp-split-content h2,
    .student-split-content h2 {
        font-size: 28px;
    }
}
