 /* ============ VARIABLES ============ */
:root {
    --gold: #F7AF20;
    --gold-dark: #D4891A;
    --gold-light: #FFC857;
    --gold-glow: rgba(245, 166, 35, 0.3);
    --black: #1A1A1A;
    --dark: #2D2D2D;
    --gray: #666666;
    --gray-light: #999999;
    --white: #FFFFFF;
    --cream: #FFF8E7;
    --cream-dark: #FFF0D0;
    --bg-light: #FAFAFA;
    --red: #E74C3C;
    --green: #27AE60;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 8px 30px rgba(245, 166, 35, 0.25);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.25s ease;
}

/* ============ RESET & BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Tajawal', sans-serif;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.8;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.4;
}

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

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

.section-padding {
    padding: 100px 0;
}

.bg-light-custom {
    background: var(--bg-light);
}

.highlight {
    color: var(--gold);
    position: relative;
}

/* ============ CUSTOM BUTTON ============ */
.btn-primary-custom {
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gold-dark);
    transition: var(--transition);
    z-index: -1;
    border-radius: 50px;
}

.btn-primary-custom:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-primary-custom:hover::before {
    width: 100%;
}

/* ============ SECTION HEADER ============ */
.section-badge {
    display: inline-block;
    background: var(--cream);
    color: var(--gold-dark);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    border: 1px solid var(--cream-dark);
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============ NAVBAR ============ */
.navbar {
    background: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.brand-icon {
    width: 44px;
    height: 44px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    transition: var(--transition);
}

.navbar-brand:hover .brand-icon {
    transform: rotate(-10deg) scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-ar {
    font-size: 20px;
    font-weight: 900;
    color: var(--black);
}

.brand-en {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-light);
    letter-spacing: 2px;
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 16px;
    left: 16px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-cta-btn {
    padding: 8px 24px !important;
    font-size: 14px;
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
}

/* ============ HERO SECTION ============ */
.hero-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, #FFF5E0 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding-top: 80px;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--gold);
    bottom: 10%;
    left: -80px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--gold-dark);
    top: 40%;
    right: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: var(--gold-light);
    bottom: 30%;
    right: 40%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-3deg); }
    75% { transform: translate(15px, 15px) rotate(3deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 24px;
    animation: slideInRight 0.8s ease forwards;
}

.hero-badge i {
    color: var(--gold);
    font-size: 16px;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 20px;
}

.hero-title .highlight {
    display: inline-block;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 0;
    left: 0;
    height: 12px;
    background: rgba(245, 166, 35, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-btn {
    padding: 16px 40px;
    font-size: 18px;
    border-radius: 50px;
}

.hero-stores {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.store-badge img {
    height: 44px;
    border-radius: 8px;
    transition: var(--transition);
}

.store-badge:hover img {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

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

.stat-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--gold);
    display: block; 
}

.stat-plus {
    font-size: 20px;
    font-weight: 900;
    color: var(--gold);
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.hero-lightning {
    position: absolute;
    width: 300px;
    height: 500px;
    z-index: 0;
    animation: pulseLightning 3s ease-in-out infinite;
}

@keyframes pulseLightning {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.03); }
}

.lightning-svg {
    width: 100%;
    height: 100%;
}

/* Phone Mockup */
.phone-frame {
    width: 280px;
    height: 580px;
    background: #f6f6f6;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    animation: floatPhone 6s ease-in-out infinite;
}

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

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    padding: 0px;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.app-logo-small {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 800;
    font-size: 16px;
    color: var(--black);
}

.app-logo-small i {
    color: var(--gold);
    font-size: 20px;
}

.app-header > i {
    color: var(--gray);
    font-size: 18px;
}

.app-banner {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 16px;
    padding: 16px;
    color: var(--white);
    margin-bottom: 20px;
}

.app-banner p {
    font-size: 12px;
    margin-bottom: 4px;
    opacity: 0.9;
}

.app-banner h4 {
    font-size: 16px;
    font-weight: 800;
    margin: 0;
}

.app-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.app-service-item {
    background: var(--white);
    border-radius: 14px;
    padding: 16px 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.app-service-item i {
    font-size: 28px;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}

.app-service-item span {
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
}

.app-service-item.urgent {
    background: linear-gradient(135deg, #FFF0E0, #FFE8CC);
}

.app-service-item.urgent i {
    color: var(--red);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
    animation: floatCard 4s ease-in-out infinite;
    white-space: nowrap;
}

.floating-card i {
    font-size: 20px;
    color: var(--gold);
}

.floating-card span {
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
}

.card-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    bottom: 25%;
    left: -10px;
    animation-delay: -1.5s;
}

.card-3 {
    top: 50%;
    right: -10px;
    animation-delay: -3s;
}

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

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 1;
}

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

/* ============ PROBLEM SECTION ============ */
.comparison-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.problem-card {
    border-color: rgba(231, 76, 60, 0.1);
    background: linear-gradient(135deg, #FFF5F5 0%, var(--white) 100%);
}

.solution-card {
    border-color: rgba(39, 174, 96, 0.1);
    background: linear-gradient(135deg, #F0FFF4 0%, var(--white) 100%);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.04);
}

.comparison-header i {
    font-size: 28px;
}

.problem-card .comparison-header i {
    color: var(--red);
}

.solution-card .comparison-header i {
    color: var(--green);
}

.comparison-header h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition-fast);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li:hover {
    padding-right: 8px;
}

.list-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    margin-top: 2px;
}

.problem-icon {
    background: rgba(231, 76, 60, 0.1);
    color: var(--red);
}

.solution-icon {
    background: rgba(39, 174, 96, 0.1);
    color: var(--green);
}

.comparison-list strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.comparison-list p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

/* ============ HOW IT WORKS ============ */
.step-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(245, 166, 35, 0.2);
}

.step-number {
    position: absolute;
    top: -18px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    box-shadow: var(--shadow-gold);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

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

.step-card:hover .step-icon {
    background: var(--gold);
    transform: scale(1.05);
}

.step-card:hover .step-icon i {
    color: var(--white);
}

.step-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
}

.step-connector {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    opacity: 0.5;
}

/* ============ SERVICES ============ */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    border-color: rgba(245, 166, 35, 0.3);
    box-shadow: var(--shadow-gold);
}

