
/* Breadcrumb Section */

.breadcrumb-sec {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    max-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-top: 120px;
}

@media (max-width: 768px) {
    .breadcrumb-sec {
        padding-top: 60px;
    }
}

.breadcrumb-container {
    position: relative;
    width: min(1500px, calc(100% - 60px));
    height: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.breadcrumb-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.breadcrumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    transform-origin: center center;
    animation: slowZoom 15s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 10;
    inset: 0;
    padding: 0 24px;
    display: grid;
    place-items: center;
    pointer-events: none;
    text-align: center;
    padding-top: 100px;
}

.breadcrumb-text-wrap {
    width: min(860px, 100%);
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.breadcrumb-nav {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: 0.15s;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.breadcrumb-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.65rem;
    padding: 0 4px;
}

.breadcrumb-current {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: #fff;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.breadcrumb-sub-label {
    display: inline-block;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
    padding: 0;
    border-radius: 0;
    margin-bottom: 24px;
    position: relative;
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: 0.15s;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.breadcrumb-sub-label::before,
.breadcrumb-sub-label::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: #ffffff;
    vertical-align: middle;
    margin: 0 10px;
    opacity: 0.9;
}

.breadcrumb-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3.1rem, 6.1vw, 5.8rem);
    font-weight: 900;
    line-height: 0.98;
    margin-bottom: 22px;
    color: #ffffff;
    letter-spacing: -0.04em;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: 0.25s;
}

.breadcrumb-accent {
    color: #fff;
    background: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding: 0 14px 2px;
    border-radius: 6px;
    margin: 0 4px;
    box-shadow: 0 10px 24px rgba(41, 171, 226, 0.32);
}

.breadcrumb-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.08rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 34px;
    font-weight: 400;
    max-width: 620px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: 0.35s;
}

.breadcrumb-sec .breadcrumb-nav,
.breadcrumb-sec .breadcrumb-sub-label,
.breadcrumb-sec .breadcrumb-title,
.breadcrumb-sec .breadcrumb-desc {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .breadcrumb-sec {
        height: 45vh;
        min-height: 350px;
        max-height: 450px;
        margin-top: 60px;
        padding-top: 80px;
    }

    .breadcrumb-container {
        width: calc(100% - 32px);
        border-radius: 16px;
    }

    .breadcrumb-content {
        padding: 0 18px;
        padding-top: 60px;
    }

    .breadcrumb-nav {
        margin-bottom: 12px;
    }

    .breadcrumb-list {
        gap: 6px;
    }

    .breadcrumb-link {
        font-size: 0.75rem;
        padding: 3px 6px;
    }

    .breadcrumb-separator {
        font-size: 0.6rem;
        padding: 0 3px;
    }

    .breadcrumb-current {
        font-size: 0.75rem;
        padding: 3px 6px;
    }

    .breadcrumb-sub-label {
        margin-bottom: 12px;
        font-size: 0.7rem;
    }

    .breadcrumb-sub-label::before,
    .breadcrumb-sub-label::after {
        width: 16px;
        margin: 0 6px;
    }

    .breadcrumb-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 12px;
        line-height: 1.15;
    }

    .breadcrumb-desc {
        font-size: 0.85rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }
}

.slider-sec {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-sec .slider-container {
    position: relative;
    width: 98vw;
    height: 98vh;
    margin-top: 0.7vh;
    border-radius: 12px;
    overflow: hidden;
}

.slider-sec .slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-sec .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.8s;
    z-index: 1;
}

.slider-sec .slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slider-sec .bg-img,
.slider-sec .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    pointer-events: none;
    transform: scale(1.05);
    transform-origin: center center;
}

.slider-sec .slide.active .bg-img,
.slider-sec .slide.active .bg-video {
    animation: slowZoom 12s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.slider-sec .bg-img {
    display: block;
}

@keyframes slowZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}

.slider-sec .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.18) 45%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.slider-sec .content {
    position: absolute;
    inset: 0;
    z-index: 10;
    padding: 0 24px;
    display: grid;
    place-items: center;
    pointer-events: none;
    text-align: center;
}

