/* =====================================================
   Yalla Tasha – Landing Page Style
   Mobile First • Responsive • Premium
===================================================== */

:root {
    --yellow: #FFD63A;
    --turquoise: #6DE1D2;
    --dark: #111111;
    --gray: #666;
    --light-bg: #f7f7f7;
    --radius: 16px;
    --transition: all 0.35s ease;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background: #fff;
    color: #222;
    line-height: 1.7;
}

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.75), rgba(0,0,0,0.45)),
        url("../images/hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 16px;
}


.hero-content {
    max-width: 720px;
    color: #fff;
    animation: fadeUp 0.9s ease both;
}

/* Logo */
.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--yellow);
    padding: 18px;
    margin: 0 auto 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
    opacity: 0.9;

}

/* Hero Text */
.hero h1 {
    font-size: 1.9rem;
    margin-bottom: 14px;
}

.hero p {
    font-size: 1rem;
    color: #eaeaea;
}

/* Hero Buttons */
.hero-buttons {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.btn {
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn.whatsapp {
    background: #25D366;
    color: #fff;
}

.btn.secondary {
    background: var(--yellow);
    color: #222;
}

.btn.submit {
    background: var(--turquoise);
    color: #222;
    max-width: 420px;
    margin: 0 auto; 
}

/* ---------- VALUES ---------- */
.values {
    background: var(--light-bg);
    padding: 70px 16px;
}

.values .container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.value-box {
    background: #fff;
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    transition: var(--transition);
    animation: fadeUp 0.9s ease both;
}

.value-box i {
    font-size: 32px;
    color: var(--yellow);
    margin-bottom: 10px;
}

.value-box h3 {
    margin-bottom: 6px;
}

.value-box p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Hover Glow */
.value-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    box-shadow: 0 0 0 rgba(255,214,58,0);
    transition: var(--transition);
    z-index: -1;
}

.value-box:hover {
    transform: translateY(-8px);
}

.value-box:hover::after {
    box-shadow: 0 25px 45px rgba(255,214,58,0.35);
}

/* ---------- TYPES / FORM ---------- */
.types {
    padding: 80px 16px;
    text-align: center;
}

.types h2 {
    margin-top: -20px; 
    margin-bottom: 32px;
}

.lead-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeUp 0.9s ease both;
}

/* Checkbox grid */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: right;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

textarea,
input[type="tel"] {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-family: inherit;
}

/* ---------- FOOTER ---------- */
.footer {
    background: #000;
    color: #fff;
    padding: 40px 16px;
    text-align: center;
}

.footer p {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer .social a {
    color: var(--yellow);
    margin: 0 8px;
    font-size: 18px;
    transition: var(--transition);
}

.footer .social a:hover {
    opacity: 0.7;
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
===================================================== */

/* Tablets */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 2.3rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .values .container {
        grid-template-columns: repeat(3, 1fr);
    }

    .checkbox-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .logo {
        width: 140px;
        height: 140px;
    }
}
