/* ============================================
    TRAVEL SERVICES TRICHY - FULL WIDTH SECTION
    Background: #ffffff
============================================= */
.travel-services-full {
    padding: 50px 40px 50px;
    background: #ffffff;
    position: relative;
}

.travel-services-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F59E0B 30%, #F59E0B 70%, transparent);
}

.travel-services-full-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

/* ---- Content ---- */
.travel-services-full-content {
    padding-right: 40px;
}

.travel-services-full-badge {
    display: inline-block;
    font-size: 13px;
    color: #F59E0B;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(245, 158, 11, 0.08);
    padding: 4px 20px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.travel-services-full-title {
    font-size: 46px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 4px;
    line-height: 1.15;
}

.travel-services-full-title span {
    color: #F59E0B;
}

.travel-services-full-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 3px;
}

.travel-services-full-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #0B5ED7;
    margin-bottom: 14px;
}

.travel-services-full-divider {
    width: 60px;
    height: 3px;
    background: #F59E0B;
    margin-bottom: 20px;
    border-radius: 3px;
}

.travel-services-full-text {
    font-size: 16px;
    color: #1a2a3b;
    line-height: 1.9;
    text-align: justify;
    margin-bottom: 16px;
}

.travel-services-full-text--highlight {
    padding: 16px 22px;
    background: #f8fafc;
    border-left: 4px solid #F59E0B;
    border-radius: 0 12px 12px 0;
    font-weight: 500;
}

.travel-services-full-text--last {
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    background: #0A2540;
    padding: 18px 24px;
    border-radius: 14px;
    margin-bottom: 0;
}

.travel-services-full-text--last::before {
    content: '✦ ';
    color: #F59E0B;
    font-weight: 700;
}

/* ---- Image ---- */
.travel-services-full-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.travel-services-full-image img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}

.travel-services-full-image:hover img {
    transform: scale(1.03);
}

.travel-services-full-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #0A2540;
    padding: 14px 24px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.travel-services-full-image-badge--right {
    left: auto;
    right: 30px;
    background: #F59E0B;
}

.travel-services-full-image-badge--right .travel-services-full-image-number {
    color: #ffffff;
}

.travel-services-full-image-badge--right .travel-services-full-image-label {
    color: rgba(255, 255, 255, 0.7);
}

.travel-services-full-image-number {
    font-size: 28px;
    font-weight: 800;
    color: #F59E0B;
    line-height: 1.2;
}

.travel-services-full-image-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
    RESPONSIVE
============================================= */
@media (max-width: 1200px) {
    .travel-services-full { padding: 70px 30px 80px; }
    .travel-services-full-title { font-size: 40px; }
}

@media (max-width: 992px) {
    .travel-services-full { padding: 60px 25px 70px; }
    .travel-services-full-content { padding-right: 0; }
    .travel-services-full-title { font-size: 36px; }
    .travel-services-full-subtitle { font-size: 20px; }
    .travel-services-full-image { margin-top: 35px; }
}

@media (max-width: 768px) {
    .travel-services-full { padding: 50px 20px 60px; }
    .travel-services-full-title { font-size: 30px; }
    .travel-services-full-subtitle { font-size: 18px; }
    .travel-services-full-text { font-size: 15px; }
    .travel-services-full-text--highlight { padding: 14px 16px; }
    .travel-services-full-text--last { font-size: 15px; padding: 16px 18px; }
    .travel-services-full-image-badge { bottom: 20px; left: 20px; padding: 12px 18px; }
    .travel-services-full-image-badge--right { right: 20px; }
    .travel-services-full-image-number { font-size: 24px; }
}

@media (max-width: 576px) {
    .travel-services-full { padding: 40px 16px 50px; }
    .travel-services-full-title { font-size: 24px; }
    .travel-services-full-badge { font-size: 11px; padding: 3px 14px; }
    .travel-services-full-subtitle { font-size: 15px; }
    .travel-services-full-text { font-size: 14px; }
    .travel-services-full-text--highlight { padding: 12px 14px; }
    .travel-services-full-text--last { font-size: 14px; padding: 14px 16px; }
    .travel-services-full-image-badge { bottom: 16px; left: 16px; padding: 10px 14px; }
    .travel-services-full-image-badge--right { right: 16px; }
    .travel-services-full-image-number { font-size: 20px; }
    .travel-services-full-image-label { font-size: 10px; }
}

