/*
 * Design by Michele Gorgerino - Bangkok Thailand
 * © 2025 All Rights Reserved
 */

:root {
    --primary-color: #1abc9c;
    --secondary-color: #16a085;
    --teal-color: #1E8A8A;
    --dark-bg: #0a1628;
    --dark-bg-alt: #0C1E21;
    --dark-bg-gradient-start: #0C1E21;
    --dark-bg-gradient-end: #0a1618;
    --text-light: #ffffff;
    --text-dark: #0B1C1F;
    --text-gray: #b8c5d6;
    --text-muted: #6c757d;
    --overlay-dark: rgba(10, 22, 40, 0.7);
    --bg-white: #ffffff;
    --bg-light-gray: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --menu-bg: rgba(10, 22, 40, 0.8);
    --white-text: rgba(255, 255, 255, 1);
    --body-font-size: 1rem;
    --dropdown-bg-dark: #232323;
    --dropdown-border-dark: #111111;
    --navbar-white-bg: rgba(255, 255, 255, 0.95);
}

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

body {
    font-family: 'Inter', sans-serif;
    font-size: var(--body-font-size);
    background-color: var(--bg-white);
    color: var(--text-light);
    overflow-x: hidden;
}
@media (max-width: 991px) {
    body {
        padding: 0 !important;
        margin: 0 !important;
    }
    .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }
}

.page-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.top-space-15 {
    height: 15px;
}
@media (max-width: 991px) {
    .top-space-15 {
        height: 0;
    }
}

.header-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 2rem 0;
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header-main.navbar-scrolled {
    padding: 0.5rem 0;
}
.header-main.navbar-scrolled .navbar {
    background: linear-gradient(135deg, var(--dark-bg-gradient-start) 0%, var(--dark-bg-gradient-end) 100%) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    padding: 0.5rem 2rem;
    margin: 0 1.5rem;
    border-radius: 6px;
}
.header-main.navbar-scrolled .nav-link {
    color: var(--text-light) !important;
}
.header-main.navbar-scrolled .nav-link:hover {
    color: var(--primary-color) !important;
}
.header-main.navbar-scrolled .navbar-brand img {
    filter: none;
}
.header-main.navbar-scrolled .btn-hamburger span {
    background-color: var(--text-light);
}
.header-main.navbar-scrolled .btn-hamburger:hover span {
    background-color: var(--primary-color);
}

.header-main .navbar {
    background: var(--navbar-white-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 6px;
    padding: 1.25rem 2rem;
    margin: 0 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header-main .nav-link {
    color: var(--text-dark) !important;
}
.header-main .nav-link:hover {
    color: var(--primary-color) !important;
}
.header-main .navbar-brand img {
    filter: brightness(0) saturate(100%);
}
.header-main .btn-hamburger span {
    background-color: var(--text-dark);
}
.header-main .btn-hamburger:hover span {
    background-color: var(--primary-color);
}

.navbar-collapse {
    flex-grow: 1;
}

@media (max-width: 991px) {
    .navbar-collapse {
        display: none !important;
    }
    .header-main .navbar {
        margin: 0;
        border-radius: 0;
        background: linear-gradient(135deg, var(--dark-bg-gradient-start) 0%, var(--dark-bg-gradient-end) 100%) !important;
    }
    .header-main .nav-link {
        color: var(--text-light) !important;
    }
    .header-main .navbar-brand img {
        filter: none;
    }
    .header-main .btn-hamburger span {
        background-color: var(--text-light);
    }
    .header-main.navbar-scrolled {
        padding: 0;
    }
    .header-main.navbar-scrolled .navbar {
        margin: 0;
        border-radius: 0;
    }
}

@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
    }
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light) !important;
    display: flex;
    align-items: center;
}
.navbar-brand img {
    height: 45px;
    transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .nav-link {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s ease;
}

@media (min-width: 992px) {
    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0.25rem;
        left: 1rem;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: width 0.3s ease;
    }
    .navbar-nav .nav-link:hover::after {
        width: calc(100% - 2rem);
    }
}


