/* Global */
:root {
    --primary: #15803d;
    --secondary: #14532d;
    --third: #22c55e;
    --light: #eeeded;
    --dark: #1f1f1f;
    --danger: #b80404;
}

.mb-6rem {
    margin-bottom: 6rem !important;
}

.my-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
}

.bg-gray {
    background-color: var(--light);
}

.cursor-pointer {
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

a.dropdown-item:active {
    background-color: var(--primary) !important;
    color: var(--light) !important;
}

a.nav-link:hover {
    color: var(--third) !important;
}

.font-small-1x {
    font-size: 0.9rem;
}

.color-dark {
    color: var(--dark) !important;
}

/* topbar */
.navigation-wrapper {
    background-color: white !important;
    top: 0 !important;
    transition: none !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e9ecef;
}

.top-bar {
    height: 40px;
    border-bottom: 1px solid rgba(56, 51, 51, 0.06);
}

.navbar .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.navbar-nav {
    font-size: 1rem;
    font-weight: 500;
}

.navbar-nav a {
    color: #333 !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
}

.navbar-nav a:hover {
    color: var(--primary) !important;
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500 !important;
    color: #333 !important;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link.active {
    font-weight: bold !important;
    color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border: none;
}

.btn-primary:hover {
    background-color: #004494;
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.color-primary {
    color: var(--primary) !important;
}

.color-danger {
    color: var(--danger) !important;
}

.navbar li a {
    font-weight: 500;
}

.dropdown-menu {
    background-color: var(--light);
    animation: 0.5s slideup;
}

#homeSlider .swiper-slide {
    cursor: grab;
}

#homeSlider.slider-wrapper img {
    height: 530px;
    width: 100%;
    object-fit: cover;
}

.slider-wrapper {
    margin-top: 0;
    animation: none !important;
    -webkit-animation: none !important;
    transition: none !important;
}

/* Disable WOW animations for hero slider */
#homeSlider.slider-wrapper,
#homeSlider.slider-wrapper *,
#homeSlider .swiper-slide,
#homeSlider .swiper-slide * {
    animation: none !important;
    -webkit-animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    -webkit-transform: none !important;
    transition: none !important;
    -webkit-transition: none !important;
}

@media (max-width: 991.98px) {
    .slider-wrapper {
        margin-top: -120px;
    }

    #homeSlider .swiper-button-next,
    #homeSlider .swiper-button-prev {
        display: none !important;
    }
}

.about-wrapper img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.about-wrapper .fa {
    color: var(--primary) !important;
}

.btn-product-categories button.active {
    background-color: var(--primary);
    border: none;
}

.btn-product-categories .btn-outline-primary:active {
    background-color: var(--primary);
}

.product-container a.product-title {
    color: var(--dark);
    text-decoration: none;
}

.product-container a.text-body {
    text-decoration: none;
}

a.product-item {
    color: #1f1f1f;
    text-decoration: none;
}

a.product-item:hover {
    display: block;
    cursor: pointer;
    border: 1px solid var(--primary);
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    overflow: hidden;
    color: #1f1f1f;
    margin: -1px;
}

.product-item img {
    transition: 0.5s;
}