@media (max-width: 400px) {
    .travel-services-full { padding: 30px 12px 40px; }
    .travel-services-full-title { font-size: 20px; }
    .travel-services-full-subtitle { font-size: 13px; }
    .travel-services-full-text { font-size: 13px; }
    .travel-services-full-text--last { font-size: 13px; padding: 12px 14px; }
    .travel-services-full-image-badge { bottom: 12px; left: 12px; padding: 8px 12px; }
    .travel-services-full-image-badge--right { right: 12px; }
    .travel-services-full-image-number { font-size: 16px; }
    .travel-services-full-image-label { font-size: 8px; }
}
/* ============================================
    COMPLETE TRAVEL SERVICES - DESIGN 1 (Split Layout)
    Background: #0A2540
============================================= */
.complete-services-split {
    padding: 50px 0px;
    background: #0A2540;
    position: relative;
}

.complete-services-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F59E0B 30%, #F59E0B 70%, transparent);
}

.complete-services-split::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F59E0B 30%, #F59E0B 70%, transparent);
}

.complete-services-split-wrapper {
    max-width: 1140px;
    margin: 0 auto;
}

/* ---- Content ---- */
.complete-services-split-content {
    padding-right: 40px;
}

.complete-services-split-badge {
    display: inline-block;
    font-size: 13px;
    color: #F59E0B;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(245, 158, 11, 0.08);
    padding: 4px 18px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.complete-services-split-title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.complete-services-split-title span {
    color: #F59E0B;
}

.complete-services-split-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 3px;
}

.complete-services-split-divider {
    width: 50px;
    height: 3px;
    background: #F59E0B;
    margin-bottom: 18px;
    border-radius: 3px;
}

.complete-services-split-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    text-align: justify;
    margin-bottom: 16px;
}

.complete-services-split-text--last {
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    padding: 16px 20px;
    background: rgba(245, 158, 11, 0.06);
    border-left: 4px solid #F59E0B;
    border-radius: 0 12px 12px 0;
    margin-bottom: 0;
}

/* ---- Features ---- */
.complete-services-split-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.complete-services-split-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.complete-services-split-feature:last-child {
    border-bottom: none;
}

.complete-services-split-feature--full {
    grid-column: span 2;
}

.complete-services-split-icon {
    color: #F59E0B;
    font-size: 12px;
    flex-shrink: 0;
}

.complete-services-split-feature span:last-child {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================
    RESPONSIVE - DESIGN 1
============================================= */
@media (max-width: 992px) {
    .complete-services-split { padding: 70px 0 80px; }
    .complete-services-split-title { font-size: 34px; }
    .complete-services-split-content { padding-right: 0; }
    .complete-services-split-features { margin-top: 30px; }
}

@media (max-width: 768px) {
    .complete-services-split { padding: 60px 0 70px; }
    .complete-services-split-title { font-size: 28px; }
    .complete-services-split-text { font-size: 15px; }
    .complete-services-split-text--last { font-size: 15px; padding: 14px 16px; }
    .complete-services-split-features { grid-template-columns: 1fr; padding: 16px 18px; }
    .complete-services-split-feature--full { grid-column: span 1; }
    .complete-services-split-feature span:last-child { font-size: 14px; }
}

@media (max-width: 576px) {
    .complete-services-split { padding: 50px 0 60px; }
    .complete-services-split-title { font-size: 22px; }
    .complete-services-split-badge { font-size: 11px; padding: 3px 14px; }
    .complete-services-split-text { font-size: 14px; }
    .complete-services-split-text--last { font-size: 14px; padding: 12px 14px; }
    .complete-services-split-features { padding: 12px 14px; gap: 6px; }
    .complete-services-split-feature { padding: 6px 0; }
    .complete-services-split-feature span:last-child { font-size: 13px; }
}
/* ============================================
    SERVICE DETAIL - ALL SERVICES
    Background: Alternating White and Dark
============================================= */

/* ---- White Background ---- */
.service-detail--white {
    padding: 50px 0px;
    background: #ffffff;
    position: relative;
}

.service-detail--white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #F59E0B 30%, #F59E0B 70%, transparent);
}

.service-detail--white .service-detail-number {
    color: rgba(245, 158, 11, 0.2);
}

.service-detail--white .service-detail-title {
    color: #0A2540;
}

.service-detail--white .service-detail-text {
    color: #1a2a3b;
}

.service-detail--white .service-detail-text--last {
    color: #0A2540;
    background: #f8fafc;
    border-left: 4px solid #F59E0B;
}

.service-detail--white .service-detail-item span:last-child {
    color: #0A2540;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* ---- Dark Background ---- */
.service-detail--dark {
    padding: 60px 0 70px;
    background: #0A2540;
    position: relative;
}

.service-detail--dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #F59E0B 30%, #F59E0B 70%, transparent);
}

