/* ===================================
   SkyShare Energy - CSS Styles
   Corporate, Professional, Minimal
   =================================== */

/* CSS Variables */
:root {
    --primary-green: #0B3D2E;
    --accent-yellow: #FDB813;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #333333;
    --text-gray: #666666;
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(11, 61, 46, 0.08);
    --shadow-md: 0 4px 16px rgba(11, 61, 46, 0.12);
    --shadow-lg: 0 8px 32px rgba(11, 61, 46, 0.16);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-green);
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    border-bottom: 1px solid var(--medium-gray);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-gray);
}

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

.btn-secondary {
    padding: 10px 24px;
    border: 1.5px solid var(--primary-green);
    border-radius: 6px;
    color: var(--primary-green);
    font-weight: 600;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: #0a3325;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary-green);
    border: 1.5px solid var(--primary-green);
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

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

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f8faf9 0%, #ffffff 50%, #fef9ed 100%);
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(253, 184, 19, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 24px;
    color: var(--primary-green);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--primary-green));
    animation: scrollBounce 2s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Sections */
.section {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-yellow);
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
}

.section-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.section-header {
    margin-bottom: 60px;
}

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

.section-header.center .section-subtitle {
    margin: 0 auto;
}

/* Grid Layouts */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse > * {
    direction: ltr;
}

/* Visual Cards */
.visual-card {
    background: var(--light-gray);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
}

.icon-wrapper {
    margin-bottom: 24px;
}

.visual-card p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}

/* Problem/Solution Sections */
.problem-section {
    background: var(--white);
}

.solution-section {
    background: var(--off-white);
}

.stat-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-green);
    font-family: var(--font-display);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.feature-list {
    list-style: none;
    margin-top: 32px;
}

.feature-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-gray);
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
}

/* How It Works */
.how-it-works {
    background: var(--white);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 24px;
}

.step-icon {
    margin: 0 auto 24px;
}

.step-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-green);
}

.step-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.step-connector {
    flex: 0 0 80px;
    height: 2px;
    background: linear-gradient(to right, var(--medium-gray), transparent);
    margin-top: 100px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.benefit-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 12px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    margin-bottom: 24px;
}

.benefit-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-green);
}

.benefit-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: var(--primary-green);
    padding: 100px 0;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

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

/* Footer */
.footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.footer-links, .footer-contact {
    list-style: none;
}

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

.footer-links a, .footer-contact li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

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

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-yellow);
    color: var(--primary-green);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Page Hero */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8faf9 0%, #ffffff 100%);
    text-align: center;
}

.page-title {
    font-size: 52px;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    font-weight: 500;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: var(--off-white);
}

.form-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.form-container {
    background: var(--white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.form-header {
    margin-bottom: 40px;
}

.form-title {
    font-size: 32px;
    margin-bottom: 12px;
}

.form-description {
    font-size: 16px;
    color: var(--text-gray);
}

.rooftop-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-input, .form-select {
    padding: 14px 16px;
    border: 1.5px solid var(--medium-gray);
    border-radius: 6px;
    font-size: 15px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(11, 61, 46, 0.1);
}

.file-upload-wrapper {
    position: relative;
}

.form-file {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px;
    border: 2px dashed var(--medium-gray);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-gray);
}

.file-upload-label:hover {
    border-color: var(--primary-green);
    background: var(--light-gray);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-gray);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
}

.form-note {
    font-size: 13px;
    color: var(--text-gray);
    text-align: center;
    margin-top: 8px;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.sidebar-title {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--primary-green);
}

.sidebar-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-benefit {
    display: flex;
    gap: 16px;
}

.sidebar-icon {
    flex-shrink: 0;
}

.sidebar-benefit-content h4 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--primary-green);
    font-family: var(--font-body);
    font-weight: 600;
}

.sidebar-benefit-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

.stats-card {
    background: var(--primary-green);
}

.stats-card .sidebar-title {
    color: var(--white);
}

.expected-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.expected-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.expected-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 4px;
    font-family: var(--font-display);
}

.expected-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

/* Dashboard */
.dashboard-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #0a3325 100%);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.dashboard-title {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 12px;
}

.dashboard-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.dashboard-stats-row {
    display: flex;
    gap: 40px;
}

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

.mini-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-yellow);
    font-family: var(--font-display);
}

.mini-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

.dashboard-content {
    padding: 60px 0 100px;
    background: var(--off-white);
}

.dashboard-filters {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.filter-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-gray);
}

