/* ===========================
   Freight Services Section - Core Features Design
   =========================== */

/* Color Variables */
:root {
    /* Solid Colors */
    --fs-primary: #006699;       /* Muted Steel Blue - Buttons, active states, headers */
    --fs-secondary: #ff6347;     /* Terracotta Red - CTA, sale badges, alerts */
    --fs-accent: #88B1A1;        /* Sage Green - Success states, icons, highlights */
    --fs-base: #F9FAFB;          /* Off-White/Grey - Main background */
    --fs-dark: #2D3E46;          /* Deep Charcoal - Typography, borders */
    --fs-primary-light: #0099cc; /* Lighter shade of primary */
    --fs-secondary-light: #d4867e; /* Lighter shade of secondary */
    --fs-orange: #ff6b35;        /* Orange accent for icons and links */
    
    /* Ultra Vibrant Gradients - Maximum Visibility */
    --fs-gradient-primary: linear-gradient(135deg, #0099cc 0%, #006699 100%);     /* Electric Blue gradient */
    --fs-gradient-secondary: linear-gradient(135deg, #ff6347 0%, #c33607 100%);   /* Vivid Coral-Red gradient */
    --fs-gradient-accent: linear-gradient(135deg, #00ccaa 0%, #058879 100%);      /* Bright Teal-Cyan gradient */
}

/* Gradient Text Utility Classes */
.gradient-text-primary {
    background: linear-gradient(135deg, #0099cc 0%, #006699 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.gradient-text-secondary {
    background: linear-gradient(135deg, #ff6347 0%, #cc3300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.gradient-text-accent {
    background: linear-gradient(135deg, #00ccaa 0%, #009988 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Main section with background image */
.freight-services {
    position: relative;
    padding: 100px 0 120px;
    min-height: 650px;
    overflow: hidden;
}

/* Background image */
.freight-services-bg,.freight-services-bg-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Dark overlay - Left to right gradient for text visibility */
.freight-services-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(0 20 40 / 94%) 0%, rgb(0 20 40 / 74%) 25%, rgb(0 20 40 / 30%) 50%, rgba(0, 20, 40, 0.15) 75%, rgba(0, 20, 40, 0.1) 100%);
    z-index: 2;
}
.freight-services-bg-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 30%, rgba(255, 255, 255, 0.4) 60%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 2; */
}

/* Video Background */
.freight-services-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.freight-services-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Video overlay */
.freight-services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(0 20 40 / 60%) 0%, rgb(0 20 40 / 40%) 50%, rgb(0 20 40 / 55%) 100%);
    z-index: 2;
}

.freight-services-container {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Main layout - horizontal 30/70 */
.freight-services-wrapper {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: stretch;
}

/* Header section - left side 30%, vertically centered */
.freight-intro {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: center;
    text-align: left;
    padding: 20px 0;
    flex: 0 0 30%;
    max-width: 30%;
}

/* Badge/Label */
.freight-intro .label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.freight-intro .label svg {
    width: 16px;
    height: 16px;
}

/* Main title */
.freight-intro h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Subtitle/description */
.freight-intro p {
    font-size: 1rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.7;
    margin: 0;
    max-width: 700px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* Hide the old button */
.freight-intro .btn-more {
    display: none;
}

/* Cards grid - right side 70% */
.freight-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px 0;
    flex: 0 0 70%;
    max-width: 70%;
}

/* Reversed layout - Cards Left, Intro Right */
.freight-wrapper-reversed {
    flex-direction: row-reverse;
}

.freight-wrapper-reversed .freight-intro {
    text-align: right;
    align-items: flex-end;
}

/* Section Divider */
.freight-section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    margin: 50px 0;
}

/* Vertical layout - Intro on Top, Cards Below */
.freight-wrapper-vertical {
    flex-direction: column;
    align-items: center;
}

.freight-intro-centered {
    text-align: center;
    align-items: center;
    max-width: 800px;
    flex: none;
    margin-bottom: 30px;
}

/* Full width cards grid for vertical layout */
.freight-cards-full {
    flex: none;
    max-width: 100%;
    grid-template-columns: repeat(3, 1fr);
}

/* Individual card - glassmorphism white card */
.freight-card {
    position: relative;
    /* background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); */
    border-radius: 16px;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.freight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Hide image container - no images in cards for this design */
.freight-card-image {
    display: none;
}

/* Hide background image in cards */
.freight-card-bg {
    display: none;
}

/* Remove overlay */
.freight-card-overlay {
    display: none;
}

/* Card content section - horizontal layout */
.freight-card-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

/* Card icon - left side, vertically centered */
.freight-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 50px;
    min-width: 50px;
}

.freight-card-icon svg,
.freight-card-icon img {
    width: 36px;
    height: 36px;
    color: var(--fs-primary-light);
}

/* Thin border divider - full height, edge to edge */
.freight-card-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    margin-top: -20px;
    margin-bottom: -20px;
    align-self: stretch;
}

/* Hide old elements */
.freight-card-label {
    display: none;
}

.freight-card-number {
    display: none;
}

/* Card info section - right side */
.freight-card-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

/* Card title - default for dark cards (white text) */
.freight-card-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fs-base);
    margin: 0;
    line-height: 1.3;
}

