:root {
    --deep-teal: #0A5B5A;
    --vibrant-green: #56C596;
    --mid-teal: #329287;
    --light-green: #C2EDDD;
    --black: #000000;
    --white: #FFFFFF;
    --light-grey: #E0E0E0;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;
    
    --header-height: 72px;
    --container-max: 1200px;
    --transition-base: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-base);
    background: transparent;
}

.header.scrolled {
    background: var(--deep-teal);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header.scrolled .nav-link,
.header.scrolled .projects-login {
    color: var(--vibrant-green);
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-image {
    height: 50px;
    width: auto;
}

.nav-desktop {
    display: none;
}

.header-actions {
    display: none;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--deep-teal);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
}

.mobile-close-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 10px;
}

.mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
}

.mobile-projects-login {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--light-green);
}

.mobile-cta {
    margin-top: 20px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--vibrant-green);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-primary:hover {
    background: var(--mid-teal);
    transform: scale(1.02);
}

.btn-secondary {
    display: inline-block;
    background: var(--white);
    color: var(--deep-teal);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 8px;
    border: 2px solid var(--vibrant-green);
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-secondary:hover {
    background: var(--light-green);
    border-color: var(--mid-teal);
}

/* Hero Sections */
.hero, .about-hero, .energy-hero, .portfolio-hero, .contact-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 91, 90, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    max-width: 900px;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-locations {
    font-size: 14px;
    color: var(--light-green);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-value-prop {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta {
    margin-top: 20px;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-tagline {
    font-size: 18px;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    opacity: 0.7;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(10px); }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 32px;
    color: var(--deep-teal);
    margin-bottom: 40px;
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--black);
    max-width: 900px;
    margin: 0 auto;
}

/* Problem Statement */
.problem-statement {
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--black) 100%);
    color: var(--white);
    text-align: center;
}

.problem-statement .section-title {
    color: var(--white);
    font-size: 28px;
}

.problem-statement .section-subtitle {
    color: var(--white);
    opacity: 0.9;
    font-size: 16px;
}

/* Solution Approach */
.solution-approach {
    background: var(--white);
}

.split-layout {
    display: grid;
    gap: 40px;
    align-items: center;
}

.solution-image img,
.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.solution-content p,
.story-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

/* Key Services */
.key-services {
    background: var(--light-grey);
    padding: 80px 0;
}

.services-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.service-icon {
    color: var(--vibrant-green);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    color: var(--deep-teal);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.services-cta,
.projects-cta {
    text-align: center;
    margin-top: 40px;
}

/* Featured Projects */
.featured-projects {
    background: var(--white);
    padding: 80px 0 60px;
}

.horizontal-scroll-container {
    position: relative;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
    margin: 0 -20px;
}

.horizontal-scroll-wrapper {
    display: flex;
    gap: 30px;
    padding: 0 20px;
    min-width: max-content;
}

.project-card {
    min-width: 350px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition-base);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 18px;
    color: var(--deep-teal);
    margin-bottom: 8px;
}

.project-feature {
    font-size: 14px;
    color: var(--vibrant-green);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.view-project-btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-teal);
    border-bottom: 2px solid var(--vibrant-green);
    padding-bottom: 2px;
}

.view-project-btn:hover {
    color: var(--vibrant-green);
}

.scroll-glow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    z-index: 10;
}