.product-item img {
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.product-item:hover img {
    transform: scale(1.1);
}

.product-item small a:hover {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.contact-us-container a.rounded-pill {
    background-color: white;
    color: var(--primary) !important;
    font-weight: bold;
    border: none;
}

.contact-us-container a.rounded-pill:hover {
    box-shadow: 0px 0px 55px rgba(0, 0, 0, 0.5);
}

.contact-us-container a.rounded-pill>i {
    transform: translateX(20%);
    transition: 0.5s;
}

.contact-us-container a.rounded-pill:hover>i {
    transform: translateX(70%);
    transition: 0.5s;
}

/* Post container box styling */
.post-container {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-container:hover {
    box-shadow: 0 4px 16px rgba(0, 191, 255, 0.15);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.post-container .post-img img {
    height: 232px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 10px;
    border-radius: 8px;
}

.post-container .post-img img.default-img {
    border: 1px solid #e4e3e3;
}

a.text-link {
    text-decoration: none;
    color: inherit;
}

.color-third {
    color: var(--third) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

.testimony-item .swiper-slide {
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.3) !important;
    height: 450px;
    overflow: hidden;
}

.testimony-item .swiper-slide .testimony-image {
    text-align: center;
}

.testimony-item .swiper-slide img {
    width: 100px !important;
    height: 100px;
    object-fit: fill;
    object-position: center;
    z-index: 99 !important;
    position: relative;
}

.testimony-wave {
    padding: 0;
    margin: 0;
    left: 0;
    bottom: 0;
    width: 400px;
}

.testimony-author {
    font-weight: 500;
}

.testomny-socmed i {
    font-size: 1.6rem;
}

.testomny-socmed {
    margin-bottom: 20px;
}

.testimony-wording {
    height: 140px;
    overflow: hidden;
    margin-bottom: 35px;
    padding-left: 25px;
    padding-right: 25px;
}

.footer {
    color: var(--light);
}

.btn-square {
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.btn-back-to-top {
    right: 30px;
    bottom: 20px;
    border: 2px solid white;
}

.btn-back-to-top:hover {
    border-color: #212529;
}

.dropdown:hover>.dropdown-menu {
    display: block;
}

.dropdown>.dropdown-toggle:active {
    /*Without this, clicking will make it sticky*/
    pointer-events: none;
}

.footer-list a:hover {
    color: #c7c8c9;
}

.swiper-pagination-bullet-lodeh:hover {
    cursor: pointer;
}

.swiper-pagination-bullet-lodeh {
    padding: 5px 30px;
    border-radius: 50px;
    color: gray;
}

.swiper-pagination-bullet-active {
    color: white;
}

.timeline-heading {
    margin-bottom: 17px;
}

.swiper-timeline .swiper-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-wrap: wrap;
    bottom: 0;
}

.our-clients-wrapper .border-bottom {
    width: 80%;
}

.contact-form-wrapper form label {
    font-weight: 500;
}

.map-wrapper {
    margin-top: 8rem !important;
}

.contact-information-wrapper .card {
    border-radius: 5px 72px;
}

.contact-information-wrapper .col-12 .card {
    overflow: auto;
}

.follow-us-wrapper {
    margin-top: 8rem;
    margin-bottom: 10rem;
}

.contact-information-wrapper {
    margin: 9rem 0;
}

.product-cat-newest a:hover img {
    transform: scale(1.1);
    transition: 0.5s;
}

.pagination a,
.product-cat-newest a p,
.product-category-wrapper a p,
.product-category-wrapper .pagination a {
    color: var(--primary);
    font-weight: bold;
    letter-spacing: 0.02rem;
}

.pagination a,
.product-category-wrapper .pagination a {
    font-weight: normal;
}

.product-detail {
    margin-top: 8rem;
    margin-bottom: 5rem;
}

.product-image-swiper {
    width: 100%;
    height: 100%;
}

#productImageDetail {
    --swiper-navigation-color: #fff;
    --swiper-pagination-color: #fff;
}

.product-image-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.product-image-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image-swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

#productImageDetail {
    height: 80%;
    width: 100%;
}

#productImageDetail img {
    height: 28rem;
    object-fit: cover;
    object-position: center;
}

#productImageGallery {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

#productImageGallery img {
    height: 5rem;
}

#productImageGallery .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

#productImageGallery .swiper-slide-thumb-active {
    opacity: 1;
}

.share-to-socmed .socmed i {
    font-size: 1.1rem;
}

.share-to-socmed .socmed i:hover {
    color: var(--light) !important;
}

.product-images {
    margin-bottom: 3rem;
}

.comment-name img {
    width: 45px;
}

.page-link.active,
.active>.page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--light) !important;
}

.page-category-events .post-container .post-img img {
    height: inherit;
}

.event-detail-wrapper {
    margin-top: 130px;
    margin-bottom: 4rem !important;
}

.event-detail-image-swiper {
    width: 100%;
}

#eventImageDetail {
    --swiper-navigation-color: #fff;
    --swiper-pagination-color: #fff;
    width: 100%;
    margin-bottom: 10px;
}

.event-detail-image-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.event-detail-image-swiper .swiper-slide img {
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
}

.event-detail-image-swiper {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

#eventImageGallery {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

#eventImageGallery .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

#eventImageGallery .swiper-slide-thumb-active {
    opacity: 1;
}

.others-event .post-img img {
    height: 200px;
}

.post-detail-wrapper {
    margin-top: 6rem !important;
    margin-bottom: 4rem !important;
}

