/* ============================================================================
   CORPORATE TAXI SERVICES - PROFESSIONAL STYLING
   Business-focused design for B2B corporate pages
   Matching main website theme: Light White, Green & Black Professional
   ============================================================================ */

/* Corporate Hero Section */
.corporate-hero {
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e5e7eb;
}

.corporate-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.03) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-radius: 0 0 0 100px;
}

.hero-overlay {
    display: none;
}

.corporate-hero .container {
    position: relative;
    z-index: 1;
}

.corporate-hero .hero-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #1a1a1a;
}

.hero-title i {
    color: #16a34a;
    margin-right: 10px;
    font-size: 2.5rem;
}

.hero-title .subtitle {
    display: block;
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 15px;
    color: #16a34a;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #4b5563;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-badge {
    background: white;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid #e5e7eb;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    border-color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.1);
}

.feature-badge i {
    color: #16a34a;
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-button.primary {
    background: #22c55e;
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.cta-button.primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.cta-button.secondary {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-button.secondary:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.hero-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Partnership Benefits Section */
.partnership-benefits {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #16a34a, #22c55e);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header h2 i {
    color: #16a34a;
    margin-right: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.benefit-card:hover {
    border-color: #16a34a;
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.15);
    transform: translateY(-5px);
}

.benefit-card.featured {
    background: white;
    border: 3px solid #16a34a;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.15);
}

.benefit-card.featured .benefit-icon {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
}

.benefit-card.featured h3 {
    color: #16a34a;
}

.benefit-card.featured p {
    color: #4b5563;
}

.benefit-card.featured li {
    color: #374151;
}

.benefit-card.featured::before {
    content: '⭐ Featured';
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 15px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #374151;
    font-size: 0.95rem;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

/* Corporate Packages Section */
.corporate-packages {
    padding: 80px 0;
    background: #f9fafb;
}

.corporate-packages h2 {
    font-size: 2rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 15px;
}

.corporate-packages h2 i {
    color: #16a34a;
    margin-right: 10px;
}

.section-intro {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.corporate-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.corporate-table thead {
    background: linear-gradient(135deg, #1a1a1a 0%, #16a34a 100%);
    color: white;
}

.corporate-table thead th {
    padding: 18px;
    font-weight: 600;
    text-align: left;
}

.corporate-table tbody tr:nth-child(even) {
    background: #f9fafb;
}

.corporate-table tbody td {
    padding: 16px 18px;
    border-bottom: 1px solid #e5e7eb;
}

.package-note,
.rate-note {
    background: #f0fdf4;
    border-left: 4px solid #16a34a;
    padding: 20px;
    margin-top: 30px;
    border-radius: 8px;
}

.package-note i,
.rate-note i {
    color: #16a34a;
    margin-right: 8px;
}

/* Use Cases Section */
.use-cases-section {
    padding: 80px 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.use-case-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.use-case-card:hover {
    border-color: #16a34a;
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.1);
    transform: translateY(-3px);
}

.use-case-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #16a34a;
    margin: 0 auto 20px;
}

.use-case-card h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.use-case-card p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.use-case-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tag {
    background: #f0fdf4;
    color: #166534;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Outstation Section */
.outstation-section {
    padding: 80px 0;
    background: #f9fafb;
}

.outstation-section h2 {
    font-size: 2rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 15px;
}

.outstation-section h2 i {
    color: #16a34a;
    margin-right: 10px;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-card {
    background: white;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.industries-served {
    text-align: center;
    margin-top: 50px;
}

.industries-served h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 600;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.industry-tag {
    background: white;
    border: 2px solid #e5e7eb;
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.industry-tag:hover {
    background: #f0fdf4;
    border-color: #16a34a;
    color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.1);
}

.industry-tag i {
    color: #16a34a;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: #16a34a;
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.15);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3rem;
    color: #16a34a;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.step p {
    color: #6b7280;
    line-height: 1.6;
}

.step-connector {
    font-size: 2rem;
    color: #16a34a;
}

/* Corporate CTA Section */
.corporate-cta-section {
    background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 100%);
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #4b5563;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.1rem;
    flex-direction: column;
    gap: 5px;
}

.cta-button.large strong {
    font-size: 1.2rem;
}

.cta-button.large small {
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #1a1a1a;
}

.cta-feature i {
    color: #16a34a;
    font-size: 1.2rem;
}

/* Corporate FAQ Section */
.corporate-faq {
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: visible !important;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #16a34a;
}

.faq-item.active {
    border-color: #16a34a;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin: 0;
    font-weight: 600;
    flex: 1;
    pointer-events: none;
}

.faq-question i {
    color: #16a34a;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease;
    padding: 0 30px;
    background: #f9fafb;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px !important;
    padding: 25px 30px !important;
    opacity: 1;
    overflow: visible;
}

.faq-answer p {
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
    padding-top: 10px;
    display: block;
}

/* Coverage Section */
.coverage-section {
    padding: 80px 0;
    background: #f9fafb;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.coverage-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.coverage-card:hover {
    border-color: #16a34a;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.1);
    transform: translateY(-3px);
}

.coverage-card i {
    font-size: 2.5rem;
    color: #16a34a;
    margin-bottom: 15px;
}

.coverage-card h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 600;
}

.coverage-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .corporate-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-title .subtitle {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .benefits-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .corporate-hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .trust-stats {
        grid-template-columns: 1fr;
    }

    .industry-tags {
        flex-direction: column;
    }

    .industry-tag {
        width: 100%;
        justify-content: center;
    }
}
