/* --- VARIABILE SI RESET --- */
:root {
    --bg-dark: #003151;
    --bg-med: #005893;
    --light-blue: #6ACAF9;
    --orange: #FF8C00;
    --yellow: #FFD700;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background: #f4f7f9; color: #333; line-height: 1.6; }
.container { width: 92%; max-width: 1200px; margin: 0 auto; }

/* --- HEADER & NAV --- */
header { background: var(--bg-dark); padding: 15px 0; border-bottom: 3px solid var(--orange); position: sticky; top: 0; z-index: 1000; }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 24px; font-weight: 800; text-decoration: none; color: var(--white); }
.logo-dot { color: var(--orange); }

.nav-menu { display: flex; list-style: none; align-items: center; }
.nav-menu li { margin-left: 25px; }
.nav-menu a { color: var(--white); text-decoration: none; font-weight: 600; font-size: 14px; transition: 0.3s; }
.nav-menu a:hover { color: var(--light-blue); }

.btn-header { background: var(--bg-med); padding: 10px 20px; border-radius: 5px; border: 1px solid var(--light-blue); }

/* --- HERO SECTION --- */
.hero { 
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-med) 100%); 
    padding: 100px 0; 
    color: var(--white); 
    text-align: center;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; margin-bottom: 20px; }
.highlight { color: var(--yellow); text-shadow: 2px 2px 0px rgba(0,0,0,0.2); }
.hero p { font-size: clamp(16px, 2vw, 20px); margin-bottom: 40px; opacity: 0.9; }

/* --- CTA MEGA BUTTON --- */
.btn-mega {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 22px 50px;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 800;
    text-decoration: none;
    border-radius: 60px;
    box-shadow: 0 10px 30px rgba(255,140,0, 0.4);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-mega:hover { transform: scale(1.05); background: #e67e00; box-shadow: 0 15px 40px rgba(255,140,0, 0.6); }

.trust-badges { margin-top: 30px; display: flex; justify-content: center; gap: 20px; font-size: 13px; font-weight: 600; color: var(--light-blue); }

/* --- INFO CARDS --- */
.quick-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: -40px; }
.info-card { background: var(--white); padding: 40px; border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.05); text-align: center; }
.card-icon { font-size: 50px; margin-bottom: 20px; }
.info-card h3 { color: var(--bg-dark); margin-bottom: 15px; }

/* --- SEO CONTENT --- */
.seo-text { padding: 80px 0; text-align: center; max-width: 900px; }
.seo-text h2 { color: var(--bg-dark); font-size: 28px; margin-bottom: 25px; }

/* --- FOOTER --- */
.main-footer { 
	/*background: #0a0a0a; */
	background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-med) 100%); 
	color: #888; 
	padding: 60px 0 30px; 
	margin-top: 50px; 
}
.footer-logo { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 15px; }
.footer-logo span { color: var(--orange); }
.footer-bottom { border-top: 1px solid #222; margin-top: 40px; padding-top: 20px; font-size: 12px; }

/* --- RESPONSIVE MOBILE FIXES --- */
@media (max-width: 768px) {
    .nav-wrapper { flex-direction: column; gap: 15px; }
    .nav-menu { flex-wrap: wrap; justify-content: center; gap: 10px; }
    .nav-menu li { margin: 0; }
    .hero { padding: 60px 0 80px; border-radius: 0 0 30px 30px; }
    .btn-mega { width: 100%; padding: 18px 20px; }
    .trust-badges { flex-direction: column; gap: 10px; }
}