:root {
    --green-primary: #4CAF50;
    --green-dark: #1f493d;
    --green-light: #e9f6ec;
    --white: #ffffff;
    --dark: #262626;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

/* COMMON */
.section-padding {
    padding: 80px 0;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* PREMIUM BUTTON */
.btn-green {
    background: var(--green-primary);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(76,175,80,0.3);
}

.btn-green:hover {
    background: #3e8e41;
    color: #fff;
    transform: translateY(-2px);
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--green-dark);
}

.section-title p {
    max-width: 600px;
    margin: 15px auto 0;
    color: #666;
}
/* NAVBAR */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
}

.navbar {
    padding: 18px 0;
    background: transparent;
}

.navbar-brand img {
    height: 55px;
}

.nav-link {
    color: var(--green-dark);
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green-primary);
}

/* STICKY SCROLL EFFECT */
.site-header.scrolled {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
}
/* HERO SECTION */
.hero-section {
    min-height: 100vh;
    background: url('../images/hero/farmland.jpg') center/cover no-repeat;
    position: relative;
    padding-top: 120px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.92),
        rgba(255,255,255,0.6),
        rgba(255,255,255,0.2)
    );
}

.hero-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-dark);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-section h1 {
    font-size: 52px;
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.2;
}

.hero-section h1 span {
    color: var(--green-primary);
}

.hero-section p {
    margin-top: 20px;
    font-size: 18px;
    max-width: 520px;
    color: #555;
}

.hero-actions {
    margin-top: 35px;
}
/* FOOTER */
.site-footer {
    background: var(--green-dark);
    color: #dfeee3;
    padding: 70px 0 30px;
    margin-top: 80px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 15px;
    line-height: 1.7;
    color: #cfe3d4;
}

.footer-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-links a {
    color: #cfe3d4;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--green-primary);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--green-primary);
}

/* SOCIAL */
.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--green-primary);
    transform: translateY(-3px);
}

/* COPYRIGHT */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #b9d8c4;
}
.hero-section {
    min-height: 100vh;
    background: url('../images/hero/farmland.jpg') center/cover no-repeat;
    position: relative;
    padding-top: 160px; /* FIXED HEADER SPACE */
}
/* WHY ARYA GREENS */
.why-arya {
    background: #f8fbf9;
}

.why-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.why-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}
/* FEATURED PROJECTS */
.featured-projects {
    background: #ffffff;
}

.project-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--green-primary);
    color: #fff;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
}

.project-content {
    padding: 25px;
}

.project-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.project-content p {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.project-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.project-features li {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

.btn-sm {
    padding: 8px 22px;
    font-size: 14px;
}
/* CTA SECTION */
.cta-section {
    position: relative;
    background: url('../images/cta/cta-bg.jpg') center/cover no-repeat;
    padding: 80px 0;
    margin-top: 80px;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(31,73,61,0.9),
        rgba(31,73,61,0.85)
    );
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 18px;
    color: #dfeee3;
    max-width: 600px;
}
/* GALLERY PREVIEW */
.gallery-preview {
    background: #f8fbf9;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.0),
        rgba(0,0,0,0.35)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}
/* ================= PREMIUM SITE VISIT FORM ================= */

.sitevisit-modal {
    border-radius: 22px;
    background: linear-gradient(145deg, #f4fbf7, #ffffff);
}

.sitevisit-body-new {
    padding: 40px;
}

/* Glass Card */
.form-glass-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    position: relative;
}

/* Soft Leaf Shape (Background) */
.form-glass-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(76,175,80,0.25), transparent 70%);
    border-radius: 50%;
}

.form-glass-card::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(76,175,80,0.18), transparent 70%);
    border-radius: 50%;
}

/* Header */
.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-badge {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 10px;
}

.form-header h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 15px;
    color: #666;
}

/* Fields */
.form-glass-card label {
    font-size: 13px;
    font-weight: 500;
    color: #444;
    margin-bottom: 6px;
    display: block;
}

