:root {
    /* Premium Palette */
    --primary-green: #76b947; /* Vibrant Green */
    --primary-gradient: linear-gradient(135deg, #76b947 0%, #5a9a33 100%);
    --dark-green: #1a3c1a; /* Deep Forest Green */
    --accent-gold: #d4af37; /* Subtle accent */
    --light-bg: #f9faf8; /* Warm gray/green tint */
    --white: #ffffff;
    --text-dark: #111827;
    --text-light: #4b5563;
    --border-color: #e5e7eb;

    --font-heading: "Playfair Display", serif;
    --font-body: "Outfit", sans-serif;

    --max-width: 1280px;
    --nav-height: 80px;
    --border-radius: 24px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Modern Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    --shadow-green: 0 10px 25px -5px rgba(118, 185, 71, 0.3);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark-green);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.125rem;
    font-weight: 300;
}

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

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.section {
    padding: 120px 0;
    position: relative;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-green);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    background: rgba(118, 185, 71, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(118, 185, 71, 0.4);
}

.btn-outline {
    border-color: var(--dark-green);
    color: var(--dark-green);
    background: transparent;
}

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

/* Top Bar */
.top-bar {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 0;
    font-size: 0.9rem;
    color: #666;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    display: flex;
    gap: 25px;
}

.top-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
}

.top-contact i {
    color: var(--primary-green);
}

.top-social {
    display: flex;
    gap: 10px;
}

.top-social a {
    color: #333;
    transition: var(--transition);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    font-size: 0.9rem;
}

.top-social a:hover {
    background: var(--primary-green);
    color: #fff;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

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

.logo-icon {
    height: 55px;
    width: auto;
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition);
}

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

.nav-btn {
    padding: 14px 32px;
    font-size: 0.9rem;
    border-radius: 8px;
    background: #76b947;
    box-shadow: none;
}

.nav-btn:hover {
    background: #5a9a33;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--dark-green);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding-top: 60px;
    padding-bottom: 80px;
    position: relative;
    background-color: #fdfbf7;
    overflow: visible;
    min-height: 600px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding-right: 20px;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.75;
    margin-bottom: 35px;
    max-width: 95%;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btns .btn {
    border-radius: 6px;
    padding: 14px 35px;
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-btns .btn-primary {
    background: #76b947;
    box-shadow: none;
}

.hero-btns .btn-green-light {
    background: #8bc34a;
    color: #fff;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 550px;
}

.hero-blob-shape {
    width: 100%;
    max-width: 500px;
    height: 500px;
    border-radius: 45% 55% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    position: relative;
    z-index: 5;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: #fff;
    animation: blob-float 10s ease-in-out infinite alternate;
}

@keyframes blob-float {
    0% {
        border-radius: 45% 55% 70% 30% / 30% 30% 70% 70%;
        transform: translateY(0);
    }
    100% {
        border-radius: 55% 45% 30% 70% / 70% 70% 30% 30%;
        transform: translateY(-10px);
    }
}

.hero-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.small-circle {
    position: absolute;
    top: 30px;
    left: 30px;
    height: 120px;
    object-fit: cover;
    z-index: 6;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.hanging-plant {
    bottom: 10px;
    right: 8%;
    font-size: 4rem;
    color: #76b947;
    animation: swing 4s ease-in-out infinite alternate;
    transform-origin: top center;
    opacity: 0.9;
}

@keyframes swing {
    0% {
        transform: rotate(3deg);
    }
    100% {
        transform: rotate(-3deg);
    }
}

.pot-plant {
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: #76b947;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    padding: 22px;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12), 0 5px 15px rgba(118, 185, 71, 0.1);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-gentle 5s ease-in-out infinite;
    border: 3px solid rgba(118, 185, 71, 0.1);
}

@keyframes float-gentle {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.pot-plant:hover {
    background: linear-gradient(135deg, #76b947 0%, #5a9a33 100%);
    color: #fff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 20px 40px rgba(118, 185, 71, 0.3);
}

.shovel {
    bottom: 20px;
    left: 20px;
    width: 95px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: wiggle 6s ease-in-out infinite;
    transform-origin: center center;
}

.shovel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes wiggle {
    0%,
    100% {
        transform: rotate(-20deg);
    }
    25% {
        transform: rotate(-25deg) translateY(-5px);
    }
    50% {
        transform: rotate(-15deg);
    }
    75% {
        transform: rotate(-25deg) translateY(-5px);
    }
}

.shovel:hover {
    transform: rotate(-15deg) scale(1.1);
}

.leaf-1 {
    top: 38%;
    right: 600px;
    width: 70px;
    opacity: 0.5;
    transform: rotate(45deg);
    animation: leaf-sway 8s ease-in-out infinite;
}

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

.leaf-2 {
    bottom: 15%;
    right: 207px;
    width: 90px;
    opacity: 0.5;
    transform: rotate(-15deg);
    animation: leaf-sway-2 7s ease-in-out infinite;
}

@keyframes leaf-sway-2 {
    0%,
    100% {
        transform: rotate(-15deg) translateY(0);
    }
    50% {
        transform: rotate(-20deg) translateY(10px);
    }
}

/* Features Strip */
.features-strip {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
    margin-top: -50px;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.02);
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(118, 185, 71, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.4rem;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--primary-green);
    color: var(--white);
}

.feature-text h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-weight: 700;
    color: var(--text-dark);
}

.feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-light);
}

/* About Section */
.about-section {
    background: var(--light-bg);
}

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

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.exp-badge {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 30px;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 8px solid var(--light-bg);
    box-shadow: var(--shadow-md);
}

.exp-badge .years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
}