.post-detail-wrapper .post-img img {
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.related-post-item {
    transition: all 0.3s ease;
    background: #fff !important;
    border: 1px solid #e8e8e8 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.related-post a:hover .related-post-item {
    box-shadow: 0 4px 12px rgba(0, 91, 197, 0.15) !important;
    transform: translateY(-2px);
    border-color: var(--primary) !important;
}

.related-post-number .badge {
    background-color: var(--primary) !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.related-post a:hover .related-post-number .badge {
    background-color: #004494 !important;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.related-post-item img {
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.related-post a:hover .related-post-item img {
    transform: scale(1.08);
    border-color: var(--primary);
}

.related-post-content h6 {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #2c3e50;
    transition: color 0.3s ease;
    margin-bottom: 0.25rem;
}

.related-post a:hover .related-post-content h6 {
    color: var(--primary);
}

.related-post-content small {
    color: #6c757d;
    font-size: 0.75rem;
}

/* Blog Post List */
.blog-post-item {
    transition: all 0.3s ease;
    background: #fff !important;
    border: 1px solid #e8e8e8 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.blog-post-item:hover {
    box-shadow: 0 6px 16px rgba(0, 91, 197, 0.2) !important;
    transform: translateY(-3px);
    border-color: var(--primary) !important;
}

.blog-post-number .badge {
    background-color: var(--primary) !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.blog-post-item:hover .blog-post-number .badge {
    background-color: #004494 !important;
    transform: scale(1.15);
    transition: all 0.3s ease;
}

.blog-post-content h5 {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.blog-post-item:hover .blog-post-content h5 {
    color: var(--primary);
}

.blog-post-thumb img {
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.blog-post-item:hover .blog-post-thumb img {
    transform: scale(1.05);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .blog-post-number .badge {
        width: 32px !important;
        height: 32px !important;
        font-size: 1rem !important;
    }

    .blog-post-thumb img {
        width: 70px !important;
        height: 70px !important;
    }

    .blog-post-content h5 {
        font-size: 1rem;
    }
}

.sitemap-wrapper,
.privacy-policy-wrapper,
.search-wrapper {
    margin-top: 8rem;
    margin-bottom: 6rem;
}

.sitemap-wrapper .color-primary:hover {
    color: var(--third) !important;
}

.notfound-wrapper {
    margin-top: 8rem;
}

.notfound-wrapper h2 {
    font-size: 2.5rem;
}

.notfound-wrapper p {
    font-size: 1.8rem;
}

.notfound-wrapper img {
    border-radius: 0;
}

.faq-wrapper {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.accordion-button {
    color: var(--primary);
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    color: var(--light);
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.career-shadow {
    box-shadow: 0 0.15rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.career-heading {
    color: var(--primary);
    font-size: 2.2rem;
}

.career-detail-wrapper {
    margin-top: 6rem;
    margin-bottom: 5rem;
}

.career-detail-wrapper h4 {
    margin-top: 1rem;
}

.career-detail-wrapper ol {
    padding-left: 1.7rem !important;
}

.form-alert {
    width: 270px;
    left: auto;
    right: 100px;
}

.event-pagination .pagination,
.news-pagination .pagination,
.search-pagination .pagination,
.pagination {
    justify-content: center;
}

.event-pagination .pagination a,
.news-pagination .pagination a,
.search-pagination .pagination a {
    color: var(--primary);
}

.post-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.banner-wrapper-page {
    margin-bottom: 3rem !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary);
}

.product-img img,
.products-wrapper img {
    object-fit: cover;
}

.page-search {
    margin-top: 7rem !important;
}

.website_logo {
    width: 40px;
}

.tags-container {
    margin-top: 5rem !important;
}

#nav-description p img {
    width: 100%;
    object-fit: contain;
    height: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table th,
table td {
    border: 1px solid black;
    padding: 10px;
}

table th p,
table td p {
    margin-top: 0;
    margin-bottom: 0;
}

th {
    background-color: #f4f4f4;
    text-align: center;
}

tr:hover {
    background-color: #f1f1f1;
    cursor: pointer;
}

.about-wrapper {
    margin-bottom: 5rem !important;
}

.map-wrapper iframe {
    width: 100%;
    height: 500px;
}

.product-cat-newest img {
    height: 250px;
    object-fit: cover;
    object-position: center;
}

.page-search .post-container img {
    height: 250px;
    object-fit: cover;
    object-position: center;
}

.mobile-banner {
    margin-top: 4rem;
}

/* Media Query */
@media (min-width: 768px) {
    .testimony-item .swiper-slide img {
        width: 220px !important;
        height: 220px;
    }

    .testimony-wording {
        margin-bottom: 15px !important;
    }

    .testimony-item .swiper-slide {
        height: 620px;
    }

    .about-wrapper {
        margin-top: 8rem !important;
        margin-bottom: 5rem !important;
    }
}

@media (min-width: 992px) {
    #homeSlider.swiper {
        width: 100%;
        height: 550px;
    }

    #homeSlider.slider-wrapper img {
        height: 550px;
        object-fit: cover;
    }

    #homeSlider.slider-wrapper {
        margin-top: 0;
    }

    .testimony-item .swiper-slide {
        height: 540px;
    }

    .banner-wrapper {
        margin-top: 100px;
        margin-bottom: 6rem !important;
    }

    .banner-wrapper img {
        width: 100%;
        height: 550px;
        object-fit: cover;
        object-position: center;
    }

    .timeline-heading {
        margin-bottom: -50px;
    }

    .our-clients-wrapper .border-bottom {
        width: 50%;
    }

    .product-detail {
        margin-top: 12rem;
        margin-bottom: 8rem;
    }

    .product-images {
        margin-bottom: 0;
    }

    .event-detail-wrapper {
        margin-top: 175px;
    }

    .post-detail-wrapper {
        margin-top: 9rem !important;
        margin-bottom: 9rem !important;
    }

    .post-detail-wrapper .post-img img {
        height: 400px;
    }

    .post-detail-wrapper {
        margin-bottom: 6rem !important;
    }

    .sitemap-wrapper,
    .privacy-policy-wrapper,
    .search-wrapper,
    .notfound-wrapper {
        margin-top: 10rem;
        margin-bottom: 10rem;
    }

    .notfound-wrapper img {
        border-radius: 0.375rem;
    }

    .faq-wrapper {
        margin-top: 5rem;
        margin-bottom: 8rem;
    }

    .career-detail-wrapper {
        margin-top: 10rem;
    }

    #product-comments-width {
        width: 75%;
    }

    .banner-wrapper-page {
        margin-bottom: 4rem !important;
    }

    .page-search {
        margin-top: 10rem !important;
    }

    .tags-container {
        margin-top: 8rem !important;
    }

    .testimony-wording {
        margin-bottom: 35px !important;
    }
}

@media (min-width: 1200px) {
    .testimony-item .swiper-slide img {
        width: 150px !important;
        height: 150px;
    }

    .testimony-wording {
        margin-bottom: 45px !important;
    }
}

@media (min-width: 1440px) {
    #homeSlider.slider-wrapper img {
        height: 600px;
    }

    #homeSlider.swiper {
        height: 600px;
    }

    .testimony-item .swiper-slide img {
        width: 180px !important;
        height: 180px;
    }

    .testimony-wording {
        margin-bottom: 15px !important;
    }
}

/* Sidebar Popular Posts */
.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.widget-header {
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
}

.widget-icon {
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
}

.widget-icon i {
    color: white !important;
}

.popular-post-item {
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    background: white;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.popular-post-item:hover {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 91, 197, 0.15);
    transform: translateY(-2px);
}

.number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
}

.post-thumbnail img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.popular-post-item:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-title a {
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: var(--primary) !important;
}

/* Enhanced box styling for popular posts */
.popular-posts-list {
    margin-top: 15px;
}

.popular-post-item:last-child {
    margin-bottom: 0;
}

.popular-post-item .post-number {
    flex-shrink: 0;
}

.popular-post-item .post-thumbnail {
    flex-shrink: 0;
}

.popular-post-item .post-content {
    min-width: 0;
}

/* Enhanced post styling for box layout */
.post-container .post-info {
    margin-bottom: 15px;
}

.post-container .post-title {
    margin-bottom: 15px;
}

.post-container .post-title h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.post-container .post-content {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.post-container .post-content p {
    margin-bottom: 0;
}

/* Categories Widget Styles */
.categories-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-align: center;
}

.category-item:hover {
    background: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 91, 197, 0.15);
}