/* Card description - default for dark cards */
.freight-card-info p {
    display: block;
    font-size: 0.9rem;
    color: var(--fs-base);
    opacity: 0.65;
    line-height: 1.6;
    margin: 0;
}

/* Light card styles (ios-glass non-dark) */
.freight-card.ios-glass .freight-card-info h3 {
    color: var(--fs-primary);
    -webkit-text-fill-color: var(--fs-primary) !important;
    font-weight: 700;
}

.freight-card.ios-glass .freight-card-info p {
    color: var(--fs-primary) !important;
    -webkit-text-fill-color: var(--fs-primary) !important;
    opacity: 0.7;
}

.freight-card.ios-glass .freight-card-divider {
    background: rgba(0, 0, 0, 0.15) !important;
}

.freight-card.ios-glass .freight-card-icon svg {
    stroke: var(--fs-primary) !important;
}

/* Read more link - orange color */
.freight-card-link {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fs-primary);
    text-decoration: none;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.freight-card-link:hover {
    color: #e55a2b;
    text-decoration: underline;
}

/* Slider dots navigation */
.freight-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.freight-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.freight-slider-dot:hover,
.freight-slider-dot.active {
    background: var(--fs-orange);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .freight-services-wrapper {
        gap: 30px;
    }
    
    .freight-intro {
        flex: 0 0 35%;
        max-width: 35%;
    }
    
    .freight-cards-grid {
        flex: 0 0 65%;
        max-width: 65%;
    }
    
    .freight-intro h2 {
        font-size: 2.5rem;
    }
    
    .freight-card-info h3 {
        font-size: 1.15rem;
    }
}

@media (max-width: 992px) {
    .freight-services {
        padding: 60px 0 80px;
        min-height: auto;
    }
    
    .freight-services-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .freight-intro {
        flex: none;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
    
    .freight-cards-grid {
        flex: none;
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .freight-intro h2 {
        font-size: 2.2rem;
    }
    
    .freight-card-info h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .freight-services {
        padding: 40px 0 50px;
    }
    
    .freight-services-container {
        padding: 0 15px;
        width: 100%;
    }
    
    /* Intro section mobile optimization */
    .freight-intro {
        padding: 0 0 15px 0;
    }
    
    .freight-intro .label {
        font-size: 0.65rem;
        padding: 8px 14px;
        margin-bottom: 15px;
    }
    
    .freight-intro h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .freight-intro p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    /* Cards grid mobile - single column */
    .freight-cards-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
        grid-template-columns: 1fr;
    }
    
    .freight-card {
        min-width: 100%;
        max-width: 100%;
        padding: 15px 18px;
        border-radius: 12px;
    }
    
    /* Card content - horizontal layout on mobile */
    .freight-card-content {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    
    /* Smaller icon on mobile */
    .freight-card-icon {
        width: 40px;
        min-width: 40px;
    }
    
    .freight-card-icon svg,
    .freight-card-icon img {
        width: 28px;
        height: 28px;
    }
    
    /* Thinner divider on mobile */
    .freight-card-divider {
        margin-top: -15px;
        margin-bottom: -15px;
    }
    
    /* Card info text sizing */
    .freight-card-info h3 {
        font-size: 0.95rem;
    }
    
    .freight-card-info p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .freight-slider-dots {
        margin-top: 20px;
    }
    
    /* Full width cards grid for vertical layout - mobile */
    .freight-cards-full {
        grid-template-columns: 1fr;
    }
}

/* RTL Support */
[dir="rtl"] .freight-card-content {
    text-align: right;
}

[dir="rtl"] .freight-intro {
    text-align: right;
}

[dir="rtl"] .freight-card-link {
    text-align: right;
}

/* ===========================
   About Us Section - Full Width with Dark Overlay
   =========================== */

.about-us-section {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

/* Full width background image */
.about-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Dark overlay */
.about-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, rgba(0,30,60,0.9) 0%, rgba(0,30,60,0.7) 50%, rgba(0,30,60,0.3) 100%); */
    background: linear-gradient(90deg, rgb(255 255 255) 0%, rgb(193 202 212 / 70%) 50%, rgb(0 30 60 / 21%) 100%);
    z-index: 2;
}

.about-us-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual content block */
.about-us-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    background: rgba(255,255,255,0.9);
    padding: 40px 30px;
    border-radius: 12px;
}