.service-detail--dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #F59E0B 30%, #F59E0B 70%, transparent);
}

.service-detail--dark .service-detail-number {
    color: rgba(245, 158, 11, 0.15);
}

.service-detail--dark .service-detail-title {
    color: #ffffff;
}

.service-detail--dark .service-detail-text {
    color: rgba(255, 255, 255, 0.8);
}

.service-detail--dark .service-detail-text--last {
    color: #ffffff;
    background: rgba(245, 158, 11, 0.06);
    border-left: 4px solid #F59E0B;
}

.service-detail--dark .service-detail-item span:last-child {
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.service-detail--dark .service-detail-badge {
    background: rgba(245, 158, 11, 0.1);
}

/* ---- Common Styles ---- */
.service-detail-wrapper {
    max-width: 1140px;
    margin: 0 auto;
}

/* ---- Content ---- */
.service-detail-content {
    padding-right: 30px;
}

.service-detail-number {
    font-size: 14px;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
}

.service-detail-badge {
    display: inline-block;
    font-size: 12px;
    color: #F59E0B;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 16px;
    border-radius: 30px;
    margin-bottom: 10px;
}

.service-detail-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.service-detail-title span {
    color: #F59E0B;
}

.service-detail-divider {
    width: 50px;
    height: 3px;
    background: #F59E0B;
    margin-bottom: 16px;
    border-radius: 3px;
}

.service-detail-text {
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 14px;
}

.service-detail-text--last {
    font-size: 16px;
    font-weight: 500;
    padding: 14px 18px;
    border-radius: 0 10px 10px 0;
    margin-top: 4px;
    margin-bottom: 16px;
}

/* ---- Button ---- */
.service-detail-button {
    margin-top: 6px;
}

.service-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: #F59E0B;
    color: #ffffff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s;
    border: none;
}

.service-detail-btn:hover {
    background: #0A2540;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.service-detail-btn i {
    font-size: 14px;
    transition: transform 0.3s;
}

.service-detail-btn:hover i {
    transform: translateX(5px);
}

.service-detail-btn--dark {
    background: #F59E0B;
    color: #ffffff;
}

.service-detail-btn--dark:hover {
    background: #ffffff;
    color: #0A2540;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

/* ---- List ---- */
.service-detail-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 20px;
    margin-bottom: 14px;
}

.service-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
}

.service-detail-item--full {
    grid-column: span 2;
}

.service-detail-icon {
    color: #F59E0B;
    font-size: 11px;
    flex-shrink: 0;
}

.service-detail-item span:last-child {
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 4px;
}

/* ---- Image ---- */
.service-detail-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.service-detail-image img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}

.service-detail-image:hover img {
    transform: scale(1.03);
}

.service-detail-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 37, 64, 0.9);
    padding: 10px 18px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
}

.service-detail-image-badge--right {
    left: auto;
    right: 20px;
    background: rgba(245, 158, 11, 0.9);
}

.service-detail-image-badge--right .service-detail-image-year {
    color: #ffffff;
}

.service-detail-image-badge--right .service-detail-image-label {
    color: rgba(255, 255, 255, 0.7);
}

.service-detail-image-year {
    font-size: 22px;
    font-weight: 800;
    color: #F59E0B;
    line-height: 1.2;
}

.service-detail-image-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
    RESPONSIVE
============================================= */
@media (max-width: 992px) {
    .service-detail--white,
    .service-detail--dark {
        padding: 50px 0 60px;
    }
    .service-detail-content {
        padding-right: 0;
    }
    .service-detail-title {
        font-size: 30px;
    }
    .service-detail-image {
        margin-top: 25px;
    }
    
}

