/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
}

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

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 180px;
}

.logo-mark {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #0D7C6F 0%, #1BA39C 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #0D7C6F;
}

.btn-nav-cta {
    background: #0D7C6F;
    color: white;
    padding: 10px 22px;
    border-radius: 999px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-nav-cta:hover {
    background: #0a5c52;
    box-shadow: 0 4px 12px rgba(13, 124, 111, 0.3);
    transform: translateY(-2px);
}

.btn-dark-mode {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-switch {
    width: 50px;
    height: 28px;
    background: #e0e0e0;
    border-radius: 14px;
    position: relative;
    transition: background 0.3s;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-circle {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-dark-mode:hover .toggle-switch {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
}

body.dark-mode .toggle-switch {
    background: #0D7C6F;
}

body.dark-mode .toggle-circle {
    left: 24px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background: linear-gradient(135deg, #0a5c52 0%, #0D7C6F 50%, #1BA39C 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.15;
    position: relative;
    padding-bottom: 16px;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
}

.hero p {
    font-size: 19px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   BUTTONS
   ======================================== */

button {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: white;
    color: #0D7C6F;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* ========================================
   TRUST SIGNALS SECTION
   ======================================== */

.trust-section {
    background: white;
    padding: 100px 0;
    text-align: center;
}

.trust-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.trust-item {
    padding-top: 24px;
    border-top: 4px solid #0D7C6F;
}

.trust-item h3 {
    font-size: 48px;
    font-weight: 800;
    color: #0D7C6F;
    margin-bottom: 8px;
    line-height: 1.1;
}

.trust-item p {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0D7C6F;
    margin-bottom: 8px;
    display: block;
}

.about {
    background: white;
    padding: 100px 0;
}

.about h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 48px;
    color: #1a1a1a;
    line-height: 1.15;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about p {
    font-size: 15px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.9;
}

.about-text p {
    max-width: 800px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.highlight {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.highlight-icon {
    width: 28px;
    height: 28px;
    background: #0D7C6F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 0;
    font-weight: 700;
}

.highlight-text {
    font-size: 14px;
    color: #555;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
    background: #fafafa;
    padding: 100px 0;
}

.services h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 48px;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.15;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

@media (min-width: 992px) {
    .services-grid .service-card:last-child {
        grid-column: 2;
    }
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(13, 124, 111, 0.12);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: white;
    border: 2px solid #0D7C6F;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #0D7C6F;
    flex-shrink: 0;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 14px;
    color: #777;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-link {
    color: #0D7C6F;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 8px;
}

/* ========================================
   VALUE BANNER SECTION
   ======================================== */

.value-banner {
    background: linear-gradient(135deg, #0a5c52 0%, #0D7C6F 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.value-banner h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.15;
}

.value-banner p {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
    opacity: 0.95;
}

/* ========================================
   TEAM SECTION
   ======================================== */

.team {
    background: white;
    padding: 100px 0;
}

.team h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 48px;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.15;
}

.team-photo {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto 48px;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-member-lead {
    grid-column: 2 / 3;
}

.team-member:not(.team-member-lead) {
    grid-row: 2;
}

.team-member {
    text-align: center;
    padding: 32px 24px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: none;
    transition: all 0.3s;
}

.team-member:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.member-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0D7C6F 0%, #1BA39C 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    font-weight: 700;
    box-shadow: 0 0 0 4px rgba(13, 124, 111, 0.15);
}

.member-avatar.member-photo {
    background: none;
    object-fit: cover;
    object-position: center 20%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.team-member h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.team-member .role {
    font-size: 13px;
    color: #0D7C6F;
    font-weight: 500;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
    background: #fafafa;
    padding: 100px 0;
}

.testimonials h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 48px;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.15;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 40px 36px 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(13, 124, 111, 0.12);
}

.testimonial-quote {
    font-size: 80px;
    line-height: 0.6;
    color: #0D7C6F;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: Georgia, serif;
    opacity: 0.8;
}

.testimonial-text {
    font-size: 15px;
    color: #555;
    line-height: 1.85;
    flex: 1;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 20px;
    border-top: 2px solid #0D7C6F;
}

.testimonial-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.testimonial-tenure {
    font-size: 13px;
    color: #0D7C6F;
    font-weight: 500;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    background: linear-gradient(135deg, #1a3a38 0%, #0D7C6F 100%);
    color: white;
    padding: 100px 0;
}

.section-eyebrow-light {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    display: block;
}

.contact-hub {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.15;
}

.contact-section p {
    font-size: 15px;
    opacity: 0.95;
    margin-bottom: 24px;
    line-height: 1.8;
}

.contact-hub-intro {
    font-size: 17px;
    max-width: 640px;
    margin: 0 auto 56px;
}

.contact-tier {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #1a1a1a;
    background: white;
    border: 1px solid rgba(13, 124, 111, 0.3);
    border-radius: 12px;
    padding: 24px 20px;
    min-width: 150px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(13, 124, 111, 0.2);
    border-color: #0D7C6F;
}

.contact-tier-primary .contact-card {
    min-width: 200px;
    padding: 32px 28px;
}

.contact-tier-secondary .contact-card {
    flex: 1 1 0;
    min-width: 0;
    word-break: break-word;
}

.contact-icon {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 14px;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
}

.contact-tier-primary .contact-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
}

.contact-tier-primary .contact-icon svg {
    width: 40px;
    height: 40px;
}

.contact-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-tier-primary .contact-label {
    font-size: 13px;
}

.contact-detail {
    font-size: 13px;
    opacity: 0.8;
}

.contact-tier-primary .contact-detail {
    font-size: 15px;
    font-weight: 500;
}

.contact-address-footer {
    margin-top: 8px;
    font-size: 13px;
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    line-height: 1.5;
}

.contact-address-pin {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.8;
}


/* ========================================
   FOOTER
   ======================================== */

footer {
    background: white;
    color: #999;
    padding: 30px 0;
    font-size: 13px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.footer-logo {
    margin-bottom: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 180px;
}

.footer-tagline {
    font-size: 14px;
    color: #888;
    margin: 0;
}

.footer-legal {
    text-align: right;
}

.footer-legal p {
    margin: 8px 0;
    line-height: 1.6;
}

/* ========================================
   DARK MODE
   ======================================== */

body.dark-mode {
    background-color: #0f1419;
    color: #e4e4e7;
}

body.dark-mode header {
    background: #1a1f26;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.dark-mode .logo {
    background: #ffffff;
}

body.dark-mode nav a {
    color: #a1a1a6;
}

body.dark-mode nav a:hover {
    color: #1BA39C;
}


body.dark-mode .btn-nav-cta {
    background: #0D7C6F;
    color: white;
}

body.dark-mode .btn-nav-cta:hover {
    background: #1BA39C;
}

body.dark-mode .hero {
    background: linear-gradient(135deg, #0a5c52 0%, #0D7C6F 50%, #1BA39C 100%);
}

body.dark-mode .trust-section {
    background: #1a1f26;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .trust-item h3 {
    color: #1BA39C;
}

body.dark-mode .trust-item p {
    color: #a1a1a6;
}

body.dark-mode .about {
    background: #0f1419;
}

body.dark-mode .about h2 {
    color: #e4e4e7;
}

body.dark-mode .about p {
    color: #a1a1a6;
}

body.dark-mode .section-eyebrow {
    color: #1BA39C;
}

body.dark-mode .highlight-icon {
    background: #0D7C6F;
}

body.dark-mode .highlight-text {
    color: #a1a1a6;
}

body.dark-mode .services {
    background: #1a1f26;
}

body.dark-mode .services h2 {
    color: #e4e4e7;
}

body.dark-mode .service-card {
    background: #252c35;
    border: 1px solid rgba(13, 124, 111, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.dark-mode .service-card:hover {
    box-shadow: 0 16px 32px rgba(13, 124, 111, 0.2);
    border-color: #0D7C6F;
}

body.dark-mode .service-card h3 {
    color: #e4e4e7;
}

body.dark-mode .service-card p {
    color: #a1a1a6;
}

body.dark-mode .service-icon {
    background: #1a1f26;
    border-color: #0D7C6F;
    color: #1BA39C;
}

body.dark-mode .service-link {
    color: #1BA39C;
}

body.dark-mode .value-banner {
    background: linear-gradient(135deg, #0a2e2a 0%, #0D7C6F 100%);
}

body.dark-mode .team {
    background: #0f1419;
}

body.dark-mode .team h2 {
    color: #e4e4e7;
}

body.dark-mode .team-member {
    background: #1a1f26;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(13, 124, 111, 0.2);
}

body.dark-mode .team-member:hover {
    box-shadow: 0 12px 24px rgba(13, 124, 111, 0.15);
    border-color: #0D7C6F;
}

body.dark-mode .team-member h3 {
    color: #e4e4e7;
}

body.dark-mode .team-member .role {
    color: #1BA39C;
}

body.dark-mode .team-member p {
    color: #a1a1a6;
}

body.dark-mode .testimonials {
    background: #1a1f26;
}

body.dark-mode .testimonials h2 {
    color: #e4e4e7;
}

body.dark-mode .testimonial-card {
    background: #252c35;
    border: 1px solid rgba(13, 124, 111, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.dark-mode .testimonial-card:hover {
    box-shadow: 0 16px 32px rgba(13, 124, 111, 0.2);
    border-color: #0D7C6F;
}

body.dark-mode .testimonial-quote {
    color: #1BA39C;
}

body.dark-mode .testimonial-text {
    color: #a1a1a6;
}

body.dark-mode .testimonial-author {
    border-top-color: #0D7C6F;
}

body.dark-mode .testimonial-name {
    color: #e4e4e7;
}

body.dark-mode .testimonial-tenure {
    color: #1BA39C;
}

body.dark-mode .contact-section {
    background: linear-gradient(135deg, #1a1f26 0%, #0D7C6F 100%);
}

body.dark-mode .contact-section h2 {
    color: white;
}

body.dark-mode .section-eyebrow-light {
    color: rgba(255, 255, 255, 0.9);
}

body.dark-mode .contact-card {
    background: #252c35;
    color: white;
}

body.dark-mode footer {
    background: #0f1419;
    color: #666;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .footer-logo {
    background: #ffffff;
}

body.dark-mode .footer-logo-img {
    height: 50px;
}

body.dark-mode .footer-tagline {
    color: #a1a1a6;
}

body.dark-mode .btn-primary {
    background: #1BA39C;
    color: white;
}

body.dark-mode .btn-primary:hover {
    background: #0D7C6F;
}

body.dark-mode .btn-secondary {
    border-color: white;
    color: white;
}

body.dark-mode .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    nav ul {
        gap: 12px;
        flex-wrap: wrap;
    }

    .logo-img {
        height: 40px;
        max-width: 140px;
    }

    .btn-nav-cta {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero h1::after {
        width: 60px;
    }

    .hero p {
        font-size: 16px;
    }

    .trust-item h3 {
        font-size: 32px;
    }

    .services h2,
    .about h2,
    .team h2,
    .testimonials h2,
    .contact-section h2,
    .value-banner h2 {
        font-size: 28px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .value-banner p {
        font-size: 15px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-tier {
        gap: 16px;
    }

    .contact-tier-primary .contact-card {
        min-width: 140px;
    }

    .contact-tier-secondary .contact-card {
        flex: 1 1 120px;
        min-width: 120px;
    }

    .contact-tier-primary .contact-icon {
        width: 68px;
        height: 68px;
    }

    .contact-tier-primary .contact-icon svg {
        width: 34px;
        height: 34px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-legal {
        text-align: center;
    }

    .member-avatar {
        width: 100px;
        height: 100px;
        font-size: 32px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-member-lead,
    .team-member:not(.team-member-lead) {
        grid-column: auto;
        grid-row: auto;
    }
}
