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

:root {
    --primary-color: #FF4785;
    --secondary-color: #8E2DE2;
    --accent-color: #FF4785;
    --dark-purple-1: #1A0333;
    --dark-purple-2: #2B0A55;
    --dark-purple-3: #3B0F6F;
    --medium-purple: #4F158A;
    --light-purple: #6A1FB3;
    --bright-purple: #8E2DE2;
    --neon-fuchsia: #FF4785;
    --neon-pink: #FF4785;
    --neon-cyan: #00E5FF;
    --neon-blue: #00B3FF;
    --light-color: #f8fafc;
    --text-color: #ffffff;
    --text-light: #cbd5e1;
    --text-dark: #334155;
    --border-color: rgba(255, 71, 133, 0.3);
    --success-color: #10b981;
    --hero-gradient: linear-gradient(180deg, #1A0333 0%, #1A0333 30%, #2B0A55 50%, #3B0F6F 70%, #4F158A 85%, #6A1FB3 95%, #8E2DE2 100%);
    --gradient-pink: linear-gradient(135deg, #8B5CF6 0%, #FF4785 100%);
    --gradient-blue: linear-gradient(135deg, #00E5FF 0%, #00B3FF 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    --glow-pink: 0 0 30px rgba(255, 71, 133, 0.4), 0 0 50px rgba(255, 71, 133, 0.3);
    --glow-cyan: 0 0 30px rgba(0, 229, 255, 0.3), 0 0 50px rgba(0, 179, 255, 0.2);
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: transparent;
    backdrop-filter: blur(0px);
    box-shadow: none;
    border-radius: 100px;
    z-index: 1000;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(26, 3, 51, 0.95) 0%, rgba(43, 10, 85, 0.95) 50%, rgba(59, 15, 111, 0.95) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(142, 45, 226, 0.3);
    top: 10px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

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

.logo-text {
    display: none;
}

.logo-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

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

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

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

.lang-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.lang-toggle i {
    font-size: 1rem;
}

/* ===== Hero Section ===== */
.hero {
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
    background: var(--hero-gradient);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 71, 133, 0.2) 0%, rgba(142, 45, 226, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 8s ease-in-out infinite;
    filter: blur(100px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 71, 133, 0.15) 0%, rgba(0, 229, 255, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 6s ease-in-out infinite 1s;
    filter: blur(100px);
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--glow);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.3;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-pink);
    color: white;
    box-shadow: var(--glow-pink);
    border: 1px solid rgba(255, 71, 133, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #5DD9D4 0%, #6FB5C4 100%);
}

.btn-outline {
    background: rgba(26, 3, 51, 0.4);
    color: #ffffff;
    border: 2px solid rgba(0, 229, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(0, 229, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.6);
    border-color: var(--neon-cyan);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.stat-item i {
    font-size: 1.5rem;
    color: #ffffff;
}

/* Hero Image */
.hero-image {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Layers */
.hero-layers {
    position: relative;
    width: 850px;
    height: 700px;
    z-index: 2;
    pointer-events: none;
}

.layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.1s ease-out;
}

.layer-base {
    z-index: 0;
    width: 125%;
    opacity: 1;
}

.layer-1 {
    z-index: 1;
    width: 110%;
    opacity: 0.85;
    filter: drop-shadow(0 10px 30px rgba(106, 31, 179, 0.4));
}

.layer-2 {
    z-index: 2;
    width: 115%;
    opacity: 0.9;
    filter: drop-shadow(0 10px 35px rgba(79, 21, 138, 0.5));
}

.layer-3 {
    z-index: 3;
    width: 120%;
    opacity: 0.95;
    filter: drop-shadow(0 15px 40px rgba(59, 15, 111, 0.6));
}

.layer-4 {
    z-index: 4;
    width: 125%;
    filter: drop-shadow(0 15px 45px rgba(43, 10, 85, 0.6));
}

.layer-5 {
    z-index: 5;
    width: 130%;
    filter: drop-shadow(0 20px 40px rgba(255, 71, 133, 0.4)) 
            drop-shadow(0 0 20px rgba(0, 229, 255, 0.2));
}

.layer-6 {
    z-index: 6;
    width: 125%;
    filter: drop-shadow(0 15px 35px rgba(255, 71, 133, 0.3));
}

/* Tech Labels */
.tech-labels {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

.tech-label {
    position: absolute;
    background: rgba(26, 3, 51, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 71, 133, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    animation: float-label 4s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(255, 71, 133, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 5px rgba(255, 71, 133, 0.4);
}

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


.floating-card {
    display: none;
}







.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: transparent;
}

/* ===== Visual Editing Section ===== */
.visual-editing-section {
    padding: 100px 0;
    background: #F5F8FF;
}

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

.visual-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-pink);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.visual-feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.section-title-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    max-width: 700px;
    margin: 0 auto;
}

.visual-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 50px;
}

.visual-feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.visual-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.visual-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: var(--gradient-pink);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.visual-feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.visual-feature-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
}

/* ===== Services Showcase Section ===== */
.services-showcase {
    padding: 100px 0;
    background: white;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 60px;
    padding: 0;
}

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

.service-row .service-content {
    order: 1;
}

.service-row .service-image {
    order: 2;
}

.service-row.reverse .service-content {
    order: 2;
}

.service-row.reverse .service-image {
    order: 1;
}

.service-content {
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.service-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-pink);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.service-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-content p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gradient-pink);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.service-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #5DD9D4 0%, #6FB5C4 100%);
}

.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(5px);
}

.service-image {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.service-row:hover .service-image img {
    transform: scale(1.05);
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== How It Works ===== */
.how-it-works {
    padding: 80px 0;
    background: #F5F8FF;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 60px;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
}

.process-icon-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.process-icon-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #5DD9D4 0%, #6FB5C4 100%);
}

.process-icon-circle i {
    font-size: 2rem;
    color: white;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.process-step p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.95rem;
}

.process-arrow {
    width: 100px;
    flex-shrink: 0;
    margin: 0 -1rem;
    margin-bottom: 4rem;
}

.process-arrow svg {
    width: 100%;
    height: 60px;
}

/* ===== Features Section ===== */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-pink);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--glow-pink);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== Services Section ===== */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--glow-pink);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 100px 0;
    background: #ffffff;
}