@media (max-width: 768px) {
    .service-detail--white,
    .service-detail--dark {
        padding: 40px 0 50px;
    }
    .service-detail-title {
        font-size: 26px;
    }
    .service-detail-text {
        font-size: 14px;
    }
    .service-detail-text--last {
        font-size: 14px;
        padding: 12px 14px;
        margin-bottom: 12px;
    }
    .service-detail-list {
        grid-template-columns: 1fr;
        gap:2px;
    }
    .service-detail-item--full {
        grid-column: span 1;
    }
    .service-detail-item span:last-child {
        font-size: 13px;
    }

    .service-detail-image-badge {
        bottom: 16px;
        left: 16px;
        padding: 8px 14px;
    }
    .service-detail-image-badge--right {
        right: 16px;
    }
    .service-detail-image-year {
        font-size: 18px;
    }
    .service-detail-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .service-detail--white,
    .service-detail--dark {
        padding: 30px 0 40px;
    }
    .service-detail-title {
        font-size: 22px;
    }
    .service-detail-badge {
        font-size: 10px;
        padding: 2px 12px;
    }
    .service-detail-number {
        font-size: 12px;
    }
    .service-detail-text {
        font-size: 13px;
    }
    .service-detail-text--last {
        font-size: 13px;
        padding: 10px 12px;
    }
    .service-detail-item span:last-child {
        font-size: 12px;
    }
   
    .service-detail-image-badge {
        bottom: 12px;
        left: 12px;
        padding: 6px 12px;
    }
    .service-detail-image-badge--right {
        right: 12px;
    }
    .service-detail-image-year {
        font-size: 15px;
    }
    .service-detail-image-label {
        font-size: 8px;
    }
    .service-detail-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
    .service-detail-button {
        text-align: center;
    }
}
/* ============================================
    SECTION 1: SAFETY IS OUR PRIORITY (White BG)
============================================= */
.safety-priority {
    padding: 70px 0 90px;
    background: #ffffff;
    position: relative;
}

.safety-priority::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F59E0B 30%, #F59E0B 70%, transparent);
}

.safety-priority-wrapper {
    max-width: 980px;
    margin: 0 auto;
}

.safety-priority-header {
    text-align: center;
    margin-bottom: 40px;
}

.safety-priority-badge {
    display: inline-block;
    font-size: 13px;
    color: #F59E0B;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(245, 158, 11, 0.08);
    padding: 4px 18px;
    border-radius: 30px;
    margin-bottom: 8px;
}

.safety-priority-title {
    font-size: 38px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 10px;
}

.safety-priority-title span {
    color: #F59E0B;
}


.safety-priority-divider {
    width: 50px;
    height: 3px;
    background: #F59E0B;
    margin: 0 auto 14px;
    border-radius: 3px;
}

.safety-priority-text {
    font-size: 16px;
    color: #1a2a3b;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    text-align: justify;
}

.safety-priority-block {
    padding: 24px 28px;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid #eef1f5;
    height: 100%;
    transition: all 0.4s;
}

.safety-priority-block:hover {
    border-color: #F59E0B;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.06);
}

.safety-priority-block-title {
    font-size: 18px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F59E0B;
}

.safety-priority-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.safety-priority-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    font-size: 15px;
    font-weight: 500;
    color: #0A2540;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.safety-priority-item:last-child {
    border-bottom: none;
}

.safety-priority-check {
    color: #F59E0B;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.safety-priority-footer {
    margin-top: 30px;
    padding: 20px 28px;
    background: #0A2540;
    border-radius: 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.safety-priority-footer i {
    color: #F59E0B;
    font-size: 18px;
    opacity: 0.4;
    flex-shrink: 0;
    margin-top: 2px;
}

.safety-priority-footer p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

/* ============================================
    SECTION 2: INDUSTRIES WE SERVE (Dark BG #0A2540)
============================================= */
.industries-serve {
    padding: 70px 0 90px;
    background: #0A2540;
    position: relative;
}

.industries-serve::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F59E0B 30%, #F59E0B 70%, transparent);
}

.industries-serve::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F59E0B 30%, #F59E0B 70%, transparent);
}

.industries-serve-wrapper {
    max-width: 980px;
    margin: 0 auto;
}

.industries-serve-header {
    text-align: center;
    margin-bottom: 35px;
}

.industries-serve-badge {
    display: inline-block;
    font-size: 13px;
    color: #F59E0B;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(245, 158, 11, 0.08);
    padding: 4px 18px;
    border-radius: 30px;
    margin-bottom: 8px;
}

.industries-serve-title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.industries-serve-title span {
    color: #F59E0B;
   
}

.industries-serve-divider {
    width: 50px;
    height: 3px;
    background: #F59E0B;
    margin: 0 auto 14px;
    border-radius: 3px;
}

.industries-serve-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    text-align: justify;
}

.industries-serve-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
}

.industries-serve-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.industries-serve-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.industries-serve-item:last-child {
    border-bottom: none;
}

.industries-serve-icon {
    color: #F59E0B;
    font-size: 12px;
    flex-shrink: 0;
}

.industries-serve-item span:last-child {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.industries-serve-footer {
    margin-top: 30px;
    padding: 18px 28px;
    background: rgba(245, 158, 11, 0.04);
    border: 1px solid rgba(245, 158, 11, 0.06);
    border-radius: 14px;
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
}

.industries-serve-footer-icon {
    color: #F59E0B;
    font-size: 18px;
    flex-shrink: 0;
}

.industries-serve-footer p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
    text-align: center;
}

