@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800&family=Outfit:wght@200;300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #344951;
    --secondary-color: #F6F4EA;
    --accent-color: #D4AF37;
    /* Luxury Gold */
    --accent-light: #E5C76B;
    --text-dark: #1A1A1A;
    --text-muted: #5E6D74;
    --text-light: #F6F4EA;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    --container: 1200px;
}

[dir="ltr"] {
    --dir-factor: 1;
}

[dir="rtl"] {
    --dir-factor: -1;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--accent-color);
    z-index: 2000;
    transition: width 0.1s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

[lang="ar"] body {
    font-family: 'Cairo', sans-serif;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(52, 73, 81, 0.98);
    backdrop-filter: blur(15px);
    padding: 15px 5%;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
}

nav .logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

nav .logo img {
    height: 48px;
    max-width: 180px;
    object-fit: contain;
}

nav.scrolled .logo img {
    filter: brightness(0) invert(1);
}

nav.scrolled .logo,
nav.scrolled .nav-links a {
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-toggle,
.nav-close {
    display: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

nav.scrolled .nav-toggle {
    color: var(--text-light);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-download {
    background: var(--primary-color) !important;
    color: white !important;
    padding: 12px 28px;
    border-radius: 4px;
    /* More professional sharp edges or slight rounding */
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(52, 73, 81, 0.2);
}

nav.scrolled .btn-download {
    background-color: var(--accent-color);
}

.btn-lang {
    background: transparent;
    border: 1px solid rgba(52, 73, 81, 0.25);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    transition: var(--transition);
}

nav.scrolled .btn-lang {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    padding: 120px 5% 60px;
    align-items: center;
    background: radial-gradient(circle at top right, #FFFFFF 0%, #E8E5D6 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    flex: 1.2;
    z-index: 5;
    padding-right: 50px;
}

[dir="rtl"] .hero-content {
    padding-right: 0;
    padding-left: 50px;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary-color);
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

[lang="ar"] .hero-title {
    font-size: 52px;
    letter-spacing: 0;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 50px;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(52, 73, 81, 0.2);
    margin-bottom: 40px;
}

.btn-primary:hover {
    transform: translateY(-5px);
    background: #25343a;
    box-shadow: 0 15px 40px rgba(52, 73, 81, 0.3);
}

.store-btns {
    display: flex;
    gap: 15px;
}

.store-btns img {
    height: 48px;
    transition: var(--transition);
}

.store-btns img:hover {
    transform: scale(1.05);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    z-index: 5;
}

.phone-mockup {
    width: 260px;
    height: 520px;
    background: #000;
    border: 12px solid #1a1a1a;
    border-radius: 50px;
    position: relative;
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transform: perspective(1000px) rotateY(calc(var(--dir-factor) * -10deg));
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: perspective(1000px) rotateY(calc(var(--dir-factor) * -10deg)) translateY(0);
    }

    50% {
        transform: perspective(1000px) rotateY(calc(var(--dir-factor) * -10deg)) translateY(-20px);
    }
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 80%);
    pointer-events: none;
}


/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.badge {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

/* Features */
.features {
    padding: 120px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    padding: 40px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.feature-card:hover::before {
    opacity: 1;
}

.icon-box {
    width: 64px;
    height: 64px;
    background: var(--secondary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-muted);
}

/* Categories */
.categories {
    padding: 120px 0;
    background: #fafafa;
}

.cat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.cat-card {
    position: relative;
    background: white;
    border-radius: 32px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.cat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.cat-info {
    max-width: 50%;
    z-index: 2;
}

.cat-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cat-preview {
    width: 250px;
    transform: rotateX(10deg) rotateY(-10deg) translateY(20px);
    transition: var(--transition);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.cat-preview img {
    width: 100%;
    height: auto;
}

.cat-card:hover .cat-preview {
    transform: rotateX(0) rotateY(0) translateY(0) scale(1.05);
}

/* Sell Section */
.sell-section {
    padding: 100px 0;
    background: white;
}

.sell-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.sell-container.central {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.sell-container.central .sell-content {
    text-align: center;
}

.sell-container.central .steps-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
}

.sell-container.central .steps-list li {
    justify-content: center;
    width: 100%;
    max-width: 650px;
    background: #fdfcee;
    padding: 25px 40px;
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sell-container.central .steps-list li:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    background: white;
}

.steps-list {
    list-style: none;
    margin-top: 40px;
}

.steps-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

[dir="rtl"] .steps-list li {
    flex-direction: row;
    justify-content: flex-start;
}

[dir="ltr"] .steps-list li {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.step-num::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
}

/* Showcase Section */
.showcase {
    padding: 140px 0;
    background: var(--primary-color);
    color: white;
    overflow: hidden;
}

.showcase-side-by-side {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

[dir="ltr"] .showcase-side-by-side {
    flex-direction: row;
}

.showcase .section-header {
    text-align: right;
    width: 50%;
    margin-bottom: 0;
}

[dir="ltr"] .showcase .section-header {
    text-align: left;
}

.showcase .section-header h2 {
    color: white;
    margin-bottom: 30px;
    font-size: 56px;
    font-weight: 800;
}

.showcase .section-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    line-height: 1.8;
}

/* Mobile Showcase Frame */
.mobile-showcase {
    position: relative;
    max-width: 320px;
    perspective: 1000px;
    flex: 1;
    display: flex;
    justify-content: center;
}

.mobile-showcase::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 450px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    z-index: 1;
    filter: blur(40px);
}

.phone-frame {
    position: relative;
    width: 300px;
    height: 620px;
    background: #000;
    border-radius: 45px;
    border: 12px solid #1a1a1a;
    box-shadow:
        inset 0 0 10px rgba(255, 255, 255, 0.1),
        0 40px 100px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(212, 175, 55, 0.1);
    overflow: hidden;
    margin: 0 auto;
    z-index: 2;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 0%,
            rgba(255, 255, 255, 0.03) 45%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.03) 55%,
            transparent 100%);
    z-index: 5;
    pointer-events: none;
    animation: reflection 8s linear infinite;
}

@keyframes reflection {
    0% {
        transform: translate(-20%, -20%) rotate(0deg);
    }

    100% {
        transform: translate(20%, 20%) rotate(0deg);
    }
}

.notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #1a1a1a;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 10;
}

.screen-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.screen-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.screen-slider img.active {
    opacity: 1;
}

.phone-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    filter: blur(20px);
    border-radius: 50%;
    z-index: 1;
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    text-align: center;
    background: var(--secondary-color);
}

.final-cta h2 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.final-cta p {
    margin-bottom: 50px;
    font-size: 20px;
    color: var(--text-muted);
}

.centered {
    justify-content: center;
}

.cat-card {
    position: relative;
    background: #FDFBEE;
    border-radius: 32px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.cat-card:hover {
    transform: scale(1.02);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
}

.cat-info {
    max-width: 50%;
    z-index: 2;
}

.cat-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cat-preview {
    width: 280px;
    transform: rotateX(10deg) rotateY(-10px) translateY(20px);
    transition: var(--transition);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.cat-card:hover .cat-preview {
    transform: rotateX(0) rotateY(0) translateY(0) scale(1.1);
}

/* Combined Footer Styles */
.footer {
    padding: 120px 0 60px;
    background: #263438;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.5);
    margin: 30px 0;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 8px;
}

[dir="rtl"] .footer-col ul li a:hover {
    padding-left: 0;
    padding-right: 8px;
}

.footer-apps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-apps img {
    height: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.5;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 968px) {
    nav {
        padding: 20px 5%;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: 0.5s;
        z-index: 2000;
        padding: 40px;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 28px;
        color: var(--primary-color);
        cursor: pointer;
    }

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

    [dir="rtl"] .nav-menu {
        right: auto;
        left: -100%;
    }

    .nav-menu.active {
        right: 0;
    }

    [dir="rtl"] .nav-menu.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 30px;
    }

    .nav-links a {
        font-size: 20px;
        color: var(--primary-color) !important;
        font-weight: 600;
    }

    .nav-links .btn-download {
        background: var(--primary-color) !important;
        color: white !important;
        padding: 15px 40px !important;
        border-radius: 50px !important;
        width: auto !important;
        margin-top: 10px;
    }

    .nav-menu .btn-lang {
        color: var(--primary-color) !important;
        border: 1px solid rgba(52, 73, 81, 0.1) !important;
        padding: 10px 30px !important;
        border-radius: 50px !important;
        background: #f8f9fa !important;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }

    .hero-content {
        margin-bottom: 60px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .cat-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .cat-preview {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .brand-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-apps {
        align-items: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .showcase-side-by-side {
        flex-direction: column !important;
        text-align: center;
        gap: 60px;
    }

    .showcase .section-header {
        text-align: center !important;
        width: 100%;
    }

    .showcase .section-header h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .showcase .section-header p {
        font-size: 15px;
        max-width: 100%;
    }

    .showcase {
        padding: 60px 0;
        background: var(--primary-color) !important;
        width: 100%;
    }

    .mobile-showcase {
        margin: 0 auto;
        width: 100%;
        max-width: 280px;
    }

    .phone-frame {
        width: 260px;
        height: 540px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .cat-card {
        padding: 30px;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cat-info {
        max-width: 100%;
    }

    .phone-mockup {
        width: 220px;
        height: 440px;
    }

    .phone-frame {
        width: 260px;
        height: 530px;
    }
}

/* Scroll Components */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.back-to-top.visible {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Brands Marquee */
.brands-marquee {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.brand-item {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.5;
    transition: var(--transition);
    cursor: default;
}

.brand-item:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: translateY(-5px);
}

/* FAQ Section */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fafafa;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.faq-item:hover {
    background: white;
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Steps List Polish */
.step-text {
    flex: 1;
}

.step-text h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 22px;
}

.step-text p {
    color: var(--text-muted);
    font-size: 16px;
}

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

[dir="ltr"] .step-text {
    text-align: left;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brands-marquee {
        gap: 20px;
    }
    
    .brand-item {
        font-size: 18px;
    }
}

/* Premium About Us Redesign */
.about-section {
    padding: 140px 0;
    background: radial-gradient(circle at center, #ffffff 0%, #fdfcee 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(var(--accent-color) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.1;
    z-index: 0;
}

.premium-title {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.about-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    transition: var(--transition);
}

.main-card {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-icon {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 30px;
    background: var(--primary-color);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(52, 73, 81, 0.15);
}

.about-text-primary {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.4;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    padding: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.stat-card i {
    font-size: 32px;
    color: var(--accent-color);
}

.stat-card h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6;
}

.mission-statement {
    grid-column: span 2;
    margin-top: 20px;
}

.mission-inner {
    padding: 50px;
    background: white;
    border-radius: 40px;
    border-left: 8px solid var(--accent-color);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    position: relative;
}

[dir="rtl"] .mission-inner {
    border-left: none;
    border-right: 8px solid var(--accent-color);
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    opacity: 0.1;
    color: var(--primary-color);
}

[dir="rtl"] .quote-icon {
    right: auto;
    left: 40px;
}

.mission-inner p {
    font-size: 20px;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-statement {
        grid-column: span 1;
    }
}