.slider-sec .text-wrap {
    width: min(860px, 100%);
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider-sec .sub-label {
    display: inline-block;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--secondary-color);
    padding: 0;
    border-radius: 0;
    margin-bottom: 24px;
    position: relative;
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: 0.15s;
}

.slider-sec .sub-label::before,
.slider-sec .sub-label::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
    vertical-align: middle;
    margin: 0 10px;
}

.slider-sec .headline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3.1rem, 6.1vw, 5.8rem);
    font-weight: 900;
    line-height: 0.98;
    margin-bottom: 22px;
    color: #ffffff;
    letter-spacing: -0.04em;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: 0.25s;
}

.slider-sec .headline .accent {
    color: #fff;
    background: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding: 0 14px 2px;
    border-radius: 6px;
    margin: 0 4px;
    box-shadow: 0 10px 24px rgba(41, 171, 226, 0.32);
}

.slider-sec .description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.08rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 34px;
    font-weight: 400;
    max-width: 620px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: 0.35s;
}

.slider-sec .cta-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: 0.45s;
}

.slider-sec .active .sub-label {
    opacity: 1;
    transform: translateY(0);
}

.slider-sec .active .headline,
.slider-sec .active .description,
.slider-sec .active .cta-group {
    opacity: 1;
    transform: translateY(0);
}

.slider-sec .controls {
    position: absolute;
    bottom: 36px;
    left: 36px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--card-bg);
    border-radius: 6px;
    padding: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.slider-sec .ctrl-btn {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: transparent;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

.slider-sec .ctrl-btn:hover {
    background: var(--bg-color);
    color: var(--secondary-color);
}

.slider-sec .ctrl-btn i {
    font-size: 13px;
    font-style: normal;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    line-height: 1;
}

.slider-sec .slide-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    min-width: 80px;
    justify-content: center;
}

.slider-sec .current-num {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    min-width: 20px;
    text-align: right;
}

.slider-sec .counter-divider {
    width: 20px;
    height: 1.5px;
    background: var(--tertiary-color-dark);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.slider-sec .counter-divider::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.slider-sec .counter-divider.animating::after {
    width: 100%;
}

.slider-sec .total-num {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-dark-low);
    min-width: 20px;
    text-align: left;
}

@media (max-width: 768px) {
    .slider-sec .slider-container {
        width: 100vw;
        height: 100vh;
        margin-top: 0;
        border-radius: 0;
    }

    .slider-sec .content {
        padding: 0 18px;
    }

    .slider-sec .headline {
        font-size: clamp(2.3rem, 9vw, 3.3rem);
    }

    .slider-sec .description {
        font-size: 0.95rem;
    }

    .slider-sec .controls {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }

    .slider-sec .cta-group {
        flex-direction: column;
        gap: 12px;
    }
}

.about-sec {
    width: 100%;
    background: var(--card-bg);
    padding: 110px 0 70px;
}

.about-sec .about-container {
    width: min(1240px, calc(100% - 60px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 60px;
    align-items: center;
}

.about-sec .about-left {
    display: flex;
    flex-direction: column;
}

.about-sec .about-kicker {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.about-sec .about-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.1rem, 3.8vw, 3.25rem);
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-dark-dark);
    margin-bottom: 20px;
    max-width: 700px;
}

.about-sec .about-title span {
    color: var(--secondary-color-dark);
}

.about-sec .about-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark-low);
    max-width: 680px;
    margin-bottom: 28px;
}

.about-sec .about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
    border-top: 1px solid #e9edf1;
    padding-top: 28px;
}

.about-sec .about-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px;
    border-radius: 10px;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.about-sec .about-item:hover {
    transform: translateY(-2px);
    background: #f8fbff;
}

.about-sec .about-icon {
    min-width: 48px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-sec .about-icon i {
    font-size: 18px;
    line-height: 1;
}

.about-sec .about-icon.icon-team,
.about-sec .about-icon.icon-hygiene,
.about-sec .about-icon.icon-speed,
.about-sec .about-icon.icon-trust {
    background: var(--secondary-color);
}

.about-sec .about-item-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.24rem;
    font-weight: 700;
    color: var(--text-dark-dark);
    margin-bottom: 4px;
}