.filter-select {
    padding: 10px 14px;
    border: 1.5px solid var(--medium-gray);
    border-radius: 6px;
    font-size: 14px;
    font-family: var(--font-body);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.project-card {
    position: relative;
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.project-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: var(--accent-yellow);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-badge.premium {
    background: var(--primary-green);
}

.project-header {
    margin-bottom: 24px;
}

.project-title {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary-green);
}

.project-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-gray);
}

.project-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--medium-gray);
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-label {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 500;
}

.spec-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-gray);
}

.spec-value.highlight {
    color: var(--accent-yellow);
    font-size: 18px;
}

.project-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.detail-label {
    color: var(--text-gray);
}

.detail-value {
    font-weight: 600;
    color: var(--dark-gray);
}

/* About Page */
.about-hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, #0a3325 100%);
}

.about-hero .page-title, .about-hero .page-subtitle {
    color: var(--white);
}

.mission-section {
    background: var(--off-white);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.mission-visual {
    text-align: center;
}

.large-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 24px;
    font-weight: 500;
}

.mission-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Vision */
.vision-section {
    background: var(--white);
}

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

.vision-card {
    background: var(--light-gray);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.vision-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.vision-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 16px;
    font-family: var(--font-display);
}

.vision-card-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-green);
}

.vision-card-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Values */
.values-section {
    background: var(--off-white);
}

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

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

.value-icon {
    margin: 0 auto 20px;
}

.value-title {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-green);
}

.value-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Roadmap */
.roadmap-section {
    background: var(--white);
}

.roadmap-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-yellow), var(--primary-green));
}

.roadmap-item {
    display: flex;
    gap: 40px;
}

.roadmap-marker {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.roadmap-dot {
    width: 16px;
    height: 16px;
    background: var(--accent-yellow);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--accent-yellow);
    z-index: 1;
}

.roadmap-content {
    flex: 1;
    background: var(--light-gray);
    padding: 32px;
    border-radius: 12px;
}

.roadmap-phase {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-yellow);
    margin-bottom: 12px;
}

.roadmap-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-green);
}

.roadmap-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.roadmap-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.roadmap-features li {
    font-size: 14px;
    color: var(--text-gray);
    padding-left: 24px;
    position: relative;
}

.roadmap-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
    font-weight: 700;
}

/* Impact */
.impact-section {
    background: var(--primary-green);
    padding: 100px 0;
}

.impact-section .section-label {
    color: var(--accent-yellow);
}

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

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

.impact-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.impact-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.impact-label {
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 12px;
}

.impact-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form-container {
    background: var(--white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

.form-textarea {
    padding: 14px 16px;
    border: 1.5px solid var(--medium-gray);
    border-radius: 6px;
    font-size: 15px;
    font-family: var(--font-body);
    transition: var(--transition);
    resize: vertical;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(11, 61, 46, 0.1);
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card, .contact-social-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-info-title {
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--primary-green);
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--medium-gray);
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.contact-info-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 4px;
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--light-gray);
    border-radius: 8px;
    color: var(--primary-green);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}

.contact-social-link:hover {
    background: var(--primary-green);
    color: var(--white);
}

.contact-social-link svg {
    flex-shrink: 0;
}

/* Map Section */
.map-section {
    height: 400px;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, #0a3325 100%);
    position: relative;
}

.map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 61, 46, 0.9);
}

.map-content {
    text-align: center;
    color: var(--white);
}

.map-content svg {
    margin-bottom: 16px;
}

.map-content h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 8px;
}

.map-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 52px;
    }
    
    .section-grid {
        gap: 60px;
    }
    
    .steps-container {
        flex-wrap: wrap;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-item {
        flex: 0 0 calc(50% - 16px);
        margin-bottom: 40px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-grid, .values-grid, .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        z-index: 999;
        gap: 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 16px 0;
        border-bottom: 1px solid var(--medium-gray);
        width: 100%;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .btn-secondary {
        text-align: center;
        margin-top: 8px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-grid.reverse {
        direction: ltr;
    }
    
    .stat-group {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex: 0 0 100%;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 24px;
    }
    
    .dashboard-stats-row {
        width: 100%;
        justify-content: space-around;
    }
    
    .dashboard-filters {
        flex-direction: column;
    }
    
    .vision-grid, .values-grid, .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
    }
    
    .roadmap-timeline::before {
        left: 8px;
    }
    
    .roadmap-marker {
        width: 16px;
    }
    
    .roadmap-features {
        grid-template-columns: 1fr;
    }
}

/* Blog Section Styles */
.blog-section {
    padding: 80px 0;
    background: var(--off-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-thumbnail {
    position: relative;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 250px;
    transition: transform 0.6s ease;
}

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

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-green);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--text-gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-title {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-green);
    line-height: 1.4;
    font-family: var(--font-display);
}

.blog-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 24px;
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.blog-read-more:hover {
    gap: 12px;
    color: #0a3325;
}

.blog-read-more svg {
    transition: var(--transition);
}

/* Blog Post Page */
.blog-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--primary-green);
    gap: 12px;
}

