/* ===== CSS Variables ===== */
:root {
    --primary-color: #4F46E5;
    --primary-dark: #4338CA;
    --primary-light: #818CF8;
    --secondary-color: #06B6D4;
    --accent-color: #F59E0B;
    --success-color: #10B981;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-gray: #F3F4F6;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --transition: all 0.3s ease;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    width: 100%;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

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

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

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

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.05;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-title .highlight {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-light);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 10px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #000;
    border-radius: 15px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 32px;
    overflow: hidden;
}

.app-preview {
    padding: 60px 20px 20px;
    height: 100%;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}

.app-logo {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 10px;
    padding: 5px;
}

.app-search {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
}

.app-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 500;
    font-size: 14px;
}

.app-card i {
    font-size: 20px;
}

.app-card small {
    margin-left: auto;
    font-size: 12px;
    opacity: 0.8;
    font-weight: 400;
}

/* ===== App Screens Slider ===== */
.app-screens-slider {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.app-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 50px 15px 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.4s ease;
}

.app-screen.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.app-screen-title {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.9;
}

.app-card-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.app-card-info span {
    font-size: 13px;
    font-weight: 500;
}

.app-card-info small {
    font-size: 11px;
    opacity: 0.8;
    margin-left: 0;
}

.app-card-info small i {
    color: #FFD700;
    font-size: 10px;
    margin-right: 3px;
}

.app-card .distance {
    font-size: 11px;
    opacity: 0.7;
    margin-left: 0;
}

.app-card .price {
    font-size: 13px;
    font-weight: 600;
    opacity: 1;
    color: #10B981;
}

/* Service Select Cards */
.service-select .selected {
    color: #10B981;
    font-size: 18px;
}

.service-select .fa-circle {
    font-size: 18px;
    opacity: 0.4;
}

/* App Button */
.app-btn {
    background: white;
    color: var(--primary-color);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    margin-top: 15px;
}

/* Status Card */
.app-status-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.status-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon i {
    color: var(--primary-color);
    font-size: 20px;
}

