:root {
    --primary: #008bd2;
    --primary-dark: #006fa8;
    --accent: #f0a500;
    --dark: #0f172a;
    --gray: #475569;
    --light: #f8fafc;
    --white: #ffffff;
    --trust-green: #22c55e;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
}
html { scroll-behavior: smooth; }

h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 4rem); color: white; margin-bottom: 1rem; text-shadow: 0 4px 12px rgba(0,0,0,0.6); }
h2 { font-size: clamp(2rem, 5vw, 2.8rem); text-align: center; margin-bottom: 1.5rem; color: var(--dark); }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--primary-dark); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.9rem 1.8rem; border-radius: 50px; font-weight: 700;
    text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--dark); box-shadow: 0 6px 20px rgba(240,165,0,0.3); }
.btn-accent:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(240,165,0,0.4); }

.btn-pill {
    background: var(--primary); color: white !important; padding: 0.9rem 1.8rem;
    border-radius: 9999px; font-weight: 700; font-size: 0.95rem; white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,139,210,0.25); transition: all 0.3s;
}
.btn-pill:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* HEADER */
header { background: white; box-shadow: 0 4px 20px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 90px; }
.logo-wrapper { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { height: 60px; width: auto; }
.logo-text { font-weight: 800; font-size: 1.1rem; line-height: 1.1; text-transform: uppercase; color: var(--dark); }
.logo-text span { color: var(--primary); font-size: 0.8rem; display: block; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: var(--dark); font-weight: 600; text-decoration: none; text-transform: uppercase; font-size: 0.9rem; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

.menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
.menu-toggle span { width: 28px; height: 3px; background: var(--dark); border-radius: 2px; transition: all 0.4s; }

@media (max-width: 992px) {
    .menu-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
        background: white; flex-direction: column; align-items: flex-start;
        padding: 120px 40px; gap: 1.5rem; transition: right 0.5s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.2rem; }
}

/* HERO */
.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('https://i.imgur.com/KMsvpls.jpg') center/cover no-repeat fixed;
    color: white; padding: 140px 0 100px; min-height: 85vh; display: flex; align-items: center;
}
.hero-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.hero-text p { font-size: 1.4rem; font-weight: 600; margin-bottom: 2rem; text-shadow: 0 2px 8px rgba(0,0,0,0.7); }
.hero-text ul { list-style: none; margin: 2rem 0; }
.hero-text li { font-size: 1.2rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 1rem; font-weight: 600; text-shadow: 0 2px 6px rgba(0,0,0,0.6); }
.hero-text li::before { content: "✓"; color: var(--accent); font-size: 1.6rem; font-weight: bold; }

.trust-badges { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.trust-badge { background: rgba(255,255,255,0.1); padding: 0.5rem 1rem; border-radius: 50px; border: 1px solid rgba(255,255,255,0.2); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }

/* FORM */
.lead-card { background: white; padding: 2.5rem; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.2); border-top: 8px solid var(--accent); color: var(--dark); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 700; color: var(--dark); font-size: 0.95rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.9rem; border: 2px solid #e2e8f0; border-radius: 8px; font-size: 1rem; transition: border 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,139,210,0.15); }
.file-upload { border: 2px dashed #cbd5e1 !important; background: #f8fafc; cursor: pointer; padding: 1rem !important; text-align: center; }

/* SECTIONS */
.section { padding: 100px 0; }
.section-sub { text-align: center; color: var(--gray); font-size: 1.15rem; font-weight: 500; margin-bottom: 3rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.service-card { background: white; padding: 2.5rem; border-radius: 16px; border: 1px solid #e2e8f0; transition: all 0.4s ease; box-shadow: 0 6px 20px rgba(0,0,0,0.05); }
.service-card:hover { transform: translateY(-12px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); border-color: var(--primary); }
.icon-box { width: 70px; height: 70px; background: rgba(0,139,210,0.1); color: var(--primary); display: flex; align-items: center; justify-content: center; border-radius: 50%; margin-bottom: 1.5rem; font-size: 2rem; }

/* MISC */
.payment-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; }
.payment-grid a, .payment-grid div { padding: 0.8rem 1.5rem; border-radius: 8px; font-weight: 700; text-decoration: none; color: white; transition: transform 0.3s; min-width: 120px; text-align: center; }
.payment-grid a:hover { transform: scale(1.05); }

.mobile-fab { position: fixed; bottom: 30px; left: 30px; background: #22c55e; color: white; width: 70px; height: 70px; border-radius: 50%; display: none; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 8px 25px rgba(0,0,0,0.25); z-index: 999; text-decoration: none; transition: transform 0.3s; }
.mobile-fab:hover { transform: scale(1.1); }

/* EXTRAS */
.fee-disclosure { font-size: 0.8rem; color: var(--gray); margin-top: 1rem; text-align: center; font-style: italic; }
.faq-item { margin-bottom: 1.5rem; }

/* Success Modal */
.success-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.85); z-index: 2000; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
.success-modal-content { background: white; padding: 3rem 2rem; border-radius: 16px; text-align: center; max-width: 420px; width: 90%; box-shadow: 0 20px 50px rgba(0,0,0,0.5); border-top: 8px solid var(--trust-green); }
.success-icon { font-size: 4rem; margin-bottom: 1rem; }

@media (max-width: 992px) {
    .hero { padding: 80px 0 60px; background-attachment: scroll; }
    .hero-layout { grid-template-columns: 1fr; text-align: center; }
    .hero-text ul { display: inline-block; text-align: left; }
    .mobile-fab { display: flex; }
}

footer { background: var(--dark); color: #cbd5e1; padding: 80px 0 40px; }
footer h4 { color: white; margin-bottom: 1.5rem; }
footer .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3rem; }

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s;
}
#back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}