.about-us-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-us-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Content side */
.about-us-content {
    flex: 1;
}

.about-us-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--fs-dark);
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.about-us-content p {
    font-size: 0.95rem;
    color: var(--fs-dark);
    opacity: 0.7;
    line-height: 1.7;
    margin: 0;
}

/* CTA Button */
.about-us-cta {
    padding-top: 20px;
}

.btn-learn-more {
    display: inline-block;
    padding: 14px 35px;
    background: var(--fs-gradient-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(78, 123, 145, 0.4);
    background: var(--fs-gradient-secondary);
    color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
    .about-us-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .about-us-block {
        padding: 30px 20px;
    }
}

@media (max-width: 992px) {
    .about-us-section {
        min-height: auto;
    }
    
    .about-us-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-bg-image::before {
        background: linear-gradient(180deg, rgb(255 255 255) 0%, rgb(193 202 212 / 70%) 50%, rgb(0 30 60 / 21%) 100%);
    }
    
    .about-us-content h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .about-us-container {
        padding: 50px 20px;
        gap: 20px;
        grid-template-columns: 1fr;
    }
    
    .about-us-content h2 {
        font-size: 1.25rem;
    }
    
    .about-us-content p {
        font-size: 0.9rem;
    }
}

/* RTL Support for About Section */
[dir="rtl"] .about-bg-image::before {
    background: linear-gradient(270deg, rgba(0,30,60,0.9) 0%, rgba(0,30,60,0.7) 50%, rgba(0,30,60,0.3) 100%);
}

[dir="rtl"] .about-us-block {
    text-align: right;
}

@media (max-width: 992px) {
    [dir="rtl"] .about-us-block {
        text-align: center;
    }
}

/* ===========================
   Goals Section - Modern Design
   =========================== */

.goals-section {
    padding: 80px 0;
    background: var(--bs-light);
}

.goals-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left content */
.goals-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.goals-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--fs-dark);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.goals-headline {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--fs-dark);
    line-height: 1.2;
    margin: 0;
}

.goals-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.goals-cta-btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--fs-gradient-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.goals-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(194, 103, 94, 0.4);
    background: var(--fs-gradient-primary);
    color: #fff;
}

.goals-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.goals-avatars {
    display: flex;
}

.goals-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    object-fit: cover;
    background: #f0f0f0;
}

.goals-avatars img:first-child {
    margin-left: 0;
}

.goals-stats-text {
    display: flex;
    flex-direction: column;
}

.stats-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fs-dark);
}

.stats-label {
    font-size: 0.85rem;
    color: var(--fs-dark);
    opacity: 0.7;
}

.goals-description {
    font-size: 1rem;
    color: var(--fs-dark);
    opacity: 0.7;
    line-height: 1.7;
    margin: 0;
    max-width: 90%;
}

/* Right image */
.goals-image {
    position: relative;
    flex: 1;
    max-width: 650px;
}

.goals-image img {
    width: 100%;
    height: 650px;
    border-radius: 16px;
    object-fit: cover;
}

.goals-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--fs-primary-light);
    color: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 1rem;
    opacity: 0.9;
}

/* Goals Responsive */
@media (max-width: 992px) {
    .goals-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .goals-headline {
        font-size: 2.2rem;
    }
    
    .goals-image {
        order: -1;
    }
}

@media (max-width: 576px) {
    .goals-section {
        padding: 50px 0;
    }
    
    .goals-container {
        padding: 0 20px;
    }
    
    .goals-headline {
        font-size: 1.8rem;
    }
    
    .goals-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .goals-description {
        max-width: 100%;
    }
    
    .goals-badge {
        bottom: 15px;
        right: 15px;
        padding: 15px 20px;
    }
    
    .badge-number {
        font-size: 2rem;
    }
}

/* Goals RTL Support */
[dir="rtl"] .goals-content {
    text-align: right;
}

