:root {
    --primary-color: #1F4788;
    --primary-light: #2A5FB5;
    --primary-lighter: #3A6FCC;
    --secondary-color: #00A8E8;
    --accent-color: #E67E22;
    --success-color: #27AE60;
    --dark-bg: #0F1419;
    --dark-bg-secondary: #1a1f2e;
    --light-bg: #f8f9fa;
    --light-bg-secondary: #f1f3f5;
    --text-dark: #1a2332;
    --text-light: #ffffff;
    --text-secondary: #677e8a;
    --border-color: #e1e8ed;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

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

body {
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--light-bg);
    letter-spacing: 0.3px;
}

html {
    scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(40px);
    padding: 1.2rem 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
}

.navbar.scrolled {
    background: rgba(248, 249, 250, 0.98);
    box-shadow: var(--shadow-md);
    padding: 0.8rem 0;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1F4788 0%, #2A5FB5 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    font-weight: 800;
}

.brand-icon:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

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

.brand-main {
    font-size: 19px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    line-height: 1;
}

.brand-sub {
    font-size: 9px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 0px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    padding: 0.5rem 1.1rem !important;
    margin: 0 0.2rem;
    border-radius: 8px;
    transition: var(--transition-fast);
    position: relative;
    letter-spacing: 0.2px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition-fast);
    transform: translateX(-50%);
    border-radius: 3px;
}

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.nav-buttons .btn {
    padding: 0.65rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-fast);
    letter-spacing: 0.3px;
}

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

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: linear-gradient(135deg, #1F4788 0%, #2A5FB5 100%);
    border: none;
    color: white;
    font-weight: 600;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #163a6a 0%, #1e4a90 100%);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

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

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #eef1f5 100%);
    overflow: hidden;
    contain: layout style paint;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.05;
    animation: float 25s infinite ease-in-out;
}

.hero-shape.shape-1 {
    width: 800px;
    height: 800px;
    background: var(--primary-color);
    top: -400px;
    right: -400px;
}

.hero-shape.shape-2 {
    width: 600px;
    height: 600px;
    background: var(--secondary-color);
    bottom: -300px;
    left: -300px;
    animation-delay: 5s;
}

.hero-shape.shape-3 {
    width: 500px;
    height: 500px;
    background: var(--accent-color);
    top: 40%;
    left: 45%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(40px, -40px); }
    50% { transform: translate(0, -80px); }
    75% { transform: translate(-40px, -40px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(31, 71, 136, 0.08);
    border: 1px solid rgba(31, 71, 136, 0.2);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    animation: slideInRight 0.8s ease-out;
    will-change: opacity, transform;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-dark);
    margin: 1.5rem 0;
    animation: fadeInUp 1s ease-out;
    will-change: opacity, transform;
    letter-spacing: -1px;
}

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

.gradient-text {
    background: linear-gradient(135deg, #1F4788 0%, #00A8E8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-text-2 {
    background: linear-gradient(135deg, #ffffff 0%, #777c7e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-description {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    max-width: 650px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    will-change: opacity, transform;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
    will-change: opacity, transform;
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 10px;
    font-weight: 700;
    transition: var(--transition-fast);
}

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

.btn-outline-light:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
    will-change: opacity, transform;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1F4788, #00A8E8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.3rem;
}

.hero-image {
    position: relative;
    animation: fadeInLeft 1s ease-out;
}

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

.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: var(--shadow-lg);
    animation: floatCard 3s infinite ease-in-out;
    border: 1px solid #f0f0f0;
}

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

.floating-card.card-1 {
    top: 8%;
    right: 8%;
    width: 280px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 50%;
    left: -20px;
    width: 220px;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 10%;
    right: 15%;
    width: 200px;
    animation-delay: 2s;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1F4788, #2A5FB5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
}