.about-sec .about-item-content p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.97rem;
    line-height: 1.6;
    color: var(--text-dark-low);
}

.about-sec .about-actions {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.about-sec .about-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e7edf4;
    border-radius: 999px;
    padding: 10px 16px;
}

.about-sec .about-call i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-sec .about-call span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.84rem;
    color: var(--text-dark-low);
}

.about-sec .about-call strong {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: var(--text-dark-dark);
}

.about-sec .about-right {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-sec .about-media {
    position: relative;
    width: min(560px, 100%);
    height: 620px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(17, 34, 51, 0.16);
}

.about-sec .about-video,
.about-sec .about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-sec .about-img {
    display: block;
}

.about-sec .about-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.24) 100%);
}

.about-sec .about-float {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 12px 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 14px 35px rgba(17, 34, 51, 0.14);
}

.about-sec .about-float i {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-sec .about-float span {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--text-dark-low);
    line-height: 1.2;
}

.about-sec .about-float strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.94rem;
    color: var(--text-dark-dark);
    line-height: 1.3;
}

.about-sec .about-float-top {
    top: 28px;
    left: -22px;
}

.about-sec .about-float-bottom {
    right: -18px;
    bottom: 30px;
}

@media (max-width: 1024px) {
    .about-sec .about-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-sec .about-right {
        min-height: auto;
    }

    .about-sec .about-media {
        width: 100%;
        max-width: 100%;
        height: 480px;
        overflow: hidden;
    }

    .about-sec .about-float-top {
        left: 12px;
        position: relative;
        display: flex;
        flex-direction: row;
        margin-bottom: 12px;
    }

    .about-sec .about-float-bottom {
        right: auto;
        left: 12px;
        position: relative;
        display: flex;
        flex-direction: row;
    }

    .about-sec .about-right {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .about-sec {
        padding: 70px 0 50px;
        overflow-x: hidden;
        width: 100%;
    }

    .about-sec .about-container {
        width: calc(100% - 32px);
        max-width: 100%;
        overflow-x: hidden;
    }

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

    .about-sec .about-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-sec .about-call {
        justify-content: center;
    }

    .about-sec .about-media {
        height: 390px;
        border-radius: 20px;
    }

    .about-sec .about-float {
        position: static;
        margin-top: 12px;
        width: 100%;
    }
}


.services-sec {
    width: 100%;
    padding: 80px 0 70px;
    background: var(--bg-color);
    overflow: hidden;
}

.services-sec .services-container {
    width: min(1240px, calc(100% - 60px));
    margin: 0 auto;
}

.services-sec .services-header {
    display: flex;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 50px;
}

.services-sec .services-header-left {
    flex: 1;
    min-width: 0;
}

.services-sec .services-kicker {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--secondary-color);
    margin-bottom: 14px;
    display: block;
}

.services-sec .services-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.1rem, 3.8vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark-dark);
}

.services-sec .services-title span {
    color: var(--secondary-color-dark);
}

.services-sec .services-desc {
    flex: 0 0 380px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--text-dark-low);
    margin: 0;
}

.services-sec {
    overflow-x: hidden;
    width: 100%;
}

.services-sec .services-slider {
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

.services-sec .services-track {
    display: flex;
    gap: 24px;
    will-change: transform;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-sec .services-track::-webkit-scrollbar {
    display: none;
}

@media (max-width: 1024px) {
    .services-sec .services-track {
        overflow-x: auto;
        scroll-behavior: smooth;
    }
    
    .services-sec .service-card {
        scroll-snap-align: start;
        flex: 0 0 calc(100vw - 80px);
        max-width: calc(100vw - 80px);
    }
}

.services-sec .service-card {
    position: relative;
    flex: 0 0 360px;
    aspect-ratio: 9 / 14;
    border-radius: 16px;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.services-sec .service-card:active {
    cursor: grabbing;
}

.services-sec .service-card-bg {
    position: absolute;
    inset: 0;
    background: var(--primary-color-dark);
}

.services-sec .service-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}

.services-sec .service-card:hover .service-card-bg img {
    transform: scale(1.08);
}

.services-sec .service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.45) 35%,
        rgba(0, 0, 0, 0.08) 70%,
        rgba(0, 0, 0, 0.02) 100%
    );
    z-index: 1;
    transition: background 0.5s ease;
}

