html, body{
    scroll-behavior: smooth;
    overflow-x: hidden;
}
 :root {
    --brand-primary: rgb(4, 73, 123);
    --brand-secondary: rgb(99, 160, 80);
    --gradient-primary: linear-gradient(135deg, var(--brand-primary), #0056b3);
    --gradient-secondary: linear-gradient(135deg, var(--brand-secondary), #7cb342);
    --accent-green: #10b981;
    --whatsapp-green: #25D366;
    --accent-color: #FEEEDA; 
      --white: #FFFFFF;
     --text-dark: #2d3748;
    --text-gray: #4a5568;
    --text-light-gray: #718096;
    --bg-light: #f5f7fa;
    --dark-text: #0a0e1a;
    --light-grey: #f8f9fa;
    --divider-grey: #e8eaed;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.2);
}
a{
    text-decoration: none;
}
::selection {
    color: white;
    background: black;
}
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track {
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: var(--brand-primary);
    border-radius: 12px;
}
@font-face{
    font-family: "Effra";
    src: url('../fonts/alfont_com_Effra_Rg.ttf') format('opentype');
}
 
body {
    color: var(--text-white);
    overflow-x: hidden;
    font-family: 'Effra', sans-serif;
    overflow-x: hidden;
}

.whatsapp-icon {
    position: fixed;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 111;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    animation: bounce 1.5s infinite;
    animation: pulse 1.5s infinite;
    text-decoration: none;
}
:dir(rtl).whatsapp-icon{
    right: 20px;

}
:dir(ltr).whatsapp-icon{
    left: 20px;

}
.whatsapp-icon i{
    font-size: 30px;
}
/* تأثير التحريك */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* تأثير عند التحويم */
.whatsapp-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    background-color: #25D366;
    color: white;
}

.notification-badge {
    position: absolute;
    top: 0px;
    right: 5px;
    width: 12px;
    height: 12px;
    background-color: red;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.8);
}


.main-header .container {
    display: flex;
    align-items: center;
    margin: 0 auto;
}


/* Navbar Styles */
.main-header {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding-top: 20px;
    padding-bottom: 15px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 110px;
    padding-block: 10px;
    height: auto;
    transition: all .3s ease-in-out;
}

.main-nav ul {
    display: flex;
    list-style: none;
    justify-content: end;
    margin: 0;
    margin-top: -30px;
    padding: 0;
}

.main-nav li {
    margin-left: 30px;
    position: relative;
}

.main-nav a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    font-size: 18px;
    line-height: 117%; 
}

.main-nav .active {
    color: #a4a3a3;
}