@media (max-width: 767px) {
    .industries-serve-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px;
        border-bottom:none;
    }
}
/* ============================================
    SECTION 3: SERVICE AREAS - DESIGN 2 (Map Style)
    Background: #ffffff
============================================= */
.service-areas-v2 {
    padding: 70px 0 90px;
    background: #ffffff;
    position: relative;
}

.service-areas-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F59E0B 30%, #F59E0B 70%, transparent);
}

.service-areas-v2-wrapper {
    max-width: 980px;
    margin: 0 auto;
}

.service-areas-v2-header {
    text-align: center;
    margin-bottom: 40px;
}

.service-areas-v2-badge {
    display: inline-block;
    font-size: 13px;
    color: #F59E0B;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(245, 158, 11, 0.08);
    padding: 4px 18px;
    border-radius: 30px;
    margin-bottom: 8px;
}

.service-areas-v2-title {
    font-size: 38px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 10px;
}

.service-areas-v2-title span {
    color: #F59E0B;
   
}

.service-areas-v2-divider {
    width: 50px;
    height: 3px;
    background: #F59E0B;
    margin: 0 auto 14px;
    border-radius: 3px;
}

.service-areas-v2-text {
    font-size: 16px;
    color: #1a2a3b;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    text-align: justify;
}

.service-areas-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 25px 30px;
    background: #f8fafc;
    border: 1px solid #eef1f5;
    border-radius: 16px;
}

.service-areas-v2-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eef1f5;
    transition: all 0.4s;
}

.service-areas-v2-item:hover {
    border-color: #F59E0B;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.08);
}

.service-areas-v2-item--highlight {
    grid-column: span 2;
    background: #F59E0B;
    border-color: #F59E0B;
}

.service-areas-v2-item--highlight .service-areas-v2-info strong {
    color: #ffffff;
}

.service-areas-v2-item--highlight .service-areas-v2-info span {
    color: rgba(255, 255, 255, 0.7);
}

.service-areas-v2-item--highlight .service-areas-v2-icon {
    color: #ffffff;
}

.service-areas-v2-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.service-areas-v2-info {
    display: flex;
    flex-direction: column;
}

.service-areas-v2-info strong {
    font-size: 17px;
    font-weight: 700;
    color: #0A2540;
    line-height: 1.3;
}

.service-areas-v2-info span {
    font-size: 13px;
    color: #6b7a8f;
    font-weight: 400;
}

.service-areas-v2-footer {
    margin-top: 30px;
    padding: 20px 28px;
    background: #0A2540;
    border-radius: 14px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.service-areas-v2-footer i {
    font-size: 24px;
    color: #F59E0B;
    opacity: 0.5;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-areas-v2-footer p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}
@media (max-width: 767px) {
    .service-areas-v2-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 12px;
    }

    .service-areas-v2-item {
        width: 100%;
    }

    .service-areas-v2-item--highlight {
        grid-column: span 1;
    }

    .service-areas-v2-footer {
        flex-direction: column;
        text-align: center;
        padding: 18px;
    }

    .service-areas-v2-footer p {
        text-align: center;
    }
}/* ============================================
    RELIABLE TRAVEL - DESIGN 1 (Journey Steps)
    Background: #0A2540
============================================= */
.reliable-travel-v1 {
    padding: 70px 0 90px;
    background: #0A2540;
    position: relative;
}

.reliable-travel-v1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F59E0B 30%, #F59E0B 70%, transparent);
}

.reliable-travel-v1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F59E0B 30%, #F59E0B 70%, transparent);
}

.reliable-travel-v1-wrapper {
    max-width: 980px;
    margin: 0 auto;
}

.reliable-travel-v1-header {
    text-align: center;
    margin-bottom: 40px;
}

.reliable-travel-v1-badge {
    display: inline-block;
    font-size: 13px;
    color: #F59E0B;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(245, 158, 11, 0.08);
    padding: 4px 18px;
    border-radius: 30px;
    margin-bottom: 8px;
}

.reliable-travel-v1-title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.reliable-travel-v1-title span {
    color: #F59E0B;
    position: relative;
}

.reliable-travel-v1-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 3px;
}

.reliable-travel-v1-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.reliable-travel-v1-divider {
    width: 60px;
    height: 3px;
    background: #F59E0B;
    margin: 0 auto;
    border-radius: 3px;
}

.reliable-travel-v1-steps {
    padding-left: 30px;
    position: relative;
}

