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

        :root {
            --orange: #E07B39;
            --orange-dark: #c96a28;
            --bg: #141414;
            --bg2: #1a1a1a;
            --bg3: #1f1f1f;
            --card: #222222;
            --border: #2e2e2e;
            --text: #e8e8e8;
            --muted: #888;
            --white: #ffffff;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            -webkit-font-smoothing: antialiased;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
        }

        /* ── NAV ── */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            height: 58px;
            background: rgba(15,15,15,0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 1rem;
            color: var(--white);
            text-decoration: none;
        }

        .nav-logo-icon {
            width: 28px; height: 28px;
            background: var(--orange);
            border-radius: 7px;
            display: flex; align-items: center; justify-content: center;
            font-size: 14px;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover { color: var(--white); }

        .btn-orange {
            background: var(--orange);
            color: #fff;
            border: none;
            padding: 9px 22px;
            border-radius: 8px;
            font-size: 0.88rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            text-decoration: none;
            display: inline-block;
        }
        .btn-orange:hover { background: var(--orange-dark); transform: translateY(-1px); }

        /* ── HERO ── */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            padding-top: 58px;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('../images/home.JPG');
            background-size: cover;
            background-position: center;
            filter: brightness(0.30) saturate(0.75);
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
            to bottom,
            rgba(10,8,6,0.3) 0%,
            rgba(10,8,6,0.15) 40%,
            rgba(10,8,6,0.55) 100%
            );
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 660px;
            padding: 0 20px;
            animation: fadeUp 0.9s ease both;
        }

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(224,123,57,0.15);
            border: 1px solid rgba(224,123,57,0.4);
            color: var(--orange);
            font-size: 0.78rem;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: 50px;
            margin-bottom: 24px;
            letter-spacing: 0.02em;
        }

        .hero h1 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(2.6rem, 5vw, 3.8rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.025em;
            color: var(--white);
            margin-bottom: 18px;
        }

        .hero h1 span { color: var(--orange); }

        .hero-slogan {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--orange);
            letter-spacing: 0.01em;
            margin-bottom: 10px;
        }

        .hero p {
            font-size: 1rem;
            color: #aaa;
            max-width: 460px;
            margin: 0 auto 34px;
            line-height: 1.7;
        }

        .hero-ctas {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-ghost {
            background: transparent;
            color: var(--white);
            border: 1px solid rgba(255,255,255,0.25);
            padding: 9px 22px;
            border-radius: 8px;
            font-size: 0.88rem;
            font-weight: 600;
            cursor: pointer;
            transition: border-color 0.2s, background 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            text-decoration: none;
        }
        .btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.45); }

        .play-icon {
            width: 18px; height: 18px;
            border-radius: 50%;
            border: 1.5px solid rgba(255,255,255,0.5);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 8px;
        }

        /* ── SECTION COMMON ── */
        section { padding: 90px 40px; }

        .section-label {
            text-align: center;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 14px;
        }

        .section-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            font-weight: 700;
            text-align: center;
            color: var(--white);
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 14px;
        }

        .section-title span { color: var(--orange); }

        .section-sub {
            text-align: center;
            color: var(--muted);
            font-size: 0.95rem;
            max-width: 500px;
            margin: 0 auto 56px;
            line-height: 1.7;
        }

        /* ── FEATURES ── */
        .features { background: var(--bg2); }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .feature-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 32px 28px;
            transition: transform 0.25s, border-color 0.25s;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            border-color: rgba(224,123,57,0.35);
        }

        .feature-icon {
            font-size: 2rem;
            margin-bottom: 16px;
            display: block;
        }

        .feature-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 10px;
        }

        .feature-card p {
            font-size: 0.875rem;
            color: var(--muted);
            line-height: 1.65;
        }

        /* ── MORE FEATURES ROW ── */
        .more-features {
            background: var(--bg3);
            padding-top: 0;
        }

        .more-features-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            padding-top: 60px;
            border-top: 1px solid var(--border);
        }

        .mf-card {
            border-radius: 14px;
            padding: 28px;
            background: var(--card);
            border: 1px solid var(--border);
            transition: transform 0.25s;
        }

        .mf-card:hover { transform: translateY(-3px); }

        .mf-card h4 {
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }

        .mf-card p {
            font-size: 0.85rem;
            color: var(--muted);
            line-height: 1.6;
        }

        /* ── CTA ── */
        .cta-section {
            background: var(--bg);
            text-align: center;
            padding: 100px 40px;
        }

        .cta-section h2 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            font-weight: 700;
            color: var(--white);
            margin-bottom: 12px;
        }

        .cta-section p {
            color: var(--muted);
            font-size: 0.95rem;
            margin-bottom: 34px;
        }

        /* ── FOOTER ── */
        footer {
            background: #111;
            border-top: 1px solid var(--border);
            padding: 48px 40px 24px;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 32px;
            max-width: 1100px;
            margin: 0 auto 36px;
        }

        .footer-brand p {
            font-size: 0.82rem;
            color: var(--muted);
            max-width: 240px;
            margin-top: 10px;
            line-height: 1.6;
        }

        .footer-contact {
            font-size: 0.82rem;
            color: var(--muted);
            line-height: 1.9;
            text-align: right;
        }

        .footer-contact a { color: var(--orange); text-decoration: none; }

        .footer-bottom {
            max-width: 1100px;
            margin: 0 auto;
            border-top: 1px solid var(--border);
            padding-top: 18px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 0.78rem;
            color: #555;
        }

        .footer-bottom span { color: var(--orange); }

        /* ── DIVIDER ── */
        .divider {
            height: 1px;
            background: var(--border);
            max-width: 1100px;
            margin: 0 auto;
        }
          /* ─────────────────────────────
   CONTACT US SECTION
───────────────────────────── */

