/* ========================================
   Fllowy Landing Page - Premium Design
   ======================================== */

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

:root {
    /* Brand Colors */
    --cyan: #00D9FF;
    --orange: #FF6B35;
    --navy: #0A1931;
    --black: #0D0D0D;
    --white: #FFFFFF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00D9FF 0%, #FF6B35 100%);
    --gradient-bg: linear-gradient(135deg, #0A1931 0%, #0D0D0D 100%);
    --gradient-dark: linear-gradient(180deg, rgba(10, 25, 49, 0.95) 0%, rgba(13, 13, 13, 0.98) 100%);
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(15px);
    
    /* Shadows & Glows */
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
    --glow-cyan: 0 0 30px rgba(0, 217, 255, 0.5);
    --glow-orange: 0 0 30px rgba(255, 107, 53, 0.5);
    --glow-combined: 0 0 40px rgba(0, 217, 255, 0.4), 0 0 60px rgba(255, 107, 53, 0.3);
    
    /* Typography */
    --font-primary: 'Cairo', sans-serif;
}

body {
    font-family: var(--font-primary);
    background: var(--gradient-bg);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    direction: rtl;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Preloader === */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s, visibility 0.6s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.logo-loader {
    width: 180px;
    height: 180px;
    filter: drop-shadow(var(--glow-combined));
    animation: logoFloat 3s ease-in-out infinite, glowPulse 2s ease-in-out infinite;
}

.loader-text {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    opacity: 0;
    animation: fadeIn 0.5s 1.5s forwards;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 107, 53, 0.8));
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(10, 25, 49, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(var(--glow-cyan)) drop-shadow(var(--glow-orange));
    transition: all 0.3s ease;
    object-fit: contain;
}

.logo-img:hover {
    transform: scale(1.1) rotate(5deg);
}

.logo-text {
    font-size: 42px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--cyan);
}

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

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: var(--glow-combined);
    position: relative;
    overflow: hidden;
}

.nav-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.nav-cta-btn:hover::before {
    left: 100%;
}

.nav-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 60px rgba(0, 217, 255, 0.8), 0 0 80px rgba(255, 107, 53, 0.7);
}

.nav-cta-btn i {
    animation: rocket-shake 1s infinite;
}

@keyframes rocket-shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* === Hero Section === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--cyan);
    box-shadow: var(--glow-cyan);
}

.hero-title {
    font-size: 62px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: var(--font-primary);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta.primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--glow-combined);
}

.hero-cta.primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 70px rgba(0, 217, 255, 0.8), 0 0 90px rgba(255, 107, 53, 0.7);
}

.hero-cta.primary i {
    animation: play-pulse 1.5s infinite;
}

@keyframes play-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.hero-cta.secondary {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 2px solid var(--glass-border);
    color: var(--white);
}

.hero-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-3px);
}

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

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

.stat-value {
    font-size: 42px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* === Hero Visual === */
.hero-visual {
    position: relative;
    height: 600px;
}

.ai-brain {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.brain-core {
    width: 140px;
    height: 140px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    animation: rotate360 20s linear infinite;
    box-shadow: var(--glow-combined);
    position: relative;
}

.brain-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 3px solid var(--cyan);
    border-radius: 50%;
    opacity: 0.8;
}

.pulse-1 {
    animation: pulse 2s ease-out infinite;
}

.pulse-2 {
    animation: pulse 2s 0.5s ease-out infinite;
}

.pulse-3 {
    animation: pulse 2s 1s ease-out infinite;
}

@keyframes rotate360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* === Chat Bubbles === */
.chat-bubble {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 18px;
    width: 240px;
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.chat-bubble:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: var(--glow-cyan);
}

.chat-1 {
    top: 8%;
    left: 5%;
    animation-delay: 0s;
}

.chat-2 {
    top: 8%;
    right: 5%;
    animation-delay: 0.7s;
}

.chat-3 {
    bottom: 12%;
    left: 5%;
    animation-delay: 1.4s;
}

.chat-4 {
    bottom: 12%;
    right: 5%;
    animation-delay: 2.1s;
}

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

.chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #25D366;
    font-weight: 700;
    font-size: 14px;
}

.chat-time {
    margin-right: auto;
    font-size: 11px;
    opacity: 0.7;
    color: var(--white);
}