.exp-badge .text {
    font-size: 0.85rem;
    margin-top: 5px;
    opacity: 0.9;
}

.check-list {
    margin: 30px 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.check-list i {
    color: var(--primary-green);
    background: rgba(118, 185, 71, 0.1);
    padding: 5px;
    border-radius: 50%;
    font-size: 0.9rem;
}

/* Mission & Vision Section */
.mission-vision-section {
    background: linear-gradient(135deg, #f9faf8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(118, 185, 71, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mission-vision-section::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118, 185, 71, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mission-vision-section .container {
    position: relative;
    z-index: 1;
}

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

/* Mission & Vision Cards */
.mission-vision-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.mv-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.mv-card:hover::before {
    transform: scaleX(1);
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(118, 185, 71, 0.15);
    border-color: var(--primary-green);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(118, 185, 71, 0.1) 0%, rgba(118, 185, 71, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.mv-icon i {
    font-size: 2rem;
    color: var(--primary-green);
    transition: var(--transition);
}

.mv-card:hover .mv-icon {
    background: var(--primary-gradient);
    transform: scale(1.1) rotate(5deg);
}

.mv-card:hover .mv-icon i {
    color: var(--white);
    transform: rotate(-5deg);
}

.mv-card h3 {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 15px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.mv-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .mission-vision-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Projects Section */
.projects-section {
    background: var(--white);
}

.projects-grid-layout {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

.project-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.project-item.reverse {
    direction: rtl;
}

.project-item.reverse .project-info {
    direction: ltr;
}

.project-img {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.project-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: var(--transition);
}

.project-item:hover .project-img::after {
    opacity: 1;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-item:hover .project-img img {
    transform: scale(1.08);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.project-info .location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-weight: 600;
    background: rgba(118, 185, 71, 0.08);
    padding: 6px 14px;
    border-radius: 30px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-green);
    font-weight: 600;
    margin-top: 20px;
    position: relative;
}

.read-more::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

.read-more:hover::after {
    width: 100%;
}

.read-more:hover {
    color: var(--primary-green);
}

/* Impact Section */
.impact-section {
    background: var(--light-bg);
}

.impact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.impact-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.impact-card:hover::before {
    transform: scaleX(1);
}

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

.icon-box {
    width: 90px;
    height: 90px;
    background: #f0f7e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--primary-green);
    font-size: 2.2rem;
    transition: var(--transition);
}

.impact-card:hover .icon-box {
    background: var(--primary-green);
    color: var(--white);
    transform: rotateY(180deg);
}

.impact-card:hover .icon-box i {
    transform: rotateY(-180deg);
}

.impact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: var(--light-bg);
    overflow: hidden;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    box-shadow: var(--shadow-lg);
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.cta-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(118, 185, 71, 0.1) 0%, rgba(26, 60, 26, 0.2) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--dark-green);
    margin-bottom: 35px;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-form:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-light);
}

.contact-form textarea {
    resize: vertical;
    margin-bottom: 25px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(118, 185, 71, 0.1);
}

.contact-form button {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 10px;
}

.contact-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form Messages */
.form-message {
    margin: 20px 0;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background: rgba(118, 185, 71, 0.2);
    color: #2d5016;
    border: 1px solid rgba(118, 185, 71, 0.4);
}

.form-message.error {
    background: rgba(220, 38, 38, 0.2);
    color: #7f1d1d;
    border: 1px solid rgba(220, 38, 38, 0.4);
}

@media (max-width: 1024px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-image {
        min-height: 400px;
        order: 2;
    }

    .cta-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .cta-image {
        min-height: 300px;
    }

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

    .contact-form {
        padding: 30px 20px;
    }
}

/* Contact Page Section */
.contact-page-section {
    background: var(--light-bg);
}

.contact-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-green);
}

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark-green);
    font-family: var(--font-body);
}