.services-sec .service-card:hover .service-card-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(0, 0, 0, 0.12) 75%,
        rgba(0, 0, 0, 0.05) 100%
    );
}

.services-sec .service-card-num {
    position: absolute;
    top: 20px;
    right: 22px;
    font-family: 'Poppins', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    z-index: 2;
    pointer-events: none;
    transition: color 0.5s ease;
}

.services-sec .service-card:hover .service-card-num {
    color: rgba(255, 255, 255, 0.1);
}

.services-sec .service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 26px;
    z-index: 3;
    display: flex;
    flex-direction: column;
}

.services-sec .service-card-badge {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 18px;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.services-sec .service-card:hover .service-card-badge {
    transform: translateY(-4px);
}

.services-sec .service-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.services-sec .service-card:hover .service-card-title {
    transform: translateY(-3px);
}

.services-sec .service-card-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 18px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.services-sec .service-card:hover .service-card-desc {
    max-height: 80px;
    opacity: 1;
}

.services-sec .service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    transition: gap 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.services-sec .service-card:hover .service-card-link {
    gap: 12px;
}

.services-sec .services-nav {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.services-sec .services-progress {
    flex: 1;
    height: 3px;
    background: var(--tertiary-color-dark);
    border-radius: 2px;
    overflow: hidden;
}

.services-sec .services-progress-bar {
    height: 100%;
    width: 20%;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.services-sec .services-nav-controls {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--card-bg);
    border-radius: 6px;
    padding: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.services-sec .services-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: transparent;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

.services-sec .services-nav-btn:hover {
    background: var(--bg-color);
    color: var(--secondary-color);
}

.services-sec .services-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
}

.services-sec .services-dot {
    width: 8px;
    height: 5px;
    border-radius: 1px;
    background: var(--tertiary-color-dark);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 0;
}

.services-sec .services-dot:hover {
    background: var(--text-dark-low);
    transform: scale(1.2);
}

.services-sec .services-dot.active {
    background: var(--secondary-color);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .services-sec .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .services-sec .services-desc {
        flex: none;
        max-width: 600px;
    }

    .services-sec .service-card {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .services-sec {
        padding: 60px 0 50px;
    }

    .services-sec .services-container {
        width: calc(100% - 32px);
        max-width: 100%;
        overflow-x: hidden;
    }

    .services-sec .service-card {
        flex: 0 0 calc(100vw - 80px);
        max-width: calc(100vw - 80px);
    }

    .services-sec .service-card-desc {
        max-height: 80px;
        opacity: 1;
    }

    .services-sec .services-nav {
        flex-direction: column-reverse;
        gap: 16px;
    }

    .services-sec .services-progress {
        width: 100%;
    }
}

.whyus-sec {
    width: 100%;
    padding: 80px 0 70px;
    background: var(--card-bg);
    overflow: hidden;
}

.whyus-sec .whyus-container {
    width: min(1240px, calc(100% - 60px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.whyus-sec .whyus-visual {
    position: relative;
    height: 560px;
}

.whyus-sec .whyus-img-primary {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    border-radius: 140px 24px;
    overflow: hidden;
}

.whyus-sec .whyus-img-primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.whyus-sec .whyus-img-primary:hover img {
    transform: scale(1.04);
}

.whyus-sec .whyus-img-accent {
    position: absolute;
    bottom: 30px;
    right: 0;
    width: 52%;
    height: 52%;
    border-radius: 24px 100px;
    overflow: hidden;
    border: 6px solid var(--card-bg);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    z-index: 1;
}

.whyus-sec .whyus-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.whyus-sec .whyus-img-accent:hover img {
    transform: scale(1.04);
}

.whyus-sec .whyus-notch {
    position: absolute;
    bottom: 0;
    left: 35%;
    transform: translateX(-50%);
    z-index: 3;
    background: var(--card-bg);
    border-radius: 18px 18px 0 0;
    padding: 18px 18px 0;
    overflow: visible;
}

.whyus-sec .whyus-notch-corner {
    pointer-events: none;
}

.whyus-sec .whyus-notch-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--primary-color);
    color: #fff;
    padding: 18px 26px;
    border-radius: 14px 14px 0 0;
}

.whyus-sec .whyus-exp-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
}

.whyus-sec .whyus-notch-inner span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.25;
    opacity: 0.85;
}

.whyus-sec .whyus-kicker {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--secondary-color);
    margin-bottom: 14px;
    display: block;
}

.whyus-sec .whyus-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.1rem, 3.8vw, 3.1rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark-dark);
    margin-bottom: 20px;
}