.chat-message {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.chat-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    font-size: 12px;
    color: var(--cyan);
    font-weight: 700;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.conn-line {
    stroke: var(--cyan);
    stroke-width: 2;
    opacity: 0.3;
    stroke-dasharray: 6, 6;
    animation: dashMove 30s linear infinite;
}

@keyframes dashMove {
    to {
        stroke-dashoffset: -1000;
    }
}

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

/* === Social Proof === */
.social-proof {
    background: rgba(0, 0, 0, 0.2);
    padding: 80px 0;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.trust-stat-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.trust-stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.trust-stat-card:hover::before {
    opacity: 1;
}

.trust-stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--glow-cyan);
    border-color: var(--cyan);
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    box-shadow: var(--glow-combined);
    transition: all 0.4s ease;
}

.trust-stat-card:hover .trust-icon {
    transform: rotateY(360deg);
}

.trust-value {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.trust-label {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 600;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--cyan);
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    opacity: 0.85;
}

/* === Features Grid === */
.features {
    background: rgba(0, 0, 0, 0.2);
}

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

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--glow-cyan);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    margin-bottom: 24px;
    box-shadow: var(--glow-combined);
}

.feature-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 800;
}

.feature-card > p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 20px;
}

.feature-example {
    margin-top: 24px;
    padding: 20px;
    background: rgba(0, 217, 255, 0.08);
    border-right: 4px solid var(--cyan);
    border-radius: 12px;
    display: flex;
    gap: 15px;
}

.example-icon {
    color: var(--cyan);
    font-size: 24px;
    flex-shrink: 0;
}

.example-content strong {
    color: var(--cyan);
    display: block;
    margin-bottom: 8px;
}

.example-content p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* === What If Section === */
.what-if {
    background: rgba(0, 0, 0, 0.2);
}

.what-if-tabs {
    margin-top: 60px;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px 35px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tab-btn i {
    font-size: 24px;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cyan);
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan);
}

.tab-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: var(--glow-combined);
}

.tabs-content {
    position: relative;
    min-height: 500px;
}

.tab-pane {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.tab-pane.active {
    display: block;
}

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

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.scenario-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
}

.scenario-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--glow-combined);
}

.scenario-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 24px;
    box-shadow: var(--glow-combined);
}

.scenario-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.scenario-desc {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
}

.scenario-benefit {
    padding: 16px 20px;
    background: rgba(0, 217, 255, 0.1);
    border-right: 3px solid var(--cyan);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
}

.scenario-benefit i {
    color: var(--cyan);
    font-size: 18px;
    flex-shrink: 0;
}

/* === Sectors === */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sector-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 45px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.sector-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--glow-combined);
}

.sector-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    margin: 0 auto 28px;
    transition: all 0.5s ease;
    box-shadow: var(--glow-combined);
}

.sector-card:hover .sector-icon {
    transform: rotateY(360deg);
}

.sector-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
    font-weight: 800;
}

.sector-card p {
    font-size: 16px;
    opacity: 0.85;
    line-height: 1.6;
}

/* === Savings Comparison === */
.savings {
    background: rgba(0, 0, 0, 0.3);
}

.savings-comparison {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 50px;
    margin-bottom: 70px;
}

.comparison-column {
    flex: 1;
    max-width: 480px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 45px;
}

.comparison-column.traditional {
    border: 2px solid rgba(255, 107, 53, 0.4);
}

.comparison-column.fllowy {
    border: 2px solid rgba(0, 217, 255, 0.6);
    box-shadow: var(--glow-cyan);
}

.column-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

.column-header i {
    font-size: 42px;
}

.traditional .column-header i {
    color: var(--orange);
}

.fllowy .column-header i {
    color: var(--cyan);
}

.column-header h3 {
    font-size: 30px;
    font-weight: 900;
}

.comparison-list {
    list-style: none;
    margin-bottom: 28px;
}

.comparison-list li {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 16px;
}

.comparison-list strong {
    font-size: 20px;
    color: var(--orange);
}

.total-cost {
    display: flex;
    justify-content: space-between;
    padding: 24px;
    background: rgba(255, 107, 53, 0.12);
    border-radius: 12px;
    font-size: 18px;
    margin-bottom: 16px;
}

.total-cost strong {
    font-size: 32px;
    color: var(--orange);
    font-weight: 900;
}

