:root {
    --primary: #1A3C34;
    --primary-light: #2D5A4E;
    --accent: #25D366;
    --accent-hover: #1DA851;
    --pink: #E07A5F;
    --bg-white: #ffffff;
    --bg-light: #F4F7F5;
    --text-dark: #111827;
    --text-body: #475467;
    --text-light: #B0BEC5;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-soft: 0 12px 34px rgba(0, 75, 135, 0.05);
    --shadow-hover: 0 24px 50px rgba(0, 75, 135, 0.12);
    --radius: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.15;
    font-weight: 700;
}

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

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background:
        radial-gradient(circle at top left, rgba(37, 211, 102, .08), transparent 34%),
        var(--bg-light);
}

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

.eyebrow,
.section-subtitle {
    display: block;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pink);
    margin-bottom: 14px;
    font-weight: 800;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 22px;
}

.section-desc {
    font-size: 1.08rem;
    max-width: 650px;
    margin-bottom: 48px;
}

.grid-3,
.grid-4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.grid-3>*,
.grid-4>* {
    width: 100%;
    max-width: 400px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    font-size: .95rem;
    font-weight: 800;
    border-radius: 999px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.btn-lg {
    padding: 20px 38px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent));
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(37, 211, 102, 0.35);
}

.btn-text {
    color: #fff;
    padding-left: 0;
    padding-right: 0;
}

.btn-text:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-4px);
}

.btn-back {
    white-space: nowrap;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 1001;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(26, 60, 52, .98);
    backdrop-filter: blur(16px);
    padding: 14px 0;
    box-shadow: 0 10px 35px rgba(0, 34, 62, .18);
}

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

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo img {
    width: 100px;
    height: auto;
}

.brand-logo span {
    display: block;
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--accent);
    text-transform: uppercase;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn) {
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    opacity: .86;
}

.nav-links a:not(.btn):hover {
    color: var(--accent);
    opacity: 1;
}

.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    padding: 8px;
    border-radius: 12px;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent);
    transform: scale(1.05);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.hero {
    position: relative;
    min-height: 760px;
    height: 100vh;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 5%;
    width: 350px;
    height: 350px;
    background: var(--pink);
    opacity: .2;
    border-radius: 50%;
    filter: blur(80px);
}

.hero::after {
    content: '';
    position: absolute;
    right: 5%;
    bottom: 5%;
    width: 450px;
    height: 450px;
    background: var(--accent);
    opacity: .22;
    border-radius: 50%;
    filter: blur(100px);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(26, 60, 52, .92) 0%, rgba(26, 60, 52, .7) 45%, rgba(37, 211, 102, .1) 100%);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    color: #fff;
    padding-top: 200px;
}

.hero h1 {
    color: #fff;
    font-size: clamp(2.8rem, 6vw, 5rem);
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.15rem;
    opacity: .9;
    margin-bottom: 38px;
    max-width: 570px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

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

.about-image {
    position: relative;
}

.about-image img:not(.experience-logo) {
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(0, 34, 62, .16);
}

.experience-logo {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 180px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 10px 20px rgba(0, 75, 135, 0.2));
    transition: var(--transition);
}

.about-text p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.signature {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 34, 62, .12);
}

.signature .name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-dark);
}

.signature .role {
    font-size: .85rem;
    color: var(--pink);
    font-weight: 800;
}

.card-feature {
    max-width: 350px;
}