.nav-item.dropdown .bi-chevron-down {
    font-size: 0.75rem;
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-item.dropdown:hover .bi-chevron-down {
    transform: rotate(180deg);
}

.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    background: var(--bg-white);
    border: 1px solid rgba(11, 28, 31, 0.1);
    border-radius: 6px;
    margin-top: 0.5rem;
    padding: 1.5rem 1rem 1rem .5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
}
.header-main .dropdown-item {
    color: var(--text-dark);
}
.header-main .dropdown-item:hover {
    background: rgba(26, 188, 156, 0.1);
    color: var(--primary-color);
}
.header-main.navbar-scrolled .dropdown-menu {
    background: var(--dropdown-bg-dark);
    border: 1px solid var(--dropdown-border-dark);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.header-main.navbar-scrolled .dropdown-item {
    color: var(--text-light);
}
.header-main.navbar-scrolled .dropdown-item:hover {
    background: rgba(26, 188, 156, 0.15);
    color: var(--primary-color);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    height: 1rem;
    background: transparent;
}

.nav-item.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-item {
    color: var(--text-light);
    padding: 0.875rem 1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-item:hover {
    background-color: rgba(26, 188, 156, 0.15);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-item svg {
    width: 40px;
    height: 40px;
    padding: 10px;
    background-color: rgba(26, 188, 156, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
    margin-right: -0.25rem;
}

.btn-search {
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-search:hover {
    transform: scale(1.1);
}

.btn-lets-talk {
    background-color: var(--primary-color);
    border: none;
    padding: 0.65rem 1.85rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-lets-talk:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 188, 156, 0.3);
}

.btn-hamburger {
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

.btn-hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

.btn-hamburger:hover span {
    background-color: var(--primary-color);
}

.hero-section {
    position: relative;
    z-index: 1;
    margin: 0px 15px 15px 15px;
    border-radius: 5px;
    overflow: hidden;
    height: calc(100vh - 30px);
}

.carousel {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 15px);
}

.hero-text-wrapper {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px 50px;
    border-radius: 15px;
    width: fit-content;
}

.hero-title {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
}

.carousel-item.active .hero-title {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.text-gradient {
    color: var(--secondary-color)
}

.hero-title-big {
    display: block;
    line-height: 1.1;
}

.hero-subtitle {
    color: var(--white-text) !important;
    margin-bottom: 2.5rem;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
}

.carousel-item.active .hero-subtitle {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.btn-get-started {
    background-color: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-get-started:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(26, 188, 156, 0.4);
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 2rem;
}

.carousel-control-next {
    right: 2rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
}

.carousel-thumbnails {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.thumbnail {
    width: 140px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.thumbnail.active {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.thumbnail:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 10;
}

@media (max-width: 991px) {

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

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

    .hero-title,
    .hero-subtitle {
        text-align: center;
    }

    .hero-bg {
        background-position: 65% center;
    }
}

.scroll-circle {
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: rotate 20s linear infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-circle:hover {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.scroll-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    animation: rotateReverse 20s linear infinite;
}

.scroll-arrow {
    animation: bounce 2s ease-in-out infinite, rotateReverse 20s linear infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateReverse {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(10px) rotate(0deg);
    }
}

@media (max-width: 991px) {
    .hero-section {
        margin: 0;
        border-radius: 0;
        height: 100vh;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-content {
        padding-top: 10rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }

    .carousel-control-prev {
        left: 1rem;
    }

    .carousel-control-next {
        right: 1rem;
    }

    .carousel-thumbnails {
        left: 1rem;
        bottom: 2rem;
    }

    .scroll-indicator {
        right: 1rem;
        bottom: 2rem;
    }

    .scroll-circle {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-get-started {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }

    .scroll-circle {
        width: 80px;
        height: 80px;
    }

    .scroll-text {
        font-size: 0.65rem;
    }
}

/* OFFCANVAS */
.offcanvas {
    background: linear-gradient(135deg, #1a2a35 0%, #0f1a22 100%);
    width: 400px !important;
    border-radius: 16px;
    margin: 0;
    height: calc(100vh - 30px);
    top: 15px !important;
    right: 15px !important;
    z-index: 9999 !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.offcanvas::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at top right, rgba(26, 188, 156, 0.2) 0%, transparent 70%);
    border-radius: 16px;
    pointer-events: none;
}
.offcanvas-backdrop,
.offcanvas-backdrop.show {
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    background-color: rgba(0, 0, 0, 0.2) !important;
    opacity: 1 !important;
}
body:has(.offcanvas.show) .hero-section {
    filter: blur(4px);
    transition: filter 0.3s ease;
}
body:has(.offcanvas:not(.show)) .hero-section {
    filter: blur(0);
    transition: filter 0.3s ease;
}
.offcanvas-header {
    padding: 2rem 2rem 3rem 2rem;
    border-bottom: none;
}
.offcanvas-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}
.offcanvas-logo img {
    height: 45px;
}
.btn-close,
.btn-close-white {
    transition: transform 0.3s ease !important;
}
.rotate-close {
    transform: rotate(90deg) !important;
}
.offcanvas-body {
    padding: 1.5rem 2rem;
}
.offcanvas-title {
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}
.offcanvas-description {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.3px;
    line-height: 1.6;
    margin-bottom: 0;
}
.offcanvas-contact {
    margin-bottom: 0;
}
.contact-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
}
.contact-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}
.contact-label i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}
.contact-item a,
.contact-item span:last-child {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.contact-item a:hover {
    color: var(--primary-color);
}
.social-links {
    display: flex;
    gap: 1rem;
}
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}
.offcanvas-nav .nav-link {
    color: var(--text-light);
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease;
}
.offcanvas-nav .nav-link:hover {
    color: var(--primary-color);
}
.offcanvas-nav .collapse .nav-link {
    font-size: 1rem;
    padding: 0.75rem 0;
    font-weight: 400;
}
.offcanvas-nav .collapse {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.offcanvas-cta {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.btn-cta-primary {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}
.btn-cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 188, 156, 0.3);
}
.btn-cta-secondary {
    background: transparent;
    color: var(--text-light);
    padding: 0.875rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
}
.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.privacy-note {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: 1rem;
    margin-bottom: 0;
    line-height: 1.5;
}
.privacy-note a {
    color: var(--primary-color);
    text-decoration: none;
}
.privacy-note a:hover {
    text-decoration: underline;
}
@media (min-width: 992px) {
    .offcanvas-body {
        padding: 2rem;
        display: flex;
        flex-direction: column;
        height: 100%;
        gap: 0;
    }
    .offcanvas-intro {
        margin-bottom: 3rem;
    }
    .offcanvas-contact {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .offcanvas-social {
        margin-top: auto;
        padding-top: 2rem;
    }
}
.offcanvas-social h5 {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

/* INTRO SECTION */
.intro-section {
    padding: 5rem 0;
    margin: 0 15px;
}
.intro-title {
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.intro-title-bold {
    font-weight: 700;
    letter-spacing: -1.5px;
}
@media (max-width: 991px) {
    .intro-section {
        padding: 3rem 1rem;
        margin: 0;
    }
    .intro-title {
        font-size: 2rem;
    }
}

/* FEATURE SECTIONS */
.feature-section {
    padding: 5rem 0;
    margin: 0 15px;
}
.feature-section-white {
    background: var(--bg-white);
    border-radius: 5px;
}
.feature-section-gray {
    background: var(--bg-light-gray);
    border-radius: 5px;
}
.feature-title {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}
.feature-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.btn-feature {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}
.btn-feature:hover {
    background: var(--text-dark);
    color: var(--text-light);
}
.img-wrap {
    overflow: hidden;
    border-radius: 1rem;
}
.img-wrap img {
    transition: transform 0.5s ease;
}
.img-wrap:hover img {
    transform: scale(1.05);
}
@media (max-width: 991px) {
    .feature-section {
        padding: 3rem 1rem;
        margin: 0;
    }
    .feature-section-white,
    .feature-section-gray {
        border-radius: 0;
    }
    .feature-title {
        font-size: 1.5rem;
    }
}

/* SOLUTIONS SECTION */
.solutions-section {
    background: linear-gradient(135deg, #0C1E21 0%, #0a1618 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    margin: 0 15px 15px 15px;
    border-radius: 5px;
}
.solutions-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle at center, rgba(26, 188, 156, 0.15) 0%, rgba(26, 188, 156, 0.08) 35%, rgba(26, 188, 156, 0.03) 60%, transparent 80%);
    pointer-events: none;
}
.solutions-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle at center, rgba(26, 188, 156, 0.1) 0%, rgba(26, 188, 156, 0.04) 50%, transparent 75%);
    pointer-events: none;
    animation: pulse-light 6s ease-in-out infinite;
}
@keyframes pulse-light {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.08);
    }
}
.solutions-content {
    position: relative;
    z-index: 2;
    padding-right: 2rem;
}
.section-label {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}
.section-title {
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}
.solutions-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}
.solution-card {
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.08) 0%, rgba(26, 188, 156, 0.03) 100%);
    border: 1px solid rgba(26, 188, 156, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(100px);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.solution-card.animate-out {
    opacity: 0;
    transform: translateX(100px);
}
.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.15) 0%, transparent 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}
.solution-card.animate-in {
    opacity: 1;
    transform: translateX(0);
}
.solution-card:hover {
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.15) 0%, rgba(26, 188, 156, 0.08) 100%);
    border-color: var(--primary-color);
    transform: translateX(-10px) translateY(-5px);
    box-shadow: 0 20px 60px rgba(26, 188, 156, 0.25), 0 0 40px rgba(26, 188, 156, 0.1);
}
.solution-card:hover::before {
    opacity: 1;
}
.solution-card > div:first-child {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.solution-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(26, 188, 156, 0.3);
}
.solution-icon i {
    font-size: 1.75rem;
    color: var(--text-light);
}
.solution-card:hover .solution-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 30px rgba(26, 188, 156, 0.5);
}
.solution-title {
    color: var(--text-light);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.solution-card:hover .solution-title {
    color: var(--primary-color);
}
.solution-description {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.solution-features li {
    color: var(--text-light);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.solution-features li i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
}
.solution-card:hover .solution-features li i {
    transform: scale(1.2);
}
@media (max-width: 991px) {
    .solutions-section {
        padding: 4rem 1rem;
        margin: 0;
        border-radius: 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .solutions-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    .solution-card {
        padding: 1.75rem;
    }
    .solution-title {
        font-size: 1.25rem;
    }
}
@media (max-width: 768px) {
    .solutions-section {
        padding: 3rem 1rem;
        margin: 0;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .solution-card {
        padding: 1.5rem;
    }
    .solution-card:hover {
        transform: none;
        background: linear-gradient(135deg, rgba(26, 188, 156, 0.18) 0%, rgba(26, 188, 156, 0.1) 100%);
    }
    .solution-card:active {
        background: linear-gradient(135deg, rgba(26, 188, 156, 0.25) 0%, rgba(26, 188, 156, 0.15) 100%);
    }
    .solution-icon {
        width: 50px;
        height: 50px;
    }
    .solution-icon i {
        font-size: 1.5rem;
    }
}

/* FLAGS */
.flag-icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    background-image: url('../img/flags/all-flags.webp');
    background-size: 140px 168px;
    background-repeat: no-repeat;
    border-radius: 4px;
    margin-right: 10px;
    flex-shrink: 0;
}
.flag-it {
    background-position: -56px -28px;
}
.flag-en {
    background-position: -56px 0;
}
.flag-fr {
    background-position: -112px -28px;
}
.flag-de {
    background-position: 0 -56px;
}
.flag-es {
    background-position: 0 -84px;
}
.dropdown-menu.lang-dropdown {
    width: auto !important;
    min-width: auto !important;
}
.dropdown-menu.lang-dropdown .dropdown-item {
    padding: 0.5rem 1.25rem;
    white-space: nowrap;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    background: var(--bg-light-gray);
    padding: 6rem 0;
    margin: 0 15px 15px 15px;
    border-radius: 5px;
}
.testimonial-slide {
    display: flex;
    align-items: stretch;
    gap: 2rem;
}
.testimonial-left {
    flex: 0 0 45%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}
.testimonial-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 0;
}
.testimonial-left>* {
    position: relative;
    z-index: 1;
}
.testimonial-header {
    background: #FFFFFF88;
    padding: 10px 30px;
    border-radius: 5px;
    width: fit-content;
}
.testimonial-header h2 {
    margin-bottom: 0;
    line-height: 1.2;
}
.testimonial-header h2 span {
    color: var(--teal-color);
    font-weight: 700;
}
.testimonial-rating {
    background: var(--teal-color);
    border-radius: 10px 0 0 0;
    padding: 2rem;
    text-align: left;
    position: absolute;
    inset-inline-end: 0;
    inset-inline-start: inherit;
    bottom: 0;
    max-width: 239px;
    border-top: 10px solid var(--bg-light-gray);
    border-left: 10px solid var(--bg-light-gray);
    border-right: 0;
    border-bottom: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}
.rating-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 0;
    letter-spacing: -2px;
    font-feature-settings: 'tnum' 1;
}
.rating-dot {
    font-size: 2rem;
    vertical-align: baseline;
}
.rating-stars {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.25rem;
}
.rating-text {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}
.testimonial-right-carousel {
    flex: 1;
}
.testimonial-right {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
}
.testimonial-header-quote {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.testimonial-quote-icon {
    color: var(--teal-color);
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 700;
}
.testimonial-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal-color);
    margin: 0;
    letter-spacing: -1px;
}
.testimonial-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    flex-grow: 1;
    letter-spacing: -0.5px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--teal-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
}
.author-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--teal-color);
    margin: 0 0 0.25rem 0;
}
.author-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}
.testimonial-dots {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1rem;
}
.testimonial-dot {
    width: 40px;
    height: 4px;
    background: rgba(11, 28, 31, 0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.testimonial-dot.active {
    background: var(--teal-color);
    width: 60px;
}

/* PARTNERS SECTION */
.partners-section {
    background: linear-gradient(135deg, #0C1E21 0%, #0a1618 100%);
    padding: 6rem 0;
    margin: 0 15px 15px 15px;
    border-radius: 10px;
}
.partners-title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: var(--text-light);
    margin-bottom: 1rem;
}
.partners-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
}
.client-logo {
    max-width: 150px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}
.client-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}
.carousel-control-prev,
.carousel-control-next {
    width: auto;
    height: auto;
    background: transparent;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}
