/* --- RESET & VARIABLES --- */
:root {
    --primary: #005f73; /* Professional Teal */
    --secondary: #0a9396; /* Lighter Teal */
    --accent: #ee9b00; /* Energetic Coral/Gold */
    --dark: #1b263b;
    --light: #f8f9fa;
    --white: #ffffff;
    --grey: #6c757d;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden; /* Prevents side scrolling */
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #ca8200;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 10px;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

.section-padding { padding: 80px 0; }

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--grey);
}

.get-a-quote-div {
    margin-top:15px
}

.get-a-quote-link {
    color: var(--primary);
    font-weight:bold;
}

/* --- HEADER & NAVIGATION --- */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
    z-index: 1001; /* Keeps logo above mobile menu */
}

.logo span { color: var(--accent); }

.nav-links { display: flex; gap: 30px; align-items: center; }

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark);
    transition: var(--transition);
}

.nav-links a:hover { color: var(--accent); }

.cta-header {
    padding: 8px 20px;
    background: var(--primary);
    color: var(--white) !important;
    border-radius: 4px;
}

.cta-header:hover { background: var(--secondary); }

/* --- HAMBURGER MENU STYLES --- */
.hamburger {
    display: none; /* Hidden on desktop */
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--dark);
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(rgba(0, 95, 115, 0.9), rgba(0, 95, 115, 0.7)), url('https://images.unsplash.com/photo-1559027615-cd4628902d4a?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* --- ABOUT SECTION --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img { position: relative; }
.about-img img { border-radius: 10px; box-shadow: var(--shadow); }
.about-img::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px;
    width: 100px; height: 100px;
    background: var(--accent);
    z-index: -1;
    border-radius: 10px;
}

/* --- SERVICES CARDS --- */
.services { background-color: var(--light); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}
.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--accent);
}
.icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }
.service-card h3 { margin-bottom: 15px; color: var(--dark); }

/* --- IMPACT STATS --- */
.impact { background: var(--primary); color: var(--white); text-align: center; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-item h3 { font-size: 3rem; font-weight: 700; color: var(--accent); margin-bottom: 10px; }

/* --- CONTACT --- */
.contact-container {
    display: flex;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}
.contact-info { background: var(--primary); color: var(--white); padding: 50px; flex: 1; }
.contact-form { padding: 50px; flex: 1.5; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group textarea {
    width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; background: var(--light);
}

/* --- FOOTER --- */
footer { background: var(--dark); color: #aaa; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: var(--white); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a:hover { color: var(--accent); }
.copyright { text-align: center; border-top: 1px solid #333; padding-top: 20px; }

/* --- ABOUT PAGE --- */
/* Page Specific Header */
.page-header {
    background: linear-gradient(rgba(0, 95, 115, 0.9), rgba(0, 95, 115, 0.8)), url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    padding: 160px 0 80px; /* Top padding accounts for fixed nav */
    text-align: center;
    color: var(--white);
    margin-top: 0; /* Reset */
}

/* Mission Vision Values Grid */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: -50px; /* Overlap effect */
    position: relative;
    z-index: 10;
}

.mvv-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 5px solid var(--accent);
}

.mvv-card h3 { color: var(--primary); margin-bottom: 15px; font-size: 1.5rem; }

/* The Story Section */
.story-section {
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-content { flex: 1; }
.story-image { flex: 1; position: relative; }
.story-image img { border-radius: 10px; box-shadow: var(--shadow); }

.story-highlight {
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    font-style: italic;
    color: var(--grey);
    margin: 20px 0;
}

/* The 360 Approach (Methodology) */
.approach-section { background-color: var(--light); text-align: center; }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.process-step {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
    position: relative;
}

.step-number {
    background: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.team-card:hover { transform: translateY(-10px); }

.team-img {
    height: 250px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-info { padding: 25px; }
.team-info h4 { color: var(--primary); margin-bottom: 5px; }
.team-info span { color: var(--accent); font-size: 0.9rem; font-weight: 600; display: block; margin-bottom: 10px;}
.social-links a { color: var(--grey); margin: 0 5px; }
.social-links a:hover { color: var(--primary); }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .hamburger {
        display: block; /* Show hamburger icon */
    }
    
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .nav-links {
        position: fixed;
        left: -100%;
        top: 80px; /* Below header */
        gap: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding: 20px 0;
    }

    .nav-links.active {
        left: 0; /* Slide in */
    }

    .nav-links li {
        margin: 16px 0;
    }

    .cta-header {
        display: inline-block; /* Fix button layout on mobile */
    }

    /* Adjust Hero Text for Mobile */
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1rem; padding: 0 10px; }
    
    /* Stack grids */
    .about-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .contact-container { flex-direction: column; }

    /** --- ABOUT PAGE --- */
    .story-section { flex-direction: column; }
    .process-grid { grid-template-columns: 1fr; }
    .mvv-grid { margin-top: 0; }
}