.yearly-cost {
    text-align: center;
    padding: 16px;
    background: rgba(255, 107, 53, 0.08);
    border-radius: 12px;
    font-size: 16px;
}

.yearly-cost strong {
    color: var(--orange);
    font-weight: 900;
}

.comparison-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.arrow-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--glow-combined);
    animation: arrowPulse 2s infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.comparison-arrow span {
    font-size: 18px;
    font-weight: 700;
    color: var(--cyan);
}

.fllowy-benefits {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    font-size: 16px;
}

.benefit-item i {
    color: var(--cyan);
    font-size: 20px;
}

.savings-badge {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    background: rgba(0, 217, 255, 0.12);
    border-radius: 16px;
    margin-bottom: 24px;
}

.savings-badge i {
    font-size: 42px;
    color: var(--cyan);
}

.savings-text strong {
    display: block;
    font-size: 20px;
    color: var(--cyan);
    margin-bottom: 8px;
}

.savings-amount {
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.savings-percentage {
    text-align: center;
    padding: 24px;
    background: var(--gradient-primary);
    border-radius: 16px;
    box-shadow: var(--glow-combined);
}

.percentage-value {
    display: block;
    font-size: 56px;
    font-weight: 900;
}

.percentage-label {
    display: block;
    font-size: 20px;
    opacity: 0.95;
}

.savings-example {
    max-width: 850px;
    margin: 0 auto;
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    text-align: center;
}

.example-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 26px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 50px;
    margin-bottom: 24px;
    color: var(--orange);
    font-weight: 700;
    font-size: 15px;
}

.savings-example h4 {
    font-size: 30px;
    margin-bottom: 18px;
    font-weight: 900;
}

.savings-example p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
}

/* === Chat Examples === */
.chat-examples {
    background: rgba(0, 0, 0, 0.2);
}

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

.chat-example {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.chat-example:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow-cyan);
}

.chat-example-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid var(--glass-border);
}

.chat-example-header i {
    font-size: 28px;
    color: #25D366;
}

.chat-example-header span {
    font-weight: 700;
    font-size: 16px;
}

.example-status {
    margin-right: auto;
    padding: 4px 12px;
    background: rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    font-size: 12px;
    color: var(--cyan);
    font-weight: 600;
}

.chat-messages {
    padding: 24px;
    max-height: 520px;
    overflow-y: auto;
}

.message {
    margin-bottom: 18px;
    padding: 16px;
    border-radius: 16px;
    position: relative;
    animation: messageSlideIn 0.4s ease;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.customer {
    background: rgba(255, 255, 255, 0.08);
    margin-left: 60px;
}

.message.bot {
    background: rgba(0, 217, 255, 0.12);
    margin-right: 60px;
}

.message p {
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 15px;
}

.message .time {
    font-size: 12px;
    opacity: 0.6;
}

.message .badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    font-size: 11px;
    margin-top: 10px;
    color: var(--cyan);
    font-weight: 700;
}

.message .badge.success {
    background: rgba(0, 255, 100, 0.2);
    color: #00FF64;
}

.typing-indicator {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

/* === Delivery Apps === */
.delivery-dashboard {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 45px;
}

.dashboard-header h3 {
    font-size: 36px;
    margin-bottom: 12px;
    font-weight: 900;
}

.dashboard-header p {
    font-size: 18px;
    opacity: 0.85;
}

.apps-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 45px;
}

.app-logo {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.app-logo:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--glow-cyan);
}

.app-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 28px;
}

.app-logo span {
    display: block;
    font-size: 15px;
    font-weight: 700;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 45px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--glow-cyan);
}

.stat-card i {
    font-size: 42px;
    color: var(--cyan);
    margin-bottom: 18px;
}

.stat-card .stat-value {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    font-size: 15px;
    opacity: 0.8;
}

.dashboard-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.dashboard-features .feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: rgba(0, 217, 255, 0.06);
    border-radius: 12px;
}

.dashboard-features .feature-item i {
    color: var(--cyan);
    font-size: 22px;
}

/* === How It Works === */
.how-it-works {
    background: rgba(0, 0, 0, 0.3);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    box-shadow: var(--glow-combined);
}

.step-icon {
    width: 140px;
    height: 140px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 3px solid rgba(0, 217, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto 28px;
    font-size: 56px;
    color: var(--cyan);
    transition: all 0.4s ease;
}

.step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: var(--glow-cyan);
    border-color: var(--cyan);
}

