/* ---- Imports, Variables, Globals ---- */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap');



.ibm-plex-sans-arabic-thin {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.ibm-plex-sans-arabic-extralight {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.ibm-plex-sans-arabic-light {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.ibm-plex-sans-arabic-regular {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.ibm-plex-sans-arabic-medium {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.ibm-plex-sans-arabic-semibold {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.ibm-plex-sans-arabic-bold {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 700;
  font-style: normal;
}


:root {
    --primary: #00bf63;
    --primary-dark: #008f4a;
    --primary-light: #e0f7ea;
    --accent: #c1ff72;
    --grad-primary: linear-gradient(135deg, #00bf63 0%, #009950 100%);
    --grad-text: linear-gradient(135deg, #00bf63 0%, #1b3521 100%);
    --grad-glow: linear-gradient(90deg, #00bf63, #1b3521);
    --dark: #0b1c13;
    --text: #4a5568;
    --text-light: #718096;
    --bg-body: #f8faf9;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 191, 99, 0.12);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-main: 'IBM Plex Sans Arabic', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text);
    direction: rtl;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

h1,
h2,
h3,
h4 {
    color: var(--dark);
    font-weight: 800;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.blobs-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.blob-1 {
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--primary);
    animation: moveBlob 20s infinite alternate;
}

.blob-2 {
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: var(--accent);
    animation: moveBlob 15s infinite alternate-reverse;
}

@keyframes moveBlob {
    from {
        transform: translate(0, 0) scale(1);
    }
    to {
        transform: translate(50px, 50px) scale(1.1);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    gap: 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 191, 99, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 191, 99, 0.4);
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: var(--grad-glow);
    transition: 0.5s ease-in-out;
    z-index: -1;
}

.glow-effect:hover::before {
    left: 0;
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid rgba(0, 191, 99, 0.3);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    font-weight: 800;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}


/* ---- Header & Mobile Menu ---- */
.main-header {
    position: fixed;
    top: 20px;
    width: 100%;
    z-index: 1000;
    padding: 0 20px;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}



.logo img {
    height: 3.5rem; /* نفس حجم النص على اللابتوب */
    width: auto;
    display: block;
    vertical-align: middle;
    margin: 0; /* مسح أي margin سالب */
}

/* حجم أكبر للشاشات الكبيرة */
@media (min-width: 768px) {
    .logo img {
        height: 3rem; /* شوية أكبر على اللابتوب */
    }
}


.desktop-nav {
    display: flex;
    gap: 20px;
}

.desktop-nav a {
    color: var(--text);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.desktop-nav a:hover {
    color: var(--primary);
}

.desktop-nav a:hover::after {
    width: 100%;
    left: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 250, 249, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    left: 30px;
    background: transparent;
    border: none;
    color: var(--dark);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1002;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
}

.mobile-menu .menu-link {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    opacity: 0;
    transform: translateY(20px);
    transition: color 0.3s, opacity 0.5s, transform 0.5s;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

.is-open .menu-link {
    opacity: 1;
    transform: translateY(0);
}

.is-open .menu-link:nth-child(1) { transition-delay: 0.1s; }
.is-open .menu-link:nth-child(2) { transition-delay: 0.15s; }
.is-open .menu-link:nth-child(3) { transition-delay: 0.2s; }
.is-open .menu-link:nth-child(4) { transition-delay: 0.25s; }
.is-open .menu-link:nth-child(5) { transition-delay: 0.3s; }
.is-open .menu-link:nth-child(6) { transition-delay: 0.35s; }

.menu-link:hover {
    color: var(--primary);
}

body.no-scroll {
    overflow: hidden;
}


/* ---- Hero & Features Sections ---- */
.hero-section {
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 191, 99, 0.2);
}

.hero-text h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    gap: 25px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-badges i {
    color: var(--primary);
    margin-left: 6px;
}

.hero-visual {
    position: relative;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-mockup {
    width: 320px;
    height: 220px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
}

.floating-card {
    position: absolute;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-sm);
    background: #fff;
    animation: floatY 4s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: 0;
    z-index: 3;
}

.card-1 strong {
    display: block;
    color: var(--dark);
    font-size: 0.9rem;
}

.card-1 span {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
}

.card-2 {
    bottom: 15%;
    right: -20px;
    z-index: 1;
    gap: 10px;
    animation-delay: 1s;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-2 .icon-box {
    background: #fff;
    color: #555;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

@keyframes floatY {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.features-wrapper {
    padding: 50px 0;
    position: relative;
}

.feature-row {
    padding: 80px 0;
}

.feature-row .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-row.reverse .container {
    direction: ltr;
}

.feature-row.reverse .feature-content {
    direction: rtl;
}

.icon-header {
    width: 60px;
    height: 60px;
    background: var(--grad-primary);
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transform: rotate(-5deg);
    box-shadow: 5px 5px 0px var(--accent);
}

.feature-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.feature-content p {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-list li i {
    color: var(--primary);
    background: var(--primary-light);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 400px;
}

.visual-circle {
    width: 300px;
    height: 300px;
    border-radius: 45% 55% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md), inset 0 0 20px rgba(255, 255, 255, 0.5);
    position: relative;
    background: linear-gradient(135deg, #fff, var(--primary-light));
    animation: morphShape 8s ease-in-out infinite;
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 45% 55% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.floating-anim {
    animation: floatY 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 10px rgba(0, 191, 99, 0.2));
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: var(--text-light);
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.fi-1 { top: 20px; right: 20px; animation: floatY 4s infinite 0.5s; color: #1a1f71; } /* Visa Color */
.fi-2 { bottom: 40px; left: 10px; animation: floatY 5s infinite 1s; color: #000; } /* Apple Pay */
.fi-3 { top: 30px; left: 30px; animation: floatY 4s infinite 0.2s; color: #f68b1f; } /* Box color */
.fi-4 { bottom: 30px; right: 20px; animation: floatY 4.5s infinite 0.8s; color: #db3236; } /* Map marker */


/* ---- Pricing Section ---- */
.pricing-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.pricing-swiper {
    padding-bottom: 50px !important;
}

.pricing-swiper .swiper-slide {
    height: auto;
}

.pricing-card {
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    background: #fff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    border: 1px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    z-index: 2;
}

@media (min-width: 769px) {
    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }
    .pricing-card.featured:hover {
        transform: scale(1.08) translateY(-10px);
    }
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-primary);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 191, 99, 0.3);
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}

.featured .price {
    color: var(--primary);
}

.currency {
    font-size: 1.2rem;
    vertical-align: super;
    margin-right: 5px;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.plan-features {
    margin-bottom: 35px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 15px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li i {
    color: var(--primary);
    font-size: 1.1rem;
}

.plan-features li.disabled {
    color: #ccc;
    text-decoration: line-through;
}

.plan-features li.disabled i {
    color: #eee;
}

.full-width {
    width: 100%;
}

.pricing-pagination {
    position: absolute !important;
}


/* ---- Testimonials & FAQ Sections ---- */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-swiper {
    overflow: visible;
}

.testimonial-box {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    height: 100%;
}

.stars {
    color: #fbb03b;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.testimonial-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 25px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-img {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.client-info h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.client-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    transition: 0.3s;
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    width: 25px;
    border-radius: 5px;
    background: var(--primary-dark);
}

.faq-section {
    padding: 100px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.faq-item.active {
    border-color: rgba(0, 191, 99, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text);
    line-height: 1.8;
}

.faq-item.active .faq-question i {
    transform: rotate(135deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-contact {
    text-align: center;
    margin-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 40px;
}

.faq-contact h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.faq-contact p {
    margin-bottom: 25px;
    color: var(--text-light);
}


/* ---- CTA, Footer, Floating Actions ---- */
.cta-banner-section {
    padding: 50px 0 100px;
}

.cta-box {
    background: var(--grad-primary);
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(193, 255, 114, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.cta-box h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

footer {
    background: var(--dark);
    color: #a0aec0;
    padding: 80px 0 30px;
    position: relative;
    margin-top: 50px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--primary);
}

.footer-info p {
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: #fff;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #a0aec0;
    font-weight: 500;
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-right: 5px;
}

.footer-links ul li i {
    margin-left: 10px;
    color: var(--primary);
    width: 20px;
}

.footer-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: default;
    margin-bottom: 25px;
}

.footer-title h4 {
    margin-bottom: 0;
}

.footer-title i {
    display: none;
    color: var(--primary);
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 990;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.float-btn:hover {
    transform: scale(1.1);
}

.whatsapp {
    background: #25d366;
}

.scroll-up {
    background: var(--dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-up.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-up:hover {
    background: var(--primary);
    transform: scale(1.1) translateY(0);
}


/* ---- Responsive Design ---- */
@media (max-width: 1024px) {
    .feature-row .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .feature-row.reverse .container {
        direction: rtl;
    }
    .feature-content {
        direction: rtl;
        order: 1;
    }
    .feature-visual {
        order: 2;
        height: 300px;
    }
    .icon-header {
        margin: 0 auto 25px;
    }
    .feature-list {
        display: inline-block;
        text-align: right;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .main-header {
        top: 0;
        padding: 0;
    }
    .main-header .container {
        border-radius: 0;
        background: #fff;
    }
    .desktop-nav,
    .desktop-cta {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .hero-section {
        padding-top: 120px;
        text-align: center;
    }
    .hero-container {
        grid-template-columns: 1fr;
    }
    .hero-text p {
        margin: 0 auto 30px;
    }
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    .trust-badges {
        justify-content: center;
    }
    .hero-visual {
        display: flex;
    }
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .hero-text p {
        font-size: 1.05rem;
    }
    .feature-content h2 {
        font-size: 2rem;
    }
    .section-header h2,
    .cta-box h2 {
        font-size: 1.8rem;
    }
    .price {
        font-size: 2.8rem;
    }
    .btn {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
    .btn-lg {
        padding: 14px 30px;
        font-size: 1rem;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-info {
        text-align: center;
    }
    .footer-info .footer-logo {
        justify-content: center;
    }
    .social-icons {
        justify-content: center;
    }
    .footer-links {
        text-align: right;
    }
    .footer-title {
        cursor: pointer;
    }
    .footer-title i {
        display: block;
        transition: transform 0.3s ease;
    }
    .footer-links ul {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, margin-top 0.4s ease;
        padding-right: 15px;
    }
    .footer-links.active ul {
        max-height: 250px;
        margin-top: 15px;
    }
    .footer-links.active .footer-title i {
        transform: rotate(45deg);
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}