.main-nav .active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;    
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
    width: 100%;
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo img {
        width: 100px;
    }
    
    .main-header .container {
        justify-content: space-between;
    }
    
    .main-nav {
        position: fixed;
        top: 0px;        
        padding-top: 60px;
        width: 60%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--brand-primary);
        transition: all 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    :dir(rtl) .main-nav {
        left: -100%;
    }
    
    :dir(ltr) .main-nav {
        right: -100%;
    }
    
    .main-nav a {
        color: white;
    }
    
    .main-nav a.active {
        color: #DEC463;
    }
    
    :dir(rtl) .main-nav.active {
        left: 0;        
    }
    
    :dir(ltr) .main-nav.active {
        right: 0;        
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }

    .main-nav li {
        margin: 15px 0;
    }

    .main-nav a {
        font-size: 18px;
    }

    /* Mobile Buttons - Show in Mobile Menu */
    .mobile-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        margin-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-buttons .btn-primary {
        background: linear-gradient(90deg, #E9CF6B 0%, #C48929 100%);
        color: #000;
        font-size: 16px;
        font-weight: 600;
        padding: 14px 40px;
        border: none;
        border-radius: 2px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 6px 15px rgba(222, 196, 99, 0.3);
        text-decoration: none;
        display: block;
        text-align: center;
        position: relative;
    }

    .mobile-buttons .btn-primary::after {
        position: absolute;
        content: "";
        width: 98%;
        height: 90%;
        border-radius: 2px;
        border: 4px solid var(--bg-dark);
        top: 5.1%;
        left: 50%;
        transform: translate(-50%);
    }

    .mobile-buttons .btn-primary:active {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(222, 196, 99, 0.4);
    }

    .mobile-buttons .btn-secondary {
        background: #383838;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        padding: 14px 40px;
        border: none;
        border-radius: 2px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 6px 15px rgba(99, 92, 66, 0.3);
        text-decoration: none;
        display: block;
        text-align: center;
        position: relative;
    }

    .mobile-buttons .btn-secondary::after {
        position: absolute;
        content: "";
        width: 98%;
        height: 90%;
        border-radius: 2px;
        border: 4px solid var(--bg-dark);
        top: 5.1%;
        left: 50%;
        transform: translate(-50%);
    }

    .mobile-buttons .btn-secondary:active {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(80, 73, 48, 0.4);
    }

    /* Animate toggle icon when active */
    .mobile-menu-toggle.active span {
        width: 100%;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}
/* ⚠️ على الشاشات الكبيرة: نحطهم في السطر جنب اللينكات */
@media (min-width: 992px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .main-nav .nav-btns {
        margin-top: 0;
        display: flex;
        flex-wrap: wrap;
    }
}



/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-image: url('../assets/bg-lg.webp');
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0;
    padding-top: 140px;
    overflow: hidden;
    z-index: 1;
}
.hero-section .overlayer{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    z-index: -1;
}
/* Abstract Background Shapes */
.hero-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: linear-gradient(135deg, rgba(0, 85, 142, 0.08), rgba(253, 173, 26, 0.08));
    border-radius: 50%;
    top: -300px;
    left: -200px;
    z-index: 0;
    filter: blur(80px);
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, rgba(253, 173, 26, 0.06), rgba(0, 85, 142, 0.04));
    border-radius: 50%;
    bottom: -200px;
    right: -150px;
    z-index: 0;
    filter: blur(100px);
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-secondary), var(--brand-secondary));
    color: white;
    padding: 8px 24px;
    border-radius: 8px 0 8px 0;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgb(26 253 43 / 30%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-highlight {
    color: var(--brand-primary);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 600px;
}


/* ===============================
    FEATURES BADGES
    =============================== */
.features-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2.5rem;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(28, 18, 74, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(28, 18, 74, 0.15);
    border-color: var(--brand-primary);
}

.badge-item i {
    font-size: 1rem;
    color: var(--brand-primary);
}

.badge-item span {
    font-weight: 600;
    color: var(--brand-primary);
    font-size: 0.85rem;
}

.badge-item.discount {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #1d386b 100%);
    color: var(--white);
    font-weight: 700;
    animation: pulse-discount 2s ease-in-out infinite;
}

.badge-item.discount i,
.badge-item.discount span {
    color: var(--white);
}

@keyframes pulse-discount {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary-brand {
    background: var(--brand-primary);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 85, 142, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-primary-brand:hover {
    background: rgb(0, 70, 120);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 85, 142, 0.4);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}    
/* Left Side - Image Composition */
.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* Circular Frame with Double Ring */
.circular-frame {
    position: relative;
    width: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-primary), rgba(16, 109, 172, 0.8));
    border-radius: 50%;
    z-index: 1;
}

.circle-ring {
    position: absolute;
    width: 108%;
    height: 108%;
    border: 4px solid var(--brand-primary);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.4;
}

.circle-ring-outer {
    position: absolute;
    width: 115%;
    height: 115%;
    border: 3px solid var(--brand-secondary);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.3;
    border-style: dashed;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Broken Pattern Effect */
.circle-segment {
    position: absolute;
    width: 120%;
    height: 120%;
    border: 4px solid transparent;
    border-radius: 50%;
    z-index: 0;
}

.circle-segment-1 {
    border-top-color: var(--brand-primary);
    border-right-color: var(--brand-primary);
    opacity: 0.6;
    transform: rotate(-45deg);
}

.circle-segment-2 {
    border-bottom-color: var(--brand-secondary);
    border-left-color: var(--brand-secondary);
    opacity: 0.5;
    transform: rotate(45deg);
}

.main-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid white;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* Floating Stat Card */
.stat-card {
    position: absolute;
    background: white;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
}

.stat-card-top {
    top: 80px;
    left: -50px;
}

.stat-card-bottom {
    bottom: 60px;
    left: 30px;
}

.stat-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--brand-primary), rgba(0, 85, 142, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
}

.stat-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin: 0;
    line-height: 1;
}

