/* ==========================================================================
   1. RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}


/* ==========================================================================
   2. FIXED NAVIGATION HEADER (ALL PAGES)
   ========================================================================== */
.main-header {
    background-color: #12161a;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Securely pushes logo to left, menu to right */
    align-items: center;
    padding: 0 30px; /* Gives padding so text doesn't cut off on screen edges */
}

/* Image Logo Area Elements */
.logo-area {
    display: flex;
    align-items: center;
}

.logo-link {
    display: block;
    line-height: 0;
}

.brand-logo-img {
    height: 40px; 
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Navigation Menu Links */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #b0b5b9;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    white-space: nowrap; /* Prevents long text like CONTACT US from breaking into two lines */
}

.nav-menu a:hover, 
.nav-menu a.active {
    color: #e57c35; 
}
/* ==========================================================================
   3. INDEX / HOME PAGE HERO SECTION
   ========================================================================== */
.hero-section {
    height: 100vh;
    position: relative;
    background: url('images/homepage.avif') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding-left: 8%;
    margin-top: 0;
}

/* Dark gradient overlay to secure text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-title {
    font-size: 36px;
    color: #cca462; /* Corporate gold/tan accent */
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 20px;
    color: #ffffff; /* Clean white contrast */
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
}


/* ==========================================================================
   4. ABOUT US PAGE COMPONENTS
   ========================================================================== */
.about-banner {
    margin-top: 60px; /* Offset to clear the fixed navbar */
    height: 260px;
    position: relative;
    background: url('https://images.unsplash.com/photo-1533090161767-e6ffed986c88?q=80&w=1200') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.banner-content {
    position: relative;
    z-index: 5;
}

.banner-content h1 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.3;
}

.about-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 25px;
    background-color: #ffffff;
}

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

