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

:root {
    --yellow: #F5C518;
    --yellow-dark: #D4A800;
    --yellow-light: #FFF3B0;
    --black: #111111;
    --dark: #1A1A1A;
    --dark2: #222222;
    --gray: #555;
    --gray-light: #f4f4f4;
    --white: #ffffff;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --transition: 0.25s ease;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Cairo', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}
.btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,197,24,0.4);
}
.btn-primary.full-width { width: 100%; justify-content: center; margin-bottom: 10px; }

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px;
    transition: var(--transition);
}
.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}
.btn-whatsapp.full-width { width: 100%; justify-content: center; }

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--yellow);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid var(--yellow);
    transition: var(--transition);
    margin-bottom: 16px;
}
.btn-map:hover { background: var(--yellow); color: var(--black); }

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 50px;
    transition: var(--transition);
}
.btn-call:hover { background: var(--yellow-dark); transform: translateY(-1px); }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-sub { color: rgba(255,255,255,0.7); }

.section-tag {
    display: inline-block;
    background: var(--yellow-light);
    color: var(--yellow-dark);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.why-us .section-tag { background: rgba(245,197,24,0.2); color: var(--yellow); }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 12px;
}
.section-sub { color: var(--gray); font-size: 1.05rem; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(17,17,17,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--yellow);
    transition: var(--transition);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 70px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 1.8rem; }
.logo-main {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--yellow);
    letter-spacing: 1px;
}
.logo-sub {
    display: block;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
    color: rgba(255,255,255,0.85);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--yellow);
    transition: width var(--transition);
}
.nav a:hover { color: var(--yellow); }
.nav a:hover::after { width: 100%; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--yellow); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #111 0%, #1a1000 50%, #2a1800 100%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(245,197,24,0.08) 0%, transparent 70%);
}
/* Animated yellow stripes */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(245,197,24,0.03) 40px,
        rgba(245,197,24,0.03) 41px
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 20px 60px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245,197,24,0.15);
    border: 1px solid rgba(245,197,24,0.3);
    color: var(--yellow);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInDown 0.7s ease 0.1s both;
}
.hero-title .highlight {
    color: var(--yellow);
    position: relative;
}
.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    animation: fadeInDown 0.7s ease 0.2s both;
}
.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInDown 0.7s ease 0.3s both;
}
.hero-actions .btn-primary { font-size: 1.1rem; padding: 16px 36px; }
.hero-actions .btn-whatsapp { font-size: 1.1rem; padding: 16px 36px; }

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    animation: fadeInDown 0.7s ease 0.4s both;
}
.stat { text-align: center; }
.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--yellow);
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

.hero-scroll-hint {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    color: var(--yellow);
    font-size: 1.4rem;
    animation: bounce 1.5s infinite;
    z-index: 2;
}

/* ===== SERVICES ===== */
.services { padding: 90px 0; background: var(--white); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--white);
    border: 2px solid #eee;
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.service-card:hover {
    border-color: var(--yellow);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon { font-size: 2.5rem; margin-bottom: 14px; }
.service-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}
.service-desc { color: var(--gray); font-size: 0.9rem; margin-bottom: 16px; line-height: 1.6; }
.service-cta {
    color: var(--yellow-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}
.service-cta:hover { color: var(--black); }

/* ===== AREAS ===== */
.areas { padding: 90px 0; background: var(--gray-light); }

.areas-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}
.areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}
.area-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
    border: 1px solid #eee;
}
.area-item:hover { border-color: var(--yellow); background: var(--yellow-light); }
.area-dot { font-size: 0.7rem; }

.areas-cta-box {
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    position: sticky;
    top: 90px;
}
.areas-cta-icon { font-size: 2.5rem; margin-bottom: 12px; }
.areas-cta-box h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--yellow);
}
.areas-cta-box p { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.cta-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 20px 0; }

