html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #1f2937;
    overflow-x: hidden;
}

/* =========================
   NAVBAR
========================= */

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-custom {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 24px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
}

.brand-logo {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255,255,255,.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    font-weight: 800;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

    .brand-text strong {
        color: white;
        font-size: 34px;
        font-weight: 800;
        letter-spacing: 2px;
    }

    .brand-text span {
        margin-top: 5px;
        color: white;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1px;
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

    .nav-links a {
        position: relative;
        color: white;
        text-decoration: none;
        font-size: 18px;
        font-weight: 600;
        transition: color .25s ease;
    }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 0;
            height: 2px;
            border-radius: 999px;
            background: #86efac;
            transition: width .3s ease;
        }

        .nav-links a:hover {
            color: #d1fae5;
        }

            .nav-links a:hover::after {
                width: 100%;
            }

.header-phone {
    padding: 14px 22px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    background: rgba(255,255,255,.03);
    transition: .3s ease;
}

    .header-phone:hover {
        background: white;
        color: #08754a;
        transform: translateY(-2px);
    }

/* =========================
   HERO
========================= */

.hero-section {
    width: 100%;
    min-height: 760px;
    padding-top: 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 88% 28%, rgba(74, 222, 128, .16), transparent 24%), radial-gradient(circle at 8% 92%, rgba(255, 255, 255, .05), transparent 30%), linear-gradient(135deg, #045c3a 0%, #08754a 48%, #075b3c 100%);
}

.hero-content {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 50px 65px;
    display: grid;
    grid-template-columns: minmax(0, 58%) minmax(0, 42%);
    align-items: center;
    column-gap: 30px;
    color: white;
}

.hero-left {
    min-width: 0;
    animation: heroTextIn .9s ease both;
}

.hero-right {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    animation: heroLogoIn 1.05s ease both;
}

.hero-small {
    margin-bottom: 26px;
    color: white;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 1120px;
    margin: 0 0 30px 0;
    color: white;
    font-size: 76px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
    text-shadow: 0 8px 30px rgba(0,0,0,.15);
}

    .hero-content h1 span {
        display: block;
        color: #a7f3d0;
        white-space: nowrap;
    }

.hero-description {
    max-width: 760px;
    margin-bottom: 38px;
    color: rgba(255,255,255,.96);
    font-size: 22px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 42px;
}

/* =========================
   BUTTONS
========================= */

.btn-primary-custom,
.btn-secondary-custom {
    display: inline-block;
    padding: 18px 38px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: .3s ease;
}

.btn-primary-custom {
    background: #16c55b;
    color: white;
    box-shadow: 0 12px 30px rgba(22,197,91,.30);
}

    .btn-primary-custom:hover {
        background: #14b85a;
        color: white;
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 20px 45px rgba(22,197,91,.40);
    }

.btn-secondary-custom {
    border: 2px solid rgba(255,255,255,.95);
    background: rgba(255,255,255,.02);
    color: white;
}

    .btn-secondary-custom:hover {
        background: white;
        color: #08754a;
        transform: translateY(-5px) scale(1.02);
    }

/* =========================
   HERO LOGO
========================= */

.hero-logo {
    width: 620px;
    max-width: none;
    height: auto;
    display: block;
    margin-right: -120px;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,.28));
    transition: transform .45s ease, filter .45s ease;
}

    .hero-logo:hover {
        transform: scale(1.045) rotate(-1.5deg);
        filter: drop-shadow(0 36px 70px rgba(0,0,0,.34));
    }

/* =========================
   SERVICES
========================= */

.services-section {
    padding: 95px 30px;
    background: #ffffff;
}

.section-header {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

    .section-header p {
        margin-bottom: 12px;
        color: #16a34a;
        font-size: 18px;
        font-weight: 800;
        letter-spacing: 3px;
    }

    .section-header h2 {
        margin: 0;
        color: #163d2b;
        font-size: 52px;
        font-weight: 800;
        letter-spacing: -1px;
    }

.services-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.service-card {
    padding: 38px;
    background: white;
    border: 1px solid rgba(22, 101, 52, .07);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.07);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

    .service-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 60px rgba(0,0,0,.14);
        border-color: rgba(22,197,91,.20);
    }

.service-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 18px;
    background: #edfdf3;
    color: #16a34a;
    font-size: 34px;
    transition: .35s ease;
}