[dir="rtl"] .goals-avatars img {
    margin-left: 0;
    margin-right: -10px;
}

[dir="rtl"] .goals-avatars img:first-child {
    margin-right: 0;
}

[dir="rtl"] .goals-badge {
    right: auto;
    left: 30px;
}

@media (max-width: 576px) {
    [dir="rtl"] .goals-actions {
        align-items: flex-end;
    }
    
    [dir="rtl"] .goals-badge {
        left: 15px;
    }
}

/* ===========================
   Statistics Section - Parallax Design
   =========================== */

.stats-section {
    padding: 0;
    background: #fff;
    overflow: hidden;
}

.stats-wrapper {
    display: flex;
    min-height: 700px;
}

/* Left Image */
.stats-parallax {
    flex: 0 0 50%;
    background-size: cover;
    background-position: right center;
    position: relative;
}

/* Right Content */
.stats-content {
    flex: 0 0 50%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.stats-header {
    text-align: left;
    margin-bottom: 40px;
}

.stats-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--fs-dark);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.stats-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.stats-subtitle {
    font-size: 1rem;
    color: var(--fs-dark);
    opacity: 0.7;
    margin: 0;
}

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

.stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: var(--fs-primary);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--fs-gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
}

.stat-card:nth-child(2) .stat-icon {
    background: var(--fs-gradient-secondary);
}

.stat-card:nth-child(3) .stat-icon {
    background: var(--fs-gradient-accent);
}

.stat-card:nth-child(4) .stat-icon {
    background: var(--fs-gradient-primary);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--fs-primary);
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--fs-dark);
    opacity: 0.6;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Responsive */
@media (max-width: 992px) {
    .stats-wrapper {
        flex-direction: column;
    }
    
    .stats-parallax {
        flex: 0 0 auto;
        height: 400px;
        background-attachment: scroll;
    }
    
    .stats-content {
        flex: 0 0 auto;
        padding: 60px 40px;
    }
    
    .stats-header {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .stats-parallax {
        height: 300px;
    }
    
    .stats-content {
        padding: 50px 30px;
    }
    
    .stats-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        gap: 20px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .stats-parallax {
        height: 250px;
    }
    
    .stats-content {
        padding: 40px 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-header {
        margin-bottom: 40px;
    }
    
    .stats-title {
        font-size: 2rem;
    }
}

/* Stats RTL Support */
[dir="rtl"] .stats-wrapper {
    flex-direction: row;
}

[dir="rtl"] .stats-header {
    text-align: right;
}

[dir="rtl"] .stat-card {
    text-align: center;
}

@media (max-width: 992px) {
    [dir="rtl"] .stats-wrapper {
        flex-direction: column-reverse;
    }
    
    [dir="rtl"] .stats-header {
        text-align: center;
    }
}

/* ========================================
   About Section Accordion Styles (Bootstrap)
   ======================================== */
.about-goals-section {
    /* background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); */
    background: var(--bs-body-bg);
    position: relative;
}

/* Ship background image on left side */
.about-goals-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 27%;
    transform: translateY(-50%);
    width: 58%;
    height: 100%;
    background: url(/assets/images/wall/ship-transparent-about.png) no-repeat left center;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

/* RTL Support - flip image to right side for Arabic */
[dir="rtl"] .about-goals-section::before {
    left: auto;
    right: 0;
    background-position: right center;
    transform: translateY(-50%) scaleX(-1);
}

/* Ensure content is above background image */
.about-goals-section .goals-container {
    position: relative;
    z-index: 1;
}

/* Desktop styling for about content - position correctly with ship image */
.about-goals-content {
    margin-top: 45%;
}

.about-accordion-wrapper {
    flex: 1;
    max-width: 550px;
}

.about-accordion.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 153, 204, 0.1) !important;
}

.about-accordion .accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 153, 204, 0.15);
    transform: translateY(-2px);
}

.about-accordion .accordion-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: transparent !important;
    box-shadow: none !important;
}

.about-accordion .accordion-button:not(.collapsed) {
    background: rgba(0, 153, 204, 0.05) !important;
}

.about-accordion .accordion-button:focus {
    box-shadow: none !important;
}

.about-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230099cc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 20px;
    height: 20px;
}

