/* --- RESET & VARIABLES --- */
:root {
    --primary: #0f3c4c;
    --secondary: #d4a373;
    --light: #f7f9fb;
    --dark: #2c3e50;
    --white: #ffffff;
    --text-gray: #555;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); line-height: 1.6; color: var(--dark); background-color: var(--white); }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; color: var(--primary); }
h3 { font-size: 1.5rem; color: var(--primary); }
h4 { font-size: 1.2rem; color: var(--primary); }
p { margin-bottom: 1rem; color: var(--text-gray); }

/* --- BUTTONS --- */
.btn { display: inline-block; padding: 12px 30px; border-radius: 5px; font-weight: 600; letter-spacing: 0.5px; cursor: pointer; border: none; }
.btn-primary { background-color: var(--secondary); color: var(--white); }
.btn-primary:hover { background-color: #c09060; }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); padding: 10px 25px; }
.btn-outline:hover { background-color: var(--primary); color: var(--white); }

/* --- HEADER & NAV (UPDATED FOR IMAGE LOGO) --- */
header { background-color: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }

.nav-container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0.5rem 1.5rem; /* Reduced padding slightly to accommodate tall logo */
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px; /* Adjust this number if logo is too big/small */
    width: auto;
    display: block;
}

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--dark); }
.nav-links a:hover { color: var(--secondary); }
.mobile-menu-btn { display: none; font-size: 1.5rem; cursor: pointer; color: var(--primary); }

/* --- HERO SECTION --- */
.hero { background-color: var(--primary); color: var(--white); padding: 6rem 1.5rem; text-align: center; }
.hero-content { max-width: 800px; margin: 0 auto; }
.hero h1 { font-size: 3rem; margin-bottom: 1.5rem; }
.hero p { color: #e0e0e0; font-size: 1.2rem; margin-bottom: 2rem; }

/* --- ABOUT SECTION --- */
.about { padding: 5rem 1.5rem; background-color: var(--white); text-align: center; }
.about-container { max-width: 800px; margin: 0 auto; }
.bio-image-wrapper { margin-bottom: 2rem; }
.bio-img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; border: 4px solid var(--secondary); }

/* --- SERVICES SECTION --- */
.services { padding: 5rem 1.5rem; background-color: var(--light); }
.section-header { text-align: center; max-width: 800px; margin: 0 auto 3rem auto; }
.service-group-header { text-align: center; margin: 3rem 0 1.5rem 0; position: relative; padding-bottom: 1rem; }
.service-group-header::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background-color: var(--secondary); }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto 2rem auto; }
.service-card { background: var(--white); padding: 2rem; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s; border-top: 4px solid var(--secondary); display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-5px); }
.service-card h4 { margin-bottom: 1rem; color: var(--primary); min-height: 50px; display: flex; align-items: center; }
.service-card p { font-size: 0.95rem; flex-grow: 1; }
.service-card .btn-outline { margin-top: auto; text-align: center; display: block; width: fit-content; }

/* --- PROCESS / WHO WE SERVE --- */
.process { padding: 5rem 1.5rem; max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 3rem; }
.process-text { flex: 1; }
.process-text h2 { color: var(--primary); }
.process-visual { flex: 1; height: 400px; background-color: #e0e0e0; display: flex; align-items: center; justify-content: center; border-radius: 8px; overflow: hidden; }
.feature-list li { margin-bottom: 0.5rem; position: relative; padding-left: 1.5rem; color: var(--text-gray); }
.feature-list li::before { content: "✔"; color: var(--secondary); position: absolute; left: 0; font-weight: bold; }

/* --- CONTACT SECTION --- */
.contact { padding: 5rem 1.5rem; background-color: var(--primary); color: var(--white); text-align: center; }
.contact h2 { color: var(--white); }
.contact p { color: #e0e0e0; }
.contact-form { max-width: 600px; margin: 3rem auto 0 auto; background: var(--white); padding: 2.5rem; border-radius: 8px; text-align: left; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; color: var(--dark); margin-bottom: 0.5rem; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; font-family: inherit; }

/* --- FOOTER --- */
footer { background-color: var(--dark); color: #aaa; padding: 2rem 1.5rem; text-align: center; font-size: 0.9rem; }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); padding: 1.5rem; box-shadow: 0 4px 6px rgba(0,0,0,0.1); align-items: flex-start; }
    .nav-links.active { display: flex; }
    .nav-links li { width: 100%; padding: 10px 0; border-bottom: 1px solid #eee; }
    .nav-links li:last-child { border-bottom: none; padding-top: 20px; }
    .mobile-menu-btn { display: block; }
    .hero { padding: 4rem 1.5rem; }
    .hero h1 { font-size: 2.2rem; }
    .process { flex-direction: column; padding: 3rem 1.5rem; }
    .process-visual { width: 100%; height: 250px; order: -1; margin-bottom: 2rem; }
    .service-card h4 { min-height: auto; }
    .contact-form { padding: 1.5rem; }
}
