/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #2c3e2d;
    background-color: #FDFBF7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SECTION HEADERS ===== */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2D5A3D;
    background: linear-gradient(135deg, #e8f5e6, #d4edda);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 600;
    line-height: 1.2;
    color: #1a2e1c;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: #5a6b5c;
    max-width: 640px;
    line-height: 1.7;
}

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

.section-header--centered .section-desc {
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 100px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #2D5A3D 0%, #3d7a42 100%);
    color: #fff;
    border-color: #2D5A3D;
    box-shadow: 0 4px 15px rgba(45, 90, 61, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #244a32 0%, #2D5A3D 100%);
    box-shadow: 0 6px 25px rgba(45, 90, 61, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.85);
    color: #2D5A3D;
    border-color: #2D5A3D;
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: #2D5A3D;
    color: #fff;
    transform: translateY(-2px);
}

.btn-light {
    background: #fff;
    color: #2D5A3D;
    border-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-light:hover {
    background: #f0f5f1;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(45, 90, 61, 0.08);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(45, 90, 61, 0.08);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 76px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo--light .logo-name,
.logo--light .logo-tagline {
    color: #fff;
}

.logo-icon {
    color: #2D5A3D;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #1a2e1c;
}

.logo-tagline {
    font-size: 0.7rem;
    color: #5a6b5c;
    letter-spacing: 0.04em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.main-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a5e4c;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.main-nav a:hover {
    color: #2D5A3D;
    background: rgba(45, 90, 61, 0.06);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #2D5A3D;
    padding: 10px 18px;
    border-radius: 100px;
    border: 1.5px solid #2D5A3D;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    background: #2D5A3D;
    color: #fff;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #2D5A3D;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(45, 90, 61, 0.08);
    padding: 16px 24px;
    flex-direction: column;
    gap: 4px;
    z-index: 999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-size: 1rem;
    font-weight: 500;
    color: #4a5e4c;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-nav a:hover {
    background: rgba(45, 90, 61, 0.06);
    color: #2D5A3D;
}

.mobile-phone {
    display: flex !important;
    align-items: center;
    gap: 8px;
    color: #2D5A3D !important;
    font-weight: 600 !important;
    margin-top: 8px;
    padding-top: 16px !important;
    border-top: 1px solid rgba(45, 90, 61, 0.1);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(160deg, #FDFBF7 0%, #f0f5f1 50%, #e8f0e8 100%);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 600px 600px at 80% 20%, rgba(45, 90, 61, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 10% 80%, rgba(93, 149, 96, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #2D5A3D;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(45, 90, 61, 0.15);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-badge svg {
    color: #3d7a42;
}

.hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    font-weight: 600;
    line-height: 1.15;
    color: #1a2e1c;
    margin-bottom: 20px;
}

.hero-headline em {
    font-style: italic;
    color: #2D5A3D;
    position: relative;
}

.hero-headline em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(45, 90, 61, 0.3), transparent);
    border-radius: 2px;
}

.hero-sub {
    font-size: 1.1rem;
    color: #5a6b5c;
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* ===== HERO VISUAL ===== */
.hero-visual {
    position: relative;
    max-width: 520px;
}

.hero-card-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(45, 90, 61, 0.15);
    aspect-ratio: 4/3;
}

.hero-card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(45, 90, 61, 0.12);
    animation: float 4s ease-in-out infinite;
}

.floating-card--1 {
    top: -20px;
    left: -30px;
    animation-delay: 0s;
}

.floating-card--2 {
    bottom: 60px;
    left: -40px;
    animation-delay: 1.3s;
}

.floating-card--3 {
    bottom: -20px;
    right: -20px;
    animation-delay: 2.6s;
}

.fc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2D5A3D, #3d7a42);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.fc-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2e1c;
    line-height: 1.2;
}

.fc-label {
    display: block;
    font-size: 0.78rem;
    color: #6b7f6d;
    line-height: 1.3;
}

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

/* ===== TRUST BAR ===== */
.trust-bar {
    background: #fff;
    border-top: 1px solid rgba(45, 90, 61, 0.06);
    border-bottom: 1px solid rgba(45, 90, 61, 0.06);
    padding: 20px 0;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #4a5e4c;
}

.trust-item svg {
    color: #3d7a42;
    flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: #FDFBF7;
}

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

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(45, 90, 61, 0.07);
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(45, 90, 61, 0.12);
    border-color: rgba(45, 90, 61, 0.15);
}

.service-card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 46, 28, 0.5), transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card:hover .service-card-overlay {
    opacity: 1;
}

.service-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D5A3D;
    margin-bottom: 4px;
}

.service-card-body {
    padding: 24px;
}

.service-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a2e1c;
    margin-bottom: 10px;
}

.service-card-body > p {
    font-size: 0.92rem;
    color: #5a6b5c;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #4a5e4c;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3d7a42, #2D5A3D);
    flex-shrink: 0;
}