.card-icon.success {
    background: linear-gradient(135deg, #27AE60, #229954);
}

.card-icon.warning {
    background: linear-gradient(135deg, #E67E22, #D35400);
}

.floating-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.floating-card .price {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0.5rem 0 0;
}

.floating-card .timer {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--accent-color);
    margin: 0.5rem 0 0;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #f0f0f0;
    border-radius: 10px;
    margin: 1rem 0 0.5rem;
    overflow: hidden;
}

.progress-fill {
    width: 65%;
    height: 100%;
    background: linear-gradient(90deg, #1F4788, #00A8E8);
    border-radius: 10px;
    animation: progressAnimation 2s ease-in-out infinite;
}

@keyframes progressAnimation {
    0%, 100% { width: 65%; }
    50% { width: 75%; }
}

.floating-card .bidders {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-12px); }
}

.mouse {
    width: 28px;
    height: 48px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 12px; }
    100% { opacity: 0; top: 28px; }
}

/* SECTIONS */
section {
    padding: 30px 0;
    position: relative;
    content-visibility: auto;
}

.section-badge {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(31, 71, 136, 0.08), rgba(0, 168, 232, 0.08));
    border: 1px solid rgba(31, 71, 136, 0.15);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-title.text-white {
    color: white;
}

.section-header {
    margin-bottom: 3rem;
}

.section-description {
    font-size: 1.05rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* FEATURES SECTION */
.features-section {
    background: white;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition);
    border: 1.5px solid #f0f0f0;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 71, 136, 0.02), rgba(0, 168, 232, 0.02));
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

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

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

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #E67E22, #D35400);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1F4788, #2A5FB5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.feature-card:hover .feature-icon {
    transform: translateY(-6px) scale(1.08);
}

.feature-card.featured {
    background: linear-gradient(135deg, #1F4788 0%, #2A5FB5 100%);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.feature-card.featured * {
    color: white !important;
}

.feature-card.featured .feature-icon {
    background: rgba(255, 255, 255, 0.2);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.feature-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.feature-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
    position: relative;
    z-index: 1;
}

.feature-link:hover {
    gap: 14px;
    color: var(--secondary-color);
}

/* HOW IT WORKS */
.how-it-works-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
}

.step-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid #f0f0f0;
}

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

.step-number {
    position: absolute;
    top: -5px;
    right: 30px;
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1F4788, #00A8E8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.08;
}