.step h3 {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 900;
}

.step p {
    font-size: 16px;
    opacity: 0.85;
    line-height: 1.6;
}

.step-duration {
    font-size: 15px;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 12px;
}

.step-details {
    list-style: none;
    margin-top: 20px;
    text-align: right;
    padding: 0;
}

.step-details li {
    padding: 10px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.step-details i {
    color: var(--cyan);
    font-size: 16px;
}

.step-line {
    position: absolute;
    top: 50px;
    left: 100%;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.step:last-child .step-line {
    display: none;
}

.cta-box {
    text-align: center;
    margin-top: 70px;
    padding: 50px 30px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 2px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glow-combined);
}

/* === FAQ === */
.faq-list {
    max-width: 950px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 22px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 700;
}

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

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

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

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 32px 28px;
}

.faq-answer p {
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.9;
}

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

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    font-size: 50px;
    box-shadow: var(--glow-combined);
    animation: cta-pulse 2s infinite;
}

@keyframes cta-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.cta-content h2 {
    font-size: 52px;
    margin-bottom: 22px;
    font-weight: 900;
}

.cta-content > p {
    font-size: 22px;
    margin-bottom: 45px;
    opacity: 0.9;
}

.cta-btn-large {
    padding: 24px 60px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: var(--glow-combined);
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-primary);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.cta-btn-large:hover::before {
    left: 100%;
}

.cta-btn-large:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 0 80px rgba(0, 217, 255, 0.9), 0 0 100px rgba(255, 107, 53, 0.8);
}

.cta-btn-large i {
    animation: calendar-shake 2s infinite;
}

@keyframes calendar-shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: rotate(-3deg);
    }
    20%, 40%, 60%, 80% {
        transform: rotate(3deg);
    }
}

.cta-note {
    margin-top: 24px;
    font-size: 16px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-note i {
    color: var(--cyan);
}

/* === Footer === */
.footer {
    padding: 70px 0 35px;
    background: rgba(0, 0, 0, 0.6);
    border-top: 1px solid var(--glass-border);
}

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

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

.footer-logo .logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-logo span {
    font-size: 32px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-col p {
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 24px;
}

.footer-col h4 {
    font-size: 22px;
    margin-bottom: 22px;
    font-weight: 800;
}

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

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

.footer-col a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s ease;
    font-size: 16px;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--cyan);
    padding-right: 8px;
}

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

.social-links a {
    width: 48px;
    height: 48px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-4px);
    box-shadow: var(--glow-combined);
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-info i {
    color: var(--cyan);
    font-size: 18px;
    width: 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid var(--glass-border);
    opacity: 0.8;
    font-size: 15px;
}

.footer-bottom i {
    color: var(--orange);
}

/* === Scroll to Top === */
.scroll-top {
    position: fixed;
    bottom: 35px;
    left: 35px;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--glow-combined);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 60px rgba(0, 217, 255, 0.8), 0 0 80px rgba(255, 107, 53, 0.7);
}

/* === WhatsApp Floating Button === */
/* تم نقل أنماط الواتساب العائم إلى نهاية الملف */