.reliable-travel-v1-steps::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(180deg, #F59E0B, rgba(245, 158, 11, 0.1));
    border-radius: 3px;
}

.reliable-travel-v1-step {
    display: flex;
    gap: 20px;
    padding: 16px 0;
    position: relative;
}

.reliable-travel-v1-step--last {
    padding-bottom: 0;
}

.reliable-travel-v1-step-num {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: #F59E0B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.reliable-travel-v1-step-content {
    flex: 1;
    padding-top: 2px;
}

.reliable-travel-v1-step-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

.reliable-travel-v1-step--last .reliable-travel-v1-step-content p {
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    padding: 12px 18px;
    background: rgba(245, 158, 11, 0.04);
    border-left: 4px solid #F59E0B;
    border-radius: 0 10px 10px 0;
}

.reliable-travel-v1-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 2px solid rgba(245, 158, 11, 0.08);
}

.reliable-travel-v1-stat {
    text-align: center;
}

.reliable-travel-v1-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #F59E0B;
    line-height: 1.2;
}

.reliable-travel-v1-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
    RELIABLE TRAVEL - DESIGN 2 (Grid Quote Style)
    Background: #0A2540
============================================= */
.reliable-travel-v2 {
    padding: 70px 0 90px;
    background: #0A2540;
    position: relative;
}

.reliable-travel-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F59E0B 30%, #F59E0B 70%, transparent);
}

.reliable-travel-v2-wrapper {
    max-width: 980px;
    margin: 0 auto;
}

.reliable-travel-v2-header {
    text-align: center;
    margin-bottom: 40px;
}

.reliable-travel-v2-badge {
    display: inline-block;
    font-size: 13px;
    color: #F59E0B;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(245, 158, 11, 0.08);
    padding: 4px 18px;
    border-radius: 30px;
    margin-bottom: 8px;
}

.reliable-travel-v2-title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.reliable-travel-v2-title span {
    color: #F59E0B;
  
}

.reliable-travel-v2-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.reliable-travel-v2-divider {
    width: 60px;
    height: 3px;
    background: #F59E0B;
    margin: 0 auto;
    border-radius: 3px;
}

.reliable-travel-v2-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 24px 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    transition: all 0.4s;
}

.reliable-travel-v2-box:hover {
    background: rgba(245, 158, 11, 0.03);
    border-color: rgba(245, 158, 11, 0.08);
    transform: translateY(-4px);
}

.reliable-travel-v2-box--highlight {
    background: rgba(245, 158, 11, 0.04);
    border-color: rgba(245, 158, 11, 0.08);
}

.reliable-travel-v2-box-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.reliable-travel-v2-box p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

.reliable-travel-v2-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 2px solid rgba(245, 158, 11, 0.08);
}

.reliable-travel-v2-stat {
    text-align: center;
}

.reliable-travel-v2-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #F59E0B;
    line-height: 1.2;
}

.reliable-travel-v2-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
    RELIABLE TRAVEL - DESIGN 3 (Split Layout)
    Background: #0A2540
============================================= */
.reliable-travel-v3 {
    padding: 70px 0 90px;
    background: #0A2540;
    position: relative;
}

.reliable-travel-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F59E0B 30%, #F59E0B 70%, transparent);
}

.reliable-travel-v3-wrapper {
    max-width: 980px;
    margin: 0 auto;
}

.reliable-travel-v3-header {
    text-align: center;
    margin-bottom: 40px;
}

.reliable-travel-v3-badge {
    display: inline-block;
    font-size: 13px;
    color: #F59E0B;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(245, 158, 11, 0.08);
    padding: 4px 18px;
    border-radius: 30px;
    margin-bottom: 8px;
}

.reliable-travel-v3-title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.reliable-travel-v3-title span {
    color: #F59E0B;
    position: relative;
}

.reliable-travel-v3-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 3px;
}

.reliable-travel-v3-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.reliable-travel-v3-divider {
    width: 60px;
    height: 3px;
    background: #F59E0B;
    margin: 0 auto;
    border-radius: 3px;
}

.reliable-travel-v3-left {
    padding-right: 20px;
}

.reliable-travel-v3-quote {
    background: rgba(255, 255, 255, 0.02);
    padding: 22px 24px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.reliable-travel-v3-quote i {
    color: #F59E0B;
    font-size: 18px;
    opacity: 0.3;
    flex-shrink: 0;
    margin-top: 2px;
}

.reliable-travel-v3-quote i:last-child {
    align-self: flex-end;
}

.reliable-travel-v3-quote p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
    text-align: justify;
    font-style: italic;
}