.about-accordion .accordion-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(0, 153, 204, 0.1) 0%, rgba(0, 153, 204, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.about-accordion .accordion-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-accordion .accordion-title {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--fs-dark, #1a1a2e);
}

.about-accordion .accordion-body {
    padding: 0 20px 20px;
}

.about-accordion .accordion-body p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Accordion */
@media (max-width: 992px) {
    .about-goals-section .goals-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-accordion-wrapper {
        max-width: 100%;
    }
    
    /* Hide ship background on tablet */
    .about-goals-section::before {
        width: 40%;
        opacity: 0.3;
    }
    
    /* Reset margin-top for mobile */
    .about-goals-section .goals-content {
        margin-top: 0 !important;
        text-align: center;
    }
    
    .about-goals-section .goals-headline {
        font-size: 2rem;
    }
    
    .about-goals-section .goals-description {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    /* Show ship image at top-left for EN (LTR) on mobile */
    .about-goals-section::before {
        top: 0;
        transform: none;
        width: 45%;
        height: 180px;
        opacity: 0.25;
        background-size: contain;
        background-position: top left;
    }
    
    /* RTL: Show ship image at top-right for Arabic */
    [dir="rtl"] .about-goals-section::before {
        left: auto;
        right: 0;
        background-position: top right;
        transform: scaleX(-1);
    }
    
    .about-goals-section {
        padding: 50px 0;
    }
    
    .about-goals-section .goals-container {
        padding: 0 20px;
        gap: 30px;
    }
    
    .about-goals-section .goals-content {
        margin-top: 0 !important;
        order: 1;
    }
    
    .about-goals-section .about-accordion-wrapper {
        order: 2;
    }
    
    .about-goals-section .goals-headline {
        font-size: 1.65rem;
        line-height: 1.3;
    }
    
    .about-goals-section .goals-label {
        font-size: 0.7rem;
    }
    
    .about-goals-section .goals-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .about-goals-section .goals-actions {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about-accordion .accordion-button {
        padding: 15px;
        gap: 12px;
    }
    
    .about-accordion .accordion-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .about-accordion .accordion-title {
        font-size: 0.95rem;
    }
    
    .about-accordion .accordion-body {
        padding: 0 15px 15px;
    }
    
    .about-accordion .accordion-body p {
        font-size: 0.85rem;
    }
}

/* ========================================
   Statistics Section - Goals Style
   ======================================== */
.stats-goals-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.stats-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stats-mini-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px 28px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 153, 204, 0.1);
    transition: all 0.3s ease;
}

.stats-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 153, 204, 0.15);
}

.stats-mini-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: linear-gradient(135deg, rgba(0, 153, 204, 0.1) 0%, rgba(0, 153, 204, 0.2) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-mini-icon svg {
    color: var(--fs-primary, #0099cc);
    width: 32px;
    height: 32px;
}

.stats-mini-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stats-mini-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--fs-dark, #1a1a2e);
    line-height: 1.2;
}

.stats-mini-label {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
}

/* Responsive Stats Cards */
@media (max-width: 576px) {
    .stats-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-mini-card {
        padding: 12px 15px;
    }
    
    .stats-mini-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .stats-mini-number {
        font-size: 1.3rem;
    }
}

/* ========================================
   Vision Section Styles
   ======================================== */
.vision-section {
    position: relative;
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}



.vision-feature-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* RTL Support for feature cards border - Removed for glass design */
[dir="rtl"] .vision-feature-card {
    border: 1px solid rgba(255, 255, 255, 0.2); /* Reset border for glass */
}

/* ========================================
   Our Clients Section - Owl Carousel Design
   ======================================== */
.clients-section {
    padding: 70px 0 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

/* Section Header */
.clients-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--fs-primary, #0099cc);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.clients-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.clients-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

/* Owl Carousel Specific */
.clients-owl-carousel.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

/* Individual Logo Item */
.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    padding: 15px 20px;
    height: 100px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.client-logo-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 153, 204, 0.12);
}

.client-logo-item img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .clients-section {
        padding: 50px 0 60px;
    }
    
    .clients-title {
        font-size: 2rem;
    }
    
    .client-logo-item {
        height: 85px;
        padding: 12px 15px;
    }
    
    .client-logo-item img {
        max-height: 60px;
    }
}

@media (max-width: 576px) {
    .clients-section {
        padding: 40px 0 50px;
    }
    
    .clients-label {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }
    
    .clients-title {
        font-size: 1.5rem;
    }
    
    .clients-subtitle {
        font-size: 0.85rem;
    }
    
    .client-logo-item {
        height: 70px;
        padding: 10px 12px;
        border-radius: 8px;
    }
    
    .client-logo-item img {
        max-height: 50px;
    }
}
