﻿/* ============================================
   SATCO HERO SECTION - INNOVATIVE DESIGN
   ============================================ */

:root {
    /* Brand Colors - PURE BLACK SYSTEM */
    --satco-gold: #D4AF37;
    --satco-gold-light: #F4E4B0;
    --satco-gold-dark: #B8941F;
    --satco-dark: #000000; /* Pure Black - الأسود النقي */
    --satco-dark-light: #0a0a0a; /* Deep Black - للعمق الخفيف */
    --satco-dark-lighter: #1a1a1a; /* Lighter Black - للتباين */
    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
       MAIN SECTION CONTAINER     HERO
       ============================================ */

.satco-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

[dir="rtl"] .hero-container {
    flex-direction: row-reverse;
}

/* ============================================
       CONTENT AREA (60%)
       ============================================ */

.hero-content-area {
    flex: 0 0 60%;
    position: relative;
    z-index: 3;
}

/* Position for RTL/LTR */
.content-right {
    order: 1;
}

.content-left {
    order: 0;
}

/* Background Pattern */
.hero-bg-pattern {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    pointer-events: none;
    z-index: -1;
}

[dir="ltr"] .hero-bg-pattern {
    right: auto;
    left: -20%;
}

.pattern-circle {
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    animation: rotatePattern 20s linear infinite;
}

.pattern-circle-1 {
    width: 400px;
    height: 400px;
    top: 0;
    left: 0;
}

.pattern-circle-2 {
    width: 500px;
    height: 500px;
    top: 50px;
    left: 50px;
    animation-duration: 25s;
    animation-direction: reverse;
}

.pattern-circle-3 {
    width: 600px;
    height: 600px;
    top: 100px;
    left: 100px;
    animation-duration: 30s;
}

@keyframes rotatePattern {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Content Wrapper */
.hero-content-wrapper {
    position: relative;
    max-width: 650px;
}

/* Premium Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

    .hero-badge:hover {
        background: rgba(212, 175, 55, 0.15);
        border-color: var(--satco-gold);
        transform: translateY(-2px);
    }

.badge-icon {
    color: var(--satco-gold);
    font-size: 1rem;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.badge-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Main Title */
.hero-main-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    position: relative;
}

    .hero-main-title::before {
        content: '';
        position: absolute;
        top: -20px;
        right: -10px;
        width: 80px;
        height: 80px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(20px);
        z-index: -1;
    }

[dir="ltr"] .hero-main-title::before {
    right: auto;
    left: -10px;
}

.title-line-1 {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
}

/* Decorative Divider */
.hero-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--satco-gold) 50%, transparent 100%);
}

.divider-diamond {
    color: var(--satco-gold);
    font-size: 0.7rem;
    animation: diamondSpin 4s linear infinite;
}

@keyframes diamondSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Description */
.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Features List */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

    .feature-item:hover {
        color: #ffffff;
        transform: translateX(5px);
    }

[dir="rtl"] .feature-item:hover {
    transform: translateX(-5px);
}

.feature-item i {
    color: var(--satco-gold);
    font-size: 1.1rem;
}

/* CTA Buttons Group */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Gold Button */
.btn-hero-gold {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 45px;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    isolation: isolate;
    transition: var(--transition-smooth);
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--satco-gold) 0%, var(--satco-gold-light) 100%);
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-hero-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--satco-gold-light) 0%, var(--satco-gold) 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-hero-gold:hover::before {
    opacity: 1;
}

.btn-hero-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4), 0 20px 50px rgba(212, 175, 55, 0.3);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.btn-text {
    color: var(--satco-gold-light);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero-cta-group a.btn-hero-gold .btn-text {
    color: var(--satco-dark) !important;
}

.hero-cta-group a.btn-hero-outline .btn-text {
    color: var(--satco-gold) !important;
}

.btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    color: #000000;
    transition: var(--transition-smooth);
}

.btn-hero-gold:hover .btn-arrow {
    transform: translateX(5px);
    background: rgba(0, 0, 0, 0.25);
}

[dir="rtl"] .btn-hero-gold:hover .btn-arrow {
    transform: translateX(-5px);
}

/* Outline Button */
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 35px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    background: transparent;
}

    .btn-hero-outline:hover {
        border-color: var(--satco-gold);
        background: rgba(212, 175, 55, 0.1);
        color: #ffffff;
        transform: translateY(-2px);
    }

    .btn-hero-outline .btn-icon {
        transition: var(--transition-smooth);
    }

    .btn-hero-outline:hover .btn-icon {
        transform: translateY(3px);
    }

/* Stats Bar */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--satco-gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
}

/* ============================================
       VIDEO AREA (40%)
       ============================================ */

.hero-video-area {
    flex: 0 0 40%;
    position: relative;
    z-index: 2;
}

/* Position for RTL/LTR */
.video-left {
    order: 0;
}

.video-right {
    order: 1;
}

/* Video Frame Container */
.video-frame-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Decorative Frame */
.video-decorative-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    pointer-events: none;
    z-index: 2;
}

/* Corner Accents */
.frame-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--satco-gold);
}

.corner-top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-radius: 8px 0 0 0;
}

.corner-top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
    border-radius: 0 8px 0 0;
}

.corner-bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 8px;
}

.corner-bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-radius: 0 0 8px 0;
}

/* Golden Border Glow */
.frame-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--satco-gold);
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), 0 0 40px rgba(212, 175, 55, 0.2), inset 0 0 20px rgba(212, 175, 55, 0.1);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), 0 0 40px rgba(212, 175, 55, 0.2), inset 0 0 20px rgba(212, 175, 55, 0.1);
    }

    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.5), 0 0 60px rgba(212, 175, 55, 0.3), inset 0 0 30px rgba(212, 175, 55, 0.15);
    }
}

/* Video Box */
.video-box {
    position: relative;
    width: 100%;
    padding-bottom: 133.33%; /* 3:4 aspect ratio */
    border-radius: 20px;
    overflow: hidden;
    background: var(--satco-dark-lighter);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
}

/* Video Overlay */
.video-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

/* Play Pulse (Decorative) */
.video-play-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--satco-gold);
    border-radius: 50%;
    color: var(--satco-gold);
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: var(--transition-smooth);
    animation: playPulse 2s ease-in-out infinite;
    padding-left: 5px;
}

    .video-play-pulse:hover {
        background: rgba(212, 175, 55, 0.25);
        transform: translate(-50%, -50%) scale(1.1);
    }

@keyframes playPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }
}

/* Floating Badges */
.video-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: floatBadge 3s ease-in-out infinite;
}

    .floating-badge i {
        color: var(--satco-gold);
    }

.floating-badge-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-badge-2 {
    bottom: 15%;
    left: -15%;
    animation-delay: 1.5s;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

/* Background Shapes */
.video-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    filter: blur(40px);
    animation: shapeFloat 10s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -20%;
    right: -10%;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: -15%;
    left: -10%;
    animation-delay: 5s;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -20px) scale(1.1);
    }
}

/* ============================================
       SCROLL INDICATOR
       ============================================ */

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

    .hero-scroll-indicator:hover {
        transform: translateX(-50%) translateY(-5px);
    }

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid var(--satco-gold);
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--satco-gold);
    border-radius: 50%;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(25px);
        opacity: 0;
    }
}

.scroll-label {
    color: var(--satco-gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
       ANIMATED PARTICLES
       ============================================ */

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--satco-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 15s linear infinite;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    top: 40%;
    right: 15%;
    animation-delay: 3s;
}

.particle-3 {
    top: 60%;
    left: 20%;
    animation-delay: 6s;
}

.particle-4 {
    top: 80%;
    right: 25%;
    animation-delay: 9s;
}

.particle-5 {
    top: 30%;
    left: 50%;
    animation-delay: 12s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100vh) scale(0.5);
        opacity: 0;
    }
}

/* ============================================
       RESPONSIVE DESIGN
       ============================================ */

@media (max-width: 1200px) {
    .hero-container {
        gap: 2rem;
    }

    .hero-main-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .video-frame-container {
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        gap: 4rem;
        padding: 0 1.5rem;
    }

    .hero-content-area,
    .hero-video-area {
        flex: 0 0 100%;
        order: unset !important;
    }

    .hero-content-area {
        text-align: center;
    }

    .hero-content-wrapper {
        max-width: 100%;
    }

    .hero-badge,
    .hero-divider,
    .hero-features,
    .hero-cta-group,
    .hero-stats {
        justify-content: center;
    }

    .feature-item:hover {
        transform: translateX(0) !important;
    }

    .video-frame-container {
        max-width: 500px;
    }

    .hero-bg-pattern {
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 768px) {
    .satco-hero-section {
        padding: 60px 0;
    }

    .hero-container {
        gap: 3rem;
    }

    .hero-main-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .btn-hero-gold,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        width: 60%;
        height: 1px;
    }

    .video-frame-container {
        max-width: 350px;
    }

    .floating-badge {
        font-size: 0.8rem;
        padding: 10px 16px;
    }

    .floating-badge-1 {
        right: -5%;
    }

    .floating-badge-2 {
        left: -5%;
    }
}

