.elementor-248 .elementor-element.elementor-element-22d889c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-e282930 */@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Noto+Sans:wght@400;500;700&display=swap');

.airport-commercial-wrapper {
    font-family: 'Plus Jakarta Sans', 'Noto Sans', sans-serif;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 0;
    font-size: 14px;
}

.breadcrumbs a {
    color: #922cf2;
    font-weight: 600;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: #9ca3af;
}

.breadcrumbs .current {
    color: #150d1c;
    font-weight: 600;
}

/* Page Header */
.page-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 40px 0;
    align-items: start;
}

@media (max-width: 768px) {
    .page-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.header-content h1 {
    font-size: 40px;
    font-weight: 800;
    color: #150d1c;
    line-height: 1.15;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
}

.header-content p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 24px 0;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-avatars {
    display: flex;
    margin-left: -8px;
}

.trust-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -8px;
    background: #e5e7eb;
}

.trust-text {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

.header-image {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.image-badge i {
    font-size: 16px;
}

/* Service Overview Box */
.service-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    margin: 40px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-box h2 {
    font-size: 22px;
    font-weight: 700;
    color: #150d1c;
    margin: 0 0 16px 0;
}

.service-box p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Process Section */
.process-section {
    padding: 60px 0;
}

.process-section h2 {
    font-size: 28px;
    font-weight: 800;
    color: #150d1c;
    margin: 0 0 48px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
}

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}

@media (max-width: 900px) {
    .process-steps::before {
        display: none;
    }
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: #fff;
    border: 3px solid #f9fafb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    transition: transform 0.3s;
}

.process-step:hover .step-icon {
    transform: scale(1.1);
}

.step-icon.primary {
    background: #922cf2;
    border-color: #922cf2;
}

.step-icon.primary i {
    color: #fff;
}

.step-icon.secondary {
    border-color: #922cf2;
}

.step-icon.secondary i {
    color: #922cf2;
}

.step-icon i {
    font-size: 24px;
}

.process-step h3 {
    font-size: 16px;
    font-weight: 700;
    color: #150d1c;
    margin: 0 0 8px 0;
}

.process-step p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Fleet Section - Reusing Previous Code */
.fleet-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 48px 32px;
    margin: 60px 0;
}

.fleet-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 40px;
}

.fleet-header-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: #150d1c;
    margin: 0 0 8px 0;
}

.fleet-header-text p {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

.fleet-link {
    color: #922cf2;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

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

@media (max-width: 640px) {
    .fleet-link {
        display: none;
    }
}

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

@media (max-width: 900px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
}

.fleet-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 16px;
    transition: all 0.3s;
}

.fleet-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.fleet-card-image {
    position: relative;
    width: 100%;
    height: 180px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.fleet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}

.fleet-card:hover .fleet-card-image img {
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #922cf2;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
}

.fleet-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #150d1c;
    margin: 0 0 4px 0;
}

.fleet-card-subtitle {
    font-size: 12px;
    color: #9ca3af;
    margin: 0 0 12px 0;
}

.fleet-specs {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.fleet-spec {
    display: flex;
    align-items: center;
    gap: 4px;
}

.fleet-spec i {
    font-size: 16px;
}

.fleet-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.fleet-price-label {
    font-size: 11px;
    color: #9ca3af;
    margin-bottom: 2px;
}

.fleet-price-amount {
    font-size: 20px;
    font-weight: 800;
    color: #922cf2;
}

.fleet-price-amount span {
    font-size: 12px;
    font-weight: 400;
    color: #6b7280;
}

.fleet-select-btn {
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #150d1c;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.fleet-select-btn:hover {
    border-color: #922cf2;
    color: #922cf2;
}

.fleet-link-mobile {
    display: none;
    text-align: center;
    margin-top: 24px;
}

@media (max-width: 640px) {
    .fleet-link-mobile {
        display: block;
    }
}

/* Why Choose Section */
.why-section {
    padding: 40px 0;
}

.why-section h2 {
    font-size: 28px;
    font-weight: 800;
    color: #150d1c;
    margin: 0 0 32px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

.why-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.why-card:hover {
    background: #fff;
    border-color: #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.why-icon {
    width: 40px;
    height: 40px;
    background: rgba(146, 44, 242, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    font-size: 24px;
    color: #922cf2;
}

.why-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #150d1c;
    margin: 0 0 8px 0;
}

.why-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Pricing Table */
.pricing-section {
    padding: 40px 0;
}

.pricing-table {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table thead {
    background: #f9fafb;
}

.pricing-table th {
    padding: 16px 24px;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: #150d1c;
}

.pricing-table th:last-child {
    text-align: right;
}

.pricing-table tbody tr {
    border-top: 1px solid #e5e7eb;
}

.pricing-table td {
    padding: 16px 24px;
    font-size: 15px;
    color: #4b5563;
}

.pricing-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.price-free {
    color: #10b981;
    font-weight: 700;
}

.price-included {
    color: #10b981;
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    padding: 40px 0;
}

.faq-section h2 {
    font-size: 28px;
    font-weight: 800;
    color: #150d1c;
    margin: 0 0 32px 0;
    text-align: center;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item.open {
    border-color: #922cf2;
    box-shadow: 0 0 0 3px rgba(146, 44, 242, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    color: #150d1c;
    user-select: none;
}

.faq-question i {
    color: #922cf2;
    transition: transform 0.3s;
}

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

.faq-answer {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin-top: 16px;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

/* Resources */
.resources-section {
    padding: 40px 0;
}

.resources-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #150d1c;
    margin: 0 0 16px 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 640px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.resource-link:hover {
    border-color: #922cf2;
    box-shadow: 0 2px 8px rgba(146, 44, 242, 0.15);
}

.resource-link:hover i {
    transform: scale(1.1);
}

.resource-link i {
    font-size: 24px;
    color: #922cf2;
    transition: transform 0.3s;
}

.resource-link span {
    font-size: 14px;
    font-weight: 600;
    color: #150d1c;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #922cf2 0%, #7423c2 100%);
    border-radius: 20px;
    padding: 60px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 60px 0 40px;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.cta-section::before {
    top: -150px;
    left: -150px;
}

.cta-section::after {
    bottom: -150px;
    right: -150px;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px 0;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 32px 0;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-btn-primary {
    background: #fff;
    color: #922cf2;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover {
    background: #f9fafb;
    transform: translateY(-2px);
}

.cta-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.cta-btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 32px;
    }
    
    .process-section h2,
    .why-section h2,
    .faq-section h2 {
        font-size: 24px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}/* End custom CSS */