.status-icon.pulse {
    animation: pulse-ring 1.5s ease infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.status-text {
    display: flex;
    flex-direction: column;
}

.status-main {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.status-sub {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

/* Timeline */
.app-timeline {
    padding-left: 10px;
}

.timeline-item {
    position: relative;
    padding-left: 25px;
    padding-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.timeline-item:last-child {
    padding-bottom: 0;
    border-left: 2px solid transparent;
}

.timeline-item.done {
    color: rgba(255, 255, 255, 0.8);
    border-left-color: #10B981;
}

.timeline-item.active {
    color: white;
    font-weight: 600;
    border-left-color: #10B981;
}

.timeline-dot {
    position: absolute;
    left: -7px;
    top: 0;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.timeline-item.done .timeline-dot {
    background: #10B981;
    border-color: #10B981;
}

.timeline-item.active .timeline-dot {
    background: white;
    border-color: #10B981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3);
}

/* History Cards */
.history-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.history-icon.completed {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
}

/* Notification Cards */
.notif-icon {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.notif-icon.delivery {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
}

.notif-icon.promo {
    background: rgba(245, 158, 11, 0.2);
    color: #F59E0B;
}

.notif-icon.rating {
    background: rgba(99, 102, 241, 0.2);
    color: #818CF8;
}

/* Screen Navigation Dots */
.screen-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

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

.screen-dot.active {
    width: 24px;
    background: white;
    border-radius: 4px;
}

.screen-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.back-icon {
    font-size: 16px;
    opacity: 0.8;
}

.floating-bubble {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.floating-bubble i {
    font-size: 24px;
    color: var(--primary-color);
}

.bubble-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    bottom: 30%;
    left: -5%;
    animation-delay: 1s;
}

.bubble-3 {
    bottom: 10%;
    right: 5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 120px;
}

.hero-wave path {
    fill: var(--bg-white);
}

/* ===== Section Styling ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
}

/* ===== Problem & Solution Section ===== */
.problem-solution {
    background: var(--bg-white);
    padding: 100px 0;
}

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

.ps-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.ps-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.ps-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    padding: 20px;
    text-align: center;
}

.ps-overlay span {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.ps-content .section-title {
    text-align: left;
}

.ps-content .section-tag {
    text-align: left;
}

.ps-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.ps-benefits {
    list-style: none;
}

.ps-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
}

.ps-benefits li i {
    color: var(--success-color);
    font-size: 20px;
}

/* ===== How It Works Section ===== */
.how-it-works {
    background: var(--bg-light);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: 20%;
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    z-index: 1;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.step:hover .step-icon {
    background: var(--gradient-primary);
}

.step:hover .step-icon i {
    color: white;
}

.step-icon i {
    font-size: 36px;
    color: var(--primary-color);
    transition: var(--transition);
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.step-connector {
    flex: 0 0 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin-top: 50px;
    border-radius: 3px;
}

/* ===== Partner Laundries Section ===== */
.partner-laundries {
    background: var(--bg-white);
    padding: 100px 0;
}

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

.pl-content .section-title {
    text-align: left;
}

.pl-content .section-tag {
    text-align: left;
}

.pl-content > p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.pl-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pl-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.pl-feature > i {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-color);
}

.pl-feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.pl-feature p {
    font-size: 14px;
    color: var(--text-light);
}

.pl-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.pl-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    filter: grayscale(30%);
    transition: var(--transition);
}

.pl-image:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* ===== Features Section ===== */
.features {
    background: var(--bg-light);
}

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

.feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card .feature-icon i {
    font-size: 32px;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-light);
}

/* ===== Results Section ===== */
.results-section {
    background: var(--bg-white);
    padding: 100px 0;
}

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

.results-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.results-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.results-content .section-title {
    text-align: left;
}

.results-content .section-tag {
    text-align: left;
}

.results-content > p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.results-stats {
    display: flex;
    gap: 40px;
}

.result-stat {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.result-label {
    display: block;
    font-size: 14px;
    color: var(--text-light);
}

/* ===== For Laundries Section ===== */
.for-laundries {
    background: var(--bg-light);
    padding: 100px 0;
}

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

.fl-content .section-title {
    text-align: left;
}

.fl-content .section-tag {
    text-align: left;
}

.fl-content > p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.fl-benefits {
    list-style: none;
    margin-bottom: 35px;
}

.fl-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
}

.fl-benefits li i {
    color: var(--primary-color);
    font-size: 20px;
    width: 24px;
}

.fl-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.fl-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* ===== Testimonials Section ===== */
.testimonials {
    background: var(--bg-white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--accent-color);
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: white;
    font-size: 20px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.author-info span {
    font-size: 13px;
    color: var(--text-light);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* ===== Download Section ===== */
.download {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.download-text {
    color: white;
}

.download-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.download-text p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
}

.download-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 25px;
    border-radius: var(--radius-md);
    color: white;
    transition: var(--transition);
}

.store-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.store-btn i {
    font-size: 28px;
}

.store-text {
    display: flex;
    flex-direction: column;
}

.store-text span {
    font-size: 11px;
    opacity: 0.8;
}

.store-text strong {
    font-size: 16px;
}

.download-qr {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qr-code {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code i {
    font-size: 50px;
    color: var(--text-dark);
}

.download-qr span {
    font-size: 14px;
    opacity: 0.9;
}

.download-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.phones-mockup {
    position: relative;
    width: 350px;
    height: 400px;
}

.phone-back,
.phone-front {
    position: absolute;
    width: 200px;
    height: 400px;
    background: #1a1a1a;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
}

.phone-back {
    left: 0;
    top: 20px;
    transform: rotate(-10deg);
}

.phone-front {
    right: 0;
    top: 0;
    transform: rotate(5deg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.phone-front img {
    width: 100px;
}

/* ===== Footer ===== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.footer-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo span {
    font-size: 28px;
    font-weight: 700;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
    color: var(--primary-light);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-badge {
        margin-bottom: 15px;
    }

    .hero-image {
        order: -1;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .ps-grid,
    .pl-grid,
    .results-grid,
    .fl-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ps-content,
    .pl-content,
    .results-content,
    .fl-content {
        text-align: center;
    }

    .ps-content .section-title,
    .ps-content .section-tag,
    .pl-content .section-title,
    .pl-content .section-tag,
    .results-content .section-title,
    .results-content .section-tag,
    .fl-content .section-title,
    .fl-content .section-tag {
        text-align: center;
    }

    .ps-benefits,
    .fl-benefits {
        max-width: 400px;
        margin: 0 auto;
    }

    .ps-benefits li,
    .fl-benefits li {
        justify-content: center;
    }

    .pl-features {
        max-width: 400px;
        margin: 0 auto;
    }

    .results-stats {
        justify-content: center;
    }

    .fl-content .btn {
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .download-buttons {
        justify-content: center;
    }

    .download-qr {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta,
    .nav-actions .btn {
        display: none;
    }

    .nav-actions {
        margin-right: 10px;
    }

    .nav-actions .language-selector {
        display: block;
    }

    .language-btn .lang-text {
        display: none;
    }

    .language-btn {
        padding: 8px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 15px;
    }

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

    .section-title {
        font-size: 32px;
    }

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

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

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 3px;
        height: 40px;
        margin: 0;
    }

    .results-stats {
        flex-direction: column;
        gap: 25px;
    }

    .download-text h2 {
        font-size: 32px;
    }

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

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

    .social-links {
        justify-content: center;
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .ps-image img,
    .pl-image img,
    .results-image img,
    .fl-image img {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 120px 0 80px;
    }

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

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

    .btn-lg {
        padding: 14px 28px;
        font-size: 14px;
    }

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

    .section-title {
        font-size: 28px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .download-buttons {
        flex-direction: column;
    }

    .store-btn {
        justify-content: center;
    }

    .ps-image img,
    .pl-image img,
    .results-image img,
    .fl-image img {
        height: 280px;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===== Legal Pages (Privacy Policy & Terms) ===== */
.page-header {
    background: white;
    padding: 160px 0 80px;
    text-align: center;
    color: var(--text-dark);
}

.page-header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.page-header-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.page-header-logo span {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.page-header p {
    font-size: 16px;
    color: var(--text-light);
}

.legal-content {
    padding: 80px 0;
    background: var(--bg-light);
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section:last-of-type {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.legal-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 25px 0 15px;
}

.legal-section p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section ul li {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
    position: relative;
    list-style: disc;
}

.legal-section ul li strong {
    color: var(--text-dark);
}

.legal-section .contact-list {
    list-style: none;
    padding-left: 0;
}

.legal-section .contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
}

.legal-section .contact-list li i {
    color: var(--primary-color);
    width: 20px;
}

.legal-back {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.legal-back .btn i {
    margin-right: 8px;
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 60px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .legal-container {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .legal-section h2 {
        font-size: 20px;
    }

    .legal-section h3 {
        font-size: 16px;
    }
}

/* ===== Partner Registration Page ===== */
.partner-benefits {
    padding: 60px 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 28px;
    color: white;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Partner Form Section */
.partner-form-section {
    padding: 80px 0;
    background: white;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-header p {
    font-size: 16px;
    color: var(--text-light);
}

.partner-form .form-section {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border-color);
}

.partner-form .form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
    padding-bottom: 0;
}

.partner-form .form-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.partner-form .form-section h3 i {
    color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9CA3AF;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
    position: relative;
    padding-left: 30px;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-label .checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition);
}

.checkbox-label:hover .checkmark {
    border-color: var(--primary-color);
}

.checkbox-label input:checked ~ .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.terms-checkbox {
    margin-top: 10px;
}

.terms-checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
}

.terms-checkbox a:hover {
    color: var(--primary-dark);
}

/* Form Submit */
.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit .btn {
    min-width: 250px;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.success-icon i {
    font-size: 50px;
    color: white;
}

.success-message h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.success-message p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Partner Page Responsive */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .checkbox-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-row:has(.form-group:nth-child(3)) {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr 1fr;
    }

    .form-header h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 25px 20px;
    }
}

/* ===== FAQ Page ===== */
.faq-content {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-category h2 i {
    color: var(--primary-color);
    font-size: 22px;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
    padding-right: 15px;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background: var(--gradient-primary);
}

.faq-item.active .faq-question span {
    color: white;
}

.faq-item.active .faq-question i {
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-answer ul li,
.faq-answer ol li {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.faq-answer ul li strong,
.faq-answer ol li strong {
    color: var(--text-dark);
}

.faq-contact {
    background: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    margin-top: 30px;
}

.faq-contact h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.faq-contact p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.faq-contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-contact-buttons .btn i {
    margin-right: 8px;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-container {
        padding: 0 15px;
    }

    .faq-category h2 {
        font-size: 20px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question span {
        font-size: 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-contact {
        padding: 35px 25px;
    }

    .faq-contact h3 {
        font-size: 24px;
    }

    .faq-contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .faq-contact-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* ===== Language Selector ===== */
.language-selector {
    position: relative;
    margin-left: 15px;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
}

.language-btn:hover {
    border-color: var(--primary-color);
    background: var(--bg-light);
}

.language-btn .flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

.language-btn .lang-code {
    font-weight: 500;
    text-transform: uppercase;
}

.language-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.language-btn.active i {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-dark);
}

.language-option:hover {
    background: var(--bg-light);
}

.language-option.active {
    background: var(--bg-gray);
    color: var(--primary-color);
}

.language-option .flag {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.language-option .lang-name {
    flex: 1;
}

.language-option .check {
    color: var(--primary-color);
    opacity: 0;
}

.language-option.active .check {
    opacity: 1;
}

/* ===== RTL Support ===== */
html[dir="rtl"] {
    font-family: 'Vazirmatn', 'Poppins', sans-serif;
}

html[dir="rtl"] body {
    font-family: 'Vazirmatn', 'Poppins', sans-serif;
}

html[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-brand a {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-cta {
    margin-left: 0;
    margin-right: auto;
}

html[dir="rtl"] .language-selector {
    margin-left: 0;
    margin-right: 15px;
}

html[dir="rtl"] .language-dropdown {
    right: auto;
    left: 0;
}

html[dir="rtl"] .hero-content {
    text-align: right;
}

html[dir="rtl"] .hero-buttons {
    justify-content: flex-start;
}

html[dir="rtl"] .section-tag {
    text-align: right;
}

html[dir="rtl"] .section-title {
    text-align: right;
}

/* Keep section headers centered in RTL */
html[dir="rtl"] .section-header .section-tag,
html[dir="rtl"] .section-header .section-title,
html[dir="rtl"] .section-header .section-subtitle {
    text-align: center;
}

html[dir="rtl"] .fl-benefits li {
    flex-direction: row-reverse;
    text-align: right;
}

html[dir="rtl"] .fl-benefits li i {
    margin-right: 0;
    margin-left: 15px;
}

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

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

html[dir="rtl"] .footer-grid {
    direction: rtl;
}

html[dir="rtl"] .footer-brand {
    text-align: right;
}

html[dir="rtl"] .footer-links {
    text-align: right;
}

html[dir="rtl"] .footer-contact ul li {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

html[dir="rtl"] .footer-contact ul li i {
    margin-right: 0;
    margin-left: 10px;
}

html[dir="rtl"] .legal-section {
    text-align: right;
}

html[dir="rtl"] .legal-section ul {
    padding-left: 0;
    padding-right: 25px;
}

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

html[dir="rtl"] .page-header-logo {
    justify-content: flex-start;
}

html[dir="rtl"] .faq-question {
    flex-direction: row-reverse;
}

html[dir="rtl"] .faq-question span {
    padding-right: 0;
    padding-left: 15px;
    text-align: right;
}

html[dir="rtl"] .faq-category h2 {
    flex-direction: row-reverse;
}

html[dir="rtl"] .faq-category h2 i {
    margin-right: 0;
    margin-left: 12px;
}

html[dir="rtl"] .faq-answer {
    text-align: right;
}

html[dir="rtl"] .faq-answer ul,
html[dir="rtl"] .faq-answer ol {
    padding-left: 0;
    padding-right: 25px;
}

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

html[dir="rtl"] .partner-form .form-section h3 {
    flex-direction: row-reverse;
}

html[dir="rtl"] .form-group {
    text-align: right;
}

html[dir="rtl"] .checkbox-label {
    flex-direction: row-reverse;
    padding-left: 0;
    padding-right: 30px;
}

html[dir="rtl"] .checkbox-label .checkmark {
    left: auto;
    right: 0;
}

html[dir="rtl"] .terms-checkbox {
    direction: rtl;
    text-align: right;
    flex-direction: row-reverse;
    justify-content: flex-end;
    padding-right: 0;
    padding-left: 30px;
}

html[dir="rtl"] .terms-checkbox .checkmark {
    left: 0;
    right: auto;
}

html[dir="rtl"] .terms-checkbox a {
    margin: 0 4px;
}

/* Arabic font for buttons */
html[dir="rtl"] .btn {
    font-family: 'Vazirmatn', 'Poppins', sans-serif;
}

html[dir="rtl"] .success-message {
    text-align: right;
}

html[dir="rtl"] .app-card {
    flex-direction: row-reverse;
}

html[dir="rtl"] .app-card-info {
    text-align: right;
}

html[dir="rtl"] .hamburger {
    margin-left: 0;
    margin-right: auto;
}

/* RTL Responsive */
@media (max-width: 768px) {
    html[dir="rtl"] .hero-content {
        text-align: center;
    }

    html[dir="rtl"] .hero-buttons {
        justify-content: center;
    }

    html[dir="rtl"] .page-header {
        text-align: center;
    }

    html[dir="rtl"] .page-header-logo {
        justify-content: center;
    }
}