.stat-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 5px 0 0 0;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .circular-frame {
        width: 450px;
        height: 450px;
    }
    
    .main-image {
        width: 380px;
        height: 380px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
        padding-top: 150px;
        background-image: url('../assets/bg-sm.webp');
        align-items: baseline;

    }
    .hero-section .features-badges{
        display: none;
    }
    .hero-tag{
        display: none;
    }
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .circular-frame {
        width: 350px;
        height: 350px;
    }
    
    .main-image {
        width: 300px;
        height: 300px;
    }
    
    .stat-card {
        padding: 15px 20px;
    }
    
    .stat-card-top {
        top: 40px;
        left: -20px;
    }
    
    .stat-card-bottom {
        bottom: 40px;
        left: 10px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn-primary-brand,
    .btn-whatsapp {
        padding: 14px;
        font-size: 1rem;
        width: fit-content;

    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .circular-frame {
        width: 280px;
        height: 280px;
    }
    
    .main-image {
        width: 240px;
        height: 240px;
    }
    
    .stat-card {
        padding: 12px 18px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .stat-content h3 {
        font-size: 1.4rem;
    }
    
    .stat-content p {
        font-size: 0.85rem;
    }
}




/* ===== ABOUT SECTION ===== */
.about-hero-section {
    padding: 100px 0 80px;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);

}

/* Right Side - Content */
.content-side {
    padding-right: 40px;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(4, 73, 123, 0.1);
    margin-bottom: 25px;
    font-size: 15px;
    color: var(--brand-secondary);
    font-weight: 700;
    transition: all 0.3s ease;
}

.badge-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 73, 123, 0.15);
}

.badge-icon {
    width: 22px;
    height: 22px;
}

.main-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 30px;
}

.main-title .highlight {
    color: var(--brand-primary);
    position: relative;
}

.main-description {
    font-size: 17px;
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* Why Trust Section */
.why-trust-wrapper {
    margin-bottom: 45px;
}

.why-trust-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.why-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 0;
}

.trust-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: right;
}

.trust-point-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(4, 73, 123, 0.25);
    transition: all 0.3s ease;
}

.trust-point:hover .trust-point-icon {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(4, 73, 123, 0.35);
}

.trust-point-icon svg {
    width: 28px;
    height: 28px;
}

.trust-point-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    font-weight: 600;
    margin: 0;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}


/* Left Side - Images */
.images-side {
    position: relative;
    padding-left: 40px;
}

.images-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.image-circle-container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.circle-border {
    position: absolute;
    top: -18px;
    right: -18px;
    left: -18px;
    bottom: -18px;
    border: 4px dashed var(--brand-primary);
    border-radius: 50%;
    opacity: 0.5;
    animation: rotate 40s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.image-circle {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background: var(--brand-primary);
    box-shadow: 0 20px 50px rgba(4, 73, 123, 0.3);
    position: relative;
}

.image-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 73, 123, 0.2), transparent);
    z-index: 1;
}

.image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rounded-image-card {
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
    background: var(--brand-primary);
    box-shadow: 0 20px 50px rgba(4, 73, 123, 0.3);
    aspect-ratio: 1;
    position: relative;
    transition: all 0.3s ease;
}

.rounded-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(4, 73, 123, 0.4);
}

.rounded-image-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 73, 123, 0.2), transparent);
    z-index: 1;
}

.rounded-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Side Cards */
.side-cards {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 10;
}

.info-card-hero {
    background: var(--brand-primary);
    color: white;
    padding: 10px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(4, 73, 123, 0.35);
    max-width: 240px;
    position: relative;
    transition: all 0.3s ease;
}

.info-card-hero:hover {
    transform: translateX(5px);
    box-shadow: 0 20px 50px rgba(4, 73, 123, 0.45);
}