.carousel-control-prev i,
.carousel-control-next i {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.75;
    transition: opacity 0.3s ease;
}
.carousel-control-prev:hover i,
.carousel-control-next:hover i {
    opacity: 1;
}
.carousel-control-prev {
    left: -60px;
}
.carousel-control-next {
    right: -60px;
}
@media (max-width: 991px) {
    .testimonial-slide {
        flex-direction: column;
    }
    .testimonial-left {
        flex: 1;
    }
    .rating-number {
        font-size: 3rem;
    }
    .partners-section {
        padding: 4rem 1rem;
        margin: 0 15px 15px 15px;
        border-radius: 10px;
    }
    .partners-title {
        font-size: 1.5rem;
    }
    .carousel-control-prev {
        left: 0;
    }
    .carousel-control-next {
        right: 0;
    }
}

/* FOOTER */
.site-footer {
    background: linear-gradient(135deg, #0C1E21 0%, #0a1618 100%);
    position: relative;
    margin: 0 15px 15px 15px;
    border-radius: 5px;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 188, 156, 0.3), transparent);
    border-radius: 10px 10px 0 0;
}
a .footer-logo {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}
a:hover .footer-logo {
    opacity: 1;
}
.footer-links a:has(.footer-logo)::after {
    display: none;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}
.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}
.footer-links a:hover {
    color: var(--primary-color);
}
.footer-links a:hover::after {
    width: 100%;
}
.footer-links ul li {
    margin-bottom: 0.5rem;
}
.footer-links h6 {
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 1rem;
}
.site-footer .text-white-50 a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}
.site-footer .text-white-50 a:hover {
    color: var(--primary-color);
}
.site-footer .list-inline-item a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}
.site-footer .list-inline-item a:hover {
    color: var(--text-light);
}
.site-footer hr {
    margin: 2rem 0;
}
.site-footer .d-flex a[aria-label] {
    font-size: 1.25rem;
    transition: all 0.3s ease;
}
.site-footer .d-flex a[aria-label]:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}
address.not-italic {
    font-style: normal;
}