.service-card:hover .service-icon {
    background: #16c55b;
    color: white;
    transform: rotate(-8deg) scale(1.08);
}

.service-card h3 {
    margin-bottom: 14px;
    color: #166534;
    font-size: 30px;
    font-weight: 700;
}

.service-card p {
    margin: 0;
    color: #667085;
    font-size: 19px;
    line-height: 1.8;
}

/* =========================
   WHY
========================= */

.why-section {
    padding: 95px 30px;
    background: #f0fdf4;
}

.why-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: center;
}

    .why-grid div {
        padding: 38px 25px;
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,.06);
        transition: .35s ease;
    }

        .why-grid div:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 45px rgba(0,0,0,.10);
        }

    .why-grid strong {
        display: block;
        margin-bottom: 12px;
        color: #16a34a;
        font-size: 50px;
    }

    .why-grid span {
        color: #344054;
        font-size: 21px;
        font-weight: 700;
    }

/* =========================
   CONTACT
========================= */

.contact-section {
    padding: 90px 30px;
    background: radial-gradient(circle at 50% 0%, rgba(34,197,94,.15), transparent 35%), #14532d;
    color: white;
    text-align: center;
}

    .contact-section h2 {
        margin-bottom: 16px;
        font-size: 52px;
        font-weight: 800;
    }

    .contact-section p {
        max-width: 700px;
        margin: 0 auto 32px;
        font-size: 21px;
        line-height: 1.7;
    }

/* =========================
   ANIMATIONS
========================= */