.info-card-icon-hero {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.info-card-icon-hero svg {
    width: 20px;
    height: 20px;
    fill: var(--brand-secondary);
}

.info-card-content-hero {
    padding-right: 60px;
    text-align: right;
}

.info-card-title-hero {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.3;
}

.info-card-subtitle-hero {
    font-size: 12px;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 500;
}

.stats-card-hero {
    background: var(--brand-primary);
    color: white;
    padding: 10px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(4, 73, 123, 0.35);
    max-width: 380px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.stats-card-hero:hover {
    transform: translateX(5px);
    box-shadow: 0 20px 50px rgba(4, 73, 123, 0.45);
}

.stats-card-icon-hero {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.stats-card-icon-hero svg {
    width: 20px;
    height: 20px;
}

.stats-card-content-hero {
    flex: 1;
}

.side-cards :dir(rtl){
    text-align: right;
}
.side-cards :dir(ltr){
    text-align: left;
}

.stats-card-number-hero {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.2;
}

.stats-card-text-hero {
    font-size: 12px;
    opacity: 0.95;
    line-height: 1.5;
    font-weight: 500;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets - شاشات متوسطة (768px - 991px) */
@media (max-width: 991px) {
    .about-hero-section {
        padding: 60px 0 50px;
    }

    .content-side {
        padding-right: 20px;
    }

    .images-side {
        padding-left: 20px;
        margin-top: 40px;
    }

    .main-title {
        font-size: 36px;
    }

    .main-description {
        font-size: 16px;
        line-height: 1.8;
    }

    .why-trust-title {
        font-size: 24px;
    }

    .trust-point-icon {
        width: 50px;
        height: 50px;
    }

    .trust-point-icon svg {
        width: 24px;
        height: 24px;
    }

    .trust-point-text {
        font-size: 15px;
    }

    .images-wrapper {
        gap: 20px;
    }

    .circle-border {
        top: -12px;
        right: -12px;
        left: -12px;
        bottom: -12px;
        border-width: 3px;
    }

    .rounded-image-card {
        border-radius: 30px;
    }

    .side-cards {
        margin-top: 40px;
        gap: 20px;
    }

    .info-card-hero,
    .stats-card-hero {
        max-width: 100%;
        width: 100%;
    }
}

/* Mobile Large - موبايل كبير (576px - 767px) */
@media (max-width: 767px) {
    .about-hero-section {
        padding: 40px 0 30px;
    }

    .content-side {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .images-side {
        padding-left: 0;
    }

    .badge-tag {
        padding: 8px 20px;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .badge-icon {
        width: 20px;
        height: 20px;
    }

    .main-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .main-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .why-trust-wrapper {
        margin-bottom: 35px;
    }

    .why-trust-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .why-trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-point {
        gap: 12px;
    }

    .trust-point-icon {
        width: 45px;
        height: 45px;
    }

    .trust-point-icon svg {
        width: 22px;
        height: 22px;
    }

    .trust-point-text {
        font-size: 14px;
    }

    .cta-buttons {
        gap: 15px;
        justify-content: center;
    }

    .images-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .circle-border {
        top: -10px;
        right: -10px;
        left: -10px;
        bottom: -10px;
        border-width: 2px;
    }

    .rounded-image-card {
        border-radius: 25px;
    }

    .side-cards {
        margin-top: 30px;
        gap: 15px;
    }

    .info-card-hero,
    .stats-card-hero {
        padding: 12px;
        border-radius: 20px;
    }

    .info-card-icon-hero,
    .stats-card-icon-hero {
        width: 35px;
        height: 35px;
    }

    .info-card-icon-hero svg,
    .stats-card-icon-hero svg {
        width: 18px;
        height: 18px;
    }

    .info-card-content-hero {
        padding-right: 50px;
    }

    .info-card-title-hero,
    .stats-card-number-hero {
        font-size: 14px;
    }

    .info-card-subtitle-hero,
    .stats-card-text-hero {
        font-size: 11px;
    }
}

/* Mobile Small - موبايل صغير (أقل من 576px) */
@media (max-width: 575px) {
    .about-hero-section {
        padding: 30px 0 20px;
    }

    .badge-tag {
        padding: 6px 16px;
        font-size: 13px;
        gap: 8px;
    }

    .badge-icon {
        width: 18px;
        height: 18px;
    }

    .main-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .main-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .why-trust-title {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .why-trust-grid {
        gap: 15px;
    }

    .trust-point {
        gap: 10px;
    }

    .trust-point-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .trust-point-icon svg {
        width: 20px;
        height: 20px;
    }

    .trust-point-text {
        font-size: 13px;
        line-height: 1.6;
    }

    .images-wrapper {
        gap: 20px;
    }

    .circle-border {
        display: none; /* إخفاء الحدود المتحركة في الشاشات الصغيرة جداً */
    }

    .rounded-image-card {
        border-radius: 20px;
    }

    .side-cards {
        margin-top: 25px;
        gap: 12px;
    }

    .info-card-hero,
    .stats-card-hero {
        padding: 10px;
        border-radius: 18px;
    }

    .info-card-icon-hero {
        right: 15px;
        width: 32px;
        height: 32px;
    }

    .stats-card-icon-hero {
        width: 32px;
        height: 32px;
    }

    .info-card-icon-hero svg,
    .stats-card-icon-hero svg {
        width: 16px;
        height: 16px;
    }

    .info-card-content-hero {
        padding-right: 45px;
    }

    .info-card-title-hero,
    .stats-card-number-hero {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .info-card-subtitle-hero,
    .stats-card-text-hero {
        font-size: 10px;
    }

    .stats-card-hero {
        gap: 15px;
    }
}

/* Extra Small Devices - الأجهزة الصغيرة جداً (أقل من 400px) */
@media (max-width: 399px) {
    .main-title {
        font-size: 22px;
    }

    .why-trust-title {
        font-size: 18px;
    }

    .trust-point-text {
        font-size: 12px;
    }

    .info-card-title-hero,
    .stats-card-number-hero {
        font-size: 12px;
    }

    .info-card-subtitle-hero,
    .stats-card-text-hero {
        font-size: 9px;
    }
}



/* ============================================
           SECTION :  Features
        ============================================ */


.features-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 160, 80, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(4, 73, 123, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--gradient-secondary);
    border-radius: 50px;
    color: white;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(99, 160, 80, 0.3);
    transition: all 0.3s ease;
}

.section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(99, 160, 80, 0.4);
}

.section-badge i {
    font-size: 18px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 500;
}

.features-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto 80px;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 25px;
    padding: 35px 30px;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    height: 160px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: 25px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(4, 73, 123, 0.15),
        0 0 0 1px rgba(99, 160, 80, 0.1);
}

.feature-card:hover::before {
    opacity: 0.03;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(99, 160, 80, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(99, 160, 80, 0.4);
        background: var(--gradient-secondary);

}

.feature-icon i {
    font-size: 36px;
    color: white;
}

.feature-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 12px;
    text-transform: none;
    letter-spacing: 0;
}

.feature-card:hover .feature-title {
    color: var(--brand-primary);
}

.feature-description {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

.feature-card:hover .feature-description {
    color: #5a6268;
}

.feature-arrow {
    width: 50px;
    height: 50px;
    background: rgba(99, 160, 80, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-arrow i {
    color: var(--brand-secondary);
    font-size: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-arrow {
    background: var(--gradient-secondary);
    transform: translateX(-5px);
}

.feature-card:hover .feature-arrow i {
    color: white;
    transform: scale(1.2);
}

/* Center Image Section */
.center-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    height: 500px;
}

.main-circle {
    position: relative;
    width: 400px;
    height: 400px;
}

.center-image-wrapper {
    position: relative;
    z-index: 10;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(4, 73, 123, 0.3),
        inset 0 0 0 8px white;
    width: 100%;
    height: 100%;
    border: 8px solid white;
    transition: all 0.4s ease;
}

.center-image-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 
        0 35px 100px rgba(4, 73, 123, 0.4),
        inset 0 0 0 8px white;
}

.center-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.center-image-wrapper:hover img {
    transform: scale(1.1);
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--brand-secondary);
    border-radius: 50%;
}

.ring-1 {
    width: 450px;
    height: 450px;
    animation-delay: 0s;
}

.ring-2 {
    width: 500px;
    height: 500px;
    animation-delay: 1s;
}


.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 11;
}

.floating-element {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(4, 73, 123, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-element i {
    font-size: 32px;
    color: white;
}

.element-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Responsive Design */
@media (max-width: 1199px) {
    .section-title {
        font-size: 3rem;
    }
    
    .main-circle {
        width: 350px;
        height: 350px;
    }
    
    .ring-1 {
        width: 400px;
        height: 400px;
    }
    
    .ring-2 {
        width: 450px;
        height: 450px;
    }
}

@media (max-width: 991px) {
    .features-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 60px;
    }
    
    .feature-card {
        height: auto;
        min-height: 140px;
        padding: 25px;
    }
    
    .main-circle {
        width: 300px;
        height: 300px;
        margin: 40px auto;
    }
    
    .ring-1 {
        width: 350px;
        height: 350px;
    }
    
    .ring-2 {
        width: 400px;
        height: 400px;
    }
    
    .center-image-container {
        height: auto;
        margin: 40px 0;
    }
    
    .floating-element {
        width: 60px;
        height: 60px;
    }
    
    .floating-element i {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .features-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-badge {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .feature-card {
        padding: 20px;
        gap: 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 28px;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    

}

@media (max-width: 575px) {
    .feature-card {
        text-align: center;
        height: auto;
        padding: 25px 20px;
        gap: 15px;
    }
    
    .feature-arrow {
        align-self: center;
    }
    
    .main-circle {
        width: 250px;
        height: 250px;
    }
    
    .ring-1 {
        width: 300px;
        height: 300px;
    }
    
    .ring-2 {
        width: 350px;
        height: 350px;
    }
    
    .floating-element {
        width: 50px;
        height: 50px;
    }
    
    .floating-element i {
        font-size: 24px;
    }
    

}



 /* ============================================
           SERVICES SECTION CONTAINER
        ============================================ */
      .services-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}


/* ============================================
   SECTION HEADER
============================================ */
.section-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: var(--gradient-secondary);
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(99, 160, 80, 0.25);
}

.section-badge i {
    font-size: 16px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 10px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

/* ============================================
   TABS NAVIGATION - أصغر حجم
============================================ */
.tabs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 2px solid transparent;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-gray);
    cursor: pointer;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    min-width: 160px;
    justify-content: center;
    
}
.tab-button:not(.active) {
    animation: pulse 1.5s infinite;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.tab-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--brand-primary);
}

.tab-button.active {
    color: var(--white);
    background: var(--gradient-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.tab-button.active::before {
    opacity: 1;
}

.tab-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.tab-button:not(.active) .tab-icon {
    background: rgba(99, 160, 80, 0.1);
}

.tab-icon i {
    font-size: 20px;
    transition: all 0.3s ease;
}

.tab-button.active .tab-icon i {
    color: white;
}

.tab-button span {
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
}
@keyframes pulse{
    0% {
    box-shadow: 0 0 0 0 rgba(119, 140, 204, .4);
}
5% {
    transform: scale(1.01);
}
15% {
    transform: scale(1);
}
70% {
    box-shadow: 0 0 0 20px rgba(119, 140, 204, 0);
}
100% {
    box-shadow: 0 0 0 40px rgba(119, 140, 204, 0);
}
}
/* ============================================
   TAB CONTENT AREA - أصغر حجم
============================================ */
.tab-content-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.tab-content-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 160, 80, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.tab-content {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.tab-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* ============================================
   LEFT SIDE - TEXT CONTENT - أصغر حجم
============================================ */
.content-text {
    z-index: 1;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.content-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin: 0;
    line-height: 1.2;
}

.service-badge {
    background: var(--gradient-secondary);
    color: white;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 12px rgba(99, 160, 80, 0.3);
}

.content-description {
    font-size: 1.4rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 500;
}

.service-features {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(99, 160, 80, 0.1);
    border-radius: 10px;
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 0.85rem;
}

.feature-item i {
    color: var(--brand-secondary);
    font-size: 0.9rem;
}

.benefits-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-title::before {
    content: '✦';
    color: var(--brand-secondary);
    font-size: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 35px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.benefits-list li:hover {
    padding-right: 12px;
    background: rgba(99, 160, 80, 0.05);
    border-radius: 6px;
    margin: 0 -12px;
    padding-left: 12px;
}

.benefits-list li span {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    flex: 1;
}

.benefits-list li i {
    color: var(--brand-secondary);
    font-size: 1.1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.benefits-list li:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.booking-button, .info-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    min-width: 160px;
    justify-content: center;
}

.booking-button.primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.booking-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.info-button.secondary {
    background: transparent;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
}

.info-button.secondary:hover {
    background: var(--brand-primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   RIGHT SIDE - IMAGE - أصغر حجم
============================================ */
.content-image {
    position: relative;
    z-index: 1;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-container:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.service-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.image-caption {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 12px 16px;
    background: rgba(99, 160, 80, 0.1);
    border-radius: 10px;
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 0.85rem;
}

.image-caption i {
    color: var(--brand-secondary);
    font-size: 0.9rem;
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.4rem;
    }
    
    .tab-content.active {
        gap: 40px;
    }
    
    .tab-content-wrapper {
        padding: 40px;
    }
}

@media (max-width: 968px) {
    .services-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .tabs-container {
        gap: 12px;
    }

    .tab-button {
        padding: 14px 24px;
        font-size: 0.9rem;
        min-width: 140px;
    }

    .tab-content-wrapper {
        padding: 35px 25px;
    }

    .tab-content.active {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-text {
        order: 2;
    }

    .content-image {
        order: 1;
    }

    .content-title {
        font-size: 1.7rem;
    }

    .content-description {
        font-size: 1rem;
    }

    .service-image {
        height: 300px;
    }

    .action-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-badge {
        padding: 8px 20px;
        font-size: 13px;
    }

    .tab-button {
        padding: 12px 18px;
        font-size: 0.85rem;
        min-width: 120px;
        flex-direction: column;
        gap: 6px;
    }

    .tab-icon {
        width: 35px;
        height: 35px;
    }

    .tab-icon i {
        font-size: 18px;
    }

    .tab-content-wrapper {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .content-title {
        font-size: 1.5rem;
    }

    .service-image {
        height: 250px;
    }

    .benefits-list li span {
        font-size: 0.9rem;
    }

    .booking-button, .info-button {
        width: 100%;
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 50px 15px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .tabs-container {
        gap: 8px;
    }

    .tab-button {
        padding: 10px 14px;
        font-size: 0.8rem;
        min-width: 110px;
    }

    .tab-content-wrapper {
        padding: 25px 18px;
        border-radius: 18px;
    }

    .content-title {
        font-size: 1.3rem;
    }

    .service-image {
        height: 220px;
    }

    .service-features {
        flex-direction: column;
    }

    .feature-item {
        width: 100%;
        justify-content: center;
    }

    .benefits-list li {
        padding: 12px 0;
    }
}

/* ============================================
           SECTION 5: آراء العملاء
        ============================================ */
.testimonials-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 80px 20px;
            overflow: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            display: inline-block;
            font-size: 18px;
            font-weight: 600;
            color: var(--brand-primary);
            margin-bottom: 15px;
            padding: 8px 20px;
            background: rgba(0, 85, 142, 0.1);
            border-radius: 25px;
        }

        .section-label i {
            margin-left: 8px;
        }

        .section-title {
            font-size: 42px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 18px;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .testimonials-swiper {
            padding: 20px 0 60px;
            position: relative;
        }

        .swiper-slide {
            height: auto;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 2px solid rgba(0, 85, 142, 0.08);
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 85, 142, 0.2);
        }

        .testimonial-header {
            background: linear-gradient(135deg, var(--brand-primary) 0%, rgb(0, 115, 182) 100%);
            padding: 20px 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: 3px solid rgba(255, 255, 255, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            font-weight: 700;
            flex-shrink: 0;
        }

        .testimonial-info {
            flex: 1;
        }

        .testimonial-name {
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin-bottom: 3px;
        }

        .testimonial-position {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.85);
        }

        .testimonial-body {
            padding: 30px 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .message-bubble {
            background: linear-gradient(135deg, #e8f4f8 0%, #f0f7fa 100%);
            padding: 20px 22px;
            border-radius: 18px 18px 18px 4px;
            position: relative;
            margin-bottom: 20px;
            flex: 1;
        }

        .message-bubble::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: -8px;
            border: 8px solid transparent;
            border-right-color: #e8f4f8;
            border-bottom: 0;
        }

        .message-text {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-dark);
            position: relative;
            z-index: 1;
        }

        .message-icon {
            font-size: 32px;
            color: var(--brand-primary);
            opacity: 0.1;
            position: absolute;
            top: 10px;
            right: 10px;
        }

        .testimonial-footer {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(0, 85, 142, 0.1);
        }

        .service-badge {
            padding: 6px 14px;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: var(--accent-green);
            display: flex;
            align-items: center;
            gap: 5px;
            width: fit-content;
        }

        .rating-stars {
            display: flex;
            gap: 3px;
            margin-right: auto;
        }

        .rating-stars i {
            color: var(--brand-secondary);
            font-size: 14px;
        }

        .swiper-button-next,
        .swiper-button-prev {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0, 85, 142, 0.2);
            transition: all 0.3s ease;
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px;
            color: var(--brand-primary);
            font-weight: 900;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: var(--brand-primary);
            transform: scale(1.1);
        }

        .swiper-button-next:hover:after,
        .swiper-button-prev:hover:after {
            color: white;
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: var(--brand-primary);
            opacity: 0.3;
            transition: all 0.3s ease;
        }

        .swiper-pagination-bullet-active {
            opacity: 1;
            width: 35px;
            border-radius: 6px;
            background: var(--brand-primary);
        }

        @media (max-width: 991px) {
            .testimonials-section {
                padding: 60px 20px;
            }

            .section-title {
                font-size: 36px;
            }

            .section-subtitle {
                font-size: 16px;
            }
        }

        @media (max-width: 767px) {
            .testimonials-section {
                padding: 40px 15px;
            }

            .section-label {
                font-size: 16px;
                padding: 6px 16px;
            }

            .section-title {
                font-size: 28px;
            }

            .section-subtitle {
                font-size: 15px;
            }

            .testimonial-avatar {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }

            .testimonial-name {
                font-size: 16px;
            }

            .message-text {
                font-size: 14px;
            }
        }

.footer {
            background: linear-gradient(135deg, #0f3a7a 0%, #113556 50%, #123c7a 100%);
            color: #e2e8f0;
            padding: 60px 0 0;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, 
                var(--brand-primary) 0%, 
                var(--accent-green) 50%, 
                var(--brand-secondary) 100%);
        }

        .footer-section {
            margin-bottom: 40px;
        }

        .footer-section h4 {
            color: white;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-green), transparent);
            border-radius: 2px;
        }

        /* Brand Section */
        .footer-brand {
            margin-bottom: 20px;
        }

        .footer-brand .icon {
            width: 80px;
            height: 80px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            border: 3px solid rgba(16, 185, 129, 0.3);
            transition: all 0.3s ease;
        }

        .footer-brand .icon:hover {
            transform: scale(1.1) rotate(5deg);
            border-color: var(--accent-green);
            background: rgba(16, 185, 129, 0.2);
        }

        .footer-brand .icon i {
            font-size: 40px;
            color: var(--accent-green);
        }

        .footer-section p {
            line-height: 1.8;
            color: #cbd5e1;
            font-size: 15px;
        }

        /* Contact Info */
        .footer-contact p {
            display: flex;
            align-items: start;
            gap: 12px;
            margin-bottom: 15px;
            font-size: 15px;
        }

        .footer-contact i {
            color: var(--accent-green);
            font-size: 18px;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .footer-contact a {
            color: #cbd5e1;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-contact a:hover {
            color: var(--accent-green);
            padding-right: 5px;
        }

        /* Quick Links */
        .footer-links {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .footer-links li a {
            color: #cbd5e1;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            transition: all 0.3s ease;
            padding: 5px 0;
        }

        .footer-links li a i {
            color: var(--accent-green);
            font-size: 8px;
            transition: all 0.3s ease;
        }

        .footer-links li a:hover {
            color: var(--accent-green);
            padding-right: 8px;
        }

        .footer-links li a:hover i {
            transform: translateX(-5px);
        }

        /* Social Links */
        .social-links h4 {
            text-align: center;
            margin-bottom: 20px;
        }

        .social-icons {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(16, 185, 129, 0.1);
            border: 2px solid rgba(16, 185, 129, 0.3);
            color: var(--accent-green);
            font-size: 20px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            background: var(--accent-green);
            color: white;
            transform: translateY(-5px) scale(1.1);
            border-color: var(--accent-green);
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
        }

        /* Specific social colors on hover */
        .social-icon:nth-child(1):hover { /* WhatsApp */
            background: #25D366;
            border-color: #25D366;
        }

        .social-icon:nth-child(2):hover { /* Instagram */
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            border-color: #e1306c;
        }

        .social-icon:nth-child(3):hover { /* TikTok */
            background: #000000;
            border-color: #00f2ea;
        }

        .social-icon:nth-child(4):hover { /* Google Maps */
            background: #4285F4;
            border-color: #4285F4;
        }

        /* Footer Bottom */
        .footer-bottom {
            margin-top: 40px;
            padding: 25px 0;
            background: rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 14px;
            color: #94a3b8;
        }

        .footer-bottom a {
            color: var(--accent-green);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .footer-bottom a:hover {
            color: white;
            text-decoration: underline;
        }

        /* CTA Section in Footer */
        .footer-cta {
            background: linear-gradient(135deg, var(--accent-green), #059669);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
        }

        .footer-cta h3 {
            color: white;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .footer-cta p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
            font-size: 16px;
        }

        .footer-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            color: var(--accent-green);
            padding: 14px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .footer-cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            color: var(--accent-green);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .footer {
                padding: 50px 0 0;
            }

            .footer-section h4 {
                font-size: 20px;
            }
        }

        @media (max-width: 767px) {
            .footer {
                padding: 40px 0 0;
            }

            .footer-section {
                text-align: center;
                margin-bottom: 35px;
            }

            .footer-section h4::after {
                right: 50%;
                transform: translateX(50%);
            }

            .footer-brand .icon {
                margin: 0 auto 15px;
            }

            .footer-contact p {
                justify-content: center;
                text-align: right;
            }

            .footer-links {
                grid-template-columns: 1fr;
                justify-items: center;
            }

            .footer-cta h3 {
                font-size: 20px;
            }

            .footer-cta p {
                font-size: 14px;
            }
        }

        /* إصلاح مشاكل AOS على الجوال */
@media (max-width: 768px) {
    [data-aos] {
        opacity: 1 !important;
        transform: translate3d(0, 0, 0) !important;
        transition: none !important;
    }
    
    .aos-init[data-aos] {
        opacity: 1 !important;
        transform: translate3d(0, 0, 0) !important;
    }
    
    .aos-animate {
        opacity: 1 !important;
        transform: translate3d(0, 0, 0) !important;
    }
    
    /* إعادة تعيين جميع تحولات AOS على الجوال */
    [data-aos^=fade][data-aos^=fade],
    [data-aos^=zoom][data-aos^=zoom],
    [data-aos^=slide][data-aos^=slide],
    [data-aos^=flip][data-aos^=flip] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* تأكد من ظهور المحتوى دائمًا */
.aos-all {
    opacity: 1 !important;
    visibility: visible !important;
}

/* بديل إذا فشلت AOS بالكامل */
.no-aos [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}