.category-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.category-item:hover .category-name {
    color: var(--primary);
}

.category-count {
    display: inline-block;
    background: #6c757d;
    color: white;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.category-item:hover .category-count {
    background: var(--primary);
}

/* Search Overlay Styles */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    padding: 20px 0;
    z-index: 9999;
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.search-form {
    position: relative;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 10px;
}

.search-input {
    flex: 1;
    background: white;
    border: none;
    border-radius: 25px;
    padding: 12px 50px 12px 20px;
    font-size: 16px;
    color: #333;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 91, 197, 0.3);
}

.search-submit-btn {
    background: var(--primary);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.search-submit-btn:hover {
    background: #004494;
}

.search-close-btn {
    background: transparent;
    border: none;
    color: #95a5a6;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.search-close-btn:hover {
    color: white;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.btn-search-toggle {
    transition: transform 0.2s ease;
}

.btn-search-toggle:hover {
    transform: scale(1.1);
}

/* Compact Search Styles */
.search-form-inline {
    display: flex;
    align-items: center;
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.search-input-wrapper-compact {
    display: flex;
    align-items: center;
    position: relative;
}

.search-input-compact {
    width: 200px;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 6px 40px 6px 12px;
    font-size: 14px;
    color: #333;
    background: white;
    transition: all 0.3s ease;
}

.search-input-compact:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 91, 197, 0.1);
}

.search-submit-btn-compact {
    position: absolute;
    right: 5px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 12px;
}

.search-submit-btn-compact:hover {
    background: #004494;
}

.search-close-btn-compact {
    position: absolute;
    right: 40px;
    background: transparent;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 14px;
    padding: 0;
}

.search-close-btn-compact:hover {
    color: var(--primary);
}

/* Responsive adjustments for search */
@media (max-width: 991px) {
    .search-form-inline {
        order: 3;
        width: 100%;
        margin-top: 10px;
        padding: 0 15px;
        display: none !important;
    }

    .search-form-inline.active {
        display: flex !important;
    }

    .search-input-compact {
        width: 100%;
    }

    .btn-search-toggle {
        order: 3;
    }
}

/* Keyframes */
@keyframes slideup {
    from {
        transform: translateY(10%);
    }

    to {
        transform: translateY(0);
    }
}

/* ===================================================================
   NEW DESIGN - HEADER & HERO STYLES
   =================================================================== */

/* Animations */
@keyframes newFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes newFadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes newFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===== HEADER / NAVBAR ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: all var(--transition-base);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header:not(.scrolled) {
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(9, 55, 130, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-800);
    letter-spacing: -0.5px;
    height: 100%;
}

.logo-img {
    height: auto;
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-mobile {
    display: none;
}

.logo-desktop {
    display: block;
}

.logo-invert {
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
}

.header.scrolled .logo-invert {
    filter: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    color: var(--gray-600);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    position: relative;
    text-decoration: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-800);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--primary-800);
}

.nav-links a:hover::after {
    width: 60%;
}

.nav-links a.active {
    color: var(--primary-800);
}

.nav-links a.active::after {
    width: 60%;
}

.btn-nav-cta {
    background: var(--primary-800) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    padding: 10px 28px !important;
    border-radius: var(--radius-full) !important;
    transition: all var(--transition-fast) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(9, 55, 130, 0.3);
}

.btn-nav-cta::after {
    display: none !important;
}

.btn-nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(9, 55, 130, 0.4) !important;
    background: var(--primary-700) !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    background: none;
    border: none;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--primary-800);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu-btn.active span {
    background: var(--primary-800);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Hide old navigation */
.navigation-wrapper {
    display: none !important;
}

/* ===== GOOGLE FONTS (OUTFIT) ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ===== DESIGN v3 VARIABLES ===== */
:root {
    /* Primary Palette from #093782 */
    --primary-50: #e8eef8;
    --primary-100: #c5d4ed;
    --primary-200: #9fb8e0;
    --primary-300: #7899d2;
    --primary-400: #5a81c8;
    --primary-500: #3c69be;
    --primary-600: #2f59a8;
    --primary-700: #1e4690;
    --primary-800: #093782;
    --primary-900: #042660;

    /* Accent */
    --accent-cyan: #00d4ff;
    --accent-gold: #ffb800;
    --accent-green: #00e676;

    /* Dark Palette */
    --dark-900: #0a0e1a;
    --dark-800: #111827;
    --dark-700: #1a2236;
    --dark-600: #243049;
    --dark-500: #2e3e5c;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Typography */
    --font-primary: 'Outfit', 'Inter', system-ui, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max-v3: 1200px;
    --gap: 28px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Radius */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-glow: 0 0 40px rgba(9, 55, 130, 0.25);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 16px 48px rgba(9, 55, 130, 0.15);
    --shadow-float: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes heroReveal {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-12px) rotate(1deg);
    }

    75% {
        transform: translateY(8px) rotate(-1deg);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes moveParticle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

@keyframes morphShape {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    50% {
        border-radius: 50% 50% 30% 70% / 40% 70% 60% 30%;
    }

    75% {
        border-radius: 40% 60% 50% 50% / 70% 30% 40% 60%;
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) {
    transition-delay: 0s;
}

.stagger-children .reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.stagger-children .reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.stagger-children .reveal:nth-child(4) {
    transition-delay: 0.3s;
}

.stagger-children .reveal:nth-child(5) {
    transition-delay: 0.4s;
}

.stagger-children .reveal:nth-child(6) {
    transition-delay: 0.5s;
}

.stagger-children .reveal:nth-child(7) {
    transition-delay: 0.6s;
}

.stagger-children .reveal:nth-child(8) {
    transition-delay: 0.7s;
}

.stagger-children .reveal:nth-child(9) {
    transition-delay: 0.8s;
}

.stagger-children .reveal:nth-child(10) {
    transition-delay: 0.9s;
}

.stagger-children .reveal:nth-child(11) {
    transition-delay: 1.0s;
}

.stagger-children .reveal:nth-child(12) {
    transition-delay: 1.1s;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #ffffff 0%, #eef3fb 40%, #dce6f7 70%, #c8d8f0 100%);
    overflow: hidden;
    padding-top: 80px;
}

/* Animated Background Shapes */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(9, 55, 130, 0.06) 0%, transparent 70%);
    animation: morphShape 15s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(9, 55, 130, 0.05) 0%, transparent 70%);
    animation: morphShape 20s ease-in-out infinite reverse;
}