/* ===== WHY US ===== */
.why-us {
    padding: 100px 0;
    background: linear-gradient(160deg, #f0f5f1 0%, #FDFBF7 60%, #e8f0e8 100%);
}

.why-us-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-us-images {
    position: relative;
}

.wu-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(45, 90, 61, 0.12);
    aspect-ratio: 5/6;
}

.wu-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wu-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid #FDFBF7;
    box-shadow: 0 12px 40px rgba(45, 90, 61, 0.15);
    aspect-ratio: 4/3.5;
}

.wu-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wu-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: linear-gradient(135deg, #2D5A3D, #3d7a42);
    color: #fff;
    padding: 16px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(45, 90, 61, 0.3);
}

.wu-badge-number {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
}

.wu-badge-year {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.1;
}

.wu-badge-text {
    display: block;
    font-size: 0.72rem;
    opacity: 0.85;
    margin-top: 4px;
}

.why-us-content {
    max-width: 480px;
}

.why-us-content > .section-desc {
    margin-bottom: 36px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-feature {
    display: flex;
    gap: 16px;
}

.wf-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.1), rgba(61, 122, 66, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D5A3D;
    flex-shrink: 0;
}

.why-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a2e1c;
    margin-bottom: 4px;
}

.why-feature p {
    font-size: 0.9rem;
    color: #5a6b5c;
    line-height: 1.65;
}

/* ===== PROJECTS ===== */
.projects {
    padding: 100px 0;
    background: #FDFBF7;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

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

.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 46, 28, 0.7) 0%, transparent 55%);
    transition: opacity 0.35s ease;
}

.project-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 1;
    transform: translateY(8px);
    transition: transform 0.35s ease;
}

.project-card:hover .project-card-info {
    transform: translateY(0);
}

.project-type {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b9d0ba;
    margin-bottom: 6px;
}

.project-card-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(160deg, #f0f5f1 0%, #FDFBF7 100%);
}

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

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(45, 90, 61, 0.07);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(45, 90, 61, 0.1);
}

.tc-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1;
    color: #2D5A3D;
    opacity: 0.15;
    position: absolute;
    top: 16px;
    left: 24px;
}

.tc-text {
    font-size: 0.95rem;
    color: #4a5e4c;
    line-height: 1.75;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    padding-top: 20px;
}

.tc-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-top: 1px solid rgba(45, 90, 61, 0.08);
    padding-top: 16px;
}

.tc-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: #1a2e1c;
}

.tc-location {
    font-size: 0.82rem;
    color: #6b7f6d;
}

/* ===== PROCESS ===== */
.process {
    padding: 100px 0;
    background: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
    align-items: start;
}

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

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #2D5A3D;
    opacity: 0.12;
    line-height: 1;
    margin-bottom: 12px;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a2e1c;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.88rem;
    color: #5a6b5c;
    line-height: 1.7;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b9d0ba;
    margin-top: 20px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a2e1c 0%, #2D5A3D 50%, #3d7a42 100%);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 800px 400px at 20% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 600px 300px at 80% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: linear-gradient(160deg, #FDFBF7 0%, #f0f5f1 100%);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info > .section-desc {
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cd-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cd-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.1), rgba(61, 122, 66, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D5A3D;
    flex-shrink: 0;
}

.cd-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7f6d;
    margin-bottom: 2px;
}

.cd-item a {
    color: #2D5A3D;
    font-weight: 500;
    transition: color 0.2s;
}

.cd-item a:hover {
    color: #3d7a42;
}

.cd-item span {
    color: #4a5e4c;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(45, 90, 61, 0.07);
    box-shadow: 0 8px 40px rgba(45, 90, 61, 0.06);
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a2e1c;
    margin-bottom: 24px;
}

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

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a5e4c;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(45, 90, 61, 0.15);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    color: #1a2e1c;
    background: #FDFBF7;
    transition: all 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2D5A3D;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0b0a4;
}

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

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px;
    text-align: center;
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.05), rgba(61, 122, 66, 0.03));
    border-radius: 16px;
    border: 1px solid rgba(45, 90, 61, 0.12);
    margin-top: 16px;
}

.form-success svg {
    color: #3d7a42;
}

.form-success p {
    font-size: 0.95rem;
    color: #2D5A3D;
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    background: #142a1c;
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-tagline {
    color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #b9d0ba;
}

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 4px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: #b9d0ba;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 24px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-us-content {
        max-width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .step-connector {
        display: none;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .main-nav,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .floating-card {
        padding: 12px 14px;
    }

    .floating-card--1 {
        top: -10px;
        left: -10px;
    }

    .floating-card--2 {
        bottom: 40px;
        left: -20px;
    }

    .floating-card--3 {
        bottom: -10px;
        right: -10px;
    }

    .fc-icon {
        width: 36px;
        height: 36px;
    }

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

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

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

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .contact-form-wrap {
        padding: 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .wu-img-secondary {
        right: -10px;
        bottom: -20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 90px 0 50px;
    }

    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .floating-card {
        display: none;
    }

    .floating-card--1 {
        display: flex;
    }

    .trust-items {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
