/* ===== BASE STYLES ===== */
:root {
    --primary: #0a2342;     /* Deep Navy */
    --secondary: #2a623d;   /* Forest Green */
    --accent: #c99c33;      /* Gold */
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #333; background-color: var(--white); padding-top: 80px; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 5rem 0; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.3; }
h1 { font-size: 3rem; margin-bottom: 1rem; }
h2 { font-size: 2.2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; color: var(--gray); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { max-width: 700px; margin: 0 auto; }

/* ===== HEADER & NAV ===== */
.main-header { background-color: var(--white); box-shadow: var(--shadow); position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }
.header-content { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
.logo { display: flex; align-items: center; text-decoration: none; color: var(--primary); }
.logo-icon { background-color: var(--primary); color: var(--white); width: 50px; height: 50px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.2rem; margin-right: 12px; }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; }
.logo-sub { font-size: 0.85rem; color: var(--secondary); font-weight: 500; }
.main-nav ul { display: flex; list-style: none; }
.main-nav li { margin-left: 2rem; }
.main-nav a { text-decoration: none; color: var(--primary); font-weight: 500; transition: color 0.3s; }
.main-nav a:hover, .main-nav a.active { color: var(--secondary); }
.nav-button { background-color: var(--secondary); color: var(--white) !important; padding: 0.5rem 1.5rem; border-radius: 4px; }
.nav-button:hover { background-color: #1e4a2c; }

/* ===== BUTTONS ===== */
.btn { display: inline-block; padding: 0.8rem 1.8rem; border-radius: 4px; text-decoration: none; font-weight: 600; transition: all 0.3s; border: none; cursor: pointer; font-size: 1rem; }
.btn-primary { background-color: var(--primary); color: var(--white); }
.btn-primary:hover { background-color: #083058; transform: translateY(-2px); }
.btn-secondary { background-color: var(--white); color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary:hover { background-color: var(--primary); color: var(--white); }
.btn-large { padding: 1rem 2.5rem; font-size: 1.1rem; margin: 0 10px; }

/* ===== HERO ===== */
.hero { background: linear-gradient(rgba(10, 35, 66, 0.9), rgba(10, 35, 66, 0.8)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3') center/cover; color: var(--white); padding: 6rem 0; text-align: center; }
.hero h1 { color: var(--white); }
.hero-subtitle { font-size: 1.3rem; max-width: 700px; margin: 0 auto 2rem; color: rgba(255, 255, 255, 0.9); }
.hero-cta { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem; }

/* ===== OVERVIEW/SERVICES ===== */
.overview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.overview-card { text-align: center; padding: 2rem; background-color: var(--white); border-radius: 8px; box-shadow: var(--shadow); }
.overview-icon { font-size: 2.5rem; color: var(--secondary); margin-bottom: 1rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { background-color: var(--light); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.testimonial-card { background-color: var(--white); border-radius: 8px; padding: 2rem; box-shadow: var(--shadow); }
.stars { color: var(--accent); margin-bottom: 1rem; }
.testimonial-text { font-style: italic; margin-bottom: 1.5rem; }
.client-info { border-top: 1px solid #eee; padding-top: 1rem; display: flex; flex-direction: column; }
.client-info span { color: var(--gray); font-size: 0.9rem; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 5rem 0; }
.cta-box { background-color: var(--primary); color: var(--white); padding: 4rem; border-radius: 12px; text-align: center; }
.cta-box h2, .cta-box p { color: var(--white); }
.cta-box p { margin-bottom: 2rem; }

/* ===== FOOTER ===== */
.main-footer { background-color: var(--primary); color: var(--white); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.footer-col h4 { color: var(--white); margin-bottom: 1.5rem; font-size: 1.2rem; }
.footer-col p, .footer-col a, .footer-col li { color: rgba(255, 255, 255, 0.8); margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--accent); }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.social-icons { display: flex; gap: 1rem; }
.social-icons a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background-color: rgba(255, 255, 255, 0.1); border-radius: 50%; transition: background-color 0.3s; }
.social-icons a:hover { background-color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 1.5rem; text-align: center; font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); }
.firm-name { font-size: 0.85rem; font-style: italic; margin-top: 1rem; color: rgba(255, 255, 255, 0.6); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 30px; left: 30px; background-color: #25D366; color: white; padding: 12px 20px; border-radius: 50px; text-decoration: none; font-weight: 600; display: flex; align-items: center; gap: 8px; box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3); z-index: 999; transition: all 0.3s; }
.whatsapp-float:hover { background-color: #128C7E; transform: translateY(-3px); }

/* ===== PROCESS PAGE SPECIFIC ===== */
.process-hero { background-color: var(--primary); color: white; padding: 4rem 0; text-align: center; }
.process-table { overflow-x: auto; margin: 3rem 0; }
.process-table table { width: 100%; border-collapse: collapse; background-color: white; box-shadow: var(--shadow); border-radius: 8px; overflow: hidden; }
.process-table th { background-color: var(--primary); color: white; padding: 1.2rem; text-align: left; }
.process-table td { padding: 1.2rem; border-bottom: 1px solid #eee; vertical-align: top; }
.process-table tr:nth-child(even) { background-color: #f9f9f9; }
.process-table tr:hover { background-color: #f1f1f1; }
.yes-service { color: var(--secondary); font-weight: 600; }
.no-service { color: var(--gray); font-style: italic; }

/* ===== CONTACT PAGE SPECIFIC ===== */
.contact-hero { background-color: var(--primary); color: white; padding: 4rem 0; text-align: center; }
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1000px; margin: 0 auto; }
.contact-form-container { background-color: var(--white); padding: 3rem; border-radius: 12px; box-shadow: var(--shadow); }
.contact-form h3 { color: var(--primary); margin-bottom: 2rem; text-align: center; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 1rem; margin-bottom: 1.5rem; border: 1px solid #ddd; border-radius: 6px; font-family: 'Inter', sans-serif; font-size: 1rem; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 2px rgba(42, 98, 61, 0.2); }
.contact-form button[type="submit"] { width: 100%; padding: 1rem; background-color: var(--primary); color: white; border: none; border-radius: 6px; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: background-color 0.3s; }
.contact-form button[type="submit"]:hover { background-color: #083058; }
.contact-info-sidebar { padding: 1rem; }
.contact-info-sidebar h3 { color: var(--primary); margin-bottom: 1.5rem; }
.contact-detail { display: flex; align-items: flex-start; margin-bottom: 2rem; gap: 1rem; }
.contact-detail i { color: var(--secondary); font-size: 1.2rem; margin-top: 0.2rem; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    body { padding-top: 70px; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .header-content { flex-direction: column; text-align: center; }
    .main-nav ul { flex-wrap: wrap; justify-content: center; margin-top: 1rem; }
    .main-nav li { margin: 0.5rem; }
    .hero-cta, .cta-buttons { flex-direction: column; align-items: center; }
    .btn-large { margin: 5px 0; }
    .contact-container { grid-template-columns: 1fr; gap: 2rem; }
    .contact-form-container { padding: 2rem; }
}