/* Particle Effect Container */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(9, 55, 130, 0.25);
    border-radius: 50%;
    animation: moveParticle linear infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 25%;
    animation-duration: 15s;
    animation-delay: 2s;
    width: 2px;
    height: 2px;
}

.particle:nth-child(3) {
    left: 40%;
    animation-duration: 10s;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 55%;
    animation-duration: 18s;
    animation-delay: 1s;
    width: 4px;
    height: 4px;
}

.particle:nth-child(5) {
    left: 70%;
    animation-duration: 14s;
    animation-delay: 3s;
}

.particle:nth-child(6) {
    left: 85%;
    animation-duration: 11s;
    animation-delay: 5s;
    width: 2px;
    height: 2px;
}

.particle:nth-child(7) {
    left: 15%;
    animation-duration: 16s;
    animation-delay: 6s;
}

.particle:nth-child(8) {
    left: 50%;
    animation-duration: 13s;
    animation-delay: 2s;
    width: 4px;
    height: 4px;
    background: rgba(255, 184, 0, 0.4);
}

.particle:nth-child(9) {
    left: 75%;
    animation-duration: 17s;
    animation-delay: 4s;
}

.particle:nth-child(10) {
    left: 35%;
    animation-duration: 19s;
    animation-delay: 7s;
    background: rgba(255, 184, 0, 0.3);
}