/* ===== WHY US ===== */
.why-us { padding: 90px 0; background: var(--dark); }
.why-us .section-title { color: var(--white); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(245,197,24,0.15);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition);
    text-align: center;
}
.feature-card:hover {
    border-color: var(--yellow);
    background: rgba(245,197,24,0.06);
    transform: translateY(-4px);
}
.feature-icon { font-size: 2.4rem; margin-bottom: 14px; }
.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 8px;
}
.feature-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 90px 0; background: var(--white); }

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.step {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
}
.step-num {
    width: 60px; height: 60px;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 16px rgba(245,197,24,0.4);
}
.step h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.step p { color: var(--gray); font-size: 0.9rem; }
.step-arrow {
    font-size: 1.8rem;
    color: var(--yellow);
    font-weight: 700;
    padding-top: 20px;
    flex-shrink: 0;
}

/* ===== CONTACT ===== */
.contact { padding: 90px 0; background: var(--gray-light); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--white);
    border-radius: var(--radius);
    padding: 18px 20px;
    box-shadow: var(--shadow);
}
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}
.contact-item p { color: var(--gray); font-size: 0.9rem; }
.contact-item a { color: var(--yellow-dark); transition: var(--transition); font-weight: 600; }
.contact-item a:hover { color: var(--black); }

.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

/* ===== FLOATING BUTTONS ===== */
.float-call {
    position: fixed;
    bottom: 90px; right: 20px;
    z-index: 999;
    background: var(--yellow);
    color: var(--black);
    border-radius: 50px;
    padding: 14px 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 24px rgba(245,197,24,0.5);
    transition: var(--transition);
    animation: pulse-yellow 2s infinite;
}
.float-call:hover { transform: scale(1.05); box-shadow: 0 8px 32px rgba(245,197,24,0.7); }

.float-whatsapp {
    position: fixed;
    bottom: 30px; right: 20px;
    z-index: 999;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    transition: var(--transition);
}
.float-whatsapp:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.7); }

/* ===== FOOTER ===== */
.footer { background: var(--black); color: var(--white); padding: 60px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-top: 12px; }

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--yellow); }

.footer-contact p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 8px; }
.footer-contact a { color: var(--yellow); transition: var(--transition); }
.footer-contact a:hover { color: var(--white); }
.footer-cta { margin-top: 16px; font-size: 0.9rem; padding: 10px 22px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}
@keyframes pulse-yellow {
    0%, 100% { box-shadow: 0 6px 24px rgba(245,197,24,0.5); }
    50% { box-shadow: 0 6px 36px rgba(245,197,24,0.8); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .areas-wrapper { grid-template-columns: 1fr; }
    .areas-cta-box { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--dark); flex-direction: column; align-items: center; padding: 24px; gap: 20px; border-bottom: 2px solid var(--yellow); }
    .nav.open { display: flex; }
    .nav a { font-size: 1.1rem; }
    .hamburger { display: flex; }
    .header-call { display: none; }

    .hero-stats { gap: 16px; }
    .stat-num { font-size: 1.4rem; }

    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .steps { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); padding: 0; }

    .float-call .float-call-text { display: none; }
    .float-call { padding: 14px 16px; border-radius: 50%; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn-primary, .hero-actions .btn-whatsapp { width: 100%; justify-content: center; }
}

/* ===== MAP OPEN BUTTON ===== */
.map-open-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    background: var(--dark);
    color: var(--yellow);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: var(--radius);
    border: 2px solid var(--yellow);
    transition: var(--transition);
    letter-spacing: 0.5px;
}
.map-open-btn:hover {
    background: var(--yellow);
    color: var(--black);
}

/* ===== FAQ SECTION ===== */
.faq { padding: 90px 0; background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
    border: 2px solid #eee;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open { border-color: var(--yellow); }
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    background: var(--white);
    transition: var(--transition);
    user-select: none;
}
.faq-item.open .faq-q { background: var(--yellow-light); color: var(--dark); }
.faq-q-icon { font-size: 1.2rem; transition: transform 0.3s ease; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding: 16px 22px; }

/* ===== NAV ACTIVE ===== */
.nav a.active { color: var(--yellow); }
