:root {
    --primary-green: #06230b;     /* Matches the exact deep outer ring color of your logo */
    --secondary-green: #11421a;   /* Rich green used for interactive states */
    --gold: #e0ca65;              /* Exact gold extracted from logo */
    --dark-gold: #b39a3b;         /* Darkened gold variant */
    --light-gold: #f5eba6;        /* Bright accent gold */
    --dark-text: #222222;
    --light-bg: #f9f9f9;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ==========================================
   GLOBAL LINK STYLES (White base -> Gold Hover)
   ========================================== */
a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold);
}

/* Header & Navigation Styling */
header {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 0.8rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Brand Identity Layout */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1.2rem;
}

.header-logo-img {
    height: 80px;
    width: auto;
    display: block;
}

.header-logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1;
}

.logo-link:hover .logo-text {
    color: var(--light-gold);
}

/* Navigation Links */
nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

nav a {
    font-weight: 500;
}

nav a:hover, nav a.active {
    color: var(--gold);
}

/* Hero Content Block */
.hero {
    background-color: var(--white);
    color: var(--dark-text);
    padding: 4rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #444444;
}

.hero .tagline {
    font-style: italic;
    font-size: 1.4rem;
    color: var(--dark-gold);
    margin-top: 1.5rem;
    font-weight: bold;
}

.badge-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.badge {
    background-color: var(--primary-green);
    color: var(--white);
    border: 1px solid var(--primary-green);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
}

/* Container & Grid Structure */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    flex: 1;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 2.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 10px auto 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-top: 4px solid var(--gold);
}

.feature-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* PAHAR Method Presentation Layout */
.pahar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
    background: #f0f5f1;
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.pahar-list {
    list-style: none;
}

.pahar-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.pahar-list li::before {
    content: "◆";
    color: var(--gold);
    position: absolute;
    left: 0;
}

.pahar-accent-box {
    border: 2px dashed var(--gold);
    padding: 2rem;
    border-radius: 8px;
    background-color: var(--primary-green);
    color: var(--white);
    text-align: left;
}

/* Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(6, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 45px;
    height: 45px;
    background-color: var(--gold);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0 auto 1rem;
}

.process-step h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

/* Executive Leadership Panel */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid var(--primary-green);
}

.team-card h3 {
    color: var(--primary-green);
}

.team-card .title {
    color: var(--dark-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Contact Integration Layout */
.contact-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-details a {
    color: var(--secondary-green);
    text-decoration: none;
    font-weight: bold;
}

.contact-details a:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* Call To Action Buttons */
.cta-btn {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 2rem;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    background-color: var(--secondary-green);
}

/* Gold-Bordered CTA Button: White Text -> Gold Hover Text */
.cta-btn-gold-text {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    padding: 0.9rem 2rem;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 4px;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-btn-gold-text:hover {
    background-color: var(--secondary-green);
    color: var(--gold);
    border-color: var(--gold);
}

@media (max-width: 768px) {
    .cta-btn-gold-text {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }
}

/* Footer Styling */
footer {
    background-color: var(--primary-green);
    color: rgba(255, 255, 255, 0.8);
    padding: 1.5rem 2rem;
    font-size: 0.85rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    display: block;
    filter: brightness(0.95);
}

.footer-logo-text {
    text-align: left;
}

.footer-logo-title {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.footer-copyright {
    text-align: right;
}

/* Responsive Media Queries */
@media (max-width: 950px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }
    nav {
        justify-content: center;
        width: 100%;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .process-timeline {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }
    .process-step {
        flex: 0 0 200px;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-branding {
        flex-direction: column;
    }
    .footer-logo-text, .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.3rem;
    }
    .header-logo-img {
        height: 60px;
    }
    .hero h1 {
        font-size: 1.6rem;
    }
}

/* ==========================================
   LEGAL / POLICY PAGE STYLING (e.g. privacy.html)
   ========================================== */
.policy-main {
    background-color: var(--light-bg);
    padding: 60px 20px;
}

.policy-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-green);
    text-align: left;
}

.policy-card h1 {
    color: var(--primary-green);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.policy-card .effective-date {
    color: var(--dark-gold);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 25px;
}

.policy-card hr {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 25px 0 35px 0;
}

.policy-card p {
    margin-bottom: 20px;
    color: var(--dark-text);
    font-size: 1rem;
    line-height: 1.7;
}

.policy-card h2 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-top: 35px;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 5px;
}

.policy-card ul {
    margin-bottom: 20px;
    padding-left: 25px;
    text-align: left;
}

.policy-card li {
    margin-bottom: 10px;
    color: var(--dark-text);
    line-height: 1.7;
}

/* Shared link style for legal/confirmation content: primary green -> gold hover */
.contact-link {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.contact-link:hover {
    color: var(--gold);
    text-decoration: underline;
}

.contact-card {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 6px;
    border-left: 4px solid var(--gold);
    margin-top: 20px;
}

/* ==========================================
   CONFIRMATION / THANK YOU PAGE STYLING
   ========================================== */
.confirmation-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    color: var(--dark-text);
}

.confirmation-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-green);
}

.confirmation-card h2 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-top: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.confirmation-intro {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.6;
}

.confirmation-card hr {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 30px 0;
}

.confirmation-card h3 {
    color: var(--dark-gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.next-steps-box {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 6px;
    border-left: 4px solid var(--gold);
    margin-bottom: 30px;
    text-align: left;
}

.next-steps-box h4 {
    margin-top: 0;
    color: var(--primary-green);
    font-size: 1.1rem;
    text-align: left;
}

.next-steps-box ol {
    margin-bottom: 0;
    padding-left: 20px;
    line-height: 1.8;
}

.next-steps-box li {
    text-align: left;
}

.value-prop-heading {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.value-prop-text {
    line-height: 1.7;
    color: #444444;
    margin-bottom: 25px;
}

.confirmation-note {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 30px;
}

.signature-card {
    border-top: 2px solid var(--primary-green);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    align-items: flex-start;
}

.signature-card .sig-name {
    color: var(--primary-green);
    font-size: 1.1rem;
    font-weight: bold;
}

.signature-card .sig-title {
    color: var(--dark-gold);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.signature-card .sig-contact {
    font-size: 0.9rem;
    line-height: 1.6;
}

.signature-card .sig-footer-note {
    font-size: 0.85rem;
    color: #777777;
    margin-top: 15px;
    font-style: italic;
}