.contact-details p {
    margin: 0;
    color: var(--text-light);
    font-size: 1rem;
}

.contact-details a {
    color: var(--primary-green);
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark-green);
}

.contact-form-wrapper .contact-form {
    background: transparent;
    padding: 0;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
}

.contact-form-wrapper .contact-form input,
.contact-form-wrapper .contact-form textarea {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
}

.contact-form-wrapper .contact-form input:focus,
.contact-form-wrapper .contact-form textarea:focus {
    background: var(--white);
    border-color: var(--primary-green);
}

@media (max-width: 1024px) {
    .contact-page-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 2rem;
    }
}

/* Footer */
.footer {
    background: #0b120b;
    color: #9ca3af;
    padding: 100px 0 40px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 45px;
    filter: brightness(0) invert(1);
}

.footer h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer ul li {
    margin-bottom: 15px;
}

.footer ul li a {
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-list li i {
    margin-top: 5px;
    color: var(--primary-green);
}

.footer-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.footer-gallery img {
    border-radius: 12px;
    height: 80px;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-gallery img:hover {
    opacity: 1;
    transform: scale(1.05);
}

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

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

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 0;
    font-size: 0.9rem;
    color: #6b7280;
}

/* Animations */
.fade-in,
.fade-in-up,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up {
    transform: translateY(40px);
}
.fade-in-left {
    transform: translateX(-40px);
}
.fade-in-right {
    transform: translateX(40px);
}

.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Sustainability Section */
.sustainability-section {
    background: var(--white);
    position: relative;
}

.pillars-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.pillar-item {
    flex: 1 1 200px;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.pillar-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-md);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pillar-item:hover .pillar-icon {
    background: var(--primary-green);
    color: var(--white);
}

.pillar-item h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text-dark);
}

.pillar-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-light);
    line-height: 1.4;
}

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f9faf8 0%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(118, 185, 71, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--dark-green);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Section */
.blog-section {
    background: var(--white);
}

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

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

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

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

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

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.blog-meta i {
    color: var(--primary-green);
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-green);
    line-height: 1.3;
}

.blog-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-header {
        padding: 120px 0 60px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-img-main {
        max-width: 100%;
        border-radius: 24px;
    }

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

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

    .project-item.reverse {
        direction: ltr;
    }
    .project-img {
        height: 300px;
    }

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

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        gap: 20px;
        border-top: 1px solid #f0f0f0;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-btn {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }

    .newsletter-form {
        flex-direction: column;
        background: transparent;
        padding: 0;
    }

    .newsletter-form input {
        background: rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .newsletter-form button {
        width: 100%;
    }

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

    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }

    .section {
        padding: 80px 0;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(118, 185, 71, 0.3);
    transition: var(--transition);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(118, 185, 71, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}