.whyus-sec .whyus-title span {
    color: var(--secondary-color-dark);
}

.whyus-sec .whyus-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-dark-low);
    margin-bottom: 28px;
    max-width: 540px;
}

.whyus-sec .whyus-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.whyus-sec .whyus-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 10px;
    background: var(--bg-color);
    border-radius: 20px;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: default;
}

.whyus-sec .whyus-perk:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(41, 171, 226, 0.25);
}

.whyus-sec .whyus-perk:hover .whyus-perk-icon {
    background: rgba(255, 255, 255, 0.2);
}

.whyus-sec .whyus-perk:hover span {
    color: #fff;
}

.whyus-sec .whyus-perk-icon {
    width: 34px;
    height: 34px;
    border-radius: 13px;
    background: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.35s ease;
}

.whyus-sec .whyus-perk:hover .whyus-perk-icon {
    background: rgba(255, 255, 255, 1);
}
.whyus-sec .whyus-perk:hover .whyus-perk-icon i {
    color: var(--secondary-color);
}


.whyus-sec .whyus-perk span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark-dark);
    transition: color 0.35s ease;
}

.whyus-sec .whyus-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border-radius: 18px;
    overflow: hidden;
    background: var(--tertiary-color-dark);
}

.whyus-sec .whyus-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 26px 16px;
    background: var(--bg-color);
    text-align: center;
}

.whyus-sec .whyus-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 6px;
}

.whyus-sec .whyus-stat span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--text-dark-low);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .whyus-sec .whyus-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .whyus-sec .whyus-visual {
        height: 460px;
        max-width: 520px;
    }

    .whyus-sec .whyus-img-primary {
        border-radius: 100px 20px;
    }

    .whyus-sec .whyus-img-accent {
        border-radius: 20px 70px;
    }
}

@media (max-width: 768px) {
    .whyus-sec {
        padding: 60px 0 50px;
    }

    .whyus-sec .whyus-container {
        width: min(1240px, calc(100% - 30px));
        gap: 50px;
    }

    .whyus-sec .whyus-visual {
        height: 360px;
        max-width: 100%;
    }

    .whyus-sec .whyus-img-primary {
        width: 62%;
        border-radius: 80px 16px;
    }

    .whyus-sec .whyus-img-accent {
        width: 55%;
        height: 48%;
        border-radius: 16px 60px;
        bottom: 20px;
    }

    .whyus-sec .whyus-notch {
        left: 30%;
        padding: 14px 14px 0;
    }

    .whyus-sec .whyus-notch-inner {
        padding: 14px 20px;
        gap: 10px;
    }

    .whyus-sec .whyus-exp-num {
        font-size: 2rem;
    }

    .whyus-sec .whyus-perks {
        gap: 8px;
    }

    .whyus-sec .whyus-perk {
        padding: 8px 16px 8px 8px;
    }

    .whyus-sec .whyus-perk-icon {
        width: 30px;
        height: 30px;
    }

    .whyus-sec .whyus-stats {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .whyus-sec .whyus-stat {
        padding: 20px 16px;
    }
}


/* How It Works Section */

.howitworks-sec {
    width: 100%;
    padding: 80px 0 60px;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.howitworks-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(41, 171, 226, 0.08) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.4;
    pointer-events: none;
}

.howitworks-container {
    width: min(1200px, calc(100% - 60px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.howitworks-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.howitworks-kicker {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.howitworks-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.howitworks-title span {
    color: var(--secondary-color);
}

.howitworks-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark-low);
    max-width: 600px;
    margin: 0 auto;
}

.howitworks-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 40px;
    position: relative;
}

.howitworks-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.howitworks-step:hover {
    transform: translateY(-4px);
}

.howitworks-step-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(41, 171, 226, 0.12) 0%, rgba(41, 171, 226, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 2;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.howitworks-step-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color-dark));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.howitworks-step:hover .howitworks-step-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-color-dark) 100%);
    color: #fff;
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 32px rgba(41, 171, 226, 0.35), 0 4px 12px rgba(41, 171, 226, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.howitworks-step:hover .howitworks-step-icon::before {
    opacity: 1;
}

.howitworks-step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.howitworks-step-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark-low);
    max-width: 280px;
}

