/* Palette: Royal Blue, Light Grey, White, Dark Text */
:root {
    --blue: #00529B;
    --blue-dark: #003366;
    --blue-light: #E1EFFE;
    --white: #FFFFFF;
    --grey: #F4F6F8;
    --text: #1F2937;
    --text-light: #6B7280;
    
    --font-main: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--white);
    color: var(--text);
    font-family: var(--font-main);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; border-radius: 8px; }

/* Navbar */
.navbar { padding: 20px 0; background: var(--white); border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-weight: 800; font-size: 1.5rem; color: var(--text); letter-spacing: -0.5px; }
.blue-text { color: var(--blue); }

.nav-links a { margin-left: 30px; font-weight: 500; font-size: 0.95rem; color: var(--text-light); }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }

.btn-primary-sm { background: var(--blue); color: var(--white); padding: 10px 20px; font-weight: 600; font-size: 0.85rem; border-radius: 4px; margin-left: 20px; }
.btn-primary-sm:hover { background: var(--blue-dark); }

.burger-menu { display: none; background: transparent; border: none; font-size: 1.5rem; cursor: pointer; margin-left: 15px; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100%; background: var(--blue-dark); z-index: 2000; padding: 50px; transition: 0.3s; }
.mobile-menu.active { right: 0; }
.close-btn { background: none; border: none; font-size: 1.5rem; color: var(--white); margin-bottom: 30px; cursor: pointer; }
.mobile-menu a { display: block; color: var(--white); font-weight: 600; font-size: 1.2rem; margin-bottom: 20px; }

@media (max-width: 900px) {
    .nav-links, .btn-primary-sm { display: none; }
    .burger-menu { display: block; }
}

/* Hero */
.hero { padding: 80px 0; background: var(--grey); }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }

.label { font-size: 0.8rem; font-weight: 700; color: var(--blue); letter-spacing: 1px; display: block; margin-bottom: 15px; }
.hero h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 25px; color: var(--text); font-weight: 800; }
.highlight { color: var(--blue); }
.hero p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 40px; max-width: 550px; }

.cta-row { display: flex; gap: 15px; }
.btn-primary { background: var(--blue); color: var(--white); padding: 15px 35px; font-weight: 600; border-radius: 4px; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--blue); border: 2px solid var(--blue); padding: 13px 35px; font-weight: 600; border-radius: 4px; }
.btn-secondary:hover { background: var(--blue-light); }

.image-wrapper { position: relative; }
.image-wrapper img { box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.float-card { position: absolute; bottom: -20px; left: -20px; background: var(--white); padding: 20px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-left: 4px solid var(--blue); }
.float-card strong { display: block; font-size: 2rem; color: var(--blue); line-height: 1; }
.float-card span { font-size: 0.9rem; color: var(--text-light); }

/* Services */
.section-head h2 { font-size: 2.5rem; font-weight: 700; color: var(--text); margin-bottom: 15px; }
.blue-line { width: 60px; height: 4px; background: var(--blue); margin-bottom: 20px; border-radius: 2px; }
.blue-line.center { margin: 0 auto 20px; }
.center { text-align: center; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.service-card { background: var(--white); padding: 40px 30px; border: 1px solid #eee; border-radius: 8px; transition: 0.3s; }
.service-card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 82, 155, 0.05); }
.icon-box { font-size: 2.5rem; margin-bottom: 20px; }
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--blue-dark); }
.service-card p { font-size: 0.95rem; color: var(--text-light); }

/* Trust Banner */
.trust-banner { background: var(--blue-dark); color: var(--white); padding: 40px 0; text-align: center; }
.trust-banner p { font-size: 0.8rem; letter-spacing: 2px; opacity: 0.7; margin-bottom: 20px; font-weight: 600; }
.logos-grid { display: flex; justify-content: center; gap: 60px; font-weight: 700; font-size: 1.2rem; color: var(--white); opacity: 0.8; }

/* Method Page */
.method-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: flex-start; }
.method-text h1 { font-size: 3rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.steps { margin-top: 40px; }
.step-item { display: flex; gap: 20px; margin-bottom: 30px; }
.step-num { font-size: 2rem; font-weight: 800; color: var(--blue-light); -webkit-text-stroke: 1px var(--blue); line-height: 1; }
.step-content h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 5px; color: var(--blue-dark); }
.step-content p { color: var(--text-light); font-size: 0.95rem; }

/* Testimonials Page */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card { background: var(--grey); padding: 30px; border-radius: 8px; position: relative; }
.quote-icon { font-size: 4rem; color: var(--blue); opacity: 0.1; position: absolute; top: 10px; left: 20px; font-family: serif; }
.review-text { font-style: italic; color: var(--text); margin-bottom: 20px; position: relative; z-index: 1; }
.reviewer strong { display: block; color: var(--blue-dark); font-size: 0.95rem; }
.reviewer span { font-size: 0.85rem; color: var(--text-light); }

/* Contact Page */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; background: var(--white); border: 1px solid #eee; padding: 60px; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.03); }
.contact-info h2 { font-size: 2.2rem; margin-bottom: 20px; color: var(--blue-dark); font-weight: 800; line-height: 1.1; }
.info-blocks { margin-top: 40px; display: grid; gap: 25px; }
.ib strong { display: block; color: var(--blue); font-size: 0.9rem; margin-bottom: 5px; }
.ib p { font-size: 1rem; color: var(--text); }

.corp-form .form-grp { margin-bottom: 20px; }
.corp-form label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 5px; color: var(--text); }
.corp-form input, .corp-form select, .corp-form textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-family: var(--font-main); background: var(--grey); transition: 0.3s; }
.corp-form input:focus, .corp-form select:focus, .corp-form textarea:focus { border-color: var(--blue); background: var(--white); outline: none; }
.full { width: 100%; }

/* Legal */
.legal-text { max-width: 800px; margin: 0 auto; }
.legal-text h1 { font-weight: 800; color: var(--blue-dark); margin-bottom: 20px; }

/* Footer */
.footer { border-top: 1px solid #eee; padding: 60px 0 20px; margin-top: 80px; background: var(--white); }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.f-brand h4 { font-weight: 800; color: var(--blue-dark); margin-bottom: 5px; }
.f-links a { margin-left: 20px; color: var(--text-light); font-size: 0.9rem; }
.f-links a:hover { color: var(--blue); }
.copyright { text-align: center; font-size: 0.8rem; color: #999; }

@media (max-width: 900px) {
    .hero-grid, .grid-3, .method-layout, .reviews-grid, .contact-layout { grid-template-columns: 1fr; }
    .hero-content { text-align: center; }
    .hero-image { order: -1; margin-bottom: 30px; }
    .cta-row { justify-content: center; }
    .logos-grid { flex-direction: column; gap: 15px; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}