.testimonials-slider-wrapper {
    position: relative;
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.testimonials-slider-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.testimonials-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #F5F8FF;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card.testimonial-card-placeholder {
    opacity: 0;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-pink);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.quote-icon i {
    font-size: 1.3rem;
    color: white;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.client-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    padding: 5px;
    background: #f9fafb;
}

.client-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.client-info p {
    color: #9ca3af;
    font-size: 0.85rem;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-pink);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.testimonial-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #5DD9D4 0%, #6FB5C4 100%);
}

.testimonial-nav-btn i {
    font-size: 1.2rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--gradient-pink);
    width: 30px;
    border-radius: 5px;
}

/* ===== Download App ===== */
.download-app {
    padding: 80px 0;
    background: white;
}

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

.download-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.download-features {
    list-style: none;
    margin-bottom: 2rem;
}

.download-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: var(--text-color);
}

.download-features i {
    font-size: 1.5rem;
    color: var(--success-color);
}

.download-buttons {
    display: flex;
    gap: 1rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--dark-color);
    color: white;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.download-btn i {
    font-size: 2rem;
}

.download-btn .small {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
}

.download-btn .large {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

.phone-mockup {
    width: 300px;
    height: 500px;
    background: var(--gradient-pink);
    border-radius: 30px;
    padding: 20px;
    margin: 0 auto;
    box-shadow: var(--glow-pink);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-screen i {
    font-size: 5rem;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 0 80px;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.contact .shape1 {
    position: absolute;
    top: -100px;
    right: 0;
    z-index: 0;
    opacity: 0.6;
    width: 550px;
    height: auto;
}

.contact .shape2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    opacity: 0.6;
    width: 600px;
    height: auto;
}

.contact .shape3 {
    position: absolute;
    bottom: -200px;
    right: 0;
    z-index: 0;
    opacity: 0.6;
    width: 550px;
    height: auto;
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 10;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 10;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.form-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B5CF6;
    background: white;
}

.form-group textarea {
    resize: vertical;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card-new {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.info-icon-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-pink);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon-circle i {
    font-size: 1.3rem;
    color: white;
}

.info-card-content {
    flex: 1;
}

.info-card-new h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.info-card-new p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== Clients Carousel ===== */
.clients-carousel {
    padding: 60px 0;
    background: #F5F8FF;
    overflow: hidden;
    width: 100%;
}

.carousel-track-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    direction: ltr;
}

.carousel-track {
    display: flex;
    gap: 60px;
    animation: scroll 50s linear infinite;
    width: max-content;
    will-change: transform;
    padding-left: 0;
    direction: ltr !important;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.client-logo-item {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.client-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.client-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== Footer ===== */
.footer {
    background: var(--hero-gradient);
    color: white;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-year {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.social-links a.x-icon {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: Arial, sans-serif;
}

/* ===== Form Status Message ===== */
.form-status {
    padding: 1rem 1.5rem !important;
    border-radius: 12px !important;
    margin-bottom: 1.5rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    animation: slideDown 0.3s ease !important;
    transition: opacity 0.3s ease !important;
    text-align: center !important;
    position: relative !important;
    z-index: 9999 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.form-status-hidden {
    display: none !important;
    opacity: 0 !important;
}

.form-status i {
    margin-left: 0.5rem;
    font-size: 1.2rem;
}

.form-status-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.15) 100%) !important;
    color: #10b981 !important;
    border: 3px solid #10b981 !important;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2) !important;
    display: block !important;
    visibility: visible !important;
    min-height: 60px !important;
    line-height: 1.5 !important;
}

.form-status-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%) !important;
    color: #721c24 !important;
    border: 3px solid #dc3545 !important;
    box-shadow: 0 4px 20px rgba(114, 28, 36, 0.3) !important;
    display: block !important;
    visibility: visible !important;
    min-height: 60px !important;
    line-height: 1.5 !important;
}

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

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

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

.scroll-top:hover {
    transform: translateY(-5px);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
        padding: 0 25px;
    }
    
    .hero {
        padding: 70px 0 0;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-image {
        height: 500px;
    }
    
    .hero-layers {
        width: 650px;
        height: 550px;
    }
    
    .layer-base { width: 115%; }
    .layer-1 { width: 100%; }
    .layer-2 { width: 105%; }
    .layer-3 { width: 110%; }
    .layer-4 { width: 115%; }
    .layer-5 { width: 120%; }
    .layer-6 { width: 115%; }
    
    .visual-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        width: 95%;
        border-radius: 50px;
    }
    
    .nav-wrapper {
        padding: 0.8rem 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 100px;
        flex-direction: column;
        background: rgba(30, 27, 75, 0.95);
        backdrop-filter: blur(20px);
        width: 90%;
        left: 5%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: all 0.3s ease;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        right: 5%;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    body {
        overflow-x: hidden;
    }
    
    html {
        overflow-x: hidden;
    }
    
    .hero {
        padding: 80px 0 0;
        min-height: auto;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hero-image {
        order: -1;
        height: 400px;
        margin-bottom: 1rem;
        display: flex !important;
        align-items: center;
        justify-content: center;
        overflow: visible !important;
        position: relative;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .hero-layers {
        width: 450px;
        max-width: 90vw;
        height: 380px;
        margin: 0 auto;
        position: relative;
        display: block !important;
    }
    
    .layer-base {
        width: 100%;
    }
    
    .layer-1 {
        width: 95%;
    }
    
    .layer-2 {
        width: 98%;
    }
    
    .layer-3 {
        width: 100%;
    }
    
    .layer-4 {
        width: 102%;
    }
    
    .layer-5 {
        width: 105%;
    }
    
    .layer-6 {
        width: 102%;
    }
    
    .visual-features-grid,
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 3rem;
    }
    
    .process-arrow {
        display: none;
    }
    
    .process-step {
        padding: 0;
    }
    
    .testimonials-slider-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .testimonial-slide {
        grid-template-columns: 1fr;
    }
    
    .testimonial-nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .service-row,
    .service-row.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 50px;
    }
    
    .service-row.reverse .service-content,
    .service-row.reverse .service-image {
        order: initial;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
    
    .download-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-wrapper {
        order: 1;
    }
    
    .contact-info-cards {
        order: 2;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .download-buttons {
        flex-direction: column;
    }
}
