/* === FONTS & RESET === */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700;900&display=swap');

:root { color-scheme: light only; }

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

:root {
    --navy: #0D1B4B;
    --navy-light: #162461;
    --navy-dark: #07102e;
    --gold: #F5C518;
    --gold-dark: #c9a010;
    --white: #ffffff;
    --bg-light: #f0f3fb;
    --text-dark: #0a0f2c;
    --text-muted: #5a6080;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Heebo', sans-serif;
    direction: rtl;
    text-align: right;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* === HEADER === */
#header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(7, 16, 46, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 0;
    transition: padding 0.3s;
    border-bottom: 1px solid rgba(245, 197, 24, 0.15);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 0.5px;
}
.logo-title {
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 36px;
}
.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.25s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 8px;
    transition: border-color 0.2s;
}
.hamburger:hover { border-color: var(--gold); color: var(--gold); }

/* === HERO === */
.hero {
    min-height: 100vh;
    background-image: linear-gradient(rgba(7,16,46,0.62), rgba(7,16,46,0.82)), url('roypic.jpg');
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(245,197,24,0.08) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(7,16,46,0.3) 0%, rgba(7,16,46,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 20px;
    animation: fadeUp 0.9s ease both;
}

.hero-pre {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(245,197,24,0.35);
    padding: 6px 18px;
    border-radius: 50px;
}

.hero-content h1 {
    font-size: clamp(3.2rem, 7vw, 6rem);
    font-weight: 900;
    color: white;
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
    margin-bottom: 14px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(245,197,24,0.12);
    border-radius: 50px;
    padding: 5px 16px;
    margin-bottom: 38px;
}

/* === BUTTONS === */
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 15px 42px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 800;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: 'Heebo', sans-serif;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 6px 28px rgba(245,197,24,0.45);
    letter-spacing: 0.3px;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(245,197,24,0.6);
    background: #ffd84a;
}

.btn-wa { display: flex; align-items: center; justify-content: center; gap: 8px; width: fit-content; margin: 0 auto; }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 999;
    background: #25D366;
    width: 62px; height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    animation: waPulse 2.5s infinite;
    text-decoration: none;
    transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 34px; height: 34px; }

@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
    70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* === STATS STRIP === */
.stats-strip {
    background: var(--navy);
    padding: 60px 0;
    border-top: 3px solid var(--gold);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 20px;
}

.stat-item { color: white; }

.stat-num-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.stat-plus {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
}
.stat-text {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.stat-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* === ABOUT === */
.about {
    padding: 110px 0;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 70px;
    align-items: center;
}

.about-image-wrap { position: relative; }

.about-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(13,27,75,0.18);
    object-fit: cover;
    aspect-ratio: 3/4;
    display: block;
    background: var(--navy);
}

.cert-badge {
    position: absolute;
    bottom: -22px;
    right: -22px;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 16px 20px;
    border-radius: 18px;
    font-weight: 900;
    font-size: 0.88rem;
    text-align: center;
    line-height: 1.5;
    box-shadow: 0 10px 30px rgba(245,197,24,0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.cert-badge span:first-child { font-size: 1.5rem; }

.about-text h2 {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}
.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.tag {
    background: var(--navy);
    color: var(--gold);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* === SERVICES === */
.services {
    padding: 110px 0;
    background: white;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--navy);
    text-align: center;
    margin-bottom: 12px;
}
.section-title.light { color: var(--gold); }
.section-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 60px;
}
.section-sub.light { color: rgba(255,255,255,0.6); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--bg-light);
    border-radius: 22px;
    padding: 40px 32px;
    border-right: 5px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
}
.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(13,27,75,0.12);
}

.service-icon { font-size: 2.8rem; margin-bottom: 16px; }
.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}
.service-card p {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* === VIDEOS SECTION === */
.videos {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.videos-container { text-align: center; }

.section-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-dark);
    border: 1.5px solid var(--gold);
    padding: 5px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
    background: rgba(245,197,24,0.08);
    letter-spacing: 0.5px;
}

.videos-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 48px;
    margin-bottom: 40px;
}

.videos-row video {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    background: #000;
    box-shadow: 0 10px 36px rgba(13,27,75,0.16);
}

.videos-ig-wrap {
    display: flex;
    justify-content: center;
}