.blog-post-meta {
    margin-bottom: 24px;
}

.blog-category-tag {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.blog-post-info {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: var(--text-gray);
}

.blog-post-title {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.blog-post-intro {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-gray);
    font-weight: 500;
}

.blog-article {
    padding: 60px 0;
    background: var(--white);
}

.article-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--dark-gray);
}

.lead-paragraph {
    font-size: 20px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 40px;
    font-weight: 500;
}

.article-content h2 {
    font-size: 36px;
    margin: 60px 0 24px;
    color: var(--primary-green);
}

.article-content h3 {
    font-size: 26px;
    margin: 40px 0 20px;
    color: var(--primary-green);
}

.article-content h4 {
    font-size: 20px;
    margin: 32px 0 16px;
    color: var(--primary-green);
    font-family: var(--font-body);
}

.article-content p {
    margin-bottom: 24px;
}

.article-content ul,
.article-content ol {
    margin-bottom: 24px;
}

.styled-list {
    list-style: none;
    padding-left: 0;
}

.styled-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
}

.styled-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--accent-yellow);
    border-radius: 50%;
}

.article-content ol.styled-list {
    counter-reset: list-counter;
}

.article-content ol.styled-list li::before {
    content: counter(list-counter);
    counter-increment: list-counter;
    background: var(--primary-green);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    top: 4px;
}

/* Info Boxes */
.info-box, .highlight-box {
    background: var(--light-gray);
    padding: 32px;
    border-radius: 12px;
    margin: 40px 0;
    border-left: 4px solid var(--accent-yellow);
}

.info-box {
    display: flex;
    gap: 24px;
}

.info-box-icon {
    flex-shrink: 0;
}

.info-box h4, .highlight-box h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-green);
    font-family: var(--font-body);
}

.info-box p, .highlight-box p {
    margin-bottom: 16px;
}

.highlight-box ul {
    margin-bottom: 0;
}

/* Comparison Table */
.comparison-table {
    margin: 40px 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table th {
    background: var(--primary-green);
    color: var(--white);
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.comparison-table td {
    padding: 16px;
    border-bottom: 1px solid var(--medium-gray);
    font-size: 15px;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background: var(--off-white);
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 32px 0;
}

.column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--primary-green);
    font-family: var(--font-body);
}

.column ul {
    list-style: none;
    padding-left: 0;
}

.column ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
}

.column ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
    font-weight: 700;
}

/* Risk Cards */
.risk-card {
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    transition: var(--transition);
}

.risk-card:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-sm);
}

.risk-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.risk-icon {
    font-size: 24px;
}

.risk-header h4 {
    margin: 0;
    font-size: 20px;
}

.risk-card p strong {
    color: var(--primary-green);
}

.risk-card ul {
    margin-top: 12px;
}

/* CTA Box in Article */
.cta-box {
    background: linear-gradient(135deg, var(--primary-green) 0%, #0a3325 100%);
    color: var(--white);
    padding: 48px;
    border-radius: 12px;
    text-align: center;
    margin: 60px 0;
}

.cta-box h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 16px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-size: 16px;
}

.cta-box .btn-primary {
    background: var(--accent-yellow);
    color: var(--primary-green);
}

.cta-box .btn-primary:hover {
    background: #fec73d;
}

/* Article Share */
.article-share {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 2px solid var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 20px;
}

.article-share span {
    font-weight: 600;
    color: var(--dark-gray);
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 44px;
    height: 44px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    transition: var(--transition);
}

.share-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Related Articles */
.related-articles {
    padding: 80px 0;
    background: var(--off-white);
}

.related-articles .section-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 40px;
    font-family: var(--font-display);
}

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

.related-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.related-card h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--primary-green);
    line-height: 1.4;
}

.related-meta {
    font-size: 13px;
    color: var(--text-gray);
}

/* Fade-in animations */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post-title {
        font-size: 36px;
    }
    
    .article-content h2 {
        font-size: 28px;
    }
    
    .article-content h3 {
        font-size: 22px;
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 13px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}