/* SCROLL TO TOP */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--teal-color);
    border: 2px solid var(--teal-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    animation: bounce 2s infinite;
}
.scroll-to-top i {
    font-size: 1.5rem;
    color: var(--bg-white);
    transition: color 0.3s ease;
}
.scroll-to-top:hover {
    background: var(--bg-white);
    border-color: var(--teal-color);
    transform: scale(1.1);
}
.scroll-to-top:hover i {
    color: var(--teal-color);
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 991px) {
    .site-footer {
        padding: 3rem 1rem !important;
        margin: 0;
        border-radius: 0;
    }
    .footer-links .col-12 {
        text-align: center !important;
        margin-bottom: 2rem;
    }
    .footer-links .col-12:last-child {
        margin-bottom: 0;
    }
    .footer-links a.d-inline-flex {
        justify-content: center !important;
    }
    .footer-links h6 {
        margin-bottom: 1rem;
        font-size: 0.85rem;
        margin-top: 1.5rem;
    }
    .footer-links .col-12:first-child h6 {
        margin-top: 0;
    }
    .footer-links ul {
        padding: 0;
        list-style: none;
    }
    .footer-links ul li {
        margin-bottom: 0.6rem;
    }
    .footer-links ul li a {
        font-size: 0.9rem;
    }
    .site-footer hr {
        margin: 2rem 0 1.5rem 0;
    }
    .site-footer .small {
        font-size: 0.8rem !important;
    }
    .site-footer .d-flex a[aria-label] {
        font-size: 1.2rem;
    }
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    .scroll-to-top i {
        font-size: 1.25rem;
    }
}