.hero>.container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    max-width: var(--container-max-v3);
}

.hero-content {
    animation: heroReveal 1s ease-out 0.3s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(9, 55, 130, 0.08);
    border: 1px solid rgba(9, 55, 130, 0.15);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    color: var(--primary-800);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    font-family: var(--font-primary);
}

.hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    position: relative;
}

.hero-badge .badge-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--accent-green);
    animation: ripple 2s linear infinite;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    font-family: var(--font-primary);
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-500);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 460px;
    font-family: var(--font-primary);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.hero .btn,
.cta-section .btn,
.pricing .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 34px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.hero .btn::before,
.cta-section .btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.hero .btn:hover::before,
.cta-section .btn:hover::before {
    opacity: 1;
}

.btn-glow {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #33ddff 100%) !important;
    color: var(--dark-900) !important;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    font-weight: 700;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
    color: var(--dark-900) !important;
}

.hero .btn-outline-light {
    background: transparent;
    color: var(--primary-800);
    border: 2px solid var(--primary-200);
}

.hero .btn-outline-light:hover {
    background: var(--primary-50);
    border-color: var(--primary-400);
    transform: translateY(-3px);
    color: var(--primary-800);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: var(--white) !important;
}

/* Hero Image */
.hero-visual {
    position: relative;
    animation: heroReveal 1s ease-out 0.6s both;
    max-width: 100%;
    overflow: visible;
}