@media (max-width: 576px) {
    .hero-badge {
        padding: 10px 20px;
    }

    .badge-text {
        font-size: 0.85rem;
    }

    .hero-main-title {
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-features {
        margin-bottom: 2rem;
    }

    .feature-item {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .video-frame-container {
        max-width: 280px;
    }

    .frame-corner {
        width: 40px;
        height: 40px;
        border-width: 2px;
    }

    .video-play-pulse {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
}

/* ============================================
       RTL SPECIFIC ADJUSTMENTS
       ============================================ */

[dir="rtl"] .hero-bg-pattern {
    right: -20%;
    left: auto;
}

[dir="rtl"] .hero-main-title::before {
    right: -10px;
    left: auto;
}

[dir="rtl"] .floating-badge-1 {
    right: -10%;
    left: auto;
}

[dir="rtl"] .floating-badge-2 {
    left: -15%;
    right: auto;
}






                                                                       /* ============================================
                                                                       SATCO ABOUT SECTION 
                                                                       ============================================ */


/* About Section Variables */
:root {
    --about-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --about-card-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --about-card-hover-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* ============================================
       MAIN SECTION CONTAINER
       ============================================ */

.satco-about-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f6f8 100%);
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

/* ============================================
       CONTENT SIDE (Left/Right based on language)
       ============================================ */

.about-content-side {
    flex: 0 0 50%;
    position: relative;
}

.content-right-side {
    order: 1;
}

.content-left-side {
    order: 0;
}

/* Section Header */
.about-header {
    margin-bottom: 2rem;
}

.about-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--satco-gold);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.about-main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 1.5rem;
}

.title-accent {
    color: var(--satco-gold);
    position: relative;
}

/* Title Underline */
.title-underline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
}

.underline-short {
    width: 40px;
    height: 3px;
    background: var(--satco-gold);
    border-radius: 2px;
}

.underline-dot {
    width: 8px;
    height: 8px;
    background: var(--satco-gold);
    border-radius: 50%;
    animation: dotBounce 2s ease-in-out infinite;
}

@keyframes dotBounce {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}

.underline-long {
    flex: 1;
    max-width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--satco-gold) 0%, transparent 100%);
}

[dir="rtl"] .underline-long {
    background: linear-gradient(270deg, var(--satco-gold) 0%, transparent 100%);
}

/* Description */
.about-description {
    margin-bottom: 2.5rem;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
    font-weight: 400;
}

/* ============================================
       IMAGES GALLERY - WITH BORDERS & SPACING
       ============================================ */

.about-images-gallery {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 500px;
}

/* Main Image with Decorative Frame */
.gallery-main-image {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 400px;
}

.image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 15px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

/* Decorative borders on frame */
.frame-border-top,
.frame-border-bottom {
    position: absolute;
    left: 15px;
    right: 15px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--satco-gold) 50%, transparent 100%);
    z-index: 2;
}

.frame-border-top {
    top: 15px;
}

.frame-border-bottom {
    bottom: 15px;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--about-transition);
}

.image-frame:hover .main-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    border-radius: 12px;
    pointer-events: none;
    transition: var(--about-transition);
}

.image-frame:hover .image-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

/* Secondary Image (Floating) */
.gallery-secondary-image {
    position: absolute;
    bottom: 0;
    right: -50px;
    width: 280px;
    height: 200px;
    z-index: 3;
}

[dir="rtl"] .gallery-secondary-image {
    right: auto;
    left: -50px;
}

.image-frame-secondary {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 12px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(212, 175, 55, 0.3);
    transition: var(--about-transition);
}

    .image-frame-secondary:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25), 0 0 0 2px var(--satco-gold);
    }

.secondary-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Image Badge */
.image-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--satco-gold) 0%, var(--satco-gold-light) 100%);
    color: #000000;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    animation: badgeFloat 3s ease-in-out infinite;
}

[dir="rtl"] .image-badge {
    right: auto;
    left: 20px;
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.image-badge i {
    font-size: 1rem;
}

/* Gallery Decorations */
.gallery-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.deco-circle {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: rotateSlow 20s linear infinite;
}

[dir="rtl"] .deco-circle {
    left: auto;
    right: -30px;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.deco-dots {
    position: absolute;
    bottom: -20px;
    right: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

[dir="rtl"] .deco-dots {
    right: auto;
    left: 50px;
}

.deco-dots span {
    width: 6px;
    height: 6px;
    background: var(--satco-gold);
    border-radius: 50%;
    opacity: 0.4;
}

/* ============================================
       CARDS SIDE (4 Expandable Cards)
       ============================================ */

.about-cards-side {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cards-left-side {
    order: 0;
}

.cards-right-side {
    order: 1;
}

/* Individual Card */
.about-info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--about-card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--about-transition);
    position: relative;
    overflow: hidden;
}

    .about-info-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--satco-gold);
        transform: scaleY(0);
        transform-origin: top;
        transition: var(--about-transition);
    }

[dir="rtl"] .about-info-card::before {
    left: auto;
    right: 0;
}

.about-info-card:hover {
    box-shadow: var(--about-card-hover-shadow);
    transform: translateX(5px);
}

[dir="rtl"] .about-info-card:hover {
    transform: translateX(-5px);
}

.about-info-card:hover::before {
    transform: scaleY(1);
}

/* Card Header */
.card-header-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    user-select: none;
}

.card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 12px;
    transition: var(--about-transition);
}

    .card-icon img {
        width: 35px;
        height: 35px;
        object-fit: contain;
        filter: brightness(0) saturate(100%) invert(56%) sepia(73%) saturate(403%) hue-rotate(6deg) brightness(91%) contrast(87%);
    }

.about-info-card:hover .card-icon {
    background: linear-gradient(135deg, var(--satco-gold) 0%, var(--satco-gold-light) 100%);
    transform: rotate(5deg) scale(1.05);
}

    .about-info-card:hover .card-icon img {
        filter: brightness(0) saturate(100%) invert(0%);
    }

.card-title {
    flex: 1;
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.card-toggle-btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--satco-gold);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--about-transition);
}

    .card-toggle-btn:hover {
        background: var(--satco-gold);
        color: #000000;
        transform: scale(1.1);
    }

.about-info-card.expanded .card-toggle-btn i {
    transform: rotate(180deg);
}

/* Card Content */
.card-content-section {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.about-info-card.expanded .card-content-section {
    max-height: 1000px;
    margin-top: 1.5rem;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .card-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.95rem;
        line-height: 1.6;
        color: #555555;
    }

        .card-list li i {
            color: var(--satco-gold);
            font-size: 0.9rem;
            margin-top: 3px;
            flex-shrink: 0;
        }

.card-text {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555555;
}

    .card-text i {
        color: var(--satco-gold);
        font-size: 0.9rem;
        margin-top: 3px;
        flex-shrink: 0;
    }

/* Default First Card Expanded */
.about-info-card:first-of-type {
    box-shadow: var(--about-card-hover-shadow);
}

/* ============================================
       BACKGROUND PATTERN
       ============================================ */

.about-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.pattern-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    filter: blur(60px);
}

.pattern-shape-1 {
    width: 400px;
    height: 400px;
    top: -10%;
    right: 5%;
    animation: floatPattern 15s ease-in-out infinite;
}

.pattern-shape-2 {
    width: 350px;
    height: 350px;
    bottom: -10%;
    left: 5%;
    animation: floatPattern 20s ease-in-out infinite reverse;
}

