*{margin:0;padding:0;box-sizing:border-box}
body{
    font-family:"Segoe UI",Roboto,Arial,sans-serif;
    background:#f4f6fb;
    color:#1d1d1f;
    line-height:1.7;
}
section{padding:100px 8%}
h1{font-size:56px;font-weight:700}
h2{font-size:40px;font-weight:700;margin-bottom:20px}
h3{font-size:24px;margin-bottom:10px}
p{font-size:17px;color:#555}
a{text-decoration:none}

/* HEADER */
.main-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.header-container {
    max-width: 1400px;
    margin: auto;
    padding: 16px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo a {
    font-size: 26px;
    font-weight: 700;
    color: #0a1f44;
}

/* DESKTOP NAV */
.nav-menu {
    display: flex;
    gap: 28px;
}

.nav-menu a {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* CALL BUTTON */
.call-btn {
    background: linear-gradient(135deg,#ffcc00,#ff9f00);
    padding: 12px 26px;
    border-radius: 40px;
    font-weight: 700;
    color: #111;
    box-shadow: 0 10px 25px rgba(255,180,0,.35);
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #0a1f44;
    border-radius: 3px;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 25px 8%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.mobile-menu a {
    padding: 12px 0;
    font-size: 18px;
    font-weight: 600;
    color: #0a1f44;
}

.mobile-call {
    margin-top: 15px;
    background: linear-gradient(135deg,#ffcc00,#ff9f00);
    padding: 14px;
    border-radius: 40px;
    text-align: center;
    font-weight: 700;
    color: #111;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-menu,
    .call-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu.active {
        display: flex;
    }
}


/* BUTTONS */
.btn-primary{
    background:linear-gradient(135deg,#ffcc00,#ff9f00);
    color:#111;
    padding:16px 36px;
    border-radius:50px;
    font-weight:600;
    display:inline-block;
    box-shadow:0 15px 35px rgba(255,180,0,.35);
    transition:.3s
}
.btn-dark{
    background:linear-gradient(135deg,#0a1f44,#173a7a);
    color:#fff;
    padding:16px 36px;
    border-radius:50px;
    font-weight:600;
    display:inline-block;
    box-shadow:0 15px 35px rgba(10,31,68,.4);
    transition:.3s
}
.btn-primary:hover,.btn-dark:hover{transform:translateY(-2px)}

/* TOPBAR */
.topbar{
    background:linear-gradient(90deg,#0a1f44,#173a7a);
    color:#fff;
    padding:14px;
    text-align:center;
    position:sticky;
    top:0;
    z-index:999
}
.topbar a{color:#ffd200;font-weight:700}

/* HERO */
.hero{
    min-height:95vh;
    background:radial-gradient(circle at top,#1e4aa8,#081b3a);
    color:#fff;
    display:flex;
    align-items:center
}
.hero-content{max-width:700px}
.hero p{font-size:19px;color:#e0e6f5;margin:25px 0 40px}

/* GRID UTILS */
.grid-3{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px
}
.grid-4{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px
}

/* CARDS */
.card{
    background:#fff;
    padding:45px 35px;
    border-radius:24px;
    box-shadow:0 25px 50px rgba(0,0,0,.1)
}

/* TRUST */
.trust{background:#fff;text-align:center}
.trust-box{
    background:#f9fafc;
    padding:30px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08)
}
.trust-box h3{font-size:34px;color:#0a1f44}

/* ABOUT */
.about{background:#f4f6fb}
.about p{max-width:900px}

/* PLANS */
.plans{background:#fff}
.plan{
    background:linear-gradient(180deg,#f9fbff,#eef2ff);
    padding:45px 30px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 25px 45px rgba(0,0,0,.08)
}
.plan span{
    font-size:38px;
    font-weight:700;
    color:#0a1f44
}

/* BUNDLE */
.bundle{
    background:linear-gradient(135deg,#0a1f44,#173a7a);
    color:#fff;
    text-align:center
}
.bundle p{color:#dbe4ff}

/* STEPS */
.steps{background:#f4f6fb;text-align:center}
.step{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08)
}

/* TESTIMONIAL */
.test{
    background:#fff;
    padding:35px;
    border-radius:22px;
    box-shadow:0 20px 40px rgba(0,0,0,.08)
}

/* LEAD */
.lead{
    background:radial-gradient(circle at top,#173a7a,#081b3a);
    color:#fff;
    text-align:center
}
.lead form{max-width:420px;margin:35px auto}
.lead input{
    width:100%;
    padding:16px;
    margin-bottom:16px;
    border-radius:50px;
    border:none
}
.lead button{
    width:100%;
    padding:16px;
    border:none;
    border-radius:50px;
    background:linear-gradient(135deg,#ffcc00,#ff9f00);
    font-weight:700
}

/* FOOTER */
footer{
    background:#050d1f;
    color:#9fb4ff;
    text-align:center;
    padding:35px
}
footer a{color:#ffd200;font-weight:700}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #9fb4ff;
    margin: 0 12px;
    font-size: 14px;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 900px;
    margin: 15px auto;
    font-size: 13px;
    color: #b7c4ff;
    line-height: 1.6;
}

.footer-copy {
    margin-top: 10px;
    font-size: 14px;
    color: #9fb4ff;
}

.footer-call {
    display: inline-block;
    margin-top: 18px;
    color: #ffd200;
    font-weight: 700;
    text-decoration: none;
}

/* MOBILE */
@media(max-width:768px){
    h1{font-size:42px}
    h2{font-size:32px}
    section{padding:80px 6%}
}
/* ================= CONTACT SECTION ================= */

.contact-grid{
    display:grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap:40px;
    align-items:flex-start;
}

.info-sidebar{
    background:#0b1220;
    color:#fff;
    border-radius:14px;
    padding:35px;
    border:1px solid rgba(255,255,255,0.15);
    box-shadow:0 15px 40px rgba(0,0,0,0.25);
}

.info-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:24px;
    padding:14px 10px;
    border-bottom:1px solid rgba(255,255,255,0.12);
}

.info-item:last-child{
    border-bottom:none;
}

.info-item i{
    font-size:20px;
    background:#ffb400;
    color:#000;
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.info-item h4{
    margin:0;
    font-size:18px;
    color:#fff;
    font-weight:700;
}

.info-item p{
    margin:5px 0 0 0;
    color:#d3d3d3;
}

.btn-call-outline{
    display:inline-block;
    margin-top:8px;
    padding:8px 16px;
    border-radius:8px;
    border:1px solid #ffb400;
    color:#ffb400;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-call-outline:hover{
    background:#ffb400;
    color:#000;
}

/* ================= CONTACT FORM ================= */

.contact-form{
    background:#fff;
    border-radius:14px;
    padding:30px 35px;
    border:1px solid #ddd;
    box-shadow:0 10px 35px rgba(0,0,0,0.12);
}

.form-group{
    margin-bottom:18px;
}

.form-group label{
    font-weight:700;
    margin-bottom:6px;
    display:block;
    color:#333;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:12px 14px;
    border-radius:8px;
    border:1px solid #ccc;
    outline:none;
    transition:.3s;
    font-size:15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#ffb400;
    box-shadow:0 0 0 3px rgba(255,180,0,0.25);
}

.btn-submit{
    width:100%;
    padding:12px;
    background:#ffb400;
    border:none;
    color:#000;
    font-size:17px;
    border-radius:10px;
    font-weight:900;
    cursor:pointer;
    transition:.3s;
}

.btn-submit:hover{
    background:#ffcf4d;
}

/* ================= MAP SECTION ================= */

.bg-light{
    background:#f7f9fc;
}

.map-container{
    width:100%;
    height:auto;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.2);
    border:4px solid #fff;
}

/* ================= BUTTONS ================= */

.btn-nav{
    display:inline-block;
    padding:12px 22px;
    background:#0b1220;
    color:#fff;
    border-radius:10px;
    text-decoration:none;
    font-weight:800;
    transition:.3s;
}

.btn-nav:hover{
    background:#ffb400;
    color:#000;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1024px){
    .contact-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){
    .contact-form,
    .info-sidebar{
        padding:22px;
    }
}