.hero-visual .hero-img-wrapper {
    position: relative;
    z-index: 1;
}

.hero-visual .hero-img-wrapper img {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(9, 55, 130, 0.2));
    animation: floatUpDown 6s ease-in-out infinite;
}

/* Glowing ring behind hero image */
.hero-visual .glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    border: 2px solid rgba(9, 55, 130, 0.12);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: glowPulse 3s ease-in-out infinite;
}

.hero-visual .glow-ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 95%;
    height: 95%;
    border: 1px solid rgba(9, 55, 130, 0.06);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: glowPulse 3s ease-in-out infinite 1.5s;
}

/* Hero Stats */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--gray-200);
}

.hero-stats-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: var(--container-max-v3);
}

.stat-item {
    text-align: center;
    padding: 28px 16px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: var(--gray-200);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-800);
    line-height: 1;
    margin-bottom: 6px;
    font-family: var(--font-primary);
}

.stat-label {
    font-size: 0.82rem;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-primary);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-800), var(--accent-cyan), var(--primary-800));
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    color: var(--primary-800);
    padding: 8px 22px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--primary-200);
    font-family: var(--font-primary);
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    letter-spacing: -1px;
    font-family: var(--font-primary);
}

.section-title span {
    color: var(--primary-800);
    position: relative;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--primary-800));
    border-radius: 2px;
    opacity: 0.4;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-top: 16px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-primary);
}

/* Service cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 28px 32px;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ea580c, #f97316);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-card-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    font-family: var(--font-primary);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    font-family: var(--font-primary);
}

/* ===== PRICING ===== */
.pricing {
    padding: var(--section-padding);
    background: linear-gradient(170deg, var(--gray-50) 0%, var(--primary-50) 50%, var(--white) 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.pricing-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(0deg, rgba(9, 55, 130, 0.03), transparent);
    transition: height var(--transition-slow);
}

.pricing-card:hover::after {
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-300);
}

/* Featured pricing card */
.pricing-card.featured {
    background: linear-gradient(160deg, var(--primary-800) 0%, #0c4a9e 100%);
    color: var(--white);
    border: none;
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-card.featured h3,
.pricing-card.featured .pricing-description,
.pricing-card.featured .price-label,
.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-card.featured .price-value {
    color: var(--white);
}

.pricing-card.featured .check {
    color: #4ade80 !important;
}

.pricing-badge {
    display: none;
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-gold);
    color: var(--dark-900);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-primary);
}

.pricing-card.featured .pricing-badge {
    display: block;
}

.pricing-icon-area {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--primary-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.pricing-card.featured .pricing-icon-area {
    background: rgba(0, 212, 255, 0.15);
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    font-family: var(--font-primary);
}

.pricing-description {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.6;
    font-family: var(--font-primary);
}

.pricing-price {
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.price-label {
    font-size: 0.78rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    font-family: var(--font-primary);
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-800);
    margin-top: 4px;
    font-family: var(--font-primary);
}

.price-unit {
    font-size: 0.88rem;
    color: var(--gray-400);
    font-weight: 400;
}

.pricing-features {
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    font-family: var(--font-primary);
}

.pricing-features li .check {
    color: var(--accent-green);
    font-weight: 800;
    font-size: 1.1rem;
}

.pricing-btn {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-full) !important;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 1;
    text-decoration: none;
    font-family: var(--font-primary);
}

.pricing-card.featured .pricing-btn {
    background: var(--primary-800) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(9, 55, 130, 0.3);
    border: none !important;
}

.pricing-card:not(.featured) .pricing-btn {
    background: transparent !important;
    color: var(--primary-800) !important;
    border: 2px solid var(--primary-200) !important;
}

.pricing-card:not(.featured) .pricing-btn:hover {
    background: var(--primary-800) !important;
    color: var(--white) !important;
    border-color: var(--primary-800) !important;
}

/* ===== WHY US ===== */
.why-us {
    padding: var(--section-padding);
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-us-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.why-us-card:hover {
    border-color: var(--primary-200);
    transform: translateX(8px);
    box-shadow: var(--shadow-card-hover);
}

.why-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid var(--primary-100);
    transition: all var(--transition-base);
}

.why-us-card:hover .why-icon {
    background: linear-gradient(135deg, var(--primary-800), var(--primary-600));
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(9, 55, 130, 0.25);
}

.why-us-card:hover .why-icon i {
    color: #fff;
}

.why-us-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--gray-900);
    font-family: var(--font-primary);
}