.card-feature,
.card-service {
    background: #fff;
    padding: 42px 32px;
    border: 1px solid rgba(0, 34, 62, .05);
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.card-feature:hover,
.card-service:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-feature .icon {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.card-feature h3,
.card-service h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card-service {
    display: block;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.card-service::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

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

.card-service p {
    font-size: .95rem;
    margin-bottom: 22px;
}

.link-arrow {
    color: var(--pink);
    font-size: 1.4rem;
    font-weight: 800;
}

.card-service:hover h3,
.card-service:hover p,
.card-service:hover .link-arrow {
    color: #fff;
}

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

.stats {
    position: relative;
    background: url('./assets/img01.png') center/cover fixed;
    color: #fff;
    padding: 120px 0;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 60, 52, 0.9);
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.stats .section-header {
    flex: 0 0 100%;
    margin-bottom: 50px;
    text-align: center;
}

.stats .section-header .section-subtitle {
    color: var(--accent);
}

.stats .section-header .section-title {
    color: #fff;
}

.stats .section-header .section-desc {
    color: rgba(255, 255, 255, 0.85);
}

.stats .card-service {
    flex: 1 1 300px;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    text-align: left;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.stats .card-service h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.stats .card-service p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.stats .card-service .link-arrow {
    color: var(--accent);
    display: inline-block;
    transition: transform 0.3s ease;
    margin-top: 20px;
}

.stats .card-service:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.stats .card-service:hover h3 {
    color: var(--accent);
}

.stats .card-service:hover .link-arrow {
    transform: translateX(10px);
    color: #fff;
}

.stats .card-service::before {
    display: none;
}

.quote-icon {
    font-size: 4rem;
    color: var(--pink);
    line-height: 1;
    margin-bottom: 12px;
    opacity: .35;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--pink);
    transform: scale(1.3);
}

.cta-final {
    position: relative;
    padding: 120px 0;
    background-image: url('./assets/img02.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 60, 52, .95), rgba(45, 90, 78, .85));
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.cta-final h2 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 22px;
}

.cta-final p {
    font-size: 1.12rem;
    opacity: .92;
    margin-bottom: 36px;
}

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

.location-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
}

.location-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.location-image img {
    width: 100%;
    height: auto;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.map-container:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.map-container iframe {
    display: block;
}

.footer {
    background: var(--primary);
    color: #fff;
    padding: 76px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 42px;
    margin-bottom: 56px;
}

.footer-brand p {
    margin-top: 16px;
    color: var(--text-light);
    max-width: 330px;
}

.footer h4 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
    color: var(--text-light);
}

.footer ul a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 28px;
    display: flex;
    gap: 14px;
    text-align: center;
    color: var(--text-light);
    font-size: .85rem;
    justify-content: space-between;
    align-items: center;
}

.btn-floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
    animation: pulseWa 2.5s infinite;
}

.btn-floating-wa:hover {
    transform: scale(1.1) translateY(-4px);
    background: #20bd5a;
}

.reveal {
    opacity: 0;
    visibility: hidden;
}

.fade-up.active {
    animation: fadeUp .8s cubic-bezier(.25, .46, .45, .94) forwards;
}

.fade-right.active {
    animation: fadeRight .8s cubic-bezier(.25, .46, .45, .94) forwards;
}

.fade-left.active {
    animation: fadeLeft .8s cubic-bezier(.25, .46, .45, .94) forwards;
}

.page-header {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-header .section-title {
    color: #fff;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

.highlight-pink {
    color: var(--pink);
}

@media (min-width: 992px) {
    .nav-links {
        display: flex;
    }

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

    .location-grid-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1002;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(26, 60, 52, 0.98);
        flex-direction: column;
        padding: 120px 40px;
        z-index: 1000;
        backdrop-filter: blur(20px);
        box-shadow: -15px 0 45px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        align-items: flex-start;
        gap: 25px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a:not(.btn) {
        font-size: 1.15rem;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 12px;
        opacity: 0.9;
    }

    .map-container {
        height: 450px;
    }
}

@media (max-width: 760px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .section-padding {
        padding: 72px 0;
    }

    .btn-floating-wa {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .hero {
        min-height: 680px;
    }

    .hero-actions,
    .cta-actions {
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .btn-back {
        width: auto !important;
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .hide-mobile {
        display: none;
    }

    .brand-logo {
        font-size: 1.15rem;
        gap: 8px;
    }

    .brand-logo img {
        width: 70px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@keyframes pulseWa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        visibility: hidden;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        visibility: hidden;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        visibility: hidden;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
}