.reliable-travel-v3-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0;
    text-align: justify;
    padding: 4px 0;
}

.reliable-travel-v3-right {
    padding-left: 20px;
}

.reliable-travel-v3-message {
    background: rgba(245, 158, 11, 0.04);
    padding: 20px 24px;
    border-left: 4px solid #F59E0B;
    border-radius: 0 12px 12px 0;
    margin-bottom: 20px;
}

.reliable-travel-v3-message-icon {
    color: #F59E0B;
    font-size: 18px;
    display: block;
    margin-bottom: 6px;
}

.reliable-travel-v3-message p {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

.reliable-travel-v3-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    background: rgba(255, 255, 255, 0.02);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.reliable-travel-v3-stat {
    text-align: center;
    padding: 6px 0;
}

.reliable-travel-v3-stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #F59E0B;
    line-height: 1.2;
}

.reliable-travel-v3-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
    RESPONSIVE - ALL DESIGNS
============================================= */
@media (max-width: 992px) {
    .reliable-travel-v1,
    .reliable-travel-v2,
    .reliable-travel-v3 {
        padding: 60px 0 70px;
    }
    .reliable-travel-v1-title,
    .reliable-travel-v2-title,
    .reliable-travel-v3-title {
        font-size: 34px;
    }
    .reliable-travel-v3-left,
    .reliable-travel-v3-right {
        padding: 0;
    }
    .reliable-travel-v3-right {
        margin-top: 25px;
    }
}

@media (max-width: 768px) {
    .reliable-travel-v1,
    .reliable-travel-v2,
    .reliable-travel-v3 {
        padding: 50px 0 60px;
    }
    .reliable-travel-v1-title,
    .reliable-travel-v2-title,
    .reliable-travel-v3-title {
        font-size: 28px;
    }
    .reliable-travel-v1-subtitle,
    .reliable-travel-v2-subtitle,
    .reliable-travel-v3-subtitle {
        font-size: 18px;
    }
    .reliable-travel-v1-steps {
        padding-left: 20px;
    }
    .reliable-travel-v1-steps::before {
        left: 8px;
    }
    .reliable-travel-v1-step {
        gap: 14px;
        padding: 12px 0;
    }
    .reliable-travel-v1-step-content p {
        font-size: 15px;
    }
    .reliable-travel-v1-step--last .reliable-travel-v1-step-content p {
        font-size: 15px;
        padding: 10px 14px;
    }
    .reliable-travel-v2-box {
        margin-bottom: 16px;
    }
    .reliable-travel-v2-box p {
        font-size: 14px;
    }
    .reliable-travel-v3-quote {
        padding: 18px 18px;
        flex-direction: column;
    }
    .reliable-travel-v3-quote p {
        font-size: 15px;
    }
    .reliable-travel-v3-text p {
        font-size: 14px;
    }
    .reliable-travel-v3-message p {
        font-size: 15px;
        padding: 12px 16px;
    }
    .reliable-travel-v1-stats,
    .reliable-travel-v2-stats {
        gap: 20px;
    }
    .reliable-travel-v1-stat-number,
    .reliable-travel-v2-stat-number,
    .reliable-travel-v3-stat-number {
        font-size: 28px;
    }
    .reliable-travel-v1-stat-label,
    .reliable-travel-v2-stat-label,
    .reliable-travel-v3-stat-label {
        font-size: 11px;
    }
    .reliable-travel-v3-stats {
        grid-template-columns: 1fr 1fr;
        gap: 6px 14px;
        padding: 12px 16px;
    }
}