/* === Responsive Design === */
@media (max-width: 1200px) {
    .hero-container,
    .features-grid,
    .sectors-grid,
    .chat-examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .apps-logos {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 85px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 85px);
        background: rgba(10, 25, 49, 0.98);
        backdrop-filter: var(--glass-blur);
        flex-direction: column;
        padding: 35px;
        transition: right 0.4s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        height: 450px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .savings-comparison {
        flex-direction: column;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .features-grid,
    .sectors-grid,
    .chat-examples-grid,
    .steps,
    .dashboard-features,
    .trust-stats,
    .scenarios-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .tab-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 25px;
        font-size: 16px;
    }
    
    .apps-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .scroll-top {
        bottom: 100px;
        left: 25px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-description,
    .section-subtitle {
        font-size: 16px;
    }
    
    .hero-cta,
    .cta-btn-large {
        font-size: 16px;
        padding: 16px 32px;
    }
}

/* ======== بداية كود التجاوب المحسّن مع الجوال ======== */

@media (max-width: 768px) {

    /* 1. تعديل الخطوط والأحجام العامة */
    h1, h2, .main-headline {
        font-size: 2.2rem; /* تصغير حجم الخط للعناوين الرئيسية */
        line-height: 1.3;  /* تحسين تباعد الأسطر */
    }

    p, li, span {
        font-size: 1rem; /* تعديل حجم الخط للنصوص العادية لتسهيل القراءة */
    }

    /* 2. تعديل تخطيط الأعمدة والشبكات */
    .features-grid, .comparison-container, .two-column-section {
        flex-direction: column; /* جعل العناصر فوق بعضها البعض */
        align-items: center;
        gap: 35px; /* زيادة المسافة بين العناصر المكدسة */
    }

    /* 3. تعديل قائمة التنقل العلوية */
    .desktop-nav, .header-links {
        display: none;
    }

    /* إظهار أيقونة القائمة (الهامبرغر) */
    .hamburger-menu, .nav-toggle {
        display: block;
        font-size: 2.5rem;
        cursor: pointer;
    }

    /* 4. تعديل الصور والأزرار */
    img, .feature-icon {
        max-width: 100%; /* ضمان عدم خروج الصور عن إطار الشاشة */
        height: auto;
    }

    .main-button, .cta-button, .hero-cta, .cta-btn-large, .nav-cta-btn {
        width: 95%; /* جعل الأزرار تمتد على عرض الشاشة تقريباً */
        padding: 18px; /* زيادة مساحة اللمس للزر */
        font-size: 1.15rem; /* تكبير خط الزر ليكون واضحاً */
        margin: 10px auto; /* توسيط الزر */
        display: block;
        text-align: center;
    }

    /* 5. تحسينات إضافية للجوال */
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 60px 0;
    }

    /* تحسين قسم Hero */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-badge {
        font-size: 13px;
        padding: 10px 20px;
    }

    /* تحسين البطاقات */
    .feature-card, .scenario-card, .sector-card {
        padding: 30px 20px;
    }

    /* تحسين الأيقونات */
    .feature-icon, .scenario-icon, .sector-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    /* تحسين التبويبات */
    .tab-btn {
        font-size: 15px;
        padding: 15px 20px;
    }

    /* تحسين محادثات الواتساب */
    .chat-example {
        padding: 20px 15px;
    }

    .message {
        max-width: 90%;
        padding: 12px 16px;
        font-size: 14px;
    }

    /* تحسين الخطوات */
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .step-icon {
        width: 100px;
        height: 100px;
        font-size: 42px;
    }

    /* تحسين FAQ */
    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    /* تحسين Footer */
    .footer-logo .logo-img {
        width: 50px;
        height: 50px;
    }

    .footer-logo span {
        font-size: 26px;
    }

    /* تحسين أزرار CTA الخاصة */
    .hero-cta-group {
        width: 100%;
    }

    .hero-cta {
        width: 100%;
        margin: 8px 0;
    }

    /* تحسين الإحصائيات */
    .stat-item {
        min-width: 140px;
    }

    .stat-value {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }

    /* تحسين trust stats */
    .trust-stat-card {
        padding: 25px 20px;
    }

    .trust-value {
        font-size: 32px;
    }

    /* تحسين AI Brain Visual */
    .hero-visual {
        margin-top: 40px;
    }

    .ai-brain {
        width: 100px;
        height: 100px;
    }

    .brain-core i {
        font-size: 40px;
    }
}

/* ======== نهاية كود التجاوب المحسّن مع الجوال ======== */

/* ======== أيقونة واتساب عائمة أنيقة وصغيرة ======== */
.floating-whatsapp {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 25px;
    right: 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5), 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: whatsappFloat 3s ease-in-out infinite;
}

.floating-whatsapp i {
    font-size: 28px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7), 0 3px 12px rgba(0, 0, 0, 0.2);
}

.floating-whatsapp:hover i {
    transform: scale(1.1) rotate(10deg);
}

/* أنيميشن Float خفيف */
@keyframes whatsappFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* تعديل موقع الأيقونة على الجوال */
@media (max-width: 768px) {
    .floating-whatsapp {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-whatsapp i {
        font-size: 26px;
    }
}

/* تعديل إضافي للشاشات الصغيرة جداً */
@media (max-width: 480px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 18px;
        right: 18px;
    }
    
    .floating-whatsapp i {
        font-size: 24px;
    }
}