.step-icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #f8f9fa, #f1f3f5);
    border: 2.5px solid var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0 auto 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.step-card.active .step-icon {
    background: linear-gradient(135deg, #1F4788, #2A5FB5);
    color: white;
    border-color: transparent;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-description {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* SERVICES */
.services-section {
    background: white;
}

.service-card {
    border-radius: 20px;
    padding: 3rem;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: var(--transition);
}

.service-card:hover::before {
    background: rgba(0, 0, 0, 0.5);
}

.service-individuals {
    background: linear-gradient(135deg, #1F4788 0%, #2A5FB5 100%), url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"%3E%3Cpath fill="%23ffffff" opacity="0.05" d="M0 300 Q 250 200 500 300 T 1000 300 L 1000 600 L 0 600 Z"/%3E%3C/svg%3E');
    background-size: cover;
}

.service-businesses {
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%), url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"%3E%3Cpath fill="%23ffffff" opacity="0.05" d="M0 300 Q 250 200 500 300 T 1000 300 L 1000 600 L 0 600 Z"/%3E%3C/svg%3E');
    background-size: cover;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, transparent, rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.service-content {
    position: relative;
    z-index: 2;
    color: white;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    color: white;
}

.service-card:hover .service-icon {
    background: white;
    color: var(--primary-color);
    transform: translateY(-8px);
}

.service-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.service-features li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.service-features li i {
    color: #4CAF50;
    font-size: 1.2rem;
}

/* ABOUT */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
}

.about-image {
    position: relative;
}

.about-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1F4788, #2A5FB5);
    border-radius: 20px;
    top: 25px;
    right: 25px;
    z-index: 0;
    filter: blur(2px);
}

.about-image img {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about-badge i {
    font-size: 2.5rem;
    color: #FFD700;
}

.about-badge h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}

.about-badge p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
}

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

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.stat-box h3 {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1F4788, #00A8E8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box p {
    color: #666;
    font-size: 0.95rem;
    font-weight: 600;
}

.about-location {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.location-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.location-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.location-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* DOWNLOAD */
.download-section {
    background: linear-gradient(135deg, #0F1419 0%, #1a1f2e 100%);
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: linear-gradient(135deg, #1F4788, #00A8E8);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.06;
    top: -300px;
    right: -300px;
}

.download-content {
    position: relative;
    z-index: 2;
}

.download-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    line-height: 1.8;
}

.download-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1.1rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.app-button:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.app-button i {
    font-size: 2.5rem;
}

.app-button span {
    display: block;
    font-size: 0.85rem;
}

.app-button strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.download-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

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

.download-stat i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.download-stat h4 {
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    margin: 0;
}

.download-stat p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.download-phones {
    position: relative;
    height: 500px;
}

.phone-img {
    position: absolute;
    width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.phone-1 {
    top: 0;
    right: 100px;
    z-index: 2;
    animation: floatPhone 3s infinite ease-in-out;
}

.phone-2 {
    top: 80px;
    right: 0;
    z-index: 1;
    animation: floatPhone 3s infinite ease-in-out 1.5s;
}

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

/* CONTACT */
.contact-section {
    background: white;
}

.contact-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 2.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1F4788, #2A5FB5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    margin: 0;
}

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

.social-links a {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1F4788, #2A5FB5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-6px) rotate(12deg);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
    border-radius: 20px;
    padding: 2.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    font-family: 'Tajawal', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(31, 71, 136, 0.1);
}

/* FOOTER */
.footer {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1d3a 100%);
    color: white;
    padding: 4rem 0 0;
}

.footer-brand .brand-icon {
    background: rgba(135, 206, 235, 0.2);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-top: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: linear-gradient(135deg, #1F4788, #00A8E8);
    transform: translateY(-5px);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-newsletter {
    display: flex;
    gap: 0;
    margin-bottom: 1rem;
}

.footer-newsletter input {
    flex: 1;
    padding: 1rem;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-right: none;
    border-radius: 10px 0 0 10px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    outline: none;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter button {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #1F4788, #2A5FB5);
    border: none;
    border-radius: 0 10px 10px 0;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.footer-newsletter button:hover {
    transform: scale(1.03);
}

.footer-apps {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.app-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
}

.app-badge i {
    font-size: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding: 2rem 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.copyright a {
    color: var(--secondary-color);
    text-decoration: none;
}

.footer-bottom-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1F4788, #2A5FB5);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(31, 71, 136, 0.3);
}

/* LEGAL PAGES STYLES */
.page-hero-section {
    background: linear-gradient(135deg, #1F4788 0%, #2A5FB5 100%);
    color: white;
    padding: 80px 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.page-hero-description {
    font-size: 1.2rem;
    opacity: 0.95;
}

.legal-content-section {
    background: white;
    padding: 80px 0;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-section p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.legal-list {
    list-style: none;
    margin-left: 0;
}

.legal-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    color: #555;
    line-height: 1.8;
}

.legal-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.legal-footer {
    color: #999;
    font-size: 0.95rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.contact-info-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 1.5rem;
}

.contact-info-box p {
    margin-bottom: 0.8rem;
}

/* ABOUT PAGE */
.about-detailed-section {
    background: white;
    padding: 100px 0;
}

.about-image-detailed img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
    border-radius: 16px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.timeline-marker {
    font-weight: 900;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid #f0f0f0;
    transition: var(--transition);
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1F4788, #2A5FB5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1rem;
}

.value-card h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
}

.team-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
    padding: 100px 0;
}

.team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-card h4 {
    padding: 1.5rem 1.5rem 0;
    color: var(--text-dark);
    font-weight: 700;
    margin: 0;
}

.team-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    margin: 0;
}

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

.cta-section {
    background: linear-gradient(135deg, #1F4788 0%, #2A5FB5 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.15rem;
    opacity: 0.95;
}

/* FAQ */
.faq-section {
    background: white;
    padding: 80px 0;
}

.accordion-item {
    border: 1.5px solid #f0f0f0;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    background: white !important;
    color: var(--text-dark) !important;
    font-weight: 600;
    border: none !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%) !important;
    color: var(--primary-color) !important;
}

.accordion-body {
    color: #666;
    line-height: 1.8;
}

/* CONTACT PAGE STYLES */
.contact-detailed-section {
    background: white;
    padding: 80px 0;
}

.contact-info-detailed {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
    padding: 2.5rem;
    border-radius: 20px;
}

.contact-location {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.contact-location h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-form-detailed {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
    padding: 2.5rem;
    border-radius: 20px;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1F4788, #2A5FB5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

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

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .page-hero-title {
        font-size: 2.3rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .floating-card {
        display: none;
    }

    .download-phones {
        height: 300px;
    }

    .about-stats {
        gap: 1rem;
    }

    .footer-bottom-links {
        justify-content: flex-start;
    }
}

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

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-badge, .hero-description, .hero-buttons, .hero-stats {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .about-stats {
        flex-direction: column;
    }

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

    .download-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-location {
        margin-bottom: 1rem;
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}

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

    .section-title {
        font-size: 1.5rem;
    }

    .feature-card, .step-card, .service-card {
        padding: 1.5rem;
    }

    .hero-stats {
        gap: 0.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .nav-buttons {
        display: none;
    }
}

/* ===============================================
   PAGE HEADER STYLES
   =============================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(100px, -100px);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transform: translate(-100px, 100px);
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
}

.page-header .lead {
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
}

.min-vh-60 {
    min-height: 60vh;
}

/* ===============================================
   PROCESS CARD STYLES
   =============================================== */
.process-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    position: relative;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

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

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.process-card h4 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

/* ===============================================
   AUCTION TYPE CARD STYLES
   =============================================== */
.auction-type-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.auction-type-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    border-radius: 15px;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.auction-type-card:hover .icon-box {
    transform: rotateY(360deg);
    box-shadow: var(--shadow-lg);
}

.auction-type-card h4 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.auction-type-card ul {
    list-style: none;
    margin-top: 1rem;
}

.auction-type-card ul li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* ===============================================
   FEATURE ITEM STYLES
   =============================================== */
.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(31, 71, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.feature-item h5 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* ===============================================
   TIP CARD STYLES
   =============================================== */
.tip-card {
    background: linear-gradient(135deg, rgba(31, 71, 136, 0.05), rgba(0, 168, 232, 0.05));
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(31, 71, 136, 0.1);
    transition: var(--transition);
}

.tip-card:hover {
    background: linear-gradient(135deg, rgba(31, 71, 136, 0.1), rgba(0, 168, 232, 0.1));
    box-shadow: var(--shadow-md);
}

.tip-card h5 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

/* ===============================================
   CRITERIA CARD STYLES
   =============================================== */
.criteria-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.criteria-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.criteria-card h5 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.criteria-card i {
    font-size: 1.3rem;
}

/* ===============================================
   BENEFIT CARD STYLES
   =============================================== */
.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    height: 100%;
}

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

.benefit-card h5 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.benefit-card ul li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===============================================
   PRACTICE CARD STYLES
   =============================================== */
.practice-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.practice-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.practice-card h5 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.practice-card ul li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 2;
}

/* ===============================================
   UTILITY CLASSES
   =============================================== */
.max-w-xl {
    max-width: 900px;
}

.py-80 {
    padding: 80px 0;
}

.py-60 {
    padding: 60px 0;
}

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