.section-accent-title {
    color: #cca462;
    font-size: 24px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-accent-title.centralized {
    text-align: center;
    margin-bottom: 35px;
    font-size: 28px;
}

.footprint-icon {
    font-size: 20px;
    vertical-align: middle;
}

.narrative-text {
    color: #666666;
    font-size: 13.5px;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

/* Three Pillar Framework */
.pillars-header {
    display: flex;
    justify-content: space-between;
    max-width: 950px;
    margin: 0 auto 15px auto;
    padding: 0 10px;
}

.pillars-header h3 {
    color: #444444;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 600;
}

.pillars-header h3:first-child { width: 66%; }
.pillars-header h3:last-child {
    width: 33%;
    text-align: left;
    padding-left: 15px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 950px;
    margin: 0 auto 50px auto;
}

.pillar-card h4 {
    color: #cca462;
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    line-height: 1.4;
    height: 36px; /* Symmetrical alignment check */
}

.pillar-card p {
    color: #777777;
    font-size: 12.5px;
    line-height: 1.6;
    text-align: justify;
}

.section-divider {
    border: 0;
    height: 1px;
    background-color: #eaeaea;
    margin: 40px auto;
    max-width: 950px;
}

/* Team Profile Elements */
.team-section {
    padding-bottom: 60px;
}

.group-photo-container {
    max-width: 750px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.team-group-img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border-radius: 2px;
}

.photo-caption, .exec-caption {
    color: #555555;
    font-size: 12px;
    margin-top: 12px;
    letter-spacing: 0.5px;
}

.executives-grid {
    display: flex;
    justify-content: center;
    gap: 120px;
    max-width: 800px;
    margin: 0 auto;
}

.exec-card {
    text-align: center;
    width: 220px;
}

.exec-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #eaeaea;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 2px;
}

.exec-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ==========================================================================
   5. SERVICES PAGE COMPONENTS
   ========================================================================== */
.services-banner {
    margin-top: 60px;
    height: 260px;
    position: relative;
    background: url('https://images.unsplash.com/photo-1533090161767-e6ffed986c88?q=80&w=1200') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.services-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.services-banner .banner-content {
    position: relative;
    z-index: 5;
}

.services-banner h1 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 2px;
}

.services-container {
    max-width: 1150px;
    margin: 60px auto;
    padding: 0 30px;
    background-color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-title {
    color: #cca462; 
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.8px;
    line-height: 1.4;
    margin-bottom: 20px;
    height: 42px;
}

.service-image-box {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #f0f0f0;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-description {
    color: #666666;
    font-size: 13px;
    line-height: 1.7;
    text-align: justify;
}


/* ==========================================================================
   6. NEWSLETTER PAGE COMPONENTS
   ========================================================================== */
.newsletter-banner {
    margin-top: 60px;
    height: 260px;
    position: relative;
    background: url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?q=80&w=1200') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.newsletter-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.newsletter-banner .banner-content {
    position: relative;
    z-index: 5;
}

.newsletter-banner h1 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 3px;
}

.newsletter-container {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 100px;
    text-align: center;
}

.newsletter-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.newsletter-heading {
    color: #2c3033;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.newsletter-heading.uppercase {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-subtext {
    color: #7a828a;
    font-size: 13.5px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.newsletter-subtext.italicized {
    font-style: italic;
}

.pulse-icon {
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 2px;
}


/* ==========================================================================
   7. CAREERS PAGE COMPONENTS
   ========================================================================== */
.careers-hero {
    height: 100vh;
    margin-top: 0;
    position: relative;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=1920') no-repeat center center/cover;
    display: flex;
    align-items: center;
}

.careers-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.careers-content-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end; /* Pushes content block card to the right side */
}

.careers-text-box {
    max-width: 550px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.careers-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.highlight-yellow {
    color: #cca462;
}

.careers-description {
    color: #ffffff;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.cta-button {
    display: inline-block;
    background-color: #cca462;
    color: #12161a;
    text-decoration: none;
    padding: 10px 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    background-color: #bfa054;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}


/* ==========================================================================
   8. CONTACT US PAGE COMPONENTS
   ========================================================================== */
.contact-hero {
    height: 100vh;
    margin-top: 0;
    position: relative;
    background: url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?q=80&w=1920') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.contact-content-grid {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 60px 30px 0 30px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.contact-side-info {
    color: #ffffff;
}

.contact-side-info.left-side h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #cca462;
}

.contact-side-info.left-side p {
    font-size: 12.5px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 25px;
}

.map-embed-frame {
    width: 100%;
    height: 160px;
    background-color: #eaeaea;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Center Interactive Contact Form Card */
.contact-form-wrapper {
    background-color: rgba(229, 213, 186, 0.85); /* Semi-transparent warm gold background */
    padding: 30px 25px;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.contact-form-wrapper h3 {
    color: #12161a;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.interactive-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 13px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.9);
    color: #333333;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #12161a;
    background-color: #ffffff;
}

.form-submit-btn {
    background-color: #12161a;
    color: #ffffff;
    border: none;
    padding: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 5px;
}

.form-submit-btn:hover {
    background-color: #242b33;
}

.contact-side-info.right-side {
    text-align: right;
}

.callout-title {
    color: #cca462;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.callout-subtext {
    font-size: 12.5px;
    color: #e0e0e0;
    line-height: 1.6;
}


/* ==========================================================================
   9. GLOBAL RESPONSIVE MEDIA BREAKPOINTS
   ========================================================================== */

/* Tablet Viewports & Below */
@media (max-width: 992px) {
    .contact-hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px 0;
    }
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-side-info.right-side {
        text-align: left;
    }
    .contact-form-wrapper {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .service-title {
        height: auto;
        margin-bottom: 12px;
    }
}

/* Mobile Handset Viewports */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    .nav-menu ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .brand-logo-img {
        height: 35px; /* Safely balances logo scaling down on mobile screens */
    }
    .hero-section {
        padding-left: 20px;
        justify-content: center;
        text-align: center;
    }
    .pillars-header {
        display: none;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .pillar-card h4 {
        height: auto;
    }
    .executives-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .newsletter-container {
        margin: 50px auto;
        gap: 70px;
    }
    .newsletter-heading {
        font-size: 22px;
    }
    .newsletter-subtext {
        font-size: 12.5px;
    }
    .careers-hero {
        padding-top: 80px;
        height: auto;
        min-height: 100vh;
    }
    .careers-content-wrapper {
        justify-content: center;
        padding: 40px 20px;
    }
    .careers-text-box {
        text-align: center;
        align-items: center;
    }
    .careers-title {
        font-size: 18px;
    }
    .careers-description {
        font-size: 12.5px;
    }
}