@keyframes floatPattern {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* ============================================
       RESPONSIVE DESIGN
       ============================================ */

@media (max-width: 1200px) {
    .about-container {
        gap: 3rem;
    }

    .about-images-gallery {
        height: 450px;
    }
}

@media (max-width: 992px) {
    .satco-about-section {
        padding: 80px 0;
    }

    .about-container {
        flex-direction: column;
        gap: 4rem;
    }

    .about-content-side,
    .about-cards-side {
        flex: 0 0 100%;
        order: unset !important;
    }

    .about-images-gallery {
        max-width: 100%;
        height: 400px;
        margin: 0 auto;
    }

    .gallery-secondary-image {
        right: -30px;
    }

    [dir="rtl"] .gallery-secondary-image {
        left: -30px;
    }
}

@media (max-width: 768px) {
    .satco-about-section {
        padding: 60px 0;
    }

    .about-container {
        padding: 0 1.5rem;
        gap: 3rem;
    }

    .about-main-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .description-text {
        font-size: 1rem;
    }

    .about-images-gallery {
        height: 350px;
    }

    .gallery-main-image {
        max-width: 100%;
        height: 350px;
    }

    .gallery-secondary-image {
        width: 220px;
        height: 160px;
        right: -20px;
        bottom: -20px;
    }

    [dir="rtl"] .gallery-secondary-image {
        left: -20px;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

        .card-icon img {
            width: 28px;
            height: 28px;
        }
}

@media (max-width: 576px) {
    .about-container {
        padding: 0 1rem;
    }

    .about-subtitle {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .about-images-gallery {
        height: 300px;
    }

    .gallery-main-image {
        height: 300px;
    }

    .gallery-secondary-image {
        width: 180px;
        height: 130px;
    }

    .image-badge {
        font-size: 0.75rem;
        padding: 8px 14px;
    }

    .about-info-card {
        padding: 1.25rem;
    }

    .card-list li,
    .card-text {
        font-size: 0.9rem;
    }
}

/* ============================================
       RTL SPECIFIC ADJUSTMENTS
       ============================================ */

[dir="rtl"] .about-container {
    flex-direction: row-reverse;
}

[dir="rtl"] .title-underline {
    flex-direction: row-reverse;
}

[dir="rtl"] .card-header-section {
    flex-direction: row-reverse;
}

@media (max-width: 992px) {
    [dir="rtl"] .about-container {
        flex-direction: column;
    }
}

/* ============================================
                                                                SATCO COUNTER SECTION
                                                                ============================================ */

/* ============================================
       MAIN SECTION
       ============================================ */

.satco-counter-section {
    position: relative;
    min-height: 500px;
    padding: 100px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
       DIAGONAL BACKGROUND SPLIT
       ============================================ */

.diagonal-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

/* Dark Side (Bottom Left) - PURE BLACK */
.diagonal-dark-side {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a1a 100%);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* Gold Side (Top Right) - 8% visible gold */
.diagonal-gold-side {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(244, 228, 176, 0.08) 100%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

/* Diagonal Line (Golden accent) */
.diagonal-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 48%, var(--satco-gold) 49%, var(--satco-gold) 51%, transparent 52%);
    opacity: 0.3;
    animation: diagonalShine 8s linear infinite;
}

@keyframes diagonalShine {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

/* ============================================
       COUNTER CONTAINER
       ============================================ */

.counter-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

/* ============================================
       COUNTER ITEMS
       ============================================ */

.counter-item {
    position: relative;
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .counter-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent 0%, var(--satco-gold) 50%, transparent 100%);
        transform: scaleX(0);
        transition: transform 0.5s ease;
    }

    .counter-item:hover {
        transform: translateY(-15px) scale(1.05);
        border-color: rgba(212, 175, 55, 0.3);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 175, 55, 0.2);
    }

        .counter-item:hover::before {
            transform: scaleX(1);
        }

/* Positioning on diagonal */
.counter-item-1 {
    transform: translateY(10px);
}

.counter-item-2 {
    transform: translateY(10px);
}

.counter-item-3 {
    transform: translateY(10px);
}

.counter-item-4 {
    transform: translateY(10px);
}

.counter-item-1:hover {
    transform: translateY(-35px) scale(1.05);
}

.counter-item-2:hover {
    transform: translateY(-25px) scale(1.05);
}

.counter-item-3:hover {
    transform: translateY(-5px) scale(1.05);
}

.counter-item-4:hover {
    transform: translateY(5px) scale(1.05);
}

/* ============================================
       ICON WRAPPER
       ============================================ */

.counter-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pulse Ring */
.icon-pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--satco-gold);
    border-radius: 50%;
    animation: iconPulseRing 2s ease-out infinite;
}

@keyframes iconPulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Icon Circle */
.counter-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--satco-gold) 0%, var(--satco-gold-light) 100%);
    border-radius: 50%;
    color: #000000;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4), inset 0 3px 10px rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
}

.counter-item:hover .counter-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6), inset 0 3px 10px rgba(255, 255, 255, 0.5);
}

/* ============================================
       COUNTER CONTENT
       ============================================ */

.counter-content {
    position: relative;
    z-index: 2;
}

.counter-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 0.5rem;
}

.counter-number {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--satco-gold);
    line-height: 1;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5), 0 0 40px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.counter-item:hover .counter-number {
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.8), 0 0 60px rgba(212, 175, 55, 0.5);
}

.counter-plus {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--satco-gold);
    opacity: 0.8;
}

.counter-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.counter-item:hover .counter-label {
    color: var(--satco-gold);
}

/* Counter Underline */
.counter-underline {
    width: 60px;
    height: 3px;
    background: var(--satco-gold);
    margin: 1rem auto 0;
    border-radius: 2px;
    transform: scaleX(0.5);
    transition: transform 0.4s ease;
}

.counter-item:hover .counter-underline {
    transform: scaleX(1);
}

/* ============================================
       COUNTER GLOW EFFECT
       ============================================ */

.counter-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.counter-item:hover .counter-glow {
    opacity: 1;
}

/* ============================================
       DECORATIVE PARTICLES (Stars)
       ============================================ */

.counter-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.particle-star {
    position: absolute;
    color: var(--satco-gold);
    font-size: 1rem;
    opacity: 0.4;
    animation: particleFloat 15s linear infinite;
}

.particle-star-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.particle-star-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2.5s;
}

.particle-star-3 {
    top: 60%;
    left: 20%;
    animation-delay: 5s;
}

.particle-star-4 {
    top: 70%;
    right: 25%;
    animation-delay: 7.5s;
}

.particle-star-5 {
    top: 40%;
    left: 50%;
    animation-delay: 10s;
}

.particle-star-6 {
    top: 80%;
    right: 10%;
    animation-delay: 12.5s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg) scale(0.5);
        opacity: 0;
    }
}

/* ============================================
       ANIMATED WAVES
       ============================================ */

.counter-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    pointer-events: none;
    opacity: 0.1;
    z-index: 1;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23D4AF37'/%3E%3C/svg%3E") repeat-x;
    animation: waveMove 20s linear infinite;
}

.wave-1 {
    opacity: 0.3;
    animation-duration: 20s;
}

.wave-2 {
    opacity: 0.2;
    animation-duration: 25s;
    animation-direction: reverse;
}

.wave-3 {
    opacity: 0.15;
    animation-duration: 30s;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
       RESPONSIVE DESIGN
       ============================================ */

@media (max-width: 1200px) {
    .counter-container {
        gap: 2rem;
    }

    .counter-number {
        font-size: clamp(1.75rem, 4vw, 2.25rem);
    }
}

@media (max-width: 992px) {
    .satco-counter-section {
        padding: 80px 0;
    }

    .counter-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    /* Reset diagonal positioning on smaller screens */
    .counter-item-1,
    .counter-item-2,
    .counter-item-3,
    .counter-item-4 {
        transform: translateY(0);
    }

        .counter-item-1:hover,
        .counter-item-2:hover,
        .counter-item-3:hover,
        .counter-item-4:hover {
            transform: translateY(-15px) scale(1.05);
        }
}

@media (max-width: 768px) {
    .satco-counter-section {
        padding: 60px 0;
        min-height: 400px;
    }

    .counter-container {
        padding: 0 1.5rem;
        gap: 1.5rem;
    }

    .counter-item {
        padding: 1.5rem 1rem;
        min-height: 280px;
    }

    .counter-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    .counter-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .counter-number {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .counter-plus {
        font-size: 2rem;
    }

    .counter-label {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .counter-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .counter-item {
        padding: 1.5rem;
        min-height: 260px;
    }

    .counter-number {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .counter-label {
        font-size: 0.95rem;
    }
}

/* ============================================
       RTL ADJUSTMENTS
       ============================================ */

[dir="rtl"] .diagonal-dark-side {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

[dir="rtl"] .diagonal-gold-side {
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

[dir="rtl"] .diagonal-line {
    background: linear-gradient(225deg, transparent 48%, var(--satco-gold) 49%, var(--satco-gold) 51%, transparent 52%);
}





/* ============================================
   SATCO WHY CHOOSE US SECTION - FIXED
   Better text visibility + Equal heights
   ============================================ */

/* ============================================
   MAIN SECTION
   ============================================ */

.satco-why-choose-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f5f6f8 100%);
    overflow: hidden;
}

.why-choose-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-choose-main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #000000; /* Pure Black for better visibility */
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-gold {
    color: var(--satco-gold);
}

.why-choose-subtitle {
    font-size: 1.2rem; /* Increased from 1.15rem */
    color: #333333; /* Darker for better visibility */
    margin-bottom: 2rem;
    font-weight: 500; /* Increased from 400 */
}

/* Title Divider */
.why-choose-title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
}

.divider-dot {
    width: 8px;
    height: 8px;
    background: var(--satco-gold);
    border-radius: 50%;
    animation: dotPulseWhy 2s ease-in-out infinite;
}

    .divider-dot:nth-child(1) {
        animation-delay: 0s;
    }

    .divider-dot:nth-child(3) {
        animation-delay: 1s;
    }

@keyframes dotPulseWhy {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.divider-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--satco-gold) 50%, transparent 100%);
}

/* ============================================
   HEXAGON GRID - 3 PER ROW - LARGER SIZE
   ============================================ */

.hexagon-grid-wrapper {
    padding: 2rem 0;
}

.hexagon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 في كل صف */
    gap: 3rem 2.5rem; /* مسافة أكبر */
    max-width: 1200px; /* عرض أكبر */
    margin: 0 auto; /* توسيط */
}

/* ============================================
   HEXAGON ITEM - LARGER SIZE
   ============================================ */