.service-card.featured::before {
    transform: scaleX(1);
}

.service-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.service-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.service-icon i {
    font-size: 32px;
    color: var(--white);
}

.service-icon-bg {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--gold);
    opacity: 0.1;
    border-radius: 18px;
    top: 8px;
    right: 8px;
}

.service-card:hover .service-icon {
    transform: rotate(-5deg) scale(1.05);
}

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

.service-card > p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.service-features i {
    color: var(--gold);
    font-size: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition-fast);
}

.service-link:hover {
    color: var(--gold-dark);
    gap: 12px;
}

/* ============ FEATURES SECTION ============ */
.features-list {
    margin-top: 32px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: var(--radius);
    transition: var(--transition);
    margin-bottom: 8px;
}

.feature-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-icon i {
    font-size: 24px;
    color: var(--gold);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--gold);
}

.feature-item:hover .feature-icon i {
    color: var(--white);
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

/* Features Visual */
.features-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.phone-frame-2 {
    width: 330px;
    height: 690px;
    background: #f6f6f6;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    animation: floatPhone 6s ease-in-out infinite;
    animation-delay: -3s;
}

.app-map-screen {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-placeholder {
    flex: 1;
    background: linear-gradient(135deg, #E8F4E8, #D4E8D4);
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-placeholder > i {
    font-size: 48px;
    color: var(--gold);
    z-index: 2;
    position: relative;
}

.map-pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.map-bottom-card {
    background: var(--white);
    border-radius: 0 0 20px 20px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.technician-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tech-avatar {
    width: 44px;
    height: 44px;
    background: var(--cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-avatar i {
    font-size: 22px;
    color: var(--gold);
}

.tech-details strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.tech-details span {
    font-size: 12px;
    color: var(--gray);
}

.tech-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 2px;
}

.tech-rating i {
    font-size: 10px;
    color: var(--gold);
}

.tech-rating span {
    font-size: 11px;
    font-weight: 700;
    color: var(--black);
    margin-right: 4px;
}

.tech-eta {
    text-align: center;
    background: var(--cream);
    padding: 8px 14px;
    border-radius: 12px;
}

.eta-time {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.eta-label {
    font-size: 11px;
    color: var(--gray);
    font-weight: 600;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

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

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 18px;
}

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

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
}

.author-info strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

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

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.trust-badge:hover {
    transform: translateY(-4px);
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.badge-icon i {
    font-size: 28px;
    color: var(--gold);
}

.trust-badge:hover .badge-icon {
    background: var(--gold);
}

.trust-badge:hover .badge-icon i {
    color: var(--white);
}

.trust-badge span {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

/* ============ DOWNLOAD CTA ============ */
.download-section {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.download-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(245, 166, 35, 0.08) 0%, transparent 50%),
                       radial-gradient(circle at 80% 50%, rgba(245, 166, 35, 0.05) 0%, transparent 50%);
}

.download-icon {
    width: 80px;
    height: 80px;
    background: rgba(245, 166, 35, 0.15);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: pulseLightning 2s ease-in-out infinite;
}

.download-icon i {
    font-size: 40px;
    color: var(--gold);
}

.download-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
}

.download-title span {
    color: var(--gold);
}

.download-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-download {
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-download:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.download-stores {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.store-badge-dark img {
    height: auto;
    width: 180px;
    max-width: 100%;
    border-radius: 0;
    opacity: 0.8;
    transition: var(--transition);
}

.store-badge-dark:hover img {
    opacity: 1;
    transform: translateY(-2px);
}

/* ============ CONTACT ============ */
.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(245, 166, 35, 0.2);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: var(--cream);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--transition);
}

.contact-icon i {
    font-size: 28px;
    color: var(--gold);
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    background: var(--gold);
}

.contact-card:hover .contact-icon i {
    color: var(--white);
}

.contact-card h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 12px;
}

.contact-link {
    color: var(--gold);
    font-weight: 700;
    font-size: 16px;
}

.contact-link:hover {
    color: var(--gold-dark);
}

/* ============ FOOTER ============ */
.footer-section {
    background: var(--black);
    padding: 60px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-logo .brand-ar {
    color: var(--white);
}

.footer-logo .brand-en {
    color: rgba(255, 255, 255, 0.5);
}

.footer-logo .brand-icon {
    background: var(--gold);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: var(--gold);
    padding-right: 6px;
}

.footer-stores {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-store-badge img {
    width: 152px;
    max-width: 100%;
    border-radius: 0;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-store-badge:hover img {
    opacity: 1;
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition:.4s;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}
    .footer-bottom p a:hover{
        color:var(--gold);
    }
    /* ============ BACK TO TOP ============ */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        left: 30px;
        width: 48px;
        height: 48px;
        background: var(--gold);
        color: var(--white);
        border: none;
        border-radius: 14px;
        font-size: 20px;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: var(--transition);
        z-index: 999;
        box-shadow: var(--shadow-gold);
        display: flex;
        align-items: center;
        justify-content: center;
    }

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-dark);
    transform: translateY(-4px);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 46px;
    }
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero-section {
        text-align: center;
    }

    .hero-content {
        padding-top: 20px;
    }

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

    .hero-subtitle {
        margin: 0 auto 24px;
    }

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

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

    .hero-visual {
        margin-top: 40px;
    }

    .hero-image-wrapper {
        min-height: 400px;
    }

    .floating-card {
        display: none;
    }

    .phone-frame {
        width: 240px;
        height: 480px;
    }

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

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

    .step-connector {
        display: none !important;
    }

    .features-visual {
        margin-top: 40px;
        min-height: 400px;
    }

    .phone-frame-2 {
        width: 240px;
        height: 480px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }

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

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

    .hero-btn {
        padding: 14px 32px;
        font-size: 16px;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-number {
        font-size: 22px;
    }

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

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

    .comparison-card {
        padding: 24px;
    }

    .step-card {
        padding: 32px 24px;
    }

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

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

    .trust-badges {
        gap: 20px;
    }

    .navbar-collapse {
        background: var(--white);
        border-radius: var(--radius);
        padding: 16px;
        margin-top: 12px;
        box-shadow: var(--shadow-lg);
    }

    .nav-cta-btn {
        display: block !important;
        text-align: center;
        margin-top: 12px;
    }
}

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

    .hero-stores {
        flex-direction: column;
        align-items: center;
    }

    .store-badge img {
        height: 40px;
    }

    .download-stores {
        flex-direction: column;
        align-items: center;
    }

    .phone-frame,
    .phone-frame-2 {
        width: 220px;
        height: 440px;
    }

    .hero-image-wrapper {
        min-height: 350px;
    }
}

/* ============ CUSTOM SCROLLBAR ============ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ============ SELECTION ============ */
::selection {
    background: var(--gold);
    color: var(--white);
}

/* ============ PRELOADER ============ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.preloader-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: preloaderPulse 1.2s ease-in-out infinite;
}

.preloader-icon i {
    font-size: 30px;
    color: var(--white);
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

/* ============ LOGO STYLES ============ */
.navbar-logo {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.navbar.scrolled .navbar-logo {
    height: 45px;
}

.footer-logo-img {
    height: 85px;
    width: auto;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 40px;
    }
    .footer-logo-img {
        height: 65px;
    }
}

/* ============ PROMISE CARDS (About Page) ============ */
.promise-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.promise-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.promise-card:hover::before {
    transform: scaleX(1);
}

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

.promise-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--transition);
}

.promise-icon i {
    font-size: 28px;
    color: var(--gold);
}

.promise-card:hover .promise-icon {
    background: var(--gold);
}

.promise-card:hover .promise-icon i {
    color: var(--white);
}

.promise-card h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--black);
}