.btn-ig {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Heebo', sans-serif;
    box-shadow: 0 6px 24px rgba(220,39,67,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    direction: rtl;
}
.btn-ig:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(220,39,67,0.5);
}

/* === CONTACT === */
.contact {
    padding: 110px 0;
    background: #f0f3fb !important;
    color: #0a0f2c;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px;
    align-items: start;
}

/* Form card */
.contact-form-card {
    background: #ffffff !important;
    border-radius: 24px;
    padding: 44px 40px;
    box-shadow: 0 8px 40px rgba(13,27,75,0.1);
}

.form-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}
.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
}
.form-group input {
    padding: 13px 16px;
    border-radius: 12px;
    border: 1.5px solid #e0e4f0;
    background: var(--bg-light);
    font-family: 'Heebo', sans-serif;
    font-size: 0.97rem;
    direction: rtl;
    color: var(--text-dark);
    transition: border-color 0.25s;
}
.form-group input::placeholder { color: #b0b8cc; }
.form-group input:focus { outline: none; border-color: var(--navy); background: white; }

.btn-form-submit {
    width: 100%;
    padding: 15px;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 800;
    font-family: 'Heebo', sans-serif;
    cursor: pointer;
    margin-top: 6px;
    transition: background 0.2s, transform 0.2s;
}
.btn-form-submit:hover { background: var(--navy-light); transform: translateY(-1px); }

/* Info panel */
.contact-info-panel { padding-top: 8px; }

.contact-panel-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--navy);
    margin: 12px 0 14px;
    line-height: 1.2;
}

.contact-panel-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Contact cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.ccard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    text-decoration: none;
    border: 1.5px solid #e8ecf6;
    transition: border-color 0.25s, transform 0.2s;
}
.ccard:hover { border-color: var(--navy); transform: translateX(-3px); }
.ccard--active {
    border-color: var(--navy);
    border-width: 2px;
}

.ccard-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: right;
}
.ccard-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}
.ccard-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}
.ccard--active .ccard-value { color: var(--navy); }

.ccard-icon {
    font-size: 1.4rem;
    width: 44px;
    height: 44px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Big WA button */
.btn-wa-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 17px;
    background: var(--navy);
    color: white;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    font-family: 'Heebo', sans-serif;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 6px 24px rgba(13,27,75,0.25);
}
.btn-wa-main:hover { background: var(--navy-light); transform: translateY(-2px); }

/* === FOOTER === */
footer {
    background: #040b1e;
    padding: 28px 0;
    border-top: 1px solid rgba(245,197,24,0.12);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold);
}
.footer-ig {
    color: rgba(255,255,255,0.45);
    transition: color 0.25s;
}
.footer-ig:hover { color: var(--gold); }
.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* === ANIMATIONS === */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === MOBILE === */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 68px;
        right: 0;
        width: 100%;
        background: rgba(7,16,46,0.98);
        padding: 24px 20px;
        gap: 18px;
        border-bottom: 1px solid rgba(245,197,24,0.15);
    }
    .nav-links.open { display: flex; }
    .hamburger { display: block; }

    .hero-content h1 { font-size: 3rem; }
    .hero-pre { font-size: 0.75rem; letter-spacing: 1.5px; }

    .stats-grid { grid-template-columns: 1fr; gap: 36px; }

    .about { padding: 70px 0; }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-image-wrap { max-width: 340px; margin: 0 auto; }
    .cert-badge { bottom: -15px; right: -10px; }

    .services { padding: 70px 0; }
    .services-grid { grid-template-columns: 1fr; gap: 20px; }

    .contact { padding: 70px 0; }
    .contact-layout { grid-template-columns: 1fr; gap: 32px; }
    .contact-form-card { padding: 32px 24px; }
    .contact-panel-title { font-size: 1.8rem; }

    .videos { padding: 70px 0; }
    .videos-row { grid-template-columns: 1fr; gap: 16px; }

    .footer-inner { justify-content: center; text-align: center; }

    .whatsapp-float { bottom: 20px; left: 20px; width: 54px; height: 54px; }
    .whatsapp-float svg { width: 28px; height: 28px; }
}

@media (max-width: 480px) {
    .section-title { font-size: 2rem; }
    .about-text h2 { font-size: 2rem; }
}