@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translateY(34px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroLogoIn {
    from {
        opacity: 0;
        transform: translateX(55px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {
    .navbar-custom {
        padding-left: 28px;
        padding-right: 28px;
    }

    .nav-links {
        gap: 20px;
    }

        .nav-links a {
            font-size: 15px;
        }

    .hero-content {
        padding-left: 28px;
        padding-right: 28px;
        grid-template-columns: minmax(0, 60%) minmax(0, 40%);
        column-gap: 20px;
    }

        .hero-content h1 {
            font-size: 60px;
        }

    .hero-description {
        font-size: 19px;
    }

    .hero-logo {
        width: 450px;
        max-width: 100%;
        margin-right: -25px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
    .navbar-custom {
        padding: 18px 20px;
    }

    .nav-links {
        display: none;
    }

    .header-phone {
        padding: 10px 14px;
        font-size: 13px;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
        font-size: 21px;
    }

    .brand-text strong {
        font-size: 23px;
    }

    .brand-text span {
        font-size: 9px;
    }

    .hero-section {
        min-height: auto;
        padding-top: 90px;
    }

    .hero-content {
        padding: 65px 22px 55px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-right {
        justify-content: center;
    }

    .hero-small {
        font-size: 15px;
        letter-spacing: 3px;
    }

    .hero-content h1 {
        font-size: 48px;
        letter-spacing: -1px;
    }

        .hero-content h1 span {
            white-space: normal;
        }

    .hero-description {
        font-size: 18px;
    }

    .hero-buttons {
        margin-top: 30px;
    }

    .hero-logo {
        width: 390px;
        max-width: 100%;
        margin: 0 auto;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .service-card h3 {
        font-size: 24px;
    }

    .service-card p {
        font-size: 17px;
    }

    .contact-section h2 {
        font-size: 38px;
    }

    .contact-section p {
        font-size: 18px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 520px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        text-align: center;
        font-size: 18px;
    }

    .header-phone {
        display: none;
    }

    .section-header h2 {
        font-size: 32px;
    }
}

.section-header span {
    display: block;
    max-width: 720px;
    margin: 18px auto 0;
    color: #667085;
    font-size: 18px;
    line-height: 1.75;
}

.services-grid {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: #16c55b;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .35s ease;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

.service-icon {
    width: 72px;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 18px;
    background: #edfdf3;
    color: #16a34a;
    font-size: 34px;
    margin-bottom: 25px;
    transition: .35s;
}

.service-link {
    display: inline-block;
    margin-top: 22px;
    color: #15803d;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: .25s ease;
}

    .service-link:hover {
        color: #16c55b;
        transform: translateX(5px);
    }

@media (max-width: 900px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header span {
        font-size: 17px;
    }
}
/* =========================
   CONTACT FORM
========================= */

.contact-form-section {
    padding: 110px 30px;
    background: #f6fff9;
}

.contact-form-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.contact-label {
    color: #16a34a;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 3px;
}

.contact-form-info h2 {
    margin: 15px 0 22px;
    color: #163d2b;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
}

.contact-form-info > p {
    color: #667085;
    font-size: 18px;
    line-height: 1.8;
}

.contact-info-item {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #344054;
    font-size: 17px;
    font-weight: 600;
}

    .contact-info-item i {
        width: 45px;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 12px;
        background: #dcfce7;
        color: #16a34a;
    }

.contact-form-card {
    padding: 45px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.09);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #344054;
        font-size: 15px;
        font-weight: 700;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 15px 16px;
        border: 1px solid #d0d5dd;
        border-radius: 12px;
        outline: none;
        background: white;
        color: #1f2937;
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        transition: .25s ease;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #16c55b;
            box-shadow: 0 0 0 4px rgba(22,197,91,.12);
        }

    .form-group textarea {
        resize: vertical;
    }

.submit-contact {
    width: 100%;
    padding: 17px 25px;
    border: none;
    border-radius: 12px;
    background: #16c55b;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease;
}

    .submit-contact i {
        margin-right: 8px;
    }

    .submit-contact:hover {
        background: #12b052;
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(22,197,91,.30);
    }

.success-message {
    margin-bottom: 25px;
    padding: 16px 18px;
    border-radius: 12px;
    background: #dcfce7;
    color: #166534;
    font-weight: 700;
}

    .success-message i {
        margin-right: 8px;
    }

@media (max-width: 900px) {

    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-form-info h2 {
        font-size: 38px;
    }
}

@media (max-width: 600px) {

    .contact-form-section {
        padding: 80px 20px;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
.success-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(3, 36, 24, 0.65);
    backdrop-filter: blur(8px);
    animation: popupFadeIn .3s ease;
}

.success-popup {
    width: 100%;
    max-width: 460px;
    padding: 45px 35px;
    background: white;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .25);
    animation: popupScaleIn .35s ease;
}

.success-popup-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    font-size: 42px;
}

.success-popup h3 {
    margin: 0 0 14px;
    color: #163d2b;
    font-size: 32px;
    font-weight: 800;
}

.success-popup p {
    margin: 0 0 28px;
    color: #667085;
    font-size: 17px;
    line-height: 1.7;
}

.success-popup button {
    min-width: 150px;
    padding: 14px 30px;
    border: none;
    border-radius: 12px;
    background: #16c55b;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease;
}

    .success-popup button:hover {
        background: #12b052;
        transform: translateY(-2px);
    }

@keyframes popupFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes popupScaleIn {
    from {
        opacity: 0;
        transform: scale(.88) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
/* =========================
   ABOUT
========================= */

.about-section {
    padding: 110px 30px;
    background: #ffffff;
}

.about-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.about-label {
    margin-bottom: 16px;
    color: #16a34a;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 4px;
}

.about-left h2 {
    margin: 0 0 25px;
    color: #163d2b;
    font-size: 50px;
    line-height: 1.15;
    font-weight: 800;
}

.about-left > p {
    color: #667085;
    font-size: 19px;
    line-height: 1.8;
}

.about-button {
    display: inline-block;
    margin-top: 22px;
    padding: 16px 30px;
    border-radius: 12px;
    background: #16c55b;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: .3s ease;
}

    .about-button:hover {
        background: #12b052;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(22,197,91,.25);
    }

.about-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    padding: 26px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #e7eee9;
    border-radius: 18px;
    background: #fbfffc;
    transition: .3s ease;
}

    .about-feature:hover {
        transform: translateX(8px);
        border-color: #bbf7d0;
        box-shadow: 0 15px 35px rgba(0,0,0,.07);
    }

.about-icon {
    width: 62px;
    height: 62px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #dcfce7;
    color: #16a34a;
    font-size: 26px;
}

.about-feature h3 {
    margin: 0 0 5px;
    color: #166534;
    font-size: 21px;
    font-weight: 700;
}

.about-feature p {
    margin: 0;
    color: #667085;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 900px) {

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-left h2 {
        font-size: 38px;
    }
}
/* ==========================
   GALLERY
==========================*/

.gallery-section {
    padding: 110px 30px;
    background: #ffffff;
}

.gallery-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
}

    .gallery-item img {
        width: 100%;
        height: 330px;
        object-fit: cover;
        transition: .45s;
    }

    .gallery-item:hover img {
        transform: scale(1.08);
    }

@media(max-width:900px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
/* LIGHTBOX */

/* =========================
   GALLERY LIGHTBOX
========================= */

.gallery-item {
    cursor: pointer;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    padding: 40px;
}

    .lightbox.active {
        display: flex;
    }

#lightbox-img {
    display: block;
    width: auto;
    height: auto;
    max-width: 88vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 25px 80px rgba(0,0,0,.55);
}

.close-lightbox {
    position: absolute;
    top: 22px;
    right: 35px;
    width: 55px;
    height: 55px;
    border: none;
    background: transparent;
    color: white;
    font-size: 48px;
    line-height: 1;
    cursor: pointer;
    z-index: 100001;
}

    .close-lightbox:hover {
        color: #16c55b;
    }

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.10);
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: .25s ease;
}

    .lightbox-arrow:hover {
        background: #16c55b;
    }

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

@media (max-width: 700px) {

    .lightbox {
        padding: 20px;
    }

    #lightbox-img {
        max-width: 94vw;
        max-height: 80vh;
    }

    .lightbox-arrow {
        width: 45px;
        height: 45px;
        font-size: 28px;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    .close-lightbox {
        top: 12px;
        right: 12px;
    }
}
/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-button {
    position: fixed;
    right: 25px;
    bottom: 80px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 34px;
    z-index: 9999;
    box-shadow: 0 12px 30px rgba(37,211,102,.45);
    transition: .3s ease;
    animation: whatsappPulse 2s infinite;
}

    .whatsapp-button:hover {
        transform: scale(1.12);
        color: white;
        background: #20ba5a;
    }

@keyframes whatsappPulse {

    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,.6);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

@media(max-width:768px) {

    .whatsapp-button {
        width: 58px;
        height: 58px;
        font-size: 30px;
        right: 18px;
        bottom: 18px;
    }
}
/* =========================
   FOOTER
========================= */

.site-footer {
    background: #063f2c;
    color: white;
    padding: 80px 30px 0;
}

.footer-wrapper {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 60px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.footer-brand p {
    max-width: 360px;
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 16px;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footer-column h4 {
        margin: 0 0 12px;
        color: white;
        font-size: 19px;
        font-weight: 700;
    }

    .footer-column a {
        color: rgba(255,255,255,.72);
        text-decoration: none;
        font-size: 15px;
        transition: .25s ease;
    }

        .footer-column a:hover {
            color: #86efac;
            transform: translateX(4px);
        }

.footer-contact p {
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.75);
    font-size: 15px;
}

.footer-contact i {
    color: #4ade80;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

    .footer-socials a {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        color: white;
        font-size: 18px;
        transition: .3s ease;
    }

        .footer-socials a:hover {
            background: #16c55b;
            color: white;
            transform: translateY(-3px);
        }

.footer-bottom {
    max-width: 1300px;
    margin: 55px auto 0;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,.10);
    text-align: center;
}

    .footer-bottom p {
        margin: 0;
        color: rgba(255,255,255,.55);
        font-size: 14px;
    }

@media (max-width: 900px) {

    .footer-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }
}

@media (max-width: 600px) {

    .site-footer {
        padding: 60px 22px 0;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-bottom {
        margin-top: 40px;
    }
}
/* MOBILE NAVIGATION */

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 27px;
    cursor: pointer;
    padding: 8px;
}


/* TABLET + MOBILE */
@media (max-width: 900px) {

    .navbar-custom {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .header-phone {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 12px;
        right: 12px;
        flex-direction: column;
        align-items: stretch;
        background: #075f42;
        border-radius: 16px;
        padding: 12px 18px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        z-index: 9999;
    }

        .nav-links.mobile-open {
            display: flex;
        }

        .nav-links a {
            width: 100%;
            padding: 13px 5px;
            color: white;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }

            .nav-links a:last-child {
                border-bottom: none;
            }
}


/* PHONE */
@media (max-width: 576px) {

    .navbar-custom {
        padding-left: 16px;
        padding-right: 16px;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .brand-text strong {
        font-size: 25px;
    }

    .brand-text span {
        font-size: 10px;
    }

    .mobile-menu-btn {
        font-size: 25px;
    }
}