.contact-section {
    background: var(--bg2);
    position: relative;
    overflow: hidden;
}

.contact-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* LEFT INFO PANEL */

.contact-info {
    background: linear-gradient(
        145deg,
        rgba(224,123,57,0.12),
        rgba(255,255,255,0.02)
    );
    border: 1px solid rgba(224,123,57,0.18);
    border-radius: 20px;
    padding: 42px;
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    background: rgba(224,123,57,0.08);
    border-radius: 50%;
    filter: blur(10px);
}

.contact-info h2 {
    font-size: 2rem;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.contact-info h2 span {
    color: var(--orange);
}

.contact-info p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 34px;
    max-width: 420px;
}

/* CONTACT ITEMS */

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    min-width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(224,123,57,0.14);
    border: 1px solid rgba(224,123,57,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.1rem;
}

.contact-text h4 {
    color: var(--white);
    font-size: 0.92rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.contact-text p,
.contact-text a {
    color: var(--muted);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-text a:hover {
    color: var(--orange);
}

/* FORM PANEL */

.contact-form {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 42px;
}

.contact-form h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 26px;
    font-weight: 700;
}

/* FORM GRID */

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #cfcfcf;
    font-size: 0.85rem;
    font-weight: 600;
}

/* INPUTS */

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(224,123,57,0.55);
    background: #181818;
}

/* PLACEHOLDER */

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

/* BUTTON */

.contact-submit {
    margin-top: 10px;
    width: 100%;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 700;
    padding: 14px 22px;
    transition: background 0.25s, transform 0.2s;
}

.contact-submit:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

/* MAP / SOCIAL OPTIONAL */

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.contact-social a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}

.contact-social a:hover {
    background: rgba(224,123,57,0.12);
    border-color: rgba(224,123,57,0.3);
    color: var(--orange);
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form {
        padding: 32px 24px;
    }

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

    .form-group.full {
        grid-column: span 1;
    }
}

@media (max-width: 600px) {

    .contact-section {
        padding: 80px 20px;
    }

    .contact-info h2 {
        font-size: 1.7rem;
    }

    .contact-form h3 {
        font-size: 1.2rem;
    }
}
          /* ── CAPTCHA ── */

.captcha-box {
    margin-top: 10px;
}

.captcha-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #1a1a1a;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 14px;
}

#captchaText {
    color: var(--orange);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.captcha-refresh {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 10px;
    background: rgba(224,123,57,0.12);
    color: var(--orange);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
}

.captcha-refresh:hover {
    background: rgba(224,123,57,0.22);
    transform: rotate(90deg);
}

.captcha-box input {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.2s;
}

.captcha-box input:focus {
    border-color: rgba(224,123,57,0.5);
}

#captchaError {
    display: block;
    margin-top: 8px;
    color: #ff6b6b;
    font-size: 0.82rem;
}

          .checkbox-group{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: #1a1a1a;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.2s, background 0.2s;
}

.checkbox-group:hover{
    border-color: rgba(224,123,57,0.35);
    background: #181818;
}

.checkbox-group input[type="checkbox"]{
    appearance: none;
    -webkit-appearance: none;
    min-width: 20px;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border-radius: 6px;
    border: 1px solid rgba(224,123,57,0.35);
    background: #111;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.checkbox-group input[type="checkbox"]:checked{
    background: var(--orange);
    border-color: var(--orange);
}

.checkbox-group input[type="checkbox"]:checked::after{
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.checkbox-group label{
    margin: auto;
    color: #cfcfcf;
    font-size: 0.88rem;
    line-height: 1.6;
    cursor: pointer;
}

.checkbox-group a{
    color: var(--orange);
    text-decoration: none;
}

.checkbox-group a:hover{
    text-decoration: underline;
}