.hexagon-item {
    position: relative;
    width: 100%; /* يأخذ عرض الـ grid */
    height: 380px; /* زيادة من 320px */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-self: center; /* توسيط في الـ grid */
}

    .hexagon-item:hover {
        transform: translateY(-15px) scale(1.05);
    }

/* ============================================
   HEXAGON SHAPE (CSS Hexagon) - LARGER SIZE
   ============================================ */

.hexagon-shape {
    position: relative;
    width: 100%; /* يأخذ عرض الـ parent */
    max-width: 320px; /* زيادة من 260px */
    height: 100%; /* Fill parent */
    background: #ffffff;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.5s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin: 0 auto; /* توسيط */
}

    .hexagon-shape::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        opacity: 0;
        transition: opacity 0.5s ease;
    }

.hexagon-item:hover .hexagon-shape {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 3px var(--satco-gold);
}

    .hexagon-item:hover .hexagon-shape::before {
        opacity: 1;
    }

/* ============================================
   HEXAGON INNER CONTENT - MORE SPACE
   ============================================ */

.hexagon-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2.5rem; /* زيادة padding */
    text-align: center;
}

/* ============================================
   HEXAGON ICON - LARGER SIZE
   ============================================ */

.hexagon-icon {
    width: 90px; /* زيادة من 80px */
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--satco-gold) 0%, var(--satco-gold-light) 100%);
    border-radius: 50%;
    margin-bottom: 1.75rem; /* زيادة المسافة */
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3), inset 0 3px 10px rgba(255, 255, 255, 0.4);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
}

    .hexagon-icon i {
        font-size: 2.25rem; /* زيادة من 2rem */
        color: #000000; /* Black for contrast */
        transition: all 0.5s ease;
    }

.hexagon-item:hover .hexagon-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5), inset 0 3px 10px rgba(255, 255, 255, 0.6);
}

/* ============================================
   HEXAGON TITLE - LARGER TEXT
   ============================================ */

.hexagon-title {
    font-size: 1.45rem; /* زيادة من 1.3rem */
    font-weight: 700;
    color: #000000; /* Pure Black */
    margin-bottom: 1.25rem; /* زيادة المسافة */
    transition: all 0.3s ease;
    line-height: 1.3;
    flex-shrink: 0;
}

.hexagon-item:hover .hexagon-title {
    color: var(--satco-gold);
}

/* ============================================
   HEXAGON DESCRIPTION - LARGER TEXT
   ============================================ */

.hexagon-description {
    font-size: 1.1rem; /* زيادة من 1rem */
    line-height: 1.7;
    color: #333333;
    margin: 0;
    transition: all 0.3s ease;
    font-weight: 400;
}

.hexagon-item:hover .hexagon-description {
    color: #000000; /* Pure Black on hover */
}

/* ============================================
   BACKGROUND ELEMENTS
   ============================================ */

.why-choose-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    filter: blur(60px);
}

.bg-circle-1 {
    width: 400px;
    height: 400px;
    top: -10%;
    left: 10%;
    animation: circleFloat1 20s ease-in-out infinite;
}

.bg-circle-2 {
    width: 350px;
    height: 350px;
    bottom: -10%;
    right: 10%;
    animation: circleFloat2 25s ease-in-out infinite;
}

@keyframes circleFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

@keyframes circleFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 30px) scale(1.15);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1400px) {
    .hexagon-grid {
        gap: 2.5rem 1.5rem;
        max-width: 950px;
    }
}

@media (max-width: 1200px) {
    .hexagon-grid {
        gap: 2rem 1.25rem;
        max-width: 850px;
    }

    .hexagon-item {
        height: 300px;
    }

    .hexagon-shape {
        max-width: 240px;
    }

    .hexagon-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }

        .hexagon-icon i {
            font-size: 1.75rem;
        }

    .hexagon-title {
        font-size: 1.2rem;
    }

    .hexagon-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .satco-why-choose-section {
        padding: 80px 0;
    }

    .hexagon-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 في الصف للتابلت */
        gap: 2.5rem 2rem;
        max-width: 600px;
    }

    .hexagon-item {
        height: 300px;
    }

    .hexagon-shape {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .satco-why-choose-section {
        padding: 60px 0;
    }

    .why-choose-container {
        padding: 0 1.5rem;
    }

    .why-choose-header {
        margin-bottom: 3rem;
    }

    .why-choose-main-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .why-choose-subtitle {
        font-size: 1.05rem;
    }

    .hexagon-grid {
        grid-template-columns: 1fr; /* 1 في الصف للموبايل */
        gap: 2rem;
        max-width: 300px; /* أصغر للموبايل */
    }

    .hexagon-item {
        width: 100%;
        max-width: 240px;
        height: 290px;
        margin: 0 auto; /* توسيط */
    }

    .hexagon-shape {
        width: 100%;
    }

    .hexagon-title {
        font-size: 1.15rem;
    }

    .hexagon-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hexagon-grid {
        gap: 2rem;
        max-width: 240px;
    }

    .hexagon-item {
        height: 280px;
    }

    .hexagon-shape {
        max-width: 220px;
    }

    .hexagon-inner {
        padding: 2rem 1.5rem;
    }

    .hexagon-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

        .hexagon-icon i {
            font-size: 1.5rem;
        }

    .hexagon-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .hexagon-description {
        font-size: 0.875rem;
        line-height: 1.6;
    }
}

/* ============================================
   RTL ADJUSTMENTS
   ============================================ */

[dir="rtl"] .hexagon-grid {
    flex-direction: row-reverse;
}

[dir="rtl"] .divider-line {
    background: linear-gradient(270deg, transparent 0%, var(--satco-gold) 50%, transparent 100%);
}



                                                               /* ============================================
                                                               SATCO FEATURES SECTION 
                                                               ============================================ */


/* ============================================
   MAIN SECTION
   ============================================ */

.satco-features-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    overflow: hidden;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-highlight {
    color: var(--satco-gold);
    position: relative;
}

.title-decorator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 1rem;
}

.decorator-line {
    width: 80px;
    height: 2px;
    background: linear-gradient( 90deg, transparent 0%, var(--satco-gold) 50%, transparent 100% );
}

.decorator-diamond {
    color: var(--satco-gold);
    font-size: 0.8rem;
    animation: diamondRotate 3s linear infinite;
}

@keyframes diamondRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   FEATURES GRID LAYOUT
   ============================================ */

.features-grid-layout {
    display: grid;
    grid-template-columns: 1fr 500px 1fr;
    gap: 3rem;
    align-items: center;
}

/* ============================================
   LEFT & RIGHT COLUMNS
   ============================================ */

.features-left-column,
.features-right-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ============================================
   FEATURE CARDS
   ============================================ */

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient( 135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100% );
        border-radius: 20px;
        opacity: 0;
        transition: all 0.4s ease;
    }

    .feature-card:hover {
        transform: translateY(-8px) scale(1.02);
        border-color: rgba(212, 175, 55, 0.3);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.2);
    }

        .feature-card:hover::before {
            opacity: 1;
        }

/* Left Cards Specific */
.feature-card-left {
    flex-direction: row;
}

[dir="rtl"] .feature-card-left {
    flex-direction: row-reverse;
}

/* Right Cards Specific */
.feature-card-right {
    flex-direction: row-reverse;
}

[dir="rtl"] .feature-card-right {
    flex-direction: row;
}

/* ============================================
   FEATURE NUMBER
   ============================================ */

.feature-number {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: var(--satco-gold-dark);
    line-height: 1;
    pointer-events: none;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-number {
    color: rgba(212, 175, 55, 0.2);
    transform: scale(1.2);
}

[dir="rtl"] .feature-number {
    right: auto;
    left: 20px;
}

/* ============================================
   FEATURE ICON
   ============================================ */

.feature-icon-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.icon-bg-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--satco-gold) 0%, var(--satco-gold-light) 100%);
    border-radius: 50%;
    color: var(--satco-dark);
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3), inset 0 2px 8px rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5), inset 0 2px 8px rgba(255, 255, 255, 0.5);
}

/* ============================================
   FEATURE CONTENT
   ============================================ */

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-title {
    color: var(--satco-gold);
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ============================================
   CARD CONNECTORS (Lines to Center)
   ============================================ */

.card-connector {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient( 90deg, transparent 0%, rgba(212, 175, 55, 0.3) 50%, var(--satco-gold) 100% );
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.4s ease;
}

.feature-card:hover .card-connector {
    opacity: 1;
    width: 60px;
}

.connector-right {
    right: -60px;
}

.connector-left {
    left: -60px;
    background: linear-gradient( 270deg, transparent 0%, rgba(212, 175, 55, 0.3) 50%, var(--satco-gold) 100% );
}

/* ============================================
   CENTER IMAGE SECTION
   ============================================ */

.features-center-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
}

/* Golden Frame */
.golden-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    pointer-events: none;
    z-index: 3;
}

.frame-corner {
    position: absolute;
    width: 70px;
    height: 70px;
    border: 3px solid var(--satco-gold);
}

.frame-tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-radius: 12px 0 0 0;
}

.frame-tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
    border-radius: 0 12px 0 0;
}

