:root {
    --bg: #f6fbf7;
    --surface: #ffffff;
    --text: #2f3e36;
    --heading: #255b33;
    --muted: #64748b;
    --line: #e5e7eb;

    --green: #2f9e44;
    --green-dark: #237a34;
    --green-soft: #e8f7ec;

    --radius: 22px;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

/* NAVBAR */

.navbar {
    background: rgba(255, 255, 255, 0.96) !important;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.navbar-brand {
    color: var(--green-dark) !important;
    font-weight: 800;
}

.navbar .nav-link {
    color: var(--text) !important;
    font-weight: 700;
}

.navbar .nav-link:hover {
    color: var(--green-dark) !important;
}

.navbar .btn,
.navbar .btn-light {
    background: var(--green) !important;
    border-color: var(--green) !important;
    color: white !important;
    border-radius: 999px;
    font-weight: 700;
}

/* HERO */

.hero {
    padding: 85px 0 70px;
    background:
        radial-gradient(circle at top right, rgba(47, 158, 68, 0.16), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.eyebrow {
    margin-bottom: 16px;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.78rem;
    font-weight: 800;
}

.hero h1 {
    max-width: 820px;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 24px;
}

.hero-text {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* BUTTONS */

.btn-main,
.btn-secondary-custom,
.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
}

.btn-main {
    background: var(--green);
    color: white;
    border: 1px solid var(--green);
}

.btn-main:hover {
    background: var(--green-dark);
    color: white;
}

.btn-secondary-custom {
    background: white;
    color: var(--green-dark);
    border: 1px solid #b7dfc0;
}

.btn-secondary-custom:hover {
    background: var(--green-soft);
    color: var(--green-dark);
}

.btn-white {
    background: white;
    color: var(--green-dark);
}

.btn-white:hover {
    background: var(--green-soft);
    color: var(--green-dark);
}

.btn-main i,
.btn-secondary-custom i,
.btn-white i,
.floating-contact i {
    margin-right: 8px;
}

/* CARDS */

.hero-panel,
.trust-card,
.service-card,
.contact-form-card,
.contact-info-card,
.success-card,
.privacy-card {
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

/* HERO PANEL */

.hero-panel {
    border-radius: 30px;
    padding: 34px;
}

.panel-badge {
    display: inline-block;
    background: var(--green-soft);
    color: var(--green-dark);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 22px;
}

.panel-badge i {
    margin-right: 6px;
}

.hero-panel h2 {
    font-size: 1.8rem;
    color: var(--heading);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-panel li {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.hero-panel li::before {
    content: "✓";
    color: var(--green);
    font-weight: 900;
    margin-right: 10px;
}

.hero-panel li:last-child {
    border-bottom: 0;
}

/* TRUST */

.trust-section {
    padding: 35px 0 85px;
}

.trust-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.trust-card,
.service-card {
    border-radius: var(--radius);
    padding: 28px;
}

.trust-icon,
.service-icon {
    width: 52px;
    height: 52px;
    background: var(--green-soft);
    color: var(--green-dark);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.trust-icon i {
    font-size: 1.35rem;
}

.service-icon-svg img {
    width: 40px;
    height: 40px;
    display: block;
}

.trust-card h3,
.service-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--heading);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.trust-card p,
.service-card p,
.section-heading p,
.work-types-box p,
.contact-hero p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* SERVICES */

.services-section {
    padding: 85px 0;
    background: white;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-heading h2,
.work-types-box h2,
.cta-box h2 {
    color: var(--heading);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.04em;
    font-weight: 700;
    margin-bottom: 14px;
}

.service-card {
    transition: 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: #b7dfc0;
}

/* WORK TYPES */

.work-types-section {
    padding: 85px 0;
    background: var(--bg);
}

.work-types-box {
    background: white;
    border: 1px solid var(--line);
    border-radius: 32px;
    padding: 46px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 38px;
    align-items: center;
    box-shadow: var(--shadow);
}

.work-list {
    display: grid;
    gap: 14px;
}

.work-list div {
    background: var(--green-soft);
    color: var(--green-dark);
    border-radius: 18px;
    padding: 15px 18px;
    font-weight: 800;
}

.work-list i {
    margin-right: 8px;
}

/* SERVICE AREA */

.service-area-section {
    padding: 90px 0;
    background: #f8fcf8;
}

.service-area-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.service-area-text h3 {
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--heading);
}

.service-area-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-area-text li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.map-wrapper {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.map-wrapper iframe {
    display: block;
}

/* CTA */

.contact-cta {
    padding: 85px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    border-radius: 32px;
    padding: 46px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow);
}

.cta-box h2 {
    color: white;
    max-width: 760px;
    margin-bottom: 0;
}

.eyebrow.light {
    color: #d9fbe2;
}

/* FLOATING CONTACT */

.floating-contact {
    position: fixed;
    right: 22px;
    bottom: 22px;
    background: var(--green);
    color: white;
    padding: 14px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: var(--shadow);
    z-index: 999;
}

.floating-contact:hover {
    background: var(--green-dark);
    color: white;
}

/* CONTACT PAGE */

.contact-hero {
    padding: 80px 0 45px;
    background:
        radial-gradient(circle at top right, rgba(47, 158, 68, 0.14), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.contact-hero h1 {
    max-width: 820px;
    color: var(--heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-section {
    padding: 40px 0 90px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: start;
}

.contact-form-card,
.contact-info-card {
    border-radius: 28px;
    padding: 34px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group label {
    display: block;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 1rem;
    outline: none;
    background: #fbfdfb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(47, 158, 68, 0.12);
}

input[type="file"] {
    background: #fbfdfb;
    cursor: pointer;
}

.form-help {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.9rem;
}

.info-badge {
    display: inline-block;
    background: var(--green-soft);
    color: var(--green-dark);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 20px;
}

.info-badge i,
.info-item i {
    margin-right: 8px;
}

.contact-info-card h2 {
    color: var(--heading);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 26px;
}

.info-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.info-item span {
    display: block;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.info-item a,
.info-item p {
    color: var(--text);
    font-weight: 800;
    text-decoration: none;
    margin: 0;
}

.info-item a:hover {
    color: var(--green-dark);
}

.info-note,
.privacy-check {
    margin-top: 24px;
    background: var(--green-soft);
    color: var(--green-dark);
    border-radius: 20px;
    padding: 18px;
    line-height: 1.6;
    font-weight: 700;
}

.privacy-check label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-weight: 600;
    color: var(--text);
}

.privacy-check input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.privacy-check a {
    color: var(--green-dark);
    font-weight: 800;
    text-decoration: none;
}

/* SUCCESS PAGE */

.success-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background:
        radial-gradient(circle at top right, rgba(47, 158, 68, 0.16), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.success-card {
    max-width: 760px;
    margin: 0 auto;
    border-radius: 32px;
    padding: 48px;
    text-align: center;
}

.success-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 24px;
    background: var(--green-soft);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon i {
    font-size: 3rem;
}

.success-card h1 {
    color: var(--heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.04em;
    font-weight: 700;
    margin-bottom: 18px;
}

.success-text {
    max-width: 560px;
    margin: 0 auto 30px;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.success-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 30px 0;
}

.success-info div {
    background: var(--green-soft);
    border-radius: 20px;
    padding: 18px;
}

.info-box {
    text-align: center;
}

.info-box i {
    font-size: 2rem;
    color: var(--green);
    display: block;
    margin-bottom: 10px;
}

.success-info span {
    display: block;
    color: var(--green-dark);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.success-info a {
    color: var(--text);
    font-weight: 850;
    text-decoration: none;
}

.video-help-box {
    margin: 36px auto 34px;
    padding: 28px;
    max-width: 640px;
    background: var(--green-soft);
    border-radius: 24px;
    text-align: center;
}

.video-help-box i.bi-camera-video-fill {
    font-size: 2rem;
    color: var(--green-dark);
    margin-bottom: 12px;
    display: block;
}

.video-help-box h3 {
    color: var(--heading);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.video-help-box p {
    margin: 0;
    line-height: 1.7;
    color: var(--text);
}

.video-help-box a {
    color: var(--green-dark);
    font-weight: 900;
    text-decoration: none;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.success-actions a i {
    margin-right: 8px;
}

/* PRIVACY PAGE */

.privacy-section {
    padding: 80px 0;
}

.privacy-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 24px;
}

.privacy-card h1 {
    color: var(--heading);
    margin-bottom: 25px;
}

.privacy-card h2 {
    color: var(--heading);
    margin-top: 35px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.privacy-card ul {
    padding-left: 20px;
}

.privacy-card li {
    margin-bottom: 8px;
}

.privacy-card a {
    color: var(--green-dark);
    font-weight: 700;
}

/* FOOTER */

footer {
    background: #173b22 !important;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .hero-grid,
    .trust-grid,
    .services-grid,
    .work-types-box,
    .service-area-grid,
    .contact-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 60px;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.35rem;
    }

    .contact-hero h1 {
        font-size: 2.25rem;
    }

    .hero-panel,
    .trust-card,
    .service-card,
    .work-types-box,
    .cta-box,
    .contact-form-card,
    .contact-info-card,
    .success-card,
    .privacy-card {
        padding: 24px;
    }

    .success-info {
        grid-template-columns: 1fr;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions .btn-main,
    .success-actions .btn-secondary-custom {
        width: 100%;
        max-width: 320px;
    }
}
.language-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 800;
}

.language-switcher a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
}

.language-switcher a.active,
.language-switcher a:hover {
    color: var(--green-dark);
}

.language-switcher span {
    color: var(--muted);
}

.mobile-lang {
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 700;
}

.mobile-lang a {
    color: #237a34;
    text-decoration: none;
}

.mobile-lang a.active {
    text-decoration: underline;
}