.premium-field {
    border-radius: 14px;
    padding: 13px 15px;
    border: 1px solid #dcefe2;
    background: #fbfffd;
    font-size: 14px;
    transition: all 0.3s ease;
}

.premium-field:focus {
    border-color: var(--green-primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(76,175,80,0.15);
}

/* Submit */
.premium-submit {
    padding: 14px 42px;
    font-size: 16px;
    box-shadow: 0 12px 30px rgba(76,175,80,0.35);
}

/* Mobile */
@media (max-width: 576px) {
    .sitevisit-body-new {
        padding: 20px;
    }

    .form-glass-card {
        padding: 25px;
    }
}
/* TESTIMONIALS */
.testimonials {
    background: #f8fbf9;
}

.testimonial-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    position: relative;
}

.testimonial-card::before {
    content: "“";
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 80px;
    color: rgba(76,175,80,0.15);
    font-family: serif;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.testimonial-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 2px;
}

.testimonial-card span {
    font-size: 13px;
    color: #777;
}
/* AMENITIES */
.amenities {
    background: #ffffff;
}

.amenity-card {
    background: #f9fcfa;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e6f2ea;
}

.amenity-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.amenity-icon {
    font-size: 36px;
    margin-bottom: 18px;
}

.amenity-card h5 {
    font-size: 17px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.amenity-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
/* ================= ABOUT HERO ================= */

.about-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background: url('../images/about/about-hero.jpg') center/cover no-repeat;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(255,255,255,0.92),
        rgba(255,255,255,0.85)
    );
}

.about-badge {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}

.about-hero h1 {
    font-size: 46px;
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.3;
}

.about-hero h1 span {
    color: var(--green-primary);
}

.about-hero p {
    margin-top: 20px;
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 34px;
    }

    .about-hero p {
        font-size: 16px;
    }
}
/* ================= ABOUT : WHO WE ARE ================= */

.about-who {
    background: #ffffff;
}

.section-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
}

.about-who h2 {
    font-size: 34px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-who h2 span {
    color: var(--green-primary);
}

.about-who p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-image-box {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.about-image-box img {
    width: 100%;
    height: auto;
}

/* Mobile */
@media (max-width: 768px) {
    .about-who h2 {
        font-size: 28px;
    }
}
/* ================= VISION & MISSION ================= */

.vision-mission {
    background: #f8fbf9;
}

.vm-card {
    background: #ffffff;
    padding: 45px;
    border-radius: 24px;
    height: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.vm-icon {
    font-size: 42px;
    margin-bottom: 18px;
}

.vm-card h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 15px;
}

.vm-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* Mobile */
@media (max-width: 768px) {
    .vm-card {
        padding: 30px;
    }

    .vm-card h3 {
        font-size: 22px;
    }
}
/* ================= FOUNDER SECTION ================= */

.founder-section {
    background: #ffffff;
}

.founder-image {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.founder-image img {
    width: 100%;
    height: auto;
}

.founder-section h2 {
    font-size: 34px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.founder-section h2 span {
    color: var(--green-primary);
}

.founder-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.founder-name {
    margin-top: 25px;
}

.founder-name h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.founder-name span {
    font-size: 14px;
    color: #777;
}

/* Mobile */
@media (max-width: 768px) {
    .founder-section h2 {
        font-size: 28px;
    }
}
/* ================= CORE VALUES ================= */

.core-values {
    background: #ffffff;
}

.value-card {
    background: #f9fcfa;
    border-radius: 22px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    border: 1px solid #e6f2ea;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 42px;
    margin-bottom: 18px;
}

.value-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Mobile */
@media (max-width: 768px) {
    .value-card {
        padding: 30px 20px;
    }
}
/* ================= JOURNEY / TIMELINE ================= */

.journey {
    background: #f8fbf9;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: #d8eadf;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    padding: 30px 0;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--green-primary);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.timeline-content {
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    width: 45%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Mobile */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 40px;
    }

    .timeline-item:nth-child(odd) {
        flex-direction: column;
    }

    .timeline-year {
        margin-bottom: 10px;
    }

    .timeline-content {
        width: 100%;
    }
}
/* ================= PROJECTS HERO ================= */

.projects-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: url('../images/projects/projects-hero.jpg') center/cover no-repeat;
}

.projects-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(255,255,255,0.94),
        rgba(255,255,255,0.88)
    );
}