.howitworks-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    margin-top: 50px;
    opacity: 0.6;
    width: 100px;
    height: 24px;
    position: relative;
}

.howitworks-arrow svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(41, 171, 226, 0.2));
}

.howitworks-arrow path {
    stroke-width: 2.5;
    fill: none;
}

@media (max-width: 1024px) {
    .howitworks-steps {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .howitworks-arrow {
        transform: rotate(90deg);
        margin-top: 0;
        margin-bottom: 0;
        height: 60px;
        width: 24px;
    }
    
    .howitworks-arrow svg {
        width: 24px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .howitworks-sec {
        padding: 60px 0 40px;
    }

    .howitworks-sec {
        overflow-x: hidden;
        width: 100%;
    }

    .howitworks-container {
        width: calc(100% - 32px);
        max-width: 100%;
        overflow-x: hidden;
    }

    .howitworks-header {
        margin-bottom: 50px;
    }

    .howitworks-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .howitworks-desc {
        font-size: 0.94rem;
    }

    .howitworks-steps {
        gap: 40px;
    }

    .howitworks-step-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }

    .howitworks-step-icon i {
        font-size: 28px !important;
    }

    .howitworks-step-title {
        font-size: 1.15rem;
    }

    .howitworks-step-desc {
        font-size: 0.88rem;
        max-width: 100%;
    }

    .howitworks-arrow {
        height: 50px;
    }
}

/* Blog Section */

.blog-sec {
    width: 100%;
    padding: 80px 0 50px;
    background: var(--bg-color);
    position: relative;
}

.blog-container {
    width: min(1200px, calc(100% - 60px));
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-kicker {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.blog-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.blog-title span {
    color: var(--secondary-color);
}

.blog-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark-low);
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card-large {
    grid-row: span 1;
}

.blog-card-link-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: visible !important;
    background: var(--bg-color);
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.blog-card-date-corner {
    position: absolute !important;
    bottom: -1px !important;
    left: 0 !important;
    z-index: 1000 !important;
    width: 140px !important;
    height: 60px !important;
    pointer-events: none;
    background-color: #fff !important;
}

.blog-card-date-corner[data-corner] {
    z-index: 1000 !important;
    background-color: #fff !important;
}

.blog-card-date-corner * {
    pointer-events: auto;
}

.blog-card-date-corner .inverted-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2px !important;
    padding: 6px 0 !important;
    z-index: 1001 !important;
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
}

.blog-card-date-corner[data-corner] .inverted-content {
    z-index: 1001 !important;
}

.blog-card-date-corner .inverted-content .blog-card-date-day,
.blog-card-date-corner .inverted-content span:first-child {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    color: var(--secondary-color) !important;
    line-height: 1 !important;
    position: relative !important;
    z-index: 1002 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.blog-card-date-corner .inverted-content .blog-card-date-month,
.blog-card-date-corner .inverted-content span:last-child {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    color: var(--text-dark-dark) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    position: relative !important;
    z-index: 1002 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.blog-card-category-top {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.blog-card-category {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--secondary-color);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.blog-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #fff;
    border-radius: 0 0 20px 20px;
}

.blog-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-dark-low);
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: auto;
    padding: 6px 0;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .blog-card-large {
        grid-row: span 1;
    }

    .blog-card-large .blog-card-image {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .blog-sec {
        padding: 60px 0 40px;
    }

    .blog-sec {
        overflow-x: hidden;
        width: 100%;
    }

    .blog-container {
        width: calc(100% - 32px);
        max-width: 100%;
        overflow-x: hidden;
    }

    .blog-header {
        margin-bottom: 50px;
    }

    .blog-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-card-large {
        grid-row: span 1;
    }

    .blog-card-image {
        height: 280px;
    }

    .blog-card-large .blog-card-image {
        height: 280px;
    }

    .blog-card-content {
        padding: 24px;
    }

    .blog-card-large .blog-card-content {
        padding: 24px;
    }

    .blog-card-title {
        font-size: 1.2rem;
    }

    .blog-card-large .blog-card-title {
        font-size: 1.25rem;
    }

    .blog-card-date-corner {
        width: 120px;
        height: 55px;
    }

    .blog-card-date-day {
        font-size: 1.4rem;
    }
}

/* Form Section */

.form-sec {
    width: 100%;
    padding: 70px 0 60px;
    background: var(--bg-color);
    position: relative;
}

.form-sec .form-container {
    width: min(1440px, calc(100% - 60px));
    margin: 0 auto;
}

.form-sec .banner {
    width: 100%;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.form-sec .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.form-sec .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-sec .banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 35, 126, 0.75) 0%, rgba(7, 21, 77, 0.88) 100%);
    z-index: 1;
}