.frame-bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 12px;
}

.frame-br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-radius: 0 0 12px 0;
}

.frame-glow-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--satco-gold);
    border-radius: 30px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4), 0 0 60px rgba(212, 175, 55, 0.2), inset 0 0 30px rgba(212, 175, 55, 0.1);
    animation: frameGlow 3s ease-in-out infinite;
}

@keyframes frameGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.4), 0 0 60px rgba(212, 175, 55, 0.2), inset 0 0 30px rgba(212, 175, 55, 0.1);
    }

    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.6), 0 0 80px rgba(212, 175, 55, 0.3), inset 0 0 40px rgba(212, 175, 55, 0.15);
    }
}

/* Car Image Box */
.image-frame-container .car-image-box {
    position: relative;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 30px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
}

.image-frame-container .car-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: all 0.5s ease;
    animation: carFloat 6s ease-in-out infinite;
}


@keyframes carFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

.car-image-box:hover .car-image {
    transform: scale(1.1) rotate(2deg);
}

/* Image Shine Effect */
.image-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient( 45deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100% );
    transform: rotate(45deg);
    animation: imageShine 8s linear infinite;
    pointer-events: none;
}

@keyframes imageShine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Center Badge */
.center-badge {
    position: absolute;
    top: -20px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--satco-gold) 0%, var(--satco-gold-light) 100%);
    color: var(--satco-dark);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), inset 0 2px 5px rgba(255, 255, 255, 0.3);
    z-index: 4;
    animation: badgeBounce 3s ease-in-out infinite;
}

@keyframes badgeBounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

[dir="rtl"] .center-badge {
    right: auto;
    left: 30px;
}

.center-badge i {
    font-size: 1.1rem;
}

/* Decorative Orbits */
.deco-orbit {
    position: absolute;
    border: 1px dashed rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-1 {
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    animation: orbitRotate 20s linear infinite;
}

.orbit-2 {
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    animation: orbitRotate 25s linear infinite reverse;
}

.orbit-3 {
    top: -70px;
    left: -70px;
    right: -70px;
    bottom: -70px;
    animation: orbitRotate 30s linear infinite;
}

@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   BACKGROUND ELEMENTS
   ============================================ */

.features-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    filter: blur(80px);
}

.bg-gradient-1 {
    width: 500px;
    height: 500px;
    top: -10%;
    left: 10%;
    animation: bgFloat1 15s ease-in-out infinite;
}

.bg-gradient-2 {
    width: 400px;
    height: 400px;
    bottom: -10%;
    right: 10%;
    animation: bgFloat2 20s ease-in-out infinite;
}

@keyframes bgFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, -40px) scale(1.2);
    }
}

@keyframes bgFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 30px) scale(1.15);
    }
}

.bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--satco-gold);
    border-radius: 50%;
    opacity: 0.4;
    animation: particleDrift 20s linear infinite;
}

    .particle-dot:nth-child(1) {
        top: 20%;
        left: 15%;
        animation-delay: 0s;
    }

    .particle-dot:nth-child(2) {
        top: 40%;
        right: 20%;
        animation-delay: 4s;
    }

    .particle-dot:nth-child(3) {
        top: 60%;
        left: 25%;
        animation-delay: 8s;
    }

    .particle-dot:nth-child(4) {
        top: 80%;
        right: 30%;
        animation-delay: 12s;
    }

    .particle-dot:nth-child(5) {
        top: 50%;
        left: 50%;
        animation-delay: 16s;
    }

@keyframes particleDrift {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-100vh) scale(0.5);
        opacity: 0;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .features-grid-layout {
        grid-template-columns: 1fr 400px 1fr;
        gap: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 992px) {
    .satco-features-section {
        padding: 80px 0;
    }

    .features-grid-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-left-column,
    .features-right-column {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .card-connector {
        display: none;
    }

    .image-frame-container {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .satco-features-section {
        padding: 60px 0;
    }

    .features-container {
        padding: 0 1.5rem;
    }

    .features-main-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .features-left-column,
    .features-right-column {
        grid-template-columns: 1fr;
    }

    .feature-card {
        flex-direction: column !important;
        text-align: center;
        padding: 1.5rem;
    }

    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .feature-number {
        font-size: 2.5rem;
    }

    .image-frame-container {
        max-width: 320px;
    }

    .frame-corner {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .feature-card {
        padding: 1.25rem;
        gap: 1rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }

    .center-badge {
        font-size: 0.85rem;
        padding: 10px 18px;
    }
}

/* ============================================
   RTL ADJUSTMENTS
   ============================================ */

[dir="rtl"] .features-grid-layout {
    direction: rtl;
}

[dir="rtl"] .title-decorator {
    flex-direction: row-reverse;
}

                                                                        /* ============================================
                                                                           SATCO BRANCHES SECTION 
                                                                           ============================================ */

/* ============================================
   MAIN SECTION
   ============================================ */

.satco-branches-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f5f6f8 100%);
    overflow: hidden;
}

.branches-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.branches-header {
    text-align: center;
    margin-bottom: 4rem;
}

.branches-main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--satco-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-accent {
    color: var(--satco-gold);
}

.branches-subtitle {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Title Decoration */
.branches-title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
}

.decoration-line-start,
.decoration-line-end {
    width: 80px;
    height: 2px;
    background: linear-gradient( 90deg, transparent 0%, var(--satco-gold) 100% );
}

.decoration-line-end {
    background: linear-gradient( 270deg, transparent 0%, var(--satco-gold) 100% );
}

.decoration-icon {
    color: var(--satco-gold);
    font-size: 1.3rem;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ============================================
   BRANCHES LIST
   ============================================ */

.branches-list-wrapper {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.branches-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ============================================
   BRANCH ITEM
   ============================================ */

.branch-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

    .branch-item:first-child {
        border-radius: 20px 20px 0 0;
    }

    .branch-item:last-child {
        border-radius: 0 0 20px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .branch-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient( 90deg, rgba(212, 175, 55, 0.03) 0%, transparent 100% );
        opacity: 0;
        transition: opacity 0.4s ease;
    }

[dir="rtl"] .branch-item::before {
    background: linear-gradient( 270deg, rgba(212, 175, 55, 0.03) 0%, transparent 100% );
}

.branch-item:hover {
    transform: translateX(10px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), -5px 0 0 0 var(--satco-gold);
}

[dir="rtl"] .branch-item:hover {
    transform: translateX(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 5px 0 0 0 var(--satco-gold);
}

.branch-item:hover::before {
    opacity: 1;
}

/* ============================================
   BRANCH NUMBER
   ============================================ */

.branch-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--satco-gold-dark);
    line-height: 1;
    min-width: 80px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.branch-item:hover .branch-number {
    color: rgba(212, 175, 55, 0.3);
    transform: scale(1.1);
}

/* ============================================
   BRANCH INFO
   ============================================ */

.branch-info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.branch-location,
.branch-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .branch-location i {
        color: var(--satco-gold);
        font-size: 1.3rem;
        transition: all 0.3s ease;
    }

.branch-item:hover .branch-location i {
    transform: scale(1.2);
}

.branch-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--satco-dark);
    transition: all 0.3s ease;
}

.branch-item:hover .branch-name {
    color: var(--satco-gold);
}

.branch-contact i {
    color: var(--satco-gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.branch-item:hover .branch-contact i {
    animation: phoneRing 0.5s ease;
}

@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-15deg);
    }

    75% {
        transform: rotate(15deg);
    }
}

.branch-phone {
    font-size: 1.15rem;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    direction: ltr;
    transition: all 0.3s ease;
}

    .branch-phone:hover {
        color: var(--satco-gold);
    }

/* ============================================
   BRANCH INDICATOR
   ============================================ */

.branch-indicator {
    width: 12px;
    height: 12px;
    background: var(--satco-gold);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
}

.branch-item:hover .branch-indicator {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   SOCIAL MEDIA SECTION
   ============================================ */

.branches-social {
    text-align: center;
    padding: 3rem 0 1rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.social-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--satco-dark);
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--satco-gold) 0%, var(--satco-gold-light) 100%);
    color: var(--satco-dark);
    border-radius: 50%;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3), inset 0 2px 8px rgba(255, 255, 255, 0.3);
}

    .social-link:hover {
        transform: translateY(-8px) scale(1.1) rotate(360deg);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5), inset 0 2px 8px rgba(255, 255, 255, 0.5);
    }

/* ============================================
   BACKGROUND DECORATIONS
   ============================================ */

.branches-bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.decoration-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    filter: blur(60px);
}

.decoration-shape-1 {
    width: 400px;
    height: 400px;
    top: -10%;
    right: 10%;
    animation: shapeFloat1 18s ease-in-out infinite;
}

.decoration-shape-2 {
    width: 350px;
    height: 350px;
    bottom: -10%;
    left: 10%;
    animation: shapeFloat2 22s ease-in-out infinite;
}

@keyframes shapeFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

@keyframes shapeFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 30px) scale(1.15);
    }
}