.scroll-glow.left {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.scroll-glow.right {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

/* Global Reach */
.global-reach {
    background: var(--deep-teal);
    color: var(--white);
    text-align: center;
}

.global-reach .section-title {
    color: var(--white);
}

.global-subtitle {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.location-cards {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin: 0 auto;
}

.location-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

.location-card h3 {
    font-size: 18px;
    color: var(--vibrant-green);
    margin-bottom: 10px;
}

.location-card p {
    font-size: 14px;
    opacity: 0.8;
}

/* Why Choose GTD */
.why-choose {
    background: var(--white);
    padding: 80px 0;
}

.advantages-grid {
    display: grid;
    gap: 30px;
}

.advantage-card {
    padding: 30px;
    border-radius: 12px;
    transition: var(--transition-base);
}

.advantage-card:hover {
    background: var(--light-green);
}

.advantage-icon {
    color: var(--vibrant-green);
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 18px;
    color: var(--deep-teal);
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    background: var(--deep-teal);
    color: var(--white);
    padding: 100px 0;
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 150px;
    color: var(--vibrant-green);
    opacity: 0.2;
    position: absolute;
    top: -40px;
    left: 0;
    line-height: 1;
}

.testimonial-slide {
    display: none;
    padding: 60px 20px 20px;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-slide blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-slide cite {
    font-family: var(--font-heading);
    font-size: 16px;
    font-style: normal;
    color: var(--vibrant-green);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-arrow {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 10px;
    transition: var(--transition-base);
}

.carousel-arrow:hover {
    color: var(--vibrant-green);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.carousel-dot.active {
    background: var(--vibrant-green);
}

/* Process Section */
.process-section {
    background: var(--white);
    padding: 80px 0;
}

.process-steps {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--vibrant-green);
    opacity: 0.5;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 18px;
    color: var(--deep-teal);
    margin-bottom: 15px;
}

.process-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.process-line {
    display: none;
}

/* CTA Panels */
.cta-panel,
.about-cta,
.energy-cta,
.portfolio-cta {
    background: var(--deep-teal);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-title {
    font-size: 28px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.cta-buttons.center {
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-mission {
    font-size: 14px;
    color: var(--light-green);
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: var(--white);
    transition: var(--transition-base);
}

.social-link:hover {
    color: var(--vibrant-green);
}

.footer-links h4,
.footer-contact h4,
.footer-trust h4 {
    font-size: 16px;
    color: var(--vibrant-green);
    margin-bottom: 20px;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    font-size: 14px;
    color: var(--white);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--vibrant-green);
}

.footer-trust .certifications {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.cert-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: var(--light-green);
}

.footer-trust .years {
    font-size: 14px;
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 12px;
    color: var(--light-green);
}

.projects-login {
    color: var(--mid-teal);
    font-size: 14px;
}

.header .projects-login {
    color: var(--white);
    margin-right: 20px;
}

/* About Page Specifics */
.company-story {
    padding: 80px 0;
    background: var(--white);
}

.mission-values {
    background: var(--light-green);
    padding: 80px 0;
}

.mission-statement {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--deep-teal);
    font-weight: 500;
}

.values-grid {
    display: grid;
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.value-icon {
    color: var(--vibrant-green);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 18px;
    color: var(--deep-teal);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 14px;
    color: #666;
}

/* Team Section */
.leadership-team {
    background: var(--white);
    padding: 80px 0;
}

.team-grid {
    display: grid;
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition-base);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.team-image {
    height: 250px;
    background: var(--light-grey);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-placeholder {
    color: var(--deep-teal);
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    font-size: 18px;
    color: var(--deep-teal);
    margin-bottom: 5px;
}

.team-title {
    font-size: 14px;
    color: var(--mid-teal);
    margin-bottom: 15px;
}

.team-bio {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.linkedin-link {
    color: var(--deep-teal);
}

.linkedin-link:hover {
    color: var(--vibrant-green);
}

/* Awards Section */
.awards-certifications {
    background: var(--light-grey);
    padding: 80px 0;
}

.certifications-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.cert-item {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition-base);
}

.cert-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.cert-item .cert-icon {
    width: auto;
    height: auto;
    background: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--deep-teal);
    margin-bottom: 10px;
}

.cert-item span {
    font-size: 12px;
    color: #666;
}

/* By The Numbers */
.by-the-numbers {
    background: var(--deep-teal);
    color: var(--white);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--vibrant-green);
    display: block;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Energy Solutions Page */
.solutions-intro {
    background: var(--white);
    padding: 80px 0;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.core-offerings {
    background: var(--light-grey);
    padding: 80px 0;
}

.offerings-grid {
    display: grid;
    gap: 30px;
}

.offering-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: var(--transition-base);
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.offering-icon {
    color: var(--vibrant-green);
    margin-bottom: 20px;
}

.offering-card h3 {
    font-size: 18px;
    color: var(--deep-teal);
    margin-bottom: 15px;
}

.offering-card p {
    font-size: 14px;
    color: #666;
}

/* Accordion */
.solution-modules {
    background: var(--white);
    padding: 80px 0;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--light-grey);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-teal);
    text-align: left;
}

.accordion-header:hover {
    color: var(--vibrant-green);
}

.accordion-icon {
    transition: var(--transition-base);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding-bottom: 25px;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* Benefits */
.benefits-section {
    background: var(--white);
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    gap: 30px;
}

.benefit-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    color: var(--vibrant-green);
}

.benefit-card h3 {
    font-size: 16px;
    color: var(--deep-teal);
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Energy Projects */
.energy-projects {
    background: var(--light-grey);
    padding: 80px 0 60px;
}

/* Portfolio Page */
.project-filter {
    background: var(--white);
    padding: 30px 0;
    position: sticky;
    top: var(--header-height);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filter-btn {
    background: none;
    border: 2px solid var(--light-grey);
    padding: 10px 20px;
    border-radius: 25px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--deep-teal);
    cursor: pointer;
    transition: var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--vibrant-green);
    border-color: var(--vibrant-green);
    color: var(--white);
}

.project-grid-section {
    background: var(--white);
    padding: 60px 0;
}

.project-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
}

.project-grid .project-card {
    min-width: auto;
}

.project-grid .project-image {
    height: 250px;
}

.project-details {
    padding: 20px;
}

.project-details h3 {
    font-size: 18px;
    color: var(--deep-teal);
    margin-bottom: 5px;
}

.project-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.project-tags {
    font-size: 12px;
    color: var(--mid-teal);
}

.new-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--vibrant-green);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Project Philosophy */
.project-philosophy {
    background: var(--deep-teal);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.project-philosophy .section-title {
    color: var(--white);
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Testimonials Spotlight */
.testimonials-spotlight {
    background: var(--white);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    gap: 30px;
}

.testimonial-card {
    background: var(--light-grey);
    padding: 40px;
    border-radius: 12px;
}

.testimonial-card blockquote {
    font-size: 16px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--deep-teal);
}

.testimonial-card cite {
    font-family: var(--font-heading);
    font-size: 14px;
    font-style: normal;
    color: var(--mid-teal);
}

/* Contact Page */
.contact-form-section {
    background: var(--white);
    padding: 80px 0;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--deep-teal);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--light-grey);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--vibrant-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    align-self: flex-start;
}

/* Direct Contact */
.direct-contact {
    background: var(--light-grey);
    padding: 80px 0;
}

.contact-methods {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.contact-method {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
}

.method-icon {
    color: var(--vibrant-green);
    margin-bottom: 20px;
}

.contact-method h3 {
    font-size: 18px;
    color: var(--deep-teal);
    margin-bottom: 10px;
}

.contact-method a {
    font-size: 16px;
    color: var(--mid-teal);
    font-weight: 500;
}

.contact-method a:hover {
    color: var(--vibrant-green);
}

/* Office Locations */
.office-locations {
    background: var(--white);
    padding: 80px 0;
}

.offices-grid {
    display: grid;
    gap: 40px;
    margin-top: 40px;
}

.office-block {
    text-align: center;
}

.office-block h3 {
    font-size: 20px;
    color: var(--deep-teal);
    margin-bottom: 15px;
}

.office-address {
    font-size: 15px;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.6;
}

.office-hours {
    font-size: 14px;
    color: var(--mid-teal);
    margin-bottom: 15px;
}

.directions-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--vibrant-green);
    border-bottom: 2px solid var(--vibrant-green);
    padding-bottom: 2px;
}

.map-placeholder {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
}

/* Social Connect */
.social-connect {
    background: var(--light-grey);
    padding: 80px 0;
}

.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.social-icon-large {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-teal);
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.social-icon-large:hover {
    background: var(--vibrant-green);
    color: var(--white);
    transform: translateY(-3px);
}

/* Careers & Partnerships */
.careers-partnerships {
    background: var(--white);
    padding: 80px 0;
}

.opportunity-blocks {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.opportunity-block {
    background: var(--deep-teal);
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.opportunity-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.opportunity-block p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Animations */
.reveal-curtain {
    position: relative;
    overflow: hidden;
}

.reveal-curtain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--light-green);
    transform: translateY(100%);
    transition: transform 0.8s ease;
}

.reveal-curtain.revealed::before {
    transform: translateY(0);
}

.split-line {
    overflow: hidden;
}

.split-line > span {
    display: block;
    transform: translateY(100%);
    transition: transform 0.8s ease;
}

.split-line.revealed > span {
    transform: translateY(0);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Tablet Breakpoint */
@media (min-width: 768px) {
    :root {
        --header-height: 75px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-value-prop {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .services-grid,
    .offerings-grid,
    .values-grid,
    .advantages-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stat-number {
        font-size: 56px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .split-layout {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-methods {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .opportunity-blocks {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop Breakpoint */
@media (min-width: 1024px) {
    :root {
        --header-height: 80px;
    }
    
    .nav-desktop {
        display: flex;
    }
    
    .nav-list {
        display: flex;
        gap: 35px;
    }
    
    .nav-link {
        font-family: var(--font-heading);
        font-size: 15px;
        font-weight: 500;
        color: var(--white);
        position: relative;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--vibrant-green);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }
    
    .header-actions {
        display: flex;
        align-items: center;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 64px;
    }
    
    .hero-locations {
        font-size: 16px;
    }
    
    .hero-value-prop {
        font-size: 24px;
    }
    
    .page-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .problem-statement .section-title {
        font-size: 36px;
    }
    
    .services-grid,
    .offerings-grid,
    .values-grid,
    .advantages-grid,
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .project-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .project-card {
        min-width: auto;
    }
    
    .project-image {
        height: 280px;
    }
    
    .horizontal-scroll-container {
        overflow-x: hidden;
    }
    
    .horizontal-scroll-wrapper {
        min-width: auto;
        flex-wrap: nowrap;
    }
    
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-slide blockquote {
        font-size: 22px;
    }
    
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
        position: relative;
    }
    
    .process-line {
        display: block;
        position: absolute;
        top: 50px;
        left: 10%;
        right: 10%;
        height: 2px;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    .logo-image {
        height: 55px;
    }
    
    .location-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-methods {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
    
    .opportunity-blocks {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-grey);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--mid-teal), var(--vibrant-green));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--vibrant-green);
}
