/* ===== DESIGN SYSTEM & VARIABLES ===== */
:root {
    --primary: #FFD200;
    /* Industrial Yellow */
    --primary-hover: #e6bd00;
    --black: #080808;
    --dark: #121212;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.08);
    --text: #f5f5f5;
    --muted: #a0a0a0;
    --font: 'Cairo', sans-serif;
    --red: #ff4444;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background-color: var(--black);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 70px;
    /* Space for sticky CTA */
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
    border-radius: 8px;
}

/* ===== HELPER CLASSES ===== */
.yellow {
    color: var(--primary);
}

.highlight {
    color: var(--primary);
    font-weight: 800;
}

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

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

.hidden {
    display: none !important;
}

.mb-2 {
    margin-bottom: 1rem;
}

/* ===== SECTION BASE ===== */
.section {
    padding: 50px 0;
    /* Reduced from 60px */
    text-align: center;
}

.sec-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.25;
}

.sec-sub {
    color: var(--muted);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 20px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-fade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 8, 8, 0.85);
    /* Slightly darker for better contrast */
    z-index: 2;
}

.hero-body {
    position: relative;
    z-index: 3;
    max-width: 800px;
    text-align: center;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero-body h1 {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.25;
}

.hero-body p {
    font-size: 1.1rem;
    color: #efefef;
    max-width: 600px;
}

/* ===== CHIPS / BADGES ===== */
.chip,
.urgency-badge {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    background: rgba(255, 210, 0, 0.1);
    color: var(--primary);
    border: 1px solid rgba(255, 210, 0, 0.3);
}

.pulse-yellow {
    animation: pulse-yellow 2s infinite;
}

@keyframes pulse-yellow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 210, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 210, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 210, 0, 0);
    }
}

/* ===== BUTTONS ===== */
.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary);
    color: var(--black);
    font-weight: 800;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(255, 210, 0, 0.2);
}

.btn-main:active {
    transform: scale(0.96);
}

.btn-main.full {
    width: 100%;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 15px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

/* ===== INFO CARDS ===== */
.grid-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 30px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.border-yellow {
    border-left: 4px solid var(--primary);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.red-glow {
    background: rgba(255, 68, 68, 0.1);
    color: var(--red);
}

.gold-glow {
    background: rgba(255, 210, 0, 0.1);
    color: var(--primary);
}

.dim-glow {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

/* ===== SOLUTION GRID ===== */
.layout-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: right;
    align-items: flex-start;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.stats-box {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.stat-item {
    flex: 1;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-n {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-l {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 5px;
}

/* ===== JOBS GRID ===== */
.jobs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.job-item {
    background: var(--dark);
    padding: 25px 15px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
}

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

.job-item strong {
    font-size: 0.9rem;
}

/* ===== TESTIMONIALS ===== */
.testi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.testi-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 20px;
    text-align: right;
    border-right: 4px solid var(--primary);
}

.stars {
    color: var(--primary);
    margin-bottom: 10px;
}

.testi-card p {
    font-style: italic;
    color: #ddd;
    margin-bottom: 20px;
}

.user-info strong {
    display: block;
    font-size: 1.1rem;
}

.user-info span {
    font-size: 0.85rem;
    color: var(--muted);
}

/* ===== FORM WRAPPER ===== */
.form-wrapper {
    background: var(--dark);
    padding: 40px 20px;
    border-radius: 30px;
    border: 1px solid var(--border);
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
}

.modern-form {
    text-align: right;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--muted);
}

.field input,
.field select {
    width: 100%;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: #fff;
    font-family: var(--font);
    font-size: 16px;
    /* Avoid iOS zoom */
    outline: none;
}

.field input:focus,
.field select:focus {
    border-color: var(--primary);
}

.privacy {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 10px;
}

/* ===== SUCCESS ALERT ===== */
.success-alert {
    padding: 40px 20px;
    background: #0d0d0d;
    border: 2px solid #25D366;
    border-radius: 24px;
    margin-top: 20px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

/* ===== FOOTER ===== */
.mini-footer {
    padding: 30px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--muted);
    border-top: 1px solid var(--border);
}

/* ===== STICKY MOBILE ===== */
.sticky-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 20px;
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    z-index: 1000;
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .hero {
        min-height: 100vh;
        padding: 0;
    }

    .sec-title {
        font-size: 2.5rem;
    }

    .hero-body h1 {
        font-size: 3.2rem;
    }

    .hero-body p {
        font-size: 1.25rem;
    }

    .layout-split {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .text-content {
        flex: 1.2;
    }

    .stats-box {
        flex: 0.8;
        flex-direction: column;
    }

    .jobs-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .sticky-mobile {
        display: none;
    }

    body {
        padding-bottom: 0;
    }
}