.decoration-dots-grid {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

[dir="rtl"] .decoration-dots-grid {
    right: auto;
    left: 50px;
}

.decoration-dots-grid span {
    width: 8px;
    height: 8px;
    background: var(--satco-gold);
    border-radius: 50%;
    opacity: 0.2;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .satco-branches-section {
        padding: 80px 0;
    }

    .branch-item {
        gap: 1.5rem;
        padding: 1.75rem 2rem;
    }

    .branch-number {
        font-size: 2.5rem;
        min-width: 70px;
    }

    .branch-info {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .satco-branches-section {
        padding: 60px 0;
    }

    .branches-container {
        padding: 0 1.5rem;
    }

    .branches-header {
        margin-bottom: 3rem;
    }

    .branches-main-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .branches-subtitle {
        font-size: 1rem;
    }

    .branches-list-wrapper {
        margin-bottom: 3rem;
    }

    .branch-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 1.5rem;
    }

    .branch-number {
        font-size: 2rem;
        min-width: auto;
    }

    .branch-info {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .branch-name {
        font-size: 1.2rem;
    }

    .branch-phone {
        font-size: 1.05rem;
    }

    .social-icons {
        gap: 1.25rem;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .branch-item {
        padding: 1.25rem;
    }

    .branch-number {
        font-size: 1.75rem;
    }

    .branch-location,
    .branch-contact {
        gap: 10px;
    }

        .branch-location i,
        .branch-contact i {
            font-size: 1.1rem;
        }

    .branch-name {
        font-size: 1.1rem;
    }

    .branch-phone {
        font-size: 1rem;
    }

    .social-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .social-icons {
        gap: 1rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* ============================================
   RTL ADJUSTMENTS
   ============================================ */

[dir="rtl"] .branches-title-decoration {
    flex-direction: row-reverse;
}

[dir="rtl"] .decoration-line-start {
    background: linear-gradient( 270deg, transparent 0%, var(--satco-gold) 100% );
}

[dir="rtl"] .decoration-line-end {
    background: linear-gradient( 90deg, transparent 0%, var(--satco-gold) 100% );
}

[dir="rtl"] .branch-info {
    flex-direction: row-reverse;
}

[dir="rtl"] .social-icons {
    flex-direction: row-reverse;
}


/* ============================================
                                                                    SATCO CAR CATEGORIES SECTION
                                                                    ============================================ */

/* ============================================
   MAIN SECTION
   ============================================ */

.satco-cars-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    overflow: hidden;
}

.cars-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.cars-header {
    text-align: center;
    margin-bottom: 4rem;
}

.cars-main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-golden {
    color: var(--satco-gold);
}

.cars-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Title Line */
.cars-title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 1.5rem;
}

.line-dot {
    width: 8px;
    height: 8px;
    background: var(--satco-gold);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.line-bar {
    width: 100px;
    height: 2px;
    background: linear-gradient( 90deg, transparent 0%, var(--satco-gold) 50%, transparent 100% );
}

/* ============================================
   CAROUSEL WRAPPER
   ============================================ */

.cars-carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

/* ============================================
   CAR CARD
   ============================================ */

.car-card-item {
    padding: 15px;
}

.car-card-inner {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

    .car-card-inner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient( 135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100% );
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .car-card-inner:hover {
        transform: translateY(-10px);
        border-color: rgba(212, 175, 55, 0.3);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 175, 55, 0.2);
    }

        .car-card-inner:hover::before {
            opacity: 1;
        }

/* ============================================
   CAR IMAGE BOX
   ============================================ */

.car-image-box {
    position: relative;
    width: 100%;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Gold Frame */
.image-frame-gold {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    pointer-events: none;
    transition: all 0.5s ease;
}

.car-card-inner:hover .image-frame-gold {
    border-color: var(--satco-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), inset 0 0 20px rgba(212, 175, 55, 0.1);
}

/* Car Image */
.car-img {
    width: 90%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.car-card-inner:hover .car-img {
    transform: scale(1.1);
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
}

/* Car Badge */
.car-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--satco-gold) 0%, var(--satco-gold-light) 100%);
    color: var(--satco-dark);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    z-index: 3;
}

[dir="rtl"] .car-badge {
    right: auto;
    left: 20px;
}

.car-badge i {
    font-size: 0.9rem;
}

/* ============================================
   CAR CONTENT BOX
   ============================================ */

.car-content-box {
    padding: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.car-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.car-card-inner:hover .car-name {
    color: var(--satco-gold);
}

/* ============================================
   RATING STARS
   ============================================ */

.car-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 1.25rem;
}

    .car-rating i {
        color: var(--satco-gold);
        font-size: 1rem;
        transition: all 0.3s ease;
    }

.car-card-inner:hover .car-rating i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px var(--satco-gold));
}

.car-rating i:nth-child(1) {
    transition-delay: 0s;
}

.car-rating i:nth-child(2) {
    transition-delay: 0.05s;
}

.car-rating i:nth-child(3) {
    transition-delay: 0.1s;
}

.car-rating i:nth-child(4) {
    transition-delay: 0.15s;
}

.car-rating i:nth-child(5) {
    transition-delay: 0.2s;
}

/* ============================================
   CAR INFO GRID
   ============================================ */

.car-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

    .info-item:hover {
        color: var(--satco-gold);
    }

    .info-item i {
        color: var(--satco-gold);
        font-size: 1.1rem;
    }

    .info-item span {
        font-size: 0.8rem;
        font-weight: 500;
    }

/* ============================================
   CUSTOM NAVIGATION
   ============================================ */

.carousel-nav-custom {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.nav-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--satco-gold) 0%, var(--satco-gold-light) 100%);
    color: var(--satco-dark);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3), inset 0 2px 8px rgba(255, 255, 255, 0.3);
}

    .nav-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5), inset 0 2px 8px rgba(255, 255, 255, 0.5);
    }

    .nav-btn:active {
        transform: scale(0.95);
    }

.nav-prev {
    left: 0;
}

.nav-next {
    right: 0;
}

/* ============================================
   OWL CAROUSEL DOTS (Custom)
   ============================================ */

.satco-cars-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 2.5rem;
}

.satco-cars-carousel .owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .satco-cars-carousel .owl-dot:hover {
        background: rgba(212, 175, 55, 0.5);
        transform: scale(1.2);
    }

    .satco-cars-carousel .owl-dot.active {
        width: 30px;
        border-radius: 6px;
        background: linear-gradient(90deg, var(--satco-gold) 0%, var(--satco-gold-light) 100%);
    }

/* ============================================
   BACKGROUND ELEMENTS
   ============================================ */

.cars-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    filter: blur(80px);
}

.bg-shape-1 {
    width: 500px;
    height: 500px;
    top: -10%;
    left: 10%;
    animation: shapeFloat1 20s ease-in-out infinite;
}

.bg-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -10%;
    right: 10%;
    animation: shapeFloat2 25s ease-in-out infinite;
}

@keyframes shapeFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, -40px) scale(1.15);
    }
}

@keyframes shapeFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 30px) scale(1.1);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .cars-carousel-wrapper {
        padding: 0 50px;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .satco-cars-section {
        padding: 80px 0;
    }

    .cars-carousel-wrapper {
        padding: 0 45px;
    }
}

@media (max-width: 768px) {
    .satco-cars-section {
        padding: 60px 0;
    }

    .cars-container {
        padding: 0 1.5rem;
    }

    .cars-header {
        margin-bottom: 3rem;
    }

    .cars-main-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .cars-subtitle {
        font-size: 1rem;
    }

    .cars-carousel-wrapper {
        padding: 0 40px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .car-image-box {
        height: 180px;
    }

    .car-name {
        font-size: 1.2rem;
    }

    .car-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cars-carousel-wrapper {
        padding: 0 35px;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .car-image-box {
        height: 160px;
    }

    .car-content-box {
        padding: 1.25rem;
    }

    .car-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

/* ============================================
   RTL ADJUSTMENTS
   ============================================ */

[dir="rtl"] .satco-cars-carousel {
    direction: rtl;
}

[dir="rtl"] .nav-prev {
    left: auto;
    right: 0;
}

[dir="rtl"] .nav-next {
    right: auto;
    left: 0;
}



                                                                /* ============================================
                                                                SATCO SERVICES SECTION
                                                                ============================================ */

/* ============================================
       MAIN SECTION
       ============================================ */

.satco-services-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f6f8 100%);
    overflow: hidden;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* ============================================
       SECTION HEADER
       ============================================ */

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--satco-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-gold {
    color: var(--satco-gold);
    position: relative;
}

.services-subtitle {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Title Divider */
.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 1.5rem;
}

.divider-line-left,
.divider-line-right {
    width: 80px;
    height: 2px;
    background: linear-gradient( 90deg, transparent 0%, var(--satco-gold) 100% );
}

.divider-line-right {
    background: linear-gradient( 270deg, transparent 0%, var(--satco-gold) 100% );
}

.divider-icon {
    color: var(--satco-gold);
    font-size: 1.2rem;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ============================================
       SERVICES GRID
       ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ============================================
       SERVICE CARD
       ============================================ */

.service-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient( 90deg, var(--satco-gold) 0%, var(--satco-gold-light) 100% );
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
    }

[dir="rtl"] .service-card::before {
    transform-origin: right;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( 135deg, rgba(212, 175, 55, 0.03) 0%, transparent 100% );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(212, 175, 55, 0.2);
}

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover::after {
        opacity: 1;
    }

/* ============================================
       SERVICE NUMBER
       ============================================ */

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.5);
    line-height: 1;
    pointer-events: none;
    transition: all 0.5s ease;
    z-index: 1;
}