.form-sec .banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 24px;
    max-width: 720px;
}

.form-sec .form-kicker {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.form-sec .form-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
}

.form-sec .form-title span {
    color: var(--secondary-color);
}

.form-sec .form-wrapper {
    width: min(880px, calc(100% - 40px));
    background: #fff;
    z-index: 10;
    position: relative;
    margin: 0 auto;
    margin-top: -100px;
    border-radius: 8px;
    padding: 36px 40px 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    background: #fff;
}

.form-sec .form-wrapper-head {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.form-sec .form-wrapper-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark-dark);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.form-sec .form-wrapper-desc {
    font-size: 0.88rem;
    color: var(--text-dark-low);
    line-height: 1.5;
    font-weight: 400;
}

.form-sec .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.form-sec .form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.form-sec .btn-submit {
    padding: 14px 32px;
    font-size: 0.9rem;
    border-radius: 6px;
    flex-shrink: 0;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 8px rgba(41, 171, 226, 0.2);
    transition: all 0.25s ease;
}

.form-sec .btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(41, 171, 226, 0.3);
}

.form-sec .form-privacy {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    color: var(--text-dark-low);
    line-height: 1.4;
}

.form-sec .form-privacy i {
    color: var(--secondary-color);
    flex-shrink: 0;
}

.form-sec .custom-select-native {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .form-sec .banner {
        height: 360px;
    }

    .form-sec .form-wrapper {
        width: min(880px, calc(100% - 32px));
        padding: 32px 36px 36px;
    }
}

@media (max-width: 768px) {
    .form-sec {
        padding: 60px 0 50px;
    }

    .form-sec .form-container {
        width: calc(100% - 32px);
    }

    .form-sec .banner {
        height: 300px;
        border-radius: 6px;
    }

    .form-sec .banner-content {
        padding: 0 20px;
    }

    .form-sec .form-wrapper {
        width: 100%;
        max-width: 100%;
        margin-top: -80px;
        padding: 28px 20px 32px;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .form-sec .form-wrapper-title {
        font-size: 1.15rem;
    }

    .form-sec .form-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-sec .btn-submit {
        width: 100%;
    }
}

/* Footer */

.footer {
    width: 100%;
    margin-top: 0;
}

.footer-top {
    width: 100%;
    padding: 50px 0 0;
    padding-top: 0;
}

.footer-top-wrapper {
    width: min(1400px, calc(100% - 60px));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
}

.footer-social-wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 0 4px;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    width: fit-content;
    margin-left: auto;
}