.why-us-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
    font-family: var(--font-primary);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.testimonials::before {
    display: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.testimonial-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-50);
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-200);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
    color: var(--accent-gold);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    z-index: 1;
    font-family: var(--font-primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-800), var(--primary-500));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-primary);
}

.testimonial-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-800);
    font-family: var(--font-primary);
    margin-bottom: 2px;
    margin-top: 0;
}

.testimonial-info p {
    font-size: 0.82rem;
    color: var(--gray-400);
    font-family: var(--font-primary);
    margin-bottom: 0;
}

/* ===== SERVICE AREAS ===== */
.service-areas {
    padding: var(--section-padding);
    background: linear-gradient(170deg, var(--gray-50) 0%, var(--white) 100%);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.area-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gray-700);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
    cursor: default;
    font-family: var(--font-primary);
}

.area-tag:hover {
    background: var(--primary-800);
    color: var(--white);
    border-color: var(--primary-800);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(9, 55, 130, 0.2);
}

.area-icon {
    font-size: 1rem;
    transition: all var(--transition-base);
}

.area-tag:hover .area-icon {
    transform: scale(1.2);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--primary-50) 0%, #dce6f7 50%, var(--primary-100) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(9, 55, 130, 0.04) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    animation: morphShape 20s ease-in-out infinite;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    letter-spacing: -1px;
    font-family: var(--font-primary);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-primary);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-600) 100%) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 20px rgba(9, 55, 130, 0.4);
}

.cta-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(9, 55, 130, 0.5);
}

/* ===== CONTACT ===== */
.contact {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.contact-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-800), var(--accent-cyan), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 18px;
    transition: all var(--transition-base);
}

.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary-800), var(--accent-cyan));
    transform: scale(1.1) rotate(5deg);
}

.contact-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.contact-card p {
    font-size: 0.92rem;
    color: var(--gray-500);
    font-family: var(--font-primary);
}

.contact-card a {
    color: var(--primary-800);
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--accent-cyan);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.wa-tooltip {
    background: var(--white);
    color: var(--gray-800);
    padding: 12px 20px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    animation: slideUp 0.5s ease-out;
    font-family: var(--font-primary);
}

.wa-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    animation: scaleIn 0.6s ease-out;
    cursor: pointer;
}

.wa-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.5);
}

.wa-btn svg {
    width: 34px;
    height: 34px;
    fill: var(--white);
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
    .hero>.container {
        gap: 32px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-visual {
        max-width: 480px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: scale(1.02);
    }

    .pricing-card.featured:hover {
        transform: scale(1.02) translateY(-8px);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats-bar .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
    :root {
        --section-padding: 72px 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header.scrolled,
    .header:not(.scrolled) {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
    }

    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: right var(--transition-base);
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
        align-items: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a:not(.btn-nav-cta) {
        width: 100%;
        padding: 14px 18px;
        border-radius: var(--radius-sm);
        font-size: 1.05rem;
        color: var(--gray-700);
        margin: 0;
        text-align: left;
    }

    .nav-links a::after {
        display: none !important;
    }

    .nav-links a:not(.btn-nav-cta):hover,
    .nav-links a.active:not(.btn-nav-cta) {
        color: var(--primary-800) !important;
        background: var(--primary-50) !important;
    }

    .btn-nav-cta {
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static !important;
        background: transparent !important;
        box-shadow: none !important;
        padding-left: 20px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 160px;
    }

    .hero>.container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        max-width: 380px;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-badge {
        justify-content: center;
    }

    .hero-stats-bar .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after,
    .stat-item:nth-child(4)::after {
        display: none;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.9rem;
    }

    .whatsapp-float {
        bottom: 18px;
        right: 18px;
    }

    .wa-btn {
        width: 56px;
        height: 56px;
    }

    .wa-btn svg {
        width: 28px;
        height: 28px;
    }
}

/* ===== RESPONSIVE — SMALL MOBILE ===== */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero .btn,
    .cta-section .btn {
        padding: 13px 24px;
        font-size: 0.9rem;
    }

    .hero-stats-bar .container {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.6rem;
    }
}

/* ===== PRINT ===== */
@media print {

    .header,
    .whatsapp-float,
    .mobile-menu-btn,
    .hero-particles {
        display: none !important;
    }

    .hero {
        padding-top: 0;
        min-height: auto;
    }

    .section {
        page-break-inside: avoid;
    }
}