[dir="rtl"] .service-number {
    right: auto;
    left: 20px;
}

.service-card:hover .service-number {
    color: rgba(212, 175, 55, 0.7);
    transform: scale(1.1);
}

/* ============================================
       ICON BOX
       ============================================ */

.service-icon-box {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Icon Background Circle */
.icon-bg-circle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient( circle, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 50%, transparent 100% );
    border-radius: 50%;
    animation: circlePulse 3s ease-in-out infinite;
}

@keyframes circlePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Service Icon */
.service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--satco-gold) 0%, var(--satco-gold-light) 100%);
    border-radius: 50%;
    color: var(--satco-dark);
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3), inset 0 3px 10px rgba(255, 255, 255, 0.4);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5), inset 0 3px 10px rgba(255, 255, 255, 0.6);
}

/* ============================================
       CONTENT
       ============================================ */

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--satco-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--satco-gold);
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
    flex: 1;
    position: relative;
    z-index: 2;
}

/* ============================================
       BOTTOM LINE
       ============================================ */

.service-bottom-line {
    width: 60px;
    height: 3px;
    background: var(--satco-gold);
    margin: 1.5rem auto 0;
    border-radius: 2px;
    transform: scaleX(0.5);
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-bottom-line {
    transform: scaleX(1);
    width: 80px;
}

/* ============================================
       BACKGROUND DECORATIONS
       ============================================ */

.services-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(212, 175, 55, 0.05) 0%, transparent 70% );
    filter: blur(60px);
}

.decoration-circle-1 {
    width: 400px;
    height: 400px;
    top: -10%;
    right: 5%;
    animation: decorationFloat1 20s ease-in-out infinite;
}

.decoration-circle-2 {
    width: 350px;
    height: 350px;
    bottom: -10%;
    left: 5%;
    animation: decorationFloat2 25s ease-in-out infinite;
}

@keyframes decorationFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

@keyframes decorationFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 30px) scale(1.15);
    }
}

.decoration-dots {
    position: absolute;
    top: 50%;
    right: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    transform: translateY(-50%);
}

[dir="rtl"] .decoration-dots {
    right: auto;
    left: 50px;
}

.decoration-dots span {
    width: 8px;
    height: 8px;
    background: var(--satco-gold);
    border-radius: 50%;
    opacity: 0.2;
}

/* ============================================
       RESPONSIVE DESIGN
       ============================================ */

@media (max-width: 1200px) {
    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
        min-height: 360px;
    }
}

@media (max-width: 992px) {
    .satco-services-section {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .service-card {
        min-height: 340px;
    }
}

@media (max-width: 768px) {
    .satco-services-section {
        padding: 60px 0;
    }

    .services-container {
        padding: 0 1.5rem;
    }

    .services-header {
        margin-bottom: 3rem;
    }

    .services-main-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .services-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
        min-height: 320px;
    }

    .service-icon-box {
        width: 90px;
        height: 90px;
        margin-bottom: 1.25rem;
    }

    .service-icon {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.95rem;
    }

    .service-number {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        min-height: auto;
    }

    .service-number {
        font-size: 2.5rem;
        top: 15px;
        right: 15px;
    }

    [dir="rtl"] .service-number {
        left: 15px;
    }
}

/* ============================================
       RTL ADJUSTMENTS
       ============================================ */

[dir="rtl"] .title-divider {
    flex-direction: row-reverse;
}

[dir="rtl"] .divider-line-left {
    background: linear-gradient( 270deg, transparent 0%, var(--satco-gold) 100% );
}

[dir="rtl"] .divider-line-right {
    background: linear-gradient( 90deg, transparent 0%, var(--satco-gold) 100% );
}




                                                                /* ============================================
                                                                SATCO TESTIMONIALS SECTION
                                                                ============================================ */

/* ============================================
   MAIN SECTION
   ============================================ */

.satco-testimonials-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    overflow: hidden;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-highlight {
    color: var(--satco-gold);
}

.testimonials-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Title Decoration */
.testimonials-title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 1.5rem;
}

.decoration-circle {
    width: 10px;
    height: 10px;
    background: var(--satco-gold);
    border-radius: 50%;
    animation: circleGlow 2s ease-in-out infinite alternate;
}

@keyframes circleGlow {
    from {
        box-shadow: 0 0 5px var(--satco-gold);
    }

    to {
        box-shadow: 0 0 15px var(--satco-gold);
    }
}

.decoration-line {
    width: 120px;
    height: 2px;
    background: linear-gradient( 90deg, transparent 0%, var(--satco-gold) 50%, transparent 100% );
}

/* ============================================
   CAROUSEL WRAPPER
   ============================================ */

.testimonials-carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

/* ============================================
   TESTIMONIAL CARD
   ============================================ */

.testimonial-card-item {
    padding: 15px;
}

.testimonial-card-inner {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 480px;
    display: flex;
    flex-direction: column;
}

    .testimonial-card-inner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient( 135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100% );
        border-radius: 25px;
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .testimonial-card-inner:hover {
        transform: translateY(-10px);
        border-color: rgba(212, 175, 55, 0.3);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.2);
    }

        .testimonial-card-inner:hover::before {
            opacity: 1;
        }

/* ============================================
   QUOTE ICON
   ============================================ */

.quote-icon-top {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2.5rem;
    color: rgba(212, 175, 55, 0.15);
    z-index: 1;
}

[dir="rtl"] .quote-icon-top {
    left: auto;
    right: 20px;
}

/* ============================================
   CLIENT IMAGE
   ============================================ */

.client-image-box {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    z-index: 2;
}

.image-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid var(--satco-gold);
    animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.client-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.testimonial-card-inner:hover .client-img {
    transform: scale(1.05);
    border-color: var(--satco-gold);
}

/* ============================================
   CLIENT INFO
   ============================================ */

.client-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    z-index: 2;
    position: relative;
}

.client-position {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    z-index: 2;
    position: relative;
}

/* ============================================
   RATING STARS
   ============================================ */

.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 1.25rem;
    z-index: 2;
    position: relative;
}

    .testimonial-rating i {
        color: var(--satco-gold);
        font-size: 1rem;
        transition: all 0.3s ease;
    }

.testimonial-card-inner:hover .testimonial-rating i {
    transform: scale(1.15);
}

/* ============================================
   REVIEW TEXT
   ============================================ */

.review-text-short {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    flex: 1;
    z-index: 2;
    position: relative;
}

.review-text-full {
    display: none;
}

/* ============================================
   READ MORE BUTTON
   ============================================ */

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--satco-gold) 0%, var(--satco-gold-light) 100%);
    color: var(--satco-dark);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    position: relative;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3), inset 0 2px 8px rgba(255, 255, 255, 0.3);
}

    .read-more-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5), inset 0 2px 8px rgba(255, 255, 255, 0.5);
    }

    .read-more-btn:active {
        transform: translateY(-1px);
    }

    .read-more-btn i {
        transition: transform 0.3s ease;
    }

    .read-more-btn:hover i {
        transform: translateX(3px);
    }

[dir="rtl"] .read-more-btn:hover i {
    transform: translateX(-3px);
}

/* ============================================
   CUSTOM NAVIGATION
   ============================================ */

.testimonials-nav-custom {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.testimonials-nav-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--satco-gold) 0%, var(--satco-gold-light) 100%);
    color: var(--satco-dark);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3), inset 0 2px 8px rgba(255, 255, 255, 0.3);
}

    .testimonials-nav-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5), inset 0 2px 8px rgba(255, 255, 255, 0.5);
    }

    .testimonials-nav-btn:active {
        transform: scale(0.95);
    }

.testimonials-nav-prev {
    left: 0;
}

.testimonials-nav-next {
    right: 0;
}

/* ============================================
   OWL CAROUSEL DOTS
   ============================================ */

.satco-testimonials-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 2.5rem;
}

.satco-testimonials-carousel .owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .satco-testimonials-carousel .owl-dot:hover {
        background: rgba(212, 175, 55, 0.5);
        transform: scale(1.2);
    }

    .satco-testimonials-carousel .owl-dot.active {
        width: 30px;
        border-radius: 6px;
        background: linear-gradient(90deg, var(--satco-gold) 0%, var(--satco-gold-light) 100%);
    }

/* ============================================
   MODAL POPUP
   ============================================ */