.promise-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}
.accordion-button:not(.collapsed) {
    color: #f7af20;
    background-color: #fff8e7;
    box-shadow: none;
}
    .accordion-button:not(.collapsed)::after { 
        filter: invert(1);
    }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="150.12" height="150" x="0" y="0" viewBox="0 0 329.269 329" style="enable-background:new 0 0 512 512" xml:space="preserve" class=""><g transform="matrix(0.9200000000000003,0,0,0.9200000000000003,13.170809440612743,13.181362152099524)"><path d="M194.8 164.77 323.013 36.555c8.343-8.34 8.343-21.825 0-30.164-8.34-8.34-21.825-8.34-30.164 0L164.633 134.605 36.422 6.391c-8.344-8.34-21.824-8.34-30.164 0-8.344 8.34-8.344 21.824 0 30.164l128.21 128.215L6.259 292.984c-8.344 8.34-8.344 21.825 0 30.164a21.266 21.266 0 0 0 15.082 6.25c5.46 0 10.922-2.09 15.082-6.25l128.21-128.214 128.216 128.214a21.273 21.273 0 0 0 15.082 6.25c5.46 0 10.922-2.09 15.082-6.25 8.343-8.34 8.343-21.824 0-30.164zm0 0" fill="%233B3B3B" opacity="1" data-original="%23000000" class=""></path></g></svg>');
}
.navbar-toggler.collapsed .navbar-toggler-icon {
    background-image: var(--bs-navbar-toggler-icon-bg) !important;
}
@media (max-width: 767px) {
    .phone-frame {
        box-shadow: 0 6px 13px rgba(0, 0, 0, 0.04);
    }
}
@media (max-width: 575px) {
    .section-title {
        font-size: 25px;
    }
    .service-icon {
        width: 60px;
        height: 60px;
    }
    .service-icon-bg { 
        width: 60px;
        height: 60px;
    }
    .store-badge-dark img {
        height: auto;
        width: 160px;
    }

    .footer-store-badge img {
        width: 120px;
    }
    
    }