.footer-top-containers {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 30px;
}

.footer-left-container {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark-dark);
    margin: 0;
    letter-spacing: -0.02em;
}

.footer-logo-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-dark-low);
    margin: 0;
}

.footer-contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 4px;
}

.footer-contact-item {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: var(--text-dark-low);
}

.footer-contact-item i {
    color: var(--secondary-color);
    font-size: 0.9rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.footer-contact-item a {
    color: var(--text-dark-low);
    text-decoration: none;
    transition: color 0.2s ease;
    flex: 1;
    min-width: 0;
    word-break: break-word;
}

.footer-contact-item a:hover {
    color: var(--text-dark-dark);
}

.footer-contact-item span {
    color: var(--text-dark-low);
    flex: 1;
    min-width: 0;
    word-break: break-word;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(41, 171, 226, 0.08);
    border-radius: 10px;
    color: var(--secondary-color);
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(41, 171, 226, 0.12);
}

.footer-social-link:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(41, 171, 226, 0.35);
}

.footer-right-container {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark-dark);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    position: relative;
    padding-left: 12px;
}

.footer-links li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
    line-height: 1;
}

.footer-links li a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: var(--text-dark-low);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--text-dark-dark);
}

.footer-bottom {
    width: 100%;
    padding: 0;
    margin-top: 0;
}

.footer-bottom-container {
    width: min(1400px, calc(100% - 60px));
    margin: 20px auto 0;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
}

.footer-copyright {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--text-dark-low);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--text-dark-low);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--text-dark-dark);
}

.footer-divider {
    color: var(--text-dark-low);
    opacity: 0.3;
}

@media (max-width: 1024px) {
    .footer-top-containers {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-right-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 40px 0 0;
    }

    .footer-top-wrapper {
        width: calc(100% - 32px);
        gap: 20px;
    }

    .footer-social-wrapper {
        justify-content: center;
    }

    .footer-top-containers {
        gap: 20px;
    }

    .footer-left-container {
        padding: 32px 24px;
        border-radius: 16px;
    }

    .footer-right-container {
        padding: 32px 24px;
        border-radius: 16px;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom-container {
        width: calc(100% - 32px);
        margin: 16px auto 0;
        padding: 18px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
    }
}

/* FAQ Section */

.faq-sec {
    width: 100%;
    padding: 100px 0 60px;
    background: var(--bg-color);
    position: relative;
    overflow: visible;
}

.faq-container {
    width: min(1400px, calc(100% - 60px));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-kicker {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.faq-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.faq-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark-low);
    max-width: 600px;
    margin: 0 auto;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 0.38fr;
    gap: 35px;
    align-items: start;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 1024px) {
    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
        overflow-x: hidden;
    }
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(41, 171, 226, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark-dark);
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-question i {
    color: var(--secondary-color);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1), padding 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 0 28px;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 28px 24px;
    opacity: 1;
}

.faq-answer p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-dark-low);
    margin: 0;
}

.faq-right {
    position: sticky;
    top: 100px;
    height: fit-content;
    max-width: 100%;
}

.faq-visual {
    aspect-ratio: 9 / 16;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    max-height: 600px;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 40px 32px;
    box-sizing: border-box;
}

.faq-visual-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.faq-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}

.faq-visual-content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: auto;
    padding-bottom: 20px;
}

.faq-visual-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.faq-visual-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-right {
        position: static;
    }

    .faq-visual {
        aspect-ratio: 16 / 9;
        max-width: 600px;
        margin: 0 auto;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .faq-sec {
        padding: 60px 0;
    }

    .faq-container {
        width: calc(100% - 32px);
    }

    .faq-header {
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 20px 24px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 24px;
    }

    .faq-item.active .faq-answer {
        padding: 0 24px 20px;
    }

    .faq-visual {
        border-radius: 20px;
        min-height: 250px;
    }
}