.testimonial-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .testimonial-modal.active {
        display: flex;
        opacity: 1;
    }

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.modal-content-box {
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    padding: 3rem;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 2;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(212, 175, 55, 0.2);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Modal Close Button */
.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

[dir="rtl"] .modal-close-btn {
    right: auto;
    left: 20px;
}

.modal-close-btn:hover {
    background: var(--satco-gold);
    color: var(--satco-dark);
    transform: rotate(90deg);
}

/* Modal Client Info */
.modal-client-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.modal-client-image {
    flex-shrink: 0;
}

    .modal-client-image img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 3px solid var(--satco-gold);
        object-fit: cover;
    }

.modal-client-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.modal-client-details p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
}

.modal-rating {
    display: flex;
    gap: 5px;
}

    .modal-rating i {
        color: var(--satco-gold);
        font-size: 1rem;
    }

/* Modal Quote Icon */
.modal-quote-icon {
    text-align: center;
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.2);
    margin-bottom: 1.5rem;
}

/* Modal Review Text */
.modal-review-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}

/* Modal Scrollbar */
.modal-content-box::-webkit-scrollbar {
    width: 8px;
}

.modal-content-box::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.modal-content-box::-webkit-scrollbar-thumb {
    background: var(--satco-gold);
    border-radius: 10px;
}

/* ============================================
   BACKGROUND DECORATION
   ============================================ */

.testimonials-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.decoration-blob {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    filter: blur(80px);
}

.decoration-blob-1 {
    width: 500px;
    height: 500px;
    top: -10%;
    left: -5%;
    animation: blobFloat1 20s ease-in-out infinite;
}

.decoration-blob-2 {
    width: 450px;
    height: 450px;
    bottom: -10%;
    right: -5%;
    animation: blobFloat2 25s ease-in-out infinite;
}

@keyframes blobFloat1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(40px, -40px) rotate(180deg);
    }
}

@keyframes blobFloat2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-30px, 30px) rotate(-180deg);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .testimonials-carousel-wrapper {
        padding: 0 50px;
    }

    .testimonials-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .satco-testimonials-section {
        padding: 80px 0;
    }

    .testimonials-carousel-wrapper {
        padding: 0 45px;
    }

    .testimonial-card-inner {
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .satco-testimonials-section {
        padding: 60px 0;
    }

    .testimonials-container {
        padding: 0 1.5rem;
    }

    .testimonials-header {
        margin-bottom: 3rem;
    }

    .testimonials-main-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .testimonials-subtitle {
        font-size: 1rem;
    }

    .testimonials-carousel-wrapper {
        padding: 0 40px;
    }

    .testimonials-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .testimonial-card-inner {
        padding: 2rem 1.5rem;
        min-height: 420px;
    }

    .modal-content-box {
        padding: 2rem;
        width: 95%;
    }

    .modal-client-info {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .testimonials-carousel-wrapper {
        padding: 0 35px;
    }

    .testimonials-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .testimonial-card-inner {
        min-height: auto;
    }

    .client-image-box {
        width: 80px;
        height: 80px;
    }

    .quote-icon-top {
        font-size: 2rem;
    }
}

/* ============================================
   RTL ADJUSTMENTS
   ============================================ */

[dir="rtl"] .satco-testimonials-carousel {
    direction: rtl;
}

[dir="rtl"] .testimonials-nav-prev {
    left: auto;
    right: 0;
}

[dir="rtl"] .testimonials-nav-next {
    right: auto;
    left: 0;
}



                                                                        /* ============================================
                                                                        SATCO PARTNERS SECTION
                                                                        ============================================ */

/* ============================================
       MAIN SECTION
       ============================================ */

.satco-partners-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f5f6f8 100%);
    overflow: hidden;
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* ============================================
       SECTION HEADER
       ============================================ */

.partners-header {
    text-align: center;
    margin-bottom: 3rem;
}

.partners-main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--satco-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-accent {
    color: var(--satco-gold);
}

.partners-subtitle {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Title Decoration */
.partners-title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
}

.decoration-line {
    width: 70px;
    height: 2px;
    background: linear-gradient( 90deg, transparent 0%, var(--satco-gold) 50%, transparent 100% );
}

.decoration-star {
    color: var(--satco-gold);
    font-size: 1rem;
    animation: starRotate 4s linear infinite;
}

@keyframes starRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ============================================
       TABS NAVIGATION
       ============================================ */

.tabs-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    color: #666;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

    .tab-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .tab-btn i {
        font-size: 1.2rem;
        transition: all 0.4s ease;
    }

    .tab-btn span {
        position: relative;
        z-index: 2;
    }

.tab-indicator {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, var(--satco-gold) 0%, var(--satco-gold-light) 100%);
    border-radius: 2px 2px 0 0;
    transition: transform 0.4s ease;
}

/* Tab Hover State */
.tab-btn:hover {
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--satco-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .tab-btn:hover::before {
        opacity: 1;
    }

    .tab-btn:hover i {
        color: var(--satco-gold);
        transform: scale(1.1);
    }

/* Tab Active State */
.tab-btn.active {
    background: linear-gradient(135deg, var(--satco-gold) 0%, var(--satco-gold-light) 100%);
    border-color: var(--satco-gold);
    color: var(--satco-dark);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3), inset 0 2px 8px rgba(255, 255, 255, 0.3);
}

    .tab-btn.active i {
        color: var(--satco-dark);
    }

    .tab-btn.active .tab-indicator {
        transform: translateX(-50%) scaleX(1);
    }

/* ============================================
       TABS CONTENT
       ============================================ */

.tabs-content-wrapper {
    position: relative;
    min-height: 300px;
}

.tab-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.5s ease;
    transform: translateY(20px);
}

    .tab-content.active {
        opacity: 1;
        visibility: visible;
        position: relative;
        transform: translateY(0);
    }

/* ============================================
       LOGO CAROUSEL
       ============================================ */

.logo-item {
    padding: 20px;
}

.logo-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .logo-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient( 135deg, rgba(212, 175, 55, 0.03) 0%, transparent 100% );
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .logo-card:hover {
        transform: translateY(-8px);
        border-color: rgba(212, 175, 55, 0.2);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 0 0 30px rgba(212, 175, 55, 0.1);
    }

        .logo-card:hover::before {
            opacity: 1;
        }

    .logo-card img {
        max-width: 100%;
        max-height: 80px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: none;
        transition: all 0.4s ease;
        position: relative;
        z-index: 2;
    }

    .logo-card:hover img {
        transform: scale(1.05);
    }

/* ============================================
       OWL CAROUSEL CUSTOM STYLES
       ============================================ */

.satco-logos-carousel {
    padding: 20px 0;
}

    .satco-logos-carousel .owl-stage-outer {
        overflow: visible;
    }

    /* Custom Dots */
    .satco-logos-carousel .owl-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 2rem;
    }

    .satco-logos-carousel .owl-dot {
        width: 10px;
        height: 10px;
        background: rgba(0, 0, 0, 0.15);
        border-radius: 50%;
        transition: all 0.3s ease;
        cursor: pointer;
    }

        .satco-logos-carousel .owl-dot:hover {
            background: rgba(212, 175, 55, 0.5);
            transform: scale(1.2);
        }

        .satco-logos-carousel .owl-dot.active {
            width: 30px;
            border-radius: 5px;
            background: linear-gradient(90deg, var(--satco-gold) 0%, var(--satco-gold-light) 100%);
        }

/* ============================================
       BACKGROUND DECORATION
       ============================================ */

.partners-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.decoration-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    filter: blur(60px);
}

.decoration-shape-1 {
    width: 400px;
    height: 400px;
    top: -10%;
    right: 10%;
    animation: shapeFloat1 18s ease-in-out infinite;
}

.decoration-shape-2 {
    width: 350px;
    height: 350px;
    bottom: -10%;
    left: 10%;
    animation: shapeFloat2 22s ease-in-out infinite;
}

@keyframes shapeFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

@keyframes shapeFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 30px) scale(1.15);
    }
}

/* ============================================
       RESPONSIVE DESIGN
       ============================================ */

@media (max-width: 992px) {
    .satco-partners-section {
        padding: 80px 0;
    }

    .tabs-navigation {
        flex-direction: column;
        gap: 0.75rem;
    }

    .tab-btn {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .satco-partners-section {
        padding: 60px 0;
    }

    .partners-container {
        padding: 0 1.5rem;
    }

    .partners-header {
        margin-bottom: 2.5rem;
    }

    .partners-main-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .partners-subtitle {
        font-size: 1rem;
    }

    .tab-btn {
        padding: 12px 28px;
        font-size: 1rem;
    }

    .logo-card {
        padding: 25px;
        min-height: 130px;
    }

        .logo-card img {
            max-height: 70px;
        }
}

@media (max-width: 576px) {
    .tab-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

        .tab-btn i {
            font-size: 1rem;
        }

    .logo-card {
        padding: 20px;
        min-height: 110px;
    }

        .logo-card img {
            max-height: 60px;
        }
}

/* ============================================
       RTL ADJUSTMENTS
       ============================================ */

[dir="rtl"] .satco-logos-carousel {
    direction: rtl;
}

[dir="rtl"] .tabs-navigation {
    flex-direction: row-reverse;
}

[dir="rtl"] .decoration-line {
    background: linear-gradient( 270deg, transparent 0%, var(--satco-gold) 50%, transparent 100% );
}