.projects-badge {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-dark);
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}

.projects-hero h1 {
    font-size: 44px;
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.3;
}

.projects-hero h1 span {
    color: var(--green-primary);
}

.projects-hero p {
    margin-top: 18px;
    font-size: 18px;
    color: #555;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile */
@media (max-width: 768px) {
    .projects-hero h1 {
        font-size: 32px;
    }

    .projects-hero p {
        font-size: 16px;
    }
}
/* ================= PROJECTS LISTING ================= */

.projects-listing {
    background: #ffffff;
}

.project-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

/* Image */
.project-img {
    position: relative;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.08);
}

/* Status Badge */
.project-status {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--green-primary);
    color: #ffffff;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
}

.project-status.hot {
    background: #ff6f00;
}

.project-status.premium {
    background: #1f493d;
}

/* Info */
.project-info {
    padding: 25px;
}

.project-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.project-location {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.project-location i {
    color: var(--green-primary);
    margin-right: 6px;
}

.project-points {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

.project-points li {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

/* Mobile */
@media (max-width: 768px) {
    .project-img img {
        height: 220px;
    }
}
/* ================= GALLERY HERO ================= */

.gallery-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: url('../images/gallery/gallery-hero.jpg') center/cover no-repeat;
}

.gallery-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(255,255,255,0.95),
        rgba(255,255,255,0.88)
    );
}

.gallery-badge {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-dark);
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}

.gallery-hero h1 {
    font-size: 44px;
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.3;
}

.gallery-hero h1 span {
    color: var(--green-primary);
}

.gallery-hero p {
    margin-top: 18px;
    font-size: 18px;
    color: #555;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile */
@media (max-width: 768px) {
    .gallery-hero h1 {
        font-size: 32px;
    }

    .gallery-hero p {
        font-size: 16px;
    }
}
/* ================= GALLERY GRID ================= */

.gallery-grid {
    background: #ffffff;
}

.gallery-box {
    display: block;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.gallery-box img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-box:hover img {
    transform: scale(1.1);
}

.gallery-box::after {
    content: "View";
    position: absolute;
    inset: 0;
    background: rgba(31,73,61,0.55);
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-box:hover::after {
    opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
    .gallery-box img {
        height: 220px;
    }
}
/* ================= CONTACT HERO ================= */

.contact-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: url('../images/contact/contact-hero.jpg') center/cover no-repeat;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(255,255,255,0.95),
        rgba(255,255,255,0.88)
    );
}

.contact-badge {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-dark);
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-hero h1 {
    font-size: 44px;
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.3;
}

.contact-hero h1 span {
    color: var(--green-primary);
}

.contact-hero p {
    margin-top: 18px;
    font-size: 18px;
    color: #555;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-hero p {
        font-size: 16px;
    }
}
/* ================= CONTACT FORM ================= */

.contact-section {
    background: #ffffff;
}

.contact-section h2 {
    font-size: 34px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.contact-section h2 span {
    color: var(--green-primary);
}

.contact-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-points {
    list-style: none;
    padding: 0;
}

.contact-points li {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
}

/* FORM CARD */
.contact-form-card {
    background: #f9fcfa;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.contact-form-card label {
    font-size: 13px;
    font-weight: 500;
    color: #444;
    margin-bottom: 6px;
    display: block;
}

/* Mobile */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 25px;
    }

    .contact-section h2 {
        font-size: 28px;
    }
}
/* ================= CONTACT INFO ================= */

.contact-info {
    background: #f8fbf9;
}

.info-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 22px;
    text-align: center;
    height: 100%;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.info-icon {
    font-size: 38px;
    margin-bottom: 15px;
}

.info-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.info-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}