@media (max-width: 576px) {
    .reliable-travel-v1,
    .reliable-travel-v2,
    .reliable-travel-v3 {
        padding: 40px 0 50px;
    }
    .reliable-travel-v1-title,
    .reliable-travel-v2-title,
    .reliable-travel-v3-title {
        font-size: 22px;
    }
    .reliable-travel-v1-badge,
    .reliable-travel-v2-badge,
    .reliable-travel-v3-badge {
        font-size: 11px;
        padding: 3px 14px;
    }
    .reliable-travel-v1-subtitle,
    .reliable-travel-v2-subtitle,
    .reliable-travel-v3-subtitle {
        font-size: 16px;
    }
    .reliable-travel-v1-steps {
        padding-left: 16px;
    }
    .reliable-travel-v1-steps::before {
        left: 6px;
    }
    .reliable-travel-v1-step {
        gap: 12px;
        padding: 10px 0;
    }
    .reliable-travel-v1-step-num {
        width: 24px;
        height: 24px;
        min-width: 24px;
        font-size: 10px;
    }
    .reliable-travel-v1-step-content p {
        font-size: 14px;
    }
    .reliable-travel-v1-step--last .reliable-travel-v1-step-content p {
        font-size: 14px;
        padding: 10px 12px;
    }
    .reliable-travel-v2-box p {
        font-size: 13px;
    }
    .reliable-travel-v3-quote p {
        font-size: 14px;
    }
    .reliable-travel-v3-text p {
        font-size: 13px;
    }
    .reliable-travel-v3-message p {
        font-size: 14px;
        padding: 10px 14px;
    }
    .reliable-travel-v1-stats,
    .reliable-travel-v2-stats {
        gap: 14px;
    }
    .reliable-travel-v1-stat-number,
    .reliable-travel-v2-stat-number,
    .reliable-travel-v3-stat-number {
        font-size: 22px;
    }
    .reliable-travel-v1-stat-label,
    .reliable-travel-v2-stat-label,
    .reliable-travel-v3-stat-label {
        font-size: 10px;
    }
    .reliable-travel-v3-stats {
        grid-template-columns: 1fr 1fr;
        gap: 4px 10px;
        padding: 10px 12px;
    }
}
   /* Design 1 - Gradient Accordion */
.faq-section--gradient {
    padding: 50px 0;
    background: #ffff;
    position: relative;
}

.faq-section--gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F59E0B, #ff8a5c, #F59E0B);
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-tag {
    display: inline-block;
    font-size: 13px;
    color: #F59E0B;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.faq-title {
    font-size: 42px;
    font-weight: 700;
    color: #0a1a2b;
    margin-bottom: 8px;
}

.faq-title span {
    color: #F59E0B;
    
}

.faq-text {
    font-size: 16px;
    color: #6b7a8f;
}

.faq-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #F59E0B, #ff8a5c);
    margin: 12px auto 0;
    border-radius: 3px;
}

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

.faq-item {
    background: #ffffff;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef1f5;
    transition: all 0.4s;
}

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

.faq-item--highlight {
    border-color: #F59E0B;
    background: linear-gradient(135deg, #fff8f5, #ffffff);
}

.faq-item__header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
}

.faq-item__header:hover {
    background: rgba(255, 107, 53, 0.03);
}

.faq-item__number {
    font-size: 13px;
    font-weight: 800;
    color: #F59E0B;
    background: rgba(255, 107, 53, 0.1);
    padding: 2px 12px;
    border-radius: 6px;
    min-width: 36px;
    text-align: center;
    flex-shrink: 0;
}

.faq-item--highlight .faq-item__number {
    background: rgba(255, 107, 53, 0.15);
}

.faq-item__question {
    font-size: 16px;
    font-weight: 600;
    color: #0a1a2b;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-item__toggle {
    width: 32px;
    height: 32px;
    background: rgba(255, 107, 53, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s;
    color: #F59E0B;
    font-size: 14px;
}

.faq-item.active .faq-item__toggle {
    background: #F59E0B;
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-item__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-item.active .faq-item__body {
    max-height: 500px;
}

.faq-item__answer {
    padding: 0 24px 22px 24px;
    font-size: 15px;
    color: #5a6a7e;
    line-height: 1.8;
    cursor:pointer;
    text-align:justify;
    margin: 0;
}

@media (max-width: 992px) {
    .faq-section--gradient { padding: 80px 0; }
    .faq-title { font-size: 34px; }
    .faq-item__header { padding: 18px 20px; }
    .faq-item__question { font-size: 15px; }
}

@media (max-width: 768px) {
    .faq-section--gradient { padding: 60px 0; }
    .faq-title { font-size: 28px; }
    .faq-text { font-size: 15px; }
    .faq-item__header { padding: 16px 16px; gap: 12px; }
    .faq-item__question { font-size: 14px; }
    .faq-item__answer { font-size: 14px; padding: 0 16px 18px 16px; }
    .faq-item__number { font-size: 11px; min-width: 30px; padding: 2px 8px; }
}

@media (max-width: 576px) {
    .faq-section--gradient { padding: 40px 0; }
    .faq-title { font-size: 22px; }
    .faq-text { font-size: 14px; }
    .faq-tag { font-size: 12px; }
    .faq-item__header { padding: 14px 14px; gap: 10px;}

    .faq-item__question { font-size: 13px; flex: 1 1 100%; order: 2; }
    .faq-item__number { order: 1; }
    .faq-item__toggle { order: 3; width: 28px; height: 28px; font-size: 12px; }
    .faq-item__answer { font-size: 13px; padding: 0 14px 16px 14px; }
}
