@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary: #0879c9;
    --primary-dark: #0563a5;
    --secondary: #12a8e8;
    --dark: #14213d;
    --text: #566274;
    --muted: #8b96a5;
    --white: #ffffff;
    --light: #f5f9fd;
    --border: #e5edf5;
    --radius: 18px;
    --shadow: 0 10px 35px rgba(var(--dark-rgb), .08);
    --shadow-hover: 0 20px 50px rgba(var(--dark-rgb), .14);
    --transition: all 0.35s ease;
    --dark-rgb: 20, 33, 61;
    --primary-rgb: 8, 121, 201;
    --secondary-rgb: 18, 168, 232;
    --white-rgb: 255, 255, 255;
    --black-rgb: 0, 0, 0;
}

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

body {
    font-family: "Poppins", sans-serif;
    background: var(--white);
    color: var(--text);
}

a {
    text-decoration: none !important;
}

section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 20px;
    transition: 0.4s;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark);
}

/* PRELOADER */
.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    transition: opacity .6s ease, visibility .6s ease
}

.site-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.preloader-content {
    text-align: center;
    animation: preloaderContent 1s ease both
}

.preloader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    margin: 0 auto 28px;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 15px 45px rgba(var(--black-rgb), .18)
}

.preloader-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.preloader-loader {
    position: relative;
    width: 180px;
    height: 3px;
    margin: 0 auto 15px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(var(--white-rgb), .12)
}

.preloader-loader span {
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    border-radius: 10px;
    background: var(--secondary);
    box-shadow: 0 0 15px rgba(var(--secondary-rgb), .8);
    animation: preloaderLine 1.2s ease-in-out infinite
}

.preloader-content p {
    margin: 0;
    color: rgba(var(--white-rgb), .5);
    font-size: 12px;
    letter-spacing: 1px
}

/* NAVBAR */
.kpi-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    color: var(--dark);
    transition: all .4s ease;
}

.kpi-topbar {
    height: 42px;
    background: #14213d;
    border-bottom: 1px solid rgba(var(--dark-rgb), .08);
}

.kpi-topbar-inner {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kpi-contact-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.kpi-contact-links a {
    display: flex;
    align-items: center;
    gap: 7px;
    /* color: var(--text); */
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    transition: color .3s ease;
}

.kpi-contact-links a i {
    color: var(--primary);
    font-size: 10px;
}

.kpi-contact-links a:hover {
    color: var(--primary);
}

.kpi-quote-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 42px;
    padding: 0 22px;
    margin-right: 0;
    background: var(--dark);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s ease;
}

.kpi-quote-btn i {
    font-size: 9px;
    transition: transform .3s ease;
}

.kpi-quote-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.kpi-quote-btn:hover i {
    transform: translateX(4px);
}

.kpi-nav {
    height: 92px;
    transition: all .6s ease;
}

.kpi-nav-inner {
    height: 92px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.kpi-nav-inner .custom-logo-link {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    flex-shrink: 0;
    transition: all .4s ease;
}

.custom-logo-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .4s ease;
}

.custom-logo-link:hover img {
    transform: scale(1.05);
}

.menu-top-container ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-top-container ul a,
.menu-item-has-children a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    height: 90px;
    padding: 0 13px;
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: color .3s ease;
}

.menu-top-container ul a:after,
.menu-item-has-children a:after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 25px;
    height: 2px;
    border-radius: 10px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform .3s ease;
}

.menu-top-container ul a:hover,
.menu-top-container ul .current-menu-item a,
.menu-item-has-children a:hover {
    color: var(--primary);
}

.menu-top-container ul a:hover:after,
.menu-top-container ul .current-menu-item a:after,
.menu-item-has-children a:hover:after {
    transform: scaleX(1);
}

.kpi-header.is-sticky .menu-top-container ul a,
.kpi-header.is-sticky .menu-item-has-children a {
    height: 80px;
}

/* WORDPRESS DROPDOWN */
.menu-top-container ul li {
    position: relative;
}

.menu-top-container ul li.menu-item-has-children>a {
    display: flex;
    align-items: center;
    gap: 7px;
}

.menu-top-container ul li.menu-item-has-children>a svg {
    width: 10px;
    height: 10px;
    fill: currentColor;
    transition: transform .3s ease;
}

.menu-top-container ul li.menu-item-has-children:hover>a svg {
    transform: rotate(180deg);
}

.menu-top-container ul li.menu-item-has-children>.sub-menu {
    position: absolute;
    top: 78px;
    left: 50%;
    z-index: 9999;
    min-width: 220px;
    display: block;
    padding: 10px;
    margin: 0;
    list-style: none;
    background: var(--white);
    border: 1px solid rgba(var(--dark-rgb), .08);
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(var(--dark-rgb), .12);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);
    transition: all .3s ease;
}

.menu-top-container ul li.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.menu-top-container ul li.menu-item-has-children>.sub-menu li {
    width: 100%;
    margin: 0;
    padding: 0;
}

.menu-top-container ul li.menu-item-has-children>.sub-menu li a {
    width: 100%;
    height: auto !important;
    display: flex;
    align-items: center;
    padding: 11px 14px;
    margin: 0;
    border-radius: 7px;
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: none;
    white-space: nowrap;
    transition: all .25s ease;
}

.menu-top-container ul li.menu-item-has-children>.sub-menu li a:after {
    display: none;
}

.menu-top-container ul li.menu-item-has-children>.sub-menu li a:hover {
    padding-left: 19px;
    background: var(--light);
    color: var(--primary);
}

.menu-top-container ul li.menu-item-has-children>.sub-menu li.current-menu-item>a {
    color: var(--primary);
    background: var(--light);
}

/* STICKY HEADER */
.kpi-header.is-sticky .menu-top-container ul li.menu-item-has-children>.sub-menu {
    top: 68px;
}

/* KEEP DROPDOWN ABOVE OTHER CONTENT */
.kpi-header,
.kpi-nav,
.kpi-nav-inner,
.menu-top-container {
    position: relative;
}

.kpi-header {
    z-index: 999;
}

.menu-top-container ul li.menu-item-has-children>.sub-menu {
    z-index: 9999;
}

.kpi-nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kpi-search {
    position: relative;
    width: 255px;
}

.kpi-search input {
    width: 100%;
    height: 44px;
    padding: 0 44px 0 17px;
    border: 1px solid rgba(var(--dark-rgb), .13);
    border-radius: 25px;
    outline: none;
    background: rgba(var(--white-rgb), .55);
    color: var(--dark);
    font-size: 12px;
    backdrop-filter: blur(8px);
    transition: all .35s ease;
}

.kpi-search input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), .08);
}

.kpi-search button {
    position: absolute;
    top: 50%;
    right: 5px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--muted);
    transform: translateY(-50%);
    cursor: pointer;
    transition: all .3s ease;
}

.kpi-search button:hover {
    background: var(--primary);
    color: var(--white);
}

.kpi-desktop-quote {
    display: none;
}

.kpi-mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
}

.kpi-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    border-radius: 10px;
    background: var(--dark);
    transition: all .3s ease;
}

.kpi-header.is-sticky {
    position: fixed;
    top: 0;
    background: rgba(var(--white-rgb), .94);
    box-shadow: 0 8px 35px rgba(var(--dark-rgb), .09);
    backdrop-filter: blur(16px);
    animation: kpiSticky .45s ease both;
}

.kpi-header.is-sticky .kpi-topbar {
    display: none;
}

.kpi-header.is-sticky .kpi-nav,
.kpi-header.is-sticky .kpi-nav-inner {
    height: 72px;
}

.kpi-header.is-sticky .custom-logo-link {
    width: 62px;
    height: 62px;
}

.kpi-header.is-sticky .menu-top-container ul>a:after,
.kpi-header.is-sticky .kpi-dropdown>a:after {
    bottom: 17px;
}

/* SLIDER */
.rental-hero {
    background: var(--white);
    padding: 0;
}

.rental-hero-slide {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* background: var(--white); */
    background: var(--light);
}

.rental-hero-slide:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    height: 100%;
    background: var(--light);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0
}

.rental-hero-slide:after {
    content: "";
    position: absolute;
    right: 8%;
    top: 15%;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(var(--secondary-rgb), .12);
    border-radius: 50%;
    z-index: 0
}

.rental-hero .container {
    position: relative;
    z-index: 2
}

.rental-hero-content {
    position: relative;
    z-index: 3;
    padding: 60px 0
}

.rental-hero-tag {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px
}

.rental-hero-tag:before {
    content: "";
    width: 28px;
    height: 2px;
    margin-right: 10px;
    background: var(--secondary)
}

.rental-hero-content h1 {
    max-width: 580px;
    margin: 0 0 22px;
    color: var(--dark);
    font-size: clamp(32px, 3vw, 68px);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -2.5px
}

.rental-hero-content h1 span {
    display: block;
    color: var(--primary)
}

.rental-hero-content>p {
    max-width: 510px;
    margin: 0 0 30px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.8
}

.rental-hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 42px
}

.rental-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 23px;
    border-radius: 5px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), .18);
    transition: all .35s ease
}

.rental-btn-primary i {
    transition: transform .3s ease
}

.rental-btn-primary:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-3px)
}

.rental-btn-primary:hover i {
    transform: translateX(5px)
}

.rental-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease
}

.rental-btn-link i {
    font-size: 10px;
    color: var(--primary);
    transition: transform .3s ease
}

.rental-btn-link:hover {
    color: var(--primary)
}

.rental-btn-link:hover i {
    transform: translate(3px, -3px)
}

.rental-hero .carousel-item {
    padding: 0;
}

.rental-hero-info {
    display: flex;
    align-items: center;
    gap: 35px
}

.rental-hero-info div {
    position: relative;
    padding-right: 35px
}

.rental-hero-info div:not(:last-child):after {
    content: "";
    position: absolute;
    right: 0;
    top: 3px;
    width: 1px;
    height: 35px;
    background: var(--border)
}

.rental-hero-info strong {
    display: block;
    margin-bottom: 3px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 700
}

.rental-hero-info span {
    display: block;
    color: var(--muted);
    font-size: 10px
}

.rental-product-stage {
    position: relative;
    z-index: 2;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center
}

.stage-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(var(--secondary-rgb), .06);
    animation: stagePulse 5s ease-in-out infinite
}

.stage-circle:after {
    content: "";
    position: absolute;
    inset: 35px;
    border: 1px solid rgba(var(--secondary-rgb), .14);
    border-radius: 50%
}

.stage-circle-small {
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px dashed rgba(var(--primary-rgb), .18);
    border-radius: 50%;
    animation: stageRotate 25s linear infinite
}

.stage-number {
    position: absolute;
    top: 95px;
    right: 5%;
    z-index: 2;
    color: rgba(var(--primary-rgb), .08);
    font-size: 120px;
    font-weight: 800;
    line-height: 1
}

.product-image-wrap {
    position: relative;
    z-index: 3;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center
}

.product-image-wrap img {
    width: 100%;
    max-width: 650px;
    max-height: 440px;
    object-fit: contain;
    filter: drop-shadow(0 25px 25px rgba(var(--dark-rgb), .12));
    animation: productMove 5s ease-in-out infinite
}

.product-spec {
    position: absolute;
    z-index: 5;
    top: 150px;
    right: 5%;
    display: flex;
    flex-direction: column;
    padding: 13px 17px;
    border-left: 3px solid var(--secondary);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(var(--dark-rgb), .08);
    animation: specMove 4s ease-in-out infinite
}

.product-spec span {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px
}

.product-spec strong {
    color: var(--dark);
    font-size: 12px
}

.product-status {
    position: absolute;
    z-index: 5;
    bottom: 100px;
    left: 8%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: rgba(var(--white-rgb), .9);
    color: var(--text);
    font-size: 10px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(var(--dark-rgb), .06);
    backdrop-filter: blur(8px)
}

.product-status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 0 4px rgba(var(--secondary-rgb), .1);
    animation: statusPulse 2s infinite
}

.rental-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    transform: translateY(-50%);
    box-shadow: 0 8px 20px rgba(var(--dark-rgb), .05);
    transition: all .3s ease
}

.rental-arrow:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.08)
}

.rental-arrow-prev {
    left: 25px
}

.rental-arrow-next {
    right: 25px
}

.rental-slider-nav {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 20px;
    transform: translateX(-50%)
}

.rental-progress {
    display: flex;
    align-items: center;
    gap: 6px
}

.rental-progress span {
    width: 25px;
    height: 3px;
    border-radius: 10px;
    background: var(--border);
    transition: all .4s ease
}

.rental-progress span.active {
    width: 50px;
    background: var(--primary)
}

.rental-slide-count {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: var(--muted);
    font-size: 10px
}

.rental-slide-count strong {
    color: var(--dark);
    font-size: 14px
}

.carousel-item.active .rental-hero-content {
    animation: heroTextIn .8s ease both
}

.carousel-item.active .product-image-wrap {
    animation: heroImageIn .9s ease both
}

.carousel-item.active .product-spec {
    animation: heroSpecIn 1s ease both
}

/* SECTION */
.laptop-rental-section {
    background: var(--light);
}

.laptop-rental-section.laptop,
.laptop-rental-section.apple {
    background: var(--white);
}

.section-heading {
    margin-bottom: 40px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 18px;
    border-radius: 50px;
    background:
        rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-heading h2 {
    margin: 0 0 8px;
    color: var(--dark);
    font-size: clamp(18px, 2.8vw, 32px);
    font-weight: 700;
    line-height: 1.2;
}

.section-heading h2 span {
    color: var(--primary);
}

.section-heading p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
}

.laptop-carousel {
    position: relative;
    padding: 0;
}

.carousel-item {
    /* padding: 5px 0 15px; */
    padding: 0;
}

.laptop-card {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.laptop-image {
    position: relative;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 25px; */
    padding: 0;
    background:
        radial-gradient(circle at center,
            rgba(var(--primary-rgb), 0.10),
            transparent 68%);
}

.laptop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.laptop-card:hover .laptop-image img {
    transform: scale(1.05);
}

.laptop-content {
    padding: 24px;
}

/* .product-category {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 12px;
} */

.laptop-content h3 {
    margin: 0 0 18px;
    color: var(--dark);
    font-size: 16px;
    line-height: 1.4;
}

.card-bottom {
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.rent-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 18px;
    border: 0;
    border-radius: 9px;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.rent-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.rent-btn i {
    transition: var(--transition);
}

.rent-btn:hover i {
    transform: translateX(4px);
}

.laptop-carousel .carousel-control-prev,
.laptop-carousel .carousel-control-next {
    width: 42px;
    height: 42px;
    top: 50%;
    bottom: auto;
    transform:
        translateY(-50%);
    opacity: 1;
}

.laptop-carousel .carousel-control-prev {
    left: -60px;
}

.laptop-carousel .carousel-control-next {
    right: -60px;
}

.carousel-arrow {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.carousel-control-prev:hover .carousel-arrow,
.carousel-control-next:hover .carousel-arrow {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.08);
}

.laptop-carousel .carousel-indicators {
    position: static;
    margin: 25px 0 0;
    gap: 6px;
}

.laptop-carousel .carousel-indicators button {
    width: 8px;
    height: 8px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--border);
    opacity: 1;
    transition: var(--transition);
}

.laptop-carousel .carousel-indicators button.active {
    width: 28px;
    border-radius: 20px;
    background: var(--primary);
}

.explore-wrapper {
    margin-top: 35px;
    text-align: center;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 25px;
    border-radius: 9px;
    background: var(--dark);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.explore-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.explore-btn i {
    transition: var(--transition);
}

.explore-btn:hover i {
    transform: translateX(4px);
}

.enquiry-modal {
    border: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 25px 70px rgba(var(--dark-rgb), 0.20);
}

.enquiry-modal .modal-header {
    padding: 25px 28px 20px;
    border-bottom:
        1px solid var(--border);
    background: var(--white);
}

.enquiry-modal .modal-title {
    margin: 0;
    color: var(--dark);
    font-size: 23px;
    font-weight: 700;
}

.enquiry-modal .btn-close {
    background-size: 11px;
    opacity: 0.6;
    box-shadow: none;
}

.enquiry-modal .btn-close:focus {
    box-shadow: none;
}

.enquiry-modal .modal-body {
    padding: 25px 28px 30px;
}

.modal-description {
    margin-bottom: 20px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.6;
}

.selected-product {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 15px;
    margin-bottom: 22px;
    border-radius: 10px;
    background:
        rgba(var(--primary-rgb), 0.07);
    border:
        1px solid rgba(var(--primary-rgb), 0.12);
}

.selected-product i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 9px;
    background: var(--primary);
    color: var(--white);
    font-size: 15px;
}

.selected-product small {
    display: block;
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 10px;
}

.selected-product strong {
    display: block;
    color: var(--dark);
    font-size: 13px;
    line-height: 1.4;
}

.form-group {
    margin-bottom: 17px;
}

.form-group p,
#rentalEnquiryForm p {
    margin: 0;
}

.wpcf7 form.sent .wpcf7-response-output {
    color: #000;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 12px;
    font-weight: 600;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    top: 50%;
    left: 14px;
    z-index: 2;
    transform:
        translateY(-50%);
    color: var(--muted);
    font-size: 13px;
    pointer-events: none;
}

.input-wrapper .form-control {
    height: 48px;
    padding-left: 42px;
    border:
        1px solid var(--border);
    border-radius: 9px;
    color: var(--dark);
    font-size: 13px;
    box-shadow: none;
    transition: var(--transition);
}

.input-wrapper .form-control::placeholder {
    color: var(--muted);
}

.input-wrapper .form-control:focus {
    border-color: var(--primary);
    box-shadow:
        0 0 0 3px rgba(var(--primary-rgb), 0.08);
}

.enquiry-submit {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 8px;
    border: 0;
    border-radius: 9px;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.enquiry-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.enquiry-submit i {
    transition: var(--transition);
}

.enquiry-submit:hover i {
    transform: translateX(4px);
}

.modal-backdrop.show {
    opacity: 0.65;
}

/* SECTION */
.rental-category-section {
    background: var(--light);
}

.rental-category-section:before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -250px;
    right: -180px;
    border-radius: 50%;
    background: rgba(var(--secondary-rgb), .06);
    animation: categoryFloat 9s ease-in-out infinite;
}

.rental-category-section:after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -200px;
    left: -130px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), .05);
    animation: categoryFloat 11s ease-in-out infinite reverse;
}

.rental-category-section .container {
    position: relative;
    z-index: 2;
}

.category-carousel {
    position: relative;
    padding: 0 0 45px;
}

.category-card {
    position: relative;
    display: block;
    height: 100%;
    min-height: 230px;
    padding: 25px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(var(--dark-rgb), .05);
    text-decoration: none;
    transition: all .4s ease;
}

.category-card:before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    top: -55px;
    right: -55px;
    border-radius: 50%;
    background: rgba(var(--secondary-rgb), .07);
    transition: all .5s ease;
}

.category-card:hover {
    border-color: rgba(var(--secondary-rgb), .3);
    transform: translateY(-9px);
    box-shadow: 0 22px 50px rgba(var(--dark-rgb), .1);
}

.category-card:hover:before {
    width: 180px;
    height: 180px;
    top: -70px;
    right: -70px;
}

.category-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(var(--secondary-rgb), .1), rgba(var(--primary-rgb), .04));
    color: var(--primary);
    font-size: 20px;
    transition: all .4s ease;
}

.category-card:hover .category-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 12px 25px rgba(var(--secondary-rgb), .2);
}

.category-content {
    position: relative;
}

.category-content h3 {
    margin: 0 0 10px;
    color: var(--dark);
    font-size: 19px;
    font-weight: 600;
}

.category-content p {
    margin: 0;
    color: var(--text);
    font-size: 13px;
    line-height: 1.7;
}

.category-arrow {
    position: absolute;
    right: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--primary);
    font-size: 12px;
    transition: all .35s ease;
}

.category-card:hover .category-arrow {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    transform: translateX(4px);
}

.category-control {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 8px 20px rgba(var(--dark-rgb), .08);
    transition: all .35s ease;
}

.category-carousel .carousel-control-prev,
.category-carousel .carousel-control-next {
    width: 45px;
    top: 45%;
    bottom: auto;
    transform: translateY(-50%);
    opacity: 1;
}

.category-carousel .carousel-control-prev {
    left: -60px;
}

.category-carousel .carousel-control-next {
    right: -60px;
}

.category-carousel .carousel-control-prev:hover .category-control,
.category-carousel .carousel-control-next:hover .category-control {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.category-carousel .carousel-indicators {
    bottom: 0;
    margin: 0;
    gap: 7px;
}

.category-carousel .carousel-indicators button {
    width: 8px;
    height: 8px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--muted);
    opacity: 1;
    transition: all .35s ease;
}

.category-carousel .carousel-indicators button.active {
    width: 28px;
    border-radius: 20px;
    background: var(--primary);
}

.category-carousel .carousel-item {
    transition: transform .7s ease-in-out;
}

.category-carousel .carousel-item.active .category-card {
    animation: categoryReveal .7s ease both;
}

.category-carousel .carousel-item.active .col-xl-3:nth-child(2) .category-card {
    animation-delay: .1s;
}

.category-carousel .carousel-item.active .col-xl-3:nth-child(3) .category-card {
    animation-delay: .2s;
}

.category-carousel .carousel-item.active .col-xl-3:nth-child(4) .category-card {
    animation-delay: .3s;
}

/* RENTAL */
.rental-process-section:before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    top: -250px;
    right: -150px;
    border-radius: 50%;
    background: rgba(var(--secondary-rgb), .07);
    animation: processFloat 8s ease-in-out infinite
}

.rental-process-section .container {
    position: relative;
    z-index: 2
}

.rental-process {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px 30px
}

.process-line {
    position: absolute;
    top: 40px;
    left: 16%;
    right: 16%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
    z-index: 0
}

.process-item {
    position: relative;
    z-index: 1;
    padding: 0 15px;
    text-align: center
}

.process-number {
    position: absolute;
    top: -8px;
    right: 25px;
    color: var(--border);
    font-size: 36px;
    font-weight: 800;
    line-height: 1
}

.process-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 25px;
    border: 6px solid var(--light);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    font-size: 22px;
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), .2);
    transition: all .4s ease
}

.process-item:hover .process-icon {
    transform: translateY(-8px) rotate(5deg);
    box-shadow: 0 18px 35px rgba(var(--primary-rgb), .25)
}

.process-content {
    padding: 25px 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(var(--dark-rgb), .05);
    transition: all .4s ease
}

.process-item:hover .process-content {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 18px 40px rgba(var(--dark-rgb), .09)
}

.process-content h3 {
    margin: 0 0 10px;
    color: var(--dark);
    font-size: 17px;
    font-weight: 600
}

.process-content p {
    margin: 0;
    color: var(--text);
    font-size: 13px;
    line-height: 1.7
}

.process-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 65px;
    padding: 28px 35px;
    border-radius: 18px;
    background: var(--dark);
    box-shadow: 0 20px 50px rgba(var(--dark-rgb), .12)
}

.process-cta span {
    display: block;
    margin-bottom: 5px;
    color: var(--secondary);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px
}

.process-cta h3 {
    margin: 0;
    color: var(--white);
    font-size: 21px;
    font-weight: 500
}

.process-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 21px;
    border-radius: 7px;
    background: var(--secondary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all .35s ease
}

.process-btn i {
    transition: transform .3s ease
}

.process-btn:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px)
}

.process-btn:hover i {
    transform: translateX(5px)
}

.process-item {
    opacity: 0;
    animation: processReveal .7s ease forwards
}

.process-item:nth-child(2) {
    animation-delay: .1s
}

.process-item:nth-child(3) {
    animation-delay: .2s
}

.process-item:nth-child(4) {
    animation-delay: .3s
}

.process-item:nth-child(5) {
    animation-delay: .4s
}

.process-item:nth-child(6) {
    animation-delay: .5s
}

.process-item:nth-child(7) {
    animation-delay: .6s
}

/* TESTIMONIAL */
.testimonial-section {
    background: linear-gradient(135deg, var(--light) 0%, var(--light) 50%, var(--light) 100%);
}

.testimonial-section .container {
    position: relative;
    z-index: 2;
}

.testimonial-carousel {
    position: relative;
    max-width: 1000px;
    margin: auto;
    padding: 0 60px 55px;
}

.testimonial-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background: rgba(var(--white-rgb), .92);
    border: 1px solid rgba(var(--white-rgb), .8);
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(var(--dark-rgb), .10);
    overflow: hidden;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.quote-icon {
    width: 65px;
    height: 65px;
    flex: 0 0 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-size: 30px;
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), .20);
    animation: quoteFloat 3s ease-in-out infinite;
}

.testimonial-content {
    flex: 1;
}

.rating {
    display: flex;
    gap: 5px;
    margin-bottom: 18px;
    color: var(--secondary);
    font-size: 14px;
}

.testimonial-text {
    margin: 0 0 25px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
}

.customer {
    display: flex;
    align-items: center;
    gap: 13px;
}

.customer-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
}

.customer-info h4 {
    margin: 0 0 3px;
    color: var(--dark);
    font-size: 15px;
    font-weight: 700;
}

.customer-info span {
    color: var(--muted);
    font-size: 12px;
}

.testimonial-arrow {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--border);
    box-shadow: 0 10px 25px rgba(var(--dark-rgb), .10);
    transition: var(--transition);
}

.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next {
    width: 45px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    opacity: 1;
}

.testimonial-carousel .carousel-control-prev {
    left: 0;
}

.testimonial-carousel .carousel-control-next {
    right: 0;
}

.testimonial-carousel .carousel-control-prev:hover .testimonial-arrow,
.testimonial-carousel .carousel-control-next:hover .testimonial-arrow {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.testimonial-carousel .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    gap: 6px;
}

.testimonial-carousel .carousel-indicators button {
    width: 8px;
    height: 8px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--border);
    opacity: 1;
    transition: all .35s ease;
}

.testimonial-carousel .carousel-indicators button.active {
    width: 28px;
    border-radius: 20px;
    background: var(--primary);
}

.testimonial-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(1px);
}

.testimonial-shape-1 {
    width: 250px;
    height: 250px;
    top: -100px;
    left: -80px;
    background: rgba(var(--primary-rgb), .12);
    animation: shapeMove 8s ease-in-out infinite;
}

.testimonial-shape-2 {
    width: 300px;
    height: 300px;
    right: -120px;
    bottom: -140px;
    background: rgba(var(--secondary-rgb), .12);
    animation: shapeMove 10s ease-in-out infinite reverse;
}

.testimonial-carousel .carousel-item {
    transition: transform .7s ease-in-out;
}

.testimonial-carousel .carousel-item.active .testimonial-card {
    animation: testimonialReveal .7s ease both;
}

/* BLOG */
.blog-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -220px;
    right: -150px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), .08);
    animation: blogFloat 8s ease-in-out infinite;
}

.blog-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -180px;
    left: -120px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), .06);
    animation: blogFloat 10s ease-in-out infinite reverse;
}

.blog-section .container {
    position: relative;
    z-index: 2;
}

.blog-carousel {
    position: relative;
    padding: 0 60px 45px;
}

.blog-card {
    height: 100%;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(var(--dark-rgb), .07);
    transition: transform .4s ease, box-shadow .4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(var(--dark-rgb), .13);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 45%, rgba(var(--black-rgb), .35));
    pointer-events: none;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-date {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    width: 55px;
    padding: 7px 5px;
    text-align: center;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(var(--black-rgb), .12);
}

.blog-date strong {
    display: block;
    color: var(--dark);
    font-size: 20px;
    line-height: 1;
}

.blog-date span {
    display: block;
    margin-top: 4px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
}

.blog-category {
    position: absolute;
    z-index: 2;
    bottom: 15px;
    left: 18px;
    padding: 7px 12px;
    border-radius: 6px;
    background: var(--primary);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .5px;
}

.blog-image-link {
    position: absolute;
    z-index: 3;
    right: 18px;
    bottom: 15px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    opacity: 0;
    transform: translateY(10px);
    transition: all .35s ease;
}

.blog-card:hover .blog-image-link {
    opacity: 1;
    transform: translateY(0);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    margin: 0 0 13px;
    color: var(--dark);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.45;
    transition: color .3s ease;
}

.blog-card:hover .blog-content h3 {
    color: var(--primary);
}

.blog-content p {
    margin: 0 0 20px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.read-more i {
    transition: transform .3s ease;
}

.read-more:hover {
    color: var(--dark);
}

.read-more:hover i {
    transform: translateX(5px);
}

.blog-arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 10px 25px rgba(var(--dark-rgb), .10);
    transition: all .35s ease;
}

.blog-carousel .carousel-control-prev,
.blog-carousel .carousel-control-next {
    width: 48px;
    top: 45%;
    bottom: auto;
    transform: translateY(-50%);
    opacity: 1;
}

.blog-carousel .carousel-control-prev {
    left: 0;
}

.blog-carousel .carousel-control-next {
    right: 0;
}

.blog-carousel .carousel-control-prev:hover .blog-arrow,
.blog-carousel .carousel-control-next:hover .blog-arrow {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.blog-carousel .carousel-indicators {
    bottom: 0;
    margin: 0;
    gap: 7px;
}

.blog-carousel .carousel-indicators button {
    width: 8px;
    height: 8px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--border);
    opacity: 1;
    transition: all .35s ease;
}

.blog-carousel .carousel-indicators button.active {
    width: 28px;
    border-radius: 20px;
    background: var(--primary);
}

.blog-carousel .carousel-item {
    transition: transform .7s ease-in-out;
}

.blog-carousel .carousel-item.active .blog-card {
    animation: blogCardReveal .7s ease both;
}

.blog-footer {
    margin-top: 20px;
    text-align: center;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 23px;
    border-radius: 50px;
    background: var(--dark);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all .35s ease;
}

.explore-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(var(--primary-rgb), .20);
}

.explore-btn i {
    transition: transform .3s ease;
}

.explore-btn:hover i {
    transform: translateX(5px);
}

.blog-card-animate {
    animation: blogCardReveal .7s ease both;
}

/* FOOTER */
.site-footer {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    color: var(--white)
}

.footer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none
}

.footer-glow-one {
    width: 420px;
    height: 420px;
    top: -250px;
    right: -120px;
    background: rgba(var(--secondary-rgb), .12);
    animation: footerGlow 8s ease-in-out infinite
}

.footer-glow-two {
    width: 320px;
    height: 320px;
    bottom: -220px;
    left: -120px;
    background: rgba(var(--primary-rgb), .1);
    animation: footerGlow 10s ease-in-out infinite reverse
}

.site-footer>.container {
    position: relative;
    z-index: 2
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 45px 0;
    border-bottom: 1px solid rgba(var(--white-rgb), .1)
}

.footer-cta-label {
    display: block;
    margin-bottom: 10px;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px
}

.footer-cta h2 {
    margin: 0;
    color: var(--white);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.25
}

.footer-cta h2 span {
    color: var(--secondary)
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 24px;
    border: 1px solid rgba(var(--white-rgb), .15);
    border-radius: 8px;
    background: var(--secondary);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all .35s ease
}

.footer-cta-btn i {
    transition: transform .35s ease
}

.footer-cta-btn:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(var(--black-rgb), .2)
}

.footer-cta-btn:hover i {
    transform: translateX(5px)
}

.footer-main {
    padding: 65px 0 55px
}

.footer-company {
    max-width: 390px
}

#nav_menu-2,
#nav_menu-3 {
    padding: 0;
}

.site-footer .custom-logo-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 15px;
    border-radius: 10px;
    background: var(--white)
}

.custom-logo-link img {
    max-width: 90px;
    height: auto;
}

.footer-company p {
    margin: 0 0 25px;
    color: rgba(var(--white-rgb), .58);
    font-size: 14px;
    line-height: 1.8
}

.footer-social {
    display: flex;
    gap: 9px
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(var(--white-rgb), .12);
    border-radius: 8px;
    background: rgba(var(--white-rgb), .04);
    color: rgba(var(--white-rgb), .75);
    font-size: 14px;
    text-decoration: none;
    transition: all .35s ease
}

.footer-social a:hover {
    border-color: var(--secondary);
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-5px)
}

.footer-title {
    display: block;
    margin-bottom: 23px;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .5px
}

.footer-title:after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 10px;
    border-radius: 10px;
    background: var(--secondary)
}

.footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.footer-links li {
    margin-bottom: 13px
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(var(--white-rgb), .55);
    font-size: 14px;
    text-decoration: none;
    transition: all .3s ease
}

.footer-links a:before {
    content: "";
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: width .3s ease
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px)
}

.footer-links a:hover:before {
    width: 10px
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 18px;
    color: rgba(var(--white-rgb), .58);
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
    transition: all .3s ease
}

.footer-contact-item:hover {
    color: var(--white)
}

.footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(var(--white-rgb), .1);
    border-radius: 8px;
    background: rgba(var(--white-rgb), .04);
    color: var(--secondary);
    transition: all .3s ease
}

.footer-contact-item:hover .footer-contact-icon {
    border-color: var(--secondary);
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px)
}

.footer-contact-item small {
    display: block;
    margin-bottom: 2px;
    color: var(--secondary);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 50px;
    border-top: 1px solid rgba(var(--white-rgb), .1)
}

.footer-bottom p {
    margin: 0;
    color: rgba(var(--white-rgb), .4);
    font-size: 13px
}

.footer-bottom strong {
    color: rgba(var(--white-rgb), .65)
}

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

.footer-bottom-links a {
    color: rgba(var(--white-rgb), .5);
    text-decoration: none;
    transition: color .3s ease
}

.footer-bottom-links a:hover {
    color: var(--secondary)
}

.footer-bottom-links>span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(var(--white-rgb), .25)
}

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 999;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(var(--white-rgb), .15);
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(var(--black-rgb), .2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .35s ease
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.back-to-top:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-5px)
}

.back-to-top i {
    transition: transform .3s ease
}

.back-to-top:hover i {
    animation: backTopArrow .7s ease infinite
}

/* CONTACT */
.contact-section {
    background: #f6f9fc;
}

.contact-info-box {
    height: 100%;
    padding: 38px;
    border-radius: 20px;
    background: #071a33;
}

.contact-info-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 25px;
}

.contact-info-header .contact-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #0879c9;
    color: #fff;
    font-size: 20px;
}

.contact-info-header span:not(.contact-icon) {
    display: block;
    margin-bottom: 4px;
    color: #0879c9;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-info-header h3 {
    margin: 0;
    color: #fff;
    font-size: 23px;
    font-weight: 700;
}

.contact-info-box>p {
    margin: 0 0 30px;
    padding-bottom: 28px;
    border-bottom: 1px solid #edf1f4;
    color: #fff;
    font-size: 14px;
    line-height: 1.8;
}

.input-box.textarea-box i {
    top: 10% !important;
}

#enquiryForm p {
    margin: 0;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
}

.contact-info-item .contact-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #eef7fc;
    color: #0879c9;
}

.contact-info-item small {
    display: block;
    margin-bottom: 3px;
    color: #8a98a5;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-info-item a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color .3s ease;
}

.contact-info-item a:hover {
    color: #0879c9;
}

.contact-info-footer {
    margin-top: 30px;
    padding: 18px 20px;
    border-radius: 12px;
    background: #071a33;
    color: #fff;
}

.contact-info-footer span {
    display: block;
    margin-bottom: 3px;
    color: #aebdca;
    font-size: 12px;
}

.contact-info-footer strong {
    font-size: 14px;
}

.contact-map {
    position: relative;
    height: 100%;
    min-height: 470px;
    overflow: hidden;
    border: 1px solid #e2eaf0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(7, 26, 51, .07);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 470px;
    display: block;
    border: 0;
}

.map-button {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 17px;
    border-radius: 10px;
    background: #fff;
    color: #071a33;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(7, 26, 51, .15);
    transition: all .3s ease;
}

.map-button:hover {
    background: #0879c9;
    color: #fff;
    transform: translateY(-2px);
}

/* MESSAGE */
.enquiry-section {
    background: #f5f9fc;
}

.enquiry-wrapper {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(7, 26, 51, .08);
}

.enquiry-info {
    height: 100%;
    padding: 50px 40px;
    background: #071a33;
    color: #fff;
}

.enquiry-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 30px;
    color: #45b9ed;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.enquiry-info h2 {
    margin: 0 0 18px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
}

.enquiry-info h2 span {
    color: #21a9df;
}

.enquiry-info>p {
    margin: 0 0 35px;
    color: #aebdca;
    font-size: 14px;
    line-height: 1.8;
}

.enquiry-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.enquiry-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.enquiry-point>span {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(33, 169, 223, .12);
    color: #21a9df;
    font-size: 11px;
}

.enquiry-point strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 13px;
}

.enquiry-point small {
    display: block;
    color: #8498aa;
    font-size: 11px;
    line-height: 1.5;
}

.enquiry-form-box {
    padding: 50px;
}

.form-heading {
    margin-bottom: 32px;
}

.form-heading>span {
    display: block;
    margin-bottom: 7px;
    color: #0879c9;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.form-heading h3 {
    margin: 0 0 7px;
    color: #071a33;
    font-size: 28px;
    font-weight: 700;
    text-transform: capitalize;
}

.form-heading p {
    margin: 0;
    color: #7a8996;
    font-size: 13px;
}

.enquiry-form-box label {
    display: block;
    margin-bottom: 8px;
    color: #26394b;
    font-size: 12px;
    font-weight: 600;
}

.input-box {
    position: relative;
}

.input-box>i {
    position: absolute;
    top: 50%;
    left: 16px;
    z-index: 2;
    color: #8da0ae;
    font-size: 13px;
    transform: translateY(-50%);
    transition: color .3s ease;
}

.input-box input,
.input-box textarea {
    width: 100%;
    border: 1px solid #e0e8ee;
    border-radius: 10px;
    outline: none;
    background: #f9fbfc;
    color: #071a33;
    font-family: inherit;
    font-size: 13px;
    transition: all .3s ease;
}

.input-box input {
    height: 50px;
    padding: 0 16px 0 44px;
}

.input-box textarea {
    min-height: 140px;
    padding: 15px 16px 15px 44px;
    resize: vertical;
}

.input-box input::placeholder,
.input-box textarea::placeholder {
    color: #a9b5be;
}

.input-box input:focus,
.input-box textarea:focus {
    border-color: #21a9df;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(33, 169, 223, .08);
}

.input-box:focus-within i {
    color: #0879c9;
}

.textarea-box i {
    top: 20px;
    transform: none;
}

.enquiry-submit {
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    border-radius: 10px;
    background: #0879c9;
    color: #fff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .35s ease;
}

.enquiry-submit span {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    transition: transform .35s ease;
}

.enquiry-submit:hover {
    background: #071a33;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(7, 26, 51, .15);
}

.enquiry-submit:hover span {
    transform: translateX(5px);
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 18px;
    color: #91a0ac;
    font-size: 10px;
    text-align: center;
}

.form-note i {
    color: #0879c9;
}

/* FAQ */
.faq-section {
    background: #f6f9fc;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 14px;
    border-radius: 30px;
    background: #e8f5fc;
    color: #0879c9;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.faq-intro h2 {
    margin: 0 0 18px;
    color: #071a33;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
}

.faq-intro h2 span {
    color: #0879c9;
}

.faq-intro>p {
    margin: 0;
    color: #71808d;
    font-size: 14px;
    line-height: 1.8;
}

.faq-help {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 35px;
    padding: 18px;
    border: 1px solid #e1eaf0;
    border-radius: 14px;
    background: #fff;
}

.faq-help-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #0879c9;
    color: #fff;
}

.faq-help strong {
    display: block;
    margin-bottom: 5px;
    color: #071a33;
    font-size: 12px;
}

.faq-help a {
    color: #0879c9;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
}

.faq-help a i {
    margin-left: 4px;
    transition: transform .3s ease;
}

.faq-help a:hover i {
    transform: translateX(4px);
}

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

.faq-item {
    overflow: hidden;
    border: 1px solid #e2eaf0;
    border-radius: 12px;
    background: #fff;
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.faq-item:hover {
    border-color: #b9dff1;
    box-shadow: 0 10px 30px rgba(7, 26, 51, .06);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: #0879c9;
    box-shadow: 0 12px 35px rgba(7, 26, 51, .08);
}

.faq-question {
    width: 100%;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    border: 0;
    background: transparent;
    color: #071a33;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-question i {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef7fc;
    color: #0879c9;
    font-size: 10px;
    transition: transform .4s ease, background .3s ease, color .3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    background: #0879c9;
    color: #fff;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .4s ease;
}

.faq-answer p {
    overflow: hidden;
    margin: 0;
    padding: 0 22px;
    color: #71808d;
    font-size: 13px;
    line-height: 1.8;
    opacity: 0;
    transition: opacity .3s ease, padding .4s ease;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
    padding: 0 22px 22px;
    opacity: 1;
}

.faq-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 45px;
    padding: 18px 24px;
    border-radius: 14px;
    background: #071a33;
    color: #fff;
}

.faq-cta>div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-cta>div i {
    color: #21a9df;
    font-size: 20px;
}

.faq-cta>div span {
    font-size: 13px;
}

.faq-cta a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 18px;
    border-radius: 8px;
    background: #0879c9;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all .3s ease;
}

.faq-cta a:hover {
    background: #21a9df;
    transform: translateY(-2px);
}

.faq-cta a i {
    transition: transform .3s ease;
}

.faq-cta a:hover i {
    transform: translateX(4px);
}

.faq-section .faq-intro {
    opacity: 0;
    transform: translateX(-40px);
    animation: faqIntro .8s ease forwards;
}

.faq-section .faq-item {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .6s ease, transform .6s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease;
}

.faq-section .faq-item.show {
    opacity: 1;
    transform: translateX(0);
}

.faq-section .faq-item:nth-child(1) {
    transition-delay: .05s;
}

.faq-section .faq-item:nth-child(2) {
    transition-delay: .1s;
}

.faq-section .faq-item:nth-child(3) {
    transition-delay: .15s;
}

.faq-section .faq-item:nth-child(4) {
    transition-delay: .2s;
}

.faq-section .faq-item:nth-child(5) {
    transition-delay: .25s;
}

.faq-section .faq-item:nth-child(6) {
    transition-delay: .3s;
}

.faq-section .faq-item:nth-child(7) {
    transition-delay: .35s;
}

.faq-section .faq-item:nth-child(8) {
    transition-delay: .4s;
}

.faq-section .faq-item:hover {
    transform: translateX(5px);
}

.faq-section .faq-question {
    transition: color .3s ease, padding-left .3s ease;
}

.faq-section .faq-question:hover {
    color: #0879c9;
}

.faq-section .faq-question i {
    transition: transform .35s ease, color .3s ease;
}

.faq-section .faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: #fff;
}

.faq-section .faq-help {
    opacity: 0;
    transform: translateY(20px);
    animation: faqHelp .7s .5s ease forwards;
}

.faq-section .faq-help-icon {
    transition: transform .35s ease, box-shadow .35s ease;
}

.faq-section .faq-help:hover .faq-help-icon {
    transform: translateY(-4px) rotate(-5deg);
    box-shadow: 0 10px 25px rgba(8, 121, 201, .15);
}

.faq-section .faq-cta {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .7s ease, transform .7s ease, box-shadow .3s ease;
}

.faq-section .faq-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.faq-section .faq-cta:hover {
    transform: translateY(-4px);
}

.faq-section .faq-cta a {
    transition: transform .3s ease, background .3s ease;
}

.faq-section .faq-cta a:hover {
    transform: translateX(5px);
}

.enquiry-section .enquiry-info {
    opacity: 0;
    transform: translateX(-45px);
    animation: enquiryInfoIn .8s cubic-bezier(.22, 1, .36, 1) forwards;
}

.enquiry-section .enquiry-form-box {
    opacity: 0;
    transform: translateX(45px);
    animation: enquiryFormIn .8s .15s cubic-bezier(.22, 1, .36, 1) forwards;
}

.enquiry-section .enquiry-badge {
    opacity: 0;
    transform: translateY(15px);
    animation: enquiryFadeUp .6s .35s ease forwards;
}

.enquiry-section .enquiry-info h2 {
    opacity: 0;
    transform: translateY(20px);
    animation: enquiryFadeUp .7s .45s ease forwards;
}

.enquiry-section .enquiry-info>p {
    opacity: 0;
    transform: translateY(20px);
    animation: enquiryFadeUp .7s .55s ease forwards;
}

.enquiry-section .enquiry-point {
    opacity: 0;
    transform: translateX(-20px);
    animation: enquiryPointIn .6s ease forwards;
}

.enquiry-section .enquiry-point:nth-child(1) {
    animation-delay: .65s;
}

.enquiry-section .enquiry-point:nth-child(2) {
    animation-delay: .78s;
}

.enquiry-section .enquiry-point:nth-child(3) {
    animation-delay: .91s;
}

.enquiry-section .form-heading {
    opacity: 0;
    transform: translateY(20px);
    animation: enquiryFadeUp .7s .4s ease forwards;
}

.enquiry-section .input-box {
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.enquiry-section .input-box:hover {
    transform: translateY(-2px);
}

.enquiry-section .input-box:focus-within {
    transform: translateY(-3px);
    border-color: #0879c9;
    box-shadow: 0 8px 25px rgba(8, 121, 201, .1);
}

.enquiry-section .input-box i {
    transition: color .3s ease, transform .3s ease;
    position: absolute;
    z-index: 99;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
}

.input-box p {
    margin: 0;
}

.enquiry-section .input-box:focus-within i {
    color: #0879c9;
    /* transform: scale(1.15); */
}

.wpcf7-not-valid-tip {
    font-size: 12px !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    font-size: 14px !important;
}

.wpcf7-response-output {
    margin: 0 !important;
    color: #000 !important;
}

.enquiry-section .enquiry-submit {
    opacity: 0;
    transform: translateY(20px);
    animation: enquiryFadeUp .7s 1s ease forwards;
    position: relative;
    overflow: hidden;
    margin: 0;
    transition: transform .3s ease, box-shadow .3s ease;
}

.enquiry-section .enquiry-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(8, 121, 201, .2);
}

.enquiry-section .enquiry-submit::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
    transform: skewX(-20deg);
}

.enquiry-section .enquiry-submit:hover::before {
    animation: enquiryButtonShine .7s ease;
}

.enquiry-section .enquiry-submit span {
    transition: transform .3s ease;
}

.enquiry-section .enquiry-submit:hover span {
    transform: translateX(5px);
}

.enquiry-section .form-note {
    opacity: 0;
    transform: translateY(15px);
    animation: enquiryFadeUp .6s 1.1s ease forwards;
}

.enquiry-section .enquiry-point>span {
    transition: transform .3s ease, background .3s ease;
}

.enquiry-section .enquiry-point:hover>span {
    transform: scale(1.12) rotate(5deg);
}

.contact-section .section-heading {
    opacity: 0;
    transform: translateY(30px);
    animation: contactFadeUp .8s ease forwards;
}

.contact-section .contact-info-box {
    opacity: 0;
    transform: translateX(-40px);
    animation: contactInfoIn .8s .2s cubic-bezier(.22, 1, .36, 1) forwards;
}

.contact-section .contact-map {
    opacity: 0;
    transform: translateX(40px);
    animation: contactMapIn .8s .3s cubic-bezier(.22, 1, .36, 1) forwards;
}

.contact-section .section-badge {
    transition: transform .3s ease, box-shadow .3s ease;
}

.contact-section .section-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(8, 121, 201, .12);
}

.contact-section .contact-info-header {
    opacity: 0;
    transform: translateY(20px);
    animation: contactFadeUp .7s .5s ease forwards;
}

.contact-section .contact-info-box>p {
    opacity: 0;
    transform: translateY(20px);
    animation: contactFadeUp .7s .6s ease forwards;
}

.contact-section .contact-info-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: contactItemIn .6s ease forwards;
}

.contact-section .contact-info-item:nth-of-type(1) {
    animation-delay: .7s;
}

.contact-section .contact-info-item:nth-of-type(2) {
    animation-delay: .82s;
}

.contact-section .contact-info-footer {
    opacity: 0;
    transform: translateY(20px);
    animation: contactFadeUp .7s .95s ease forwards;
}

.contact-section .contact-icon {
    transition: transform .35s ease, background .35s ease, box-shadow .35s ease;
}

.contact-section .contact-info-item:hover .contact-icon {
    transform: translateY(-4px) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(8, 121, 201, .12);
}

.contact-section .contact-info-header:hover .contact-icon {
    transform: scale(1.08) rotate(-4deg);
}

.contact-section .contact-info-item a {
    transition: color .3s ease, padding-left .3s ease;
}

.contact-section .contact-info-item a:hover {
    padding-left: 4px;
}

.contact-section .contact-map {
    overflow: hidden;
}

.contact-section .contact-map iframe {
    transition: transform 1s ease;
}

.contact-section .contact-map:hover iframe {
    transform: scale(1.02);
}

.contact-section .map-button {
    opacity: 0;
    transform: translateY(-10px);
    animation: mapButtonIn .7s 1s ease forwards;
    transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease;
}

.contact-section .map-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(7, 26, 51, .15);
}

/* QUOTE */

#rentalRequirementForm .form-section:nth-child(1) {
    border-left: 4px solid #1557d6;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

#rentalRequirementForm .form-section:nth-child(2) {
    border-left: 4px solid #16b86a;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffb 100%);
}

#rentalRequirementForm .form-section:nth-child(3) {
    border-left: 4px solid #5935d5;
    background: linear-gradient(135deg, #ffffff 0%, #fbf9ff 100%);
}

#rentalRequirementForm .form-section-title>p span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(21, 87, 214, 0.22);
}

#rentalRequirementForm .form-section:nth-child(1) .form-section-title>p span {
    background: linear-gradient(135deg, #064bd4, #1c69e8);
}

#rentalRequirementForm .form-section:nth-child(2) .form-section-title>p span {
    background: linear-gradient(135deg, #05a95e, #19c878);
    box-shadow: 0 8px 18px rgba(22, 184, 106, 0.22);
}

#rentalRequirementForm .form-section:nth-child(3) .form-section-title>p span {
    background: linear-gradient(135deg, #4e2bc5, #643ce0);
    box-shadow: 0 8px 18px rgba(89, 53, 213, 0.22);
}

#rentalRequirementForm .form-section-title>div {
    position: relative;
    padding-left: 24px;
}

#rentalRequirementForm .form-section-title>div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 40px;
    background: #ccd5e5;
}

#rentalRequirementForm .form-section:nth-child(1)::after {
    background: #1557d6;
}

#rentalRequirementForm .form-section:nth-child(2)::after {
    background: #16b86a;
}

#rentalRequirementForm .form-section:nth-child(3)::after {
    background: #5935d5;
}

#rentalRequirementForm .form-submit-area {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: 8px;
    background: #f7faff;
    border: 1px solid #edf1f8;
    border-radius: 14px;
}

.form-submit-area p {
    margin: 0;
}

.rental-enquiry-section {
    background: #f5f9fc;
}

.rental-form-wrapper {
    max-width: 1000px;
    margin: auto;
    padding: 45px;
    border: 1px solid #e2eaf0;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(7, 26, 51, .08);
}

.rental-form-header {
    margin-bottom: 30px;
    text-align: center;
}

.rental-form-header h2 {
    margin: 0 0 10px;
    color: #071a33;
    font-size: 36px;
    font-weight: 700;
}

.rental-form-header h2 span {
    color: #0879c9;
}

.rental-form-header p {
    color: #7b8b98;
    font-size: 14px;
    line-height: 1.7;
}

.form-section.show p {
    margin: 0;
}

.form-section {
    margin-bottom: 35px;
    padding: 30px;
    border: 1px solid #e8eef2;
    border-radius: 16px;
    background: #fbfcfd;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 28px;
}

.form-section-title>span {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #0879c9;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.form-section-title h3 {
    margin: 0 0 4px;
    color: #071a33;
    font-size: 17px;
    font-weight: 700;
}

.form-section-title p {
    margin: 0;
    color: #8a98a4;
    font-size: 11px;
}

.form-section label {
    display: block;
    margin-bottom: 8px;
    color: #304254;
    font-size: 11px;
    font-weight: 600;
}

.form-section label em {
    color: #e74c3c;
    font-style: normal;
}

.form-input {
    position: relative;
}

.form-input i {
    position: absolute;
    top: 50%;
    left: 15px;
    z-index: 2;
    color: #8ca0af;
    font-size: 12px;
    transform: translateY(-50%);
    pointer-events: none;
    transition: color .3s ease;
}

.form-input input,
.form-input select,
.form-input textarea {
    width: 100%;
    border: 1px solid #dfe7ed;
    border-radius: 9px;
    outline: none;
    background: #fff;
    color: #25384a;
    font-family: inherit;
    font-size: 12px;
    transition: all .3s ease;
}

.form-input input,
.form-input select {
    height: 48px;
    padding: 0 15px 0 42px;
}

.form-input textarea {
    min-height: 130px;
    padding: 15px 15px 15px 42px;
    resize: vertical;
}

.form-input select {
    appearance: auto;
    cursor: pointer;
}

.form-input input::placeholder,
.form-input textarea::placeholder {
    color: #aab6bf;
}

.form-input input:focus,
.form-input select:focus,
.form-input textarea:focus {
    border-color: #0879c9;
    box-shadow: 0 0 0 4px rgba(8, 121, 201, .07);
}

.form-input:focus-within i {
    color: #0879c9;
}

.textarea-input i {
    top: 18px;
    transform: none;
}

.file-input input {
    display: none;
}

.file-input label {
    min-height: 65px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 12px 18px;
    border: 1px dashed #b9cbd6;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: all .3s ease;
}

.file-input label i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #e8f5fc;
    color: #0879c9;
}

.file-input label span {
    color: #304254;
    font-size: 11px;
}

.file-input label small {
    color: #9aa7b1;
    font-size: 9px;
}

.file-input label:hover {
    border-color: #0879c9;
    background: #f8fcfe;
}

.form-submit-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-top: 5px;
}

.form-submit-area>div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #8796a2;
    font-size: 10px;
}

.form-submit-area>div i {
    color: #0879c9;
}

.form-submit-area button {
    min-width: 170px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    border-radius: 9px;
    background: #0879c9;
    color: #fff;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .35s ease;
}

.form-submit-area button span {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    transition: transform .35s ease;
}

.form-submit-area button:hover {
    background: #071a33;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(7, 26, 51, .15);
}

.form-submit-area button:hover span {
    transform: translateX(5px);
}

.enquiry-section .input-box {
    position: relative;
}

.enquiry-section .input-box>p {
    position: relative;
    margin: 0 !important;
}

.enquiry-section .input-box>p>i {
    position: absolute;
    top: 25px;
    left: 16px;
    z-index: 2;
    color: #8da0ae;
    font-size: 13px;
    line-height: 1;
    transform: translateY(-50%);
    pointer-events: none;
    transition: color .3s ease;
}

.enquiry-section .input-box.textarea-box>p>i {
    top: 20px;
    transform: none;
}

#rentalRequirementForm .form-input {
    position: relative;
}

#rentalRequirementForm .form-input>p {
    position: relative;
    margin: 0 !important;
}

#rentalRequirementForm .form-input>p>i {
    position: absolute;
    top: 25px;
    left: 16px;
    z-index: 2;
    color: #8da0ae;
    font-size: 13px;
    line-height: 1;
    transform: translateY(-50%);
    pointer-events: none;
}

#rentalRequirementForm .textarea-input>p>i {
    top: 18px;
    transform: none;
}

#rentalRequirementForm .form-input .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.rental-enquiry-section .rental-form-header {
    opacity: 0;
    transform: translateY(30px);
    animation: rentalFadeUp .8s ease forwards;
}

.rental-enquiry-section .form-section {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease;
}

.rental-enquiry-section .form-section:nth-child(1) {
    transition-delay: .1s;
}

.rental-enquiry-section .form-section:nth-child(2) {
    transition-delay: .2s;
}

.rental-enquiry-section .form-section:nth-child(3) {
    transition-delay: .3s;
}

.rental-enquiry-section .form-section:nth-child(4) {
    transition-delay: .4s;
}

.rental-enquiry-section .form-section.show {
    opacity: 1;
    transform: translateY(0);
}

.rental-enquiry-section .form-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
}

.rental-enquiry-section .form-section-title>span {
    transition: transform .35s ease, box-shadow .35s ease;
}

.rental-enquiry-section .form-section:hover .form-section-title>span {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.rental-enquiry-section .form-input {
    transition: transform .3s ease;
}

.rental-enquiry-section .form-input:focus-within {
    transform: translateY(-2px);
}

.rental-enquiry-section .form-input i {
    transition: transform .3s ease, color .3s ease;
}

.rental-enquiry-section .form-submit-area {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease .5s, transform .7s ease .5s;
}

.rental-enquiry-section .form-submit-area.show {
    opacity: 1;
    transform: translateY(0);
}

.rental-enquiry-section .form-submit-area button {
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.rental-enquiry-section .form-submit-area button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .15);
}

.rental-enquiry-section .form-submit-area button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
    transform: skewX(-20deg);
}

.rental-enquiry-section .form-submit-area button:hover::before {
    animation: rentalButtonShine .7s ease;
}

/* BREADCRUMB */
.page-breadcrumb {
    background: #071a33;
/*     padding: 60px 0 !important; */
}

.page-breadcrumb::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: -240px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(255, 255, 255, .025), 0 0 0 120px rgba(255, 255, 255, .02);
}

.page-breadcrumb::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -180px;
    bottom: -220px;
    border: 1px solid rgba(33, 169, 223, .12);
    border-radius: 50%;
}

.page-breadcrumb .container {
    position: relative;
    z-index: 2;
}

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

.breadcrumb-content h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    animation: breadcrumbTitle .7s .1s cubic-bezier(.22, 1, .36, 1) forwards;
}

.breadcrumb-list {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 9px 18px;
    list-style: none;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 30px;
    background: rgba(255, 255, 255, .06);
    opacity: 0;
    transform: translateY(15px);
    animation: breadcrumbList .7s .25s ease forwards;
}

.breadcrumb-list li {
    color: #fff;
    font-size: 12px;
}

.breadcrumb-list li i {
    color: #21a9df;
    font-size: 9px;
}

.breadcrumb-list a {
    color: #a9bfd0;
    text-decoration: none;
    transition: color .3s ease;
}

.breadcrumb-list a:hover {
    color: #21a9df;
}


/* ABOUT */
.about-section {
    background: #f7faff;
}

.about-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -250px;
    top: 100px;
    border-radius: 50%;
    background: rgba(33, 169, 223, .06);
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-content {
    position: relative;
}

.about-intro {
    position: relative;
    padding: 45px 40px;
    border-radius: 24px;
    background: #08427c;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 20px 50px rgba(8, 66, 124, .15);
}

.about-intro::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -100px;
    top: -100px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
}

.about-intro::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    left: -90px;
    bottom: -90px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
}

.about-number {
    position: absolute;
    top: 22px;
    right: 30px;
    color: rgba(255, 255, 255, .2);
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.about-label {
    position: relative;
    display: block;
    margin-bottom: 18px;
    color: #62c9ed;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-intro h3 {
    position: relative;
    margin-bottom: 18px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
}

.about-intro h3 span {
    color: #5cc7eb;
}

.about-intro p {
    position: relative;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.8;
}

.about-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    border-radius: 50px;
    background: #21a9df;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all .3s ease;
}

.about-btn i {
    transition: transform .3s ease;
}

.about-btn:hover {
    color: #fff;
    background: #1596ca;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(33, 169, 223, .25);
}

.about-btn:hover i {
    transform: translateX(5px);
}

.about-details {
    padding-left: 30px;
}

.expertise-content {
    padding-left: 30px;
}

.about-detail-item {
    display: flex;
    gap: 20px;
    padding: 0 0 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e4eaf0;
}

.about-detail-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fff;
    color: #0879c9;
    font-size: 19px;
    box-shadow: 0 8px 25px rgba(8, 66, 124, .08);
    transition: all .3s ease;
}

.about-detail-item:hover .about-detail-icon {
    color: #fff;
    background: #0879c9;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(8, 121, 201, .18);
}

.about-detail-item h4 {
    margin: 0 0 7px;
    color: #102d4d;
    font-size: 18px;
    font-weight: 700;
}

.about-detail-item p {
    margin: 0;
    color: #687789;
    font-size: 14px;
    line-height: 1.7;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px 20px;
    border-radius: 14px;
    background: #fff;
    color: #40556b;
    font-size: 13px;
    line-height: 1.6;
    box-shadow: 0 8px 25px rgba(8, 66, 124, .06);
}

.about-highlight i {
    flex: 0 0 auto;
    color: #21a9df;
    font-size: 20px;
}

.about-section .section-heading {
    opacity: 0;
    transform: translateY(35px);
    animation: aboutFadeUp .8s ease forwards;
}

.about-section .section-badge {
    transition: all .3s ease;
}

.about-section .section-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(8, 66, 124, .12);
}

.about-intro {
    opacity: 0;
    transform: translateX(-50px);
    animation: aboutSlideLeft .9s .2s cubic-bezier(.22, 1, .36, 1) forwards;
}

.about-intro::before {
    animation: aboutCircle 8s linear infinite;
}

.about-intro::after {
    animation: aboutCircleReverse 10s linear infinite;
}

.about-number {
    animation: aboutNumberFloat 3s ease-in-out infinite;
}

.about-detail-item {
    opacity: 0;
    transform: translateX(45px);
    animation: aboutSlideRight .7s cubic-bezier(.22, 1, .36, 1) forwards;
}

.about-detail-item:nth-child(1) {
    animation-delay: .35s;
}

.about-detail-item:nth-child(2) {
    animation-delay: .5s;
}

.about-detail-item:nth-child(3) {
    animation-delay: .65s;
}

.about-detail-icon {
    transition: transform .35s ease, background .35s ease, color .35s ease, box-shadow .35s ease;
}

.about-detail-item:hover .about-detail-icon {
    transform: translateY(-5px) rotate(-5deg);
}

.about-detail-item h4 {
    transition: color .3s ease;
}

.about-detail-item:hover h4 {
    color: #0879c9;
}

.about-highlight {
    opacity: 0;
    transform: translateY(25px);
    animation: aboutFadeUp .7s .85s ease forwards;
    transition: transform .3s ease, box-shadow .3s ease;
}

.about-highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(8, 66, 124, .1);
}

.about-highlight i {
    animation: aboutCheckPulse 2s ease-in-out infinite;
}

.about-btn {
    opacity: 0;
    transform: translateY(15px);
    animation: aboutFadeUp .7s .55s ease forwards;
}

.about-btn:hover {
    transform: translateY(-4px);
}

/* EXPERTISE */

.expertise-main {
    position: relative;
    z-index: 2;
}

.expertise-image-wrap {
    position: relative;
}

.expertise-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(7, 26, 51, .12);
}

.expertise-image img {
    width: 100%;
    height: 510px;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}

.expertise-image:hover img {
    transform: scale(1.04);
}

.expertise-dots {
    position: absolute;
    left: -35px;
    top: 80px;
    width: 140px;
    height: 140px;
    background-image: radial-gradient(#1688d0 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: .35;
    animation: expertiseDots 5s ease-in-out infinite;
}

.experience-card {
    position: absolute;
    left: -55px;
    top: 155px;
    z-index: 4;
    width: 135px;
    padding: 25px 15px;
    border-radius: 14px;
    background: linear-gradient(145deg, #0879c9, #08427c);
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 40px rgba(8, 66, 124, .25);
    animation: experienceFloat 4s ease-in-out infinite;
}

.experience-card i {
    display: block;
    margin-bottom: 12px;
    font-size: 24px;
}

.experience-card strong {
    display: block;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 8px;
}

.experience-card span {
    display: block;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 500;
}

.expertise-shape {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 75px;
    height: 75px;
    border-radius: 0 0 10px 0;
    background: #0879c9;
    z-index: 1;
    animation: shapePulse 3s ease-in-out infinite;
}

.expertise-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #0879c9;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.expertise-label::before {
    content: "";
    width: 40px;
    height: 2px;
    background: #0879c9;
}

.expertise-content h2 {
    margin: 12px 0 10px;
    color: #102d4d;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}

.expertise-content h2 span {
    color: #0879c9;
}

.expertise-line {
    width: 65px;
    height: 3px;
    margin-bottom: 25px;
    background: #0879c9;
    border-radius: 5px;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.expertise-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf6ff;
    color: #0879c9;
    font-size: 17px;
    transition: all .35s ease;
}

.expertise-item:hover .expertise-icon {
    color: #fff;
    background: #0879c9;
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(8, 121, 201, .2);
}

.expertise-item h3 {
    margin: 2px 0 5px;
    color: #142d4b;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

.expertise-item p {
    margin: 0;
    color: #687789;
    font-size: 13px;
    line-height: 1.55;
}

.expertise-description {
    margin: 20px 0 0;
    color: #526477;
    font-size: 13px;
    line-height: 1.7;
}

.vision-mission-row {
    position: relative;
    z-index: 2;
    margin-top: 0;
}

.vision-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    height: 100%;
    padding: 32px;
    border: 1px solid #e5edf5;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(7, 26, 51, .06);
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.vision-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0879c9, #21a9df);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.vision-card::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -45px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(8, 121, 201, .1);
    border-radius: 50%;
}

.vision-card:hover {
    transform: translateY(-8px);
    border-color: #d6e9f8;
    box-shadow: 0 20px 45px rgba(7, 26, 51, .1);
}

.vision-card:hover::before {
    transform: scaleX(1);
}

.vision-icon {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbeafa;
    border-radius: 50%;
    background: #f5f9ff;
    color: #0879c9;
    font-size: 25px;
    box-shadow: 0 8px 20px rgba(8, 121, 201, .08);
    transition: all .4s ease;
}

.vision-card:hover .vision-icon {
    color: #fff;
    background: #0879c9;
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 12px 25px rgba(8, 121, 201, .2);
}

.vision-content {
    flex: 1;
}

.vision-content>span {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    color: #0879c9;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.vision-content>span::after {
    content: "";
    width: 35px;
    height: 1px;
    background: #9acbea;
}

.vision-content h3 {
    margin: 0 0 10px;
    color: #102d4d;
    font-size: 27px;
    font-weight: 700;
}

.vision-content p {
    margin: 0;
    color: #687789;
    font-size: 13px;
    line-height: 1.7;
}

/* BELIEVE */
.values-hero {
    position: relative;
    padding: 50px 0;
    display: flex;
    align-items: center;
    background: url("../img/counter.jpg") center/cover no-repeat;
    color: #fff;
}

.values-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .25));
}

.values-hero .container {
    position: relative;
    z-index: 2;
}

.values-title {
    opacity: 0;
    transform: translateX(-40px);
    animation: valuesTitleIn .8s ease forwards;
}

.values-title span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #21a9df;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.values-title span::before {
    content: "";
    width: 35px;
    height: 2px;
    background: #21a9df;
}

.values-title h2 {
    margin: 0;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
}

.value-counter {
    display: inline-block;
    min-width: 60px;
    font-variant-numeric: tabular-nums;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 4px;
    overflow: hidden;
    background: rgba(0, 0, 0, .08);
    backdrop-filter: blur(4px);
}

.value-item {
    min-height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .2);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    opacity: 0;
    transform: translateY(25px);
    animation: valueItemIn .7s cubic-bezier(.22, 1, .36, 1) forwards;
    transition: background .35s ease;
}

.value-item:nth-child(1) {
    animation-delay: .2s;
}

.value-item:nth-child(2) {
    animation-delay: .35s;
    border-right: 0;
}

.value-item:nth-child(3) {
    animation-delay: .5s;
}

.value-item:nth-child(4) {
    animation-delay: .65s;
    border-right: 0;
}

.value-item:nth-child(3),
.value-item:nth-child(4) {
    border-bottom: 0;
}

.value-item:hover {
    background: rgba(33, 169, 223, .12);
}

.value-item strong {
    display: block;
    margin-bottom: 7px;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
}

.value-item span {
    color: rgba(255, 255, 255, .8);
    font-size: 13px;
}

.values-content {
    padding: 45px 0 0;
}

.values-content-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: valuesContentIn .8s .3s ease forwards;
}

.values-content-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
    border-radius: 50%;
    background: #edf7fd;
    color: #08427c;
    font-size: 16px;
    transition: all .3s ease;
}

.values-content-inner:hover .values-content-icon {
    color: #fff;
    background: #0879c9;
    transform: rotate(15deg) scale(1.08);
}

.values-content p {
    margin: 0 0 20px;
    color: #526477;
    font-size: 15px;
    line-height: 1.8;
}

.values-content p:last-child {
    margin-bottom: 0;
}

.values-cta {
    position: relative;
    overflow: hidden;
    padding: 35px 0;
    background: linear-gradient(100deg, #21a9df, #0879c9, #08427c, #0879c9, #21a9df);
    background-size: 300% 100%;
    animation: ctaGradient 8s ease infinite;
}

.values-cta::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -120px;
    top: -150px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
}

.values-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    text-align: left;
}

.values-cta-inner>div {
    opacity: 0;
    transform: translateX(-30px);
    animation: ctaContentIn .7s .4s ease forwards;
}

.values-cta span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .75);
    font-size: 12px;
}

.values-cta h3 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

.values-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    border-radius: 6px;
    background: #fff;
    color: #08427c;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
    opacity: 0;
    transform: translateX(30px);
    animation: ctaButtonIn .7s .55s ease forwards;
    transition: all .3s ease;
}

.values-cta-btn i {
    transition: transform .3s ease;
}

.values-cta-btn:hover {
    color: #0879c9;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.values-cta-btn:hover i {
    transform: translateX(5px);
}

/* BLOG */
.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 15px;
    border-radius: 30px;
    background: #08a5dc;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.blog-category {
    display: inline-block;
    width: max-content;
    padding: 6px 11px;
    border-radius: 5px;
    background: #edf7fc;
    color: #078fca;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #8a94a6;
    font-size: 13px;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: #08a5dc;
}

.blog-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    margin-top: 25px;
    padding: 13px 22px;
    border-radius: 8px;
    background: #172b5f;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .3s ease;
}

.blog-read-btn:hover {
    background: #08a5dc;
    color: #fff;
    transform: translateY(-3px);
}

.blog-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e6ebf1;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(20, 42, 80, .06);
    transition: transform .4s ease, box-shadow .4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(20, 42, 80, .12);
}

.blog-card-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-image .blog-category {
    position: absolute;
    left: 16px;
    bottom: 16px;
}

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

.blog-card-content .blog-meta {
    margin-bottom: 15px;
}

.blog-card:hover .blog-card-content h3 {
    color: var(--primary);
}

.blog-card-content h3 {
    margin: 0 0 12px;
    color: #172b5f;
    font-size: 21px;
    line-height: 1.4;
}

.blog-card-content p {
    margin: 0 0 20px;
    color: #6d7787;
    font-size: 14px;
    line-height: 1.7;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #078fca;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.read-more i {
    transition: transform .3s ease;
}

.read-more:hover {
    color: #172b5f;
}

.read-more:hover i {
    transform: translateX(5px);
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
}

.blog-pagination a,
.blog-pagination span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: #172b5f;
    background: #fff;
    border: 1px solid #e0e6ed;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .3s ease;
}

.blog-pagination a:hover,
.blog-pagination .page-numbers.current {
    background: #08a5dc;
    border-color: #08a5dc;
    color: #fff;
    transform: translateY(-2px);
}

.blog-pagination span {
    border: 0;
    background: transparent;
}

.blog-pagination .pagination-arrow {
    width: 46px;
}

.blog-pagination .disabled {
    opacity: .4;
    pointer-events: none;
}

/* BLOG DETAILS */
.blog-details-header {
    margin-bottom: 15px;
}

.blog-details-header h1 {
    margin: 0 0 18px;
    color: #172b5f;
    font-size: 32px;
}

.blog-details-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #7d8795;
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-details-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.blog-details-meta i {
    color: #08a5dc;
}

.blog-details-image {
    height: 450px;
    overflow: hidden;
    margin-bottom: 35px;
    border-radius: 18px;
}

.blog-details-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.blog-details-image:hover img {
    transform: scale(1.03);
}

.blog-details-content {
    color: #59687a;
    font-size: 15px;
    line-height: 1.85;
}

.blog-details-content p {
    margin-bottom: 0;
}

.blog-details-content h2 {
    margin: 16px 0 10px;
    color: #172b5f;
    font-size: 24px;
    line-height: 1.3;
}

.blog-details-content h3 {
    margin: 18px 0 8px;
    color: #172b5f;
    font-size: 20px;
}

.blog-highlight {
    display: flex;
    gap: 18px;
    margin: 35px 0;
    padding: 25px;
    border-left: 4px solid #08a5dc;
    border-radius: 10px;
    background: #edf8fc;
}

.blog-highlight>i {
    color: #08a5dc;
    font-size: 25px;
}

.blog-highlight strong {
    display: block;
    margin-bottom: 5px;
    color: #172b5f;
}

.blog-highlight p {
    margin: 0;
}

.blog-details-list {
    margin: 25px 0;
    padding: 0;
    list-style: none;
}

.blog-details-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.blog-details-list i {
    color: #08a5dc;
}

.blog-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #e2e7ed;
}

.blog-share strong {
    color: #172b5f;
    font-size: 15px;
}

.blog-share-links {
    display: flex;
    gap: 8px;
}

.blog-share-links a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf3f8;
    color: #172b5f;
    text-decoration: none;
    transition: .3s ease;
}

.blog-share-links a:hover {
    background: #08a5dc;
    color: #fff;
    transform: translateY(-3px);
}

.sidebar-widget {
    padding: 28px;
    /* margin-bottom:25px; */
    border: 1px solid #e4e9ef;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(20, 42, 80, .05);
}

.sidebar-widget:not(:last-child) {
    margin-bottom: 25px;
}

.sidebar-widget-title {
    margin-bottom: 20px;
}

.sidebar-widget-title span {
    display: block;
    margin-bottom: 6px;
    color: #08a5dc;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.sidebar-widget-title h3 {
    margin: 0;
    color: #172b5f;
    font-size: 22px;
    font-weight: 700;
}

.contact-widget {
    border: 0;
    background: linear-gradient(145deg, #08427c, #0879c9);
    color: #fff;
}

.contact-widget .sidebar-widget-title span {
    color: #7ed8f5;
}

.contact-widget .sidebar-widget-title h3 {
    color: #fff;
}

.contact-widget>p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    line-height: 1.7;
}

.sidebar-contact-form>p:last-child {
    margin: 0;
}

.sidebar-input p {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    margin-bottom: 12px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
    transition: .3s ease;
}

.sidebar-input i {
    color: #8bdcf6;
    font-size: 14px;
}

.sidebar-input input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font-size: 13px;
}

.sidebar-input input::placeholder {
    color: rgba(255, 255, 255, .65);
}

.sidebar-submit {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
    border: 0;
    border-radius: 8px;
    background: #fff;
    color: #08427c;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease;
}

.sidebar-submit:hover {
    background: #21a9df;
    color: #fff;
    transform: translateY(-2px);
}

.category-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.category-list li {
    border-bottom: 1px solid #edf0f4;
}

.category-list li:last-child {
    border-bottom: 0;
}

.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 0;
    color: #536276;
    text-decoration: none;
    font-size: 14px;
    transition: .3s ease;
}

.category-list a i {
    color: #08a5dc;
    font-size: 11px;
    transition: transform .3s ease;
}

.category-list a:hover {
    color: #08a5dc;
    padding-left: 5px;
}

.category-list a:hover i {
    transform: translateX(4px);
}

.recent-blog {
    display: flex;
    gap: 13px;
    padding: 15px 0;
    border-bottom: 1px solid #edf0f4;
}

.recent-blog:first-of-type {
    padding-top: 0;
}

.recent-blog:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.recent-blog-image {
    flex: 0 0 82px;
    width: 82px;
    height: 65px;
    overflow: hidden;
    border-radius: 8px;
}

.recent-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.recent-blog:hover .recent-blog-image img {
    transform: scale(1.08);
}

.recent-blog-content {
    flex: 1;
}

.recent-blog-content>span {
    display: block;
    margin-bottom: 4px;
    color: #08a5dc;
    font-size: 10px;
}

.recent-blog-content h4 {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
}

.recent-blog-content h4 a {
    color: #172b5f;
    text-decoration: none;
    transition: color .3s ease;
}

.recent-blog-content h4 a:hover {
    color: #08a5dc;
}

/* PRIVACY */
.privacy-header {
    margin: 0 auto 50px;
    text-align: center;
    animation: privacyHeaderIn .8s ease forwards;
}

.privacy-header h1 {
    margin: 0 0 15px;
    color: #102d4d;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
}

.privacy-header h1 span {
    color: #0879c9;
}

.privacy-header p {
    margin: 0;
    color: #687789;
    font-size: 15px;
    line-height: 1.7;
}

.privacy-sidebar {
    position: sticky;
    top: 100px;
}

.privacy-nav {
    padding: 25px;
    border: 1px solid #e2e9f0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(7, 26, 51, .06);
}

.privacy-nav-title {
    display: block;
    margin-bottom: 15px;
    color: #0879c9;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0;
}

.privacy-nav a {
    display: block;
    position: relative;
    padding: 11px 12px;
    border-radius: 7px;
    color: #667789;
    text-decoration: none;
    font-size: 12px;
    line-height: 1.4;
    transition: all .3s ease;
}

.privacy-nav a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    border-radius: 3px;
    background: #0879c9;
    transform: translateY(-50%);
    transition: height .3s ease;
}

.privacy-nav a:hover,
.privacy-nav a.active {
    padding-left: 20px;
    background: #edf7fc;
    color: #0879c9;
}

.privacy-nav a:hover::before,
.privacy-nav a.active::before {
    height: 55%;
}

.privacy-help {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    padding: 25px;
    border-radius: 16px;
    background: linear-gradient(145deg, #08427c, #0879c9);
    color: #fff;
    box-shadow: 0 15px 35px rgba(8, 66, 124, .18);
}

.privacy-help::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -65px;
    bottom: -65px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
}

.privacy-help-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .12);
    color: #7cdbf7;
    font-size: 18px;
}

.privacy-help span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .65);
    font-size: 11px;
}

.privacy-help strong {
    display: block;
    margin-bottom: 15px;
    font-size: 18px;
}

.privacy-help a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

.privacy-help a i {
    transition: transform .3s ease;
}

.privacy-help a:hover i {
    transform: translateX(5px);
}

.privacy-content {
    padding: 40px;
    border: 1px solid #e2e9f0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(7, 26, 51, .05);
}

.privacy-intro {
    display: flex;
    gap: 18px;
    margin-bottom: 35px;
    padding: 25px;
    border: 1px solid #dceef7;
    border-radius: 14px;
    background: #f2faff;
    animation: privacyFadeUp .8s .15s ease both;
}

.privacy-intro-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #0879c9;
    color: #fff;
    font-size: 19px;
}

.privacy-intro strong {
    display: block;
    margin-bottom: 8px;
    color: #102d4d;
    font-size: 18px;
}

.privacy-intro p {
    margin: 0;
    color: #687789;
    font-size: 13px;
    line-height: 1.7;
}

.privacy-block {
    position: relative;
    padding: 0 0 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e7edf2;
    scroll-margin-top: 100px;
    animation: privacyFadeUp .8s ease both;
}

.privacy-block:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.privacy-number {
    display: block;
    margin-bottom: 8px;
    color: #0879c9;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.privacy-block h2 {
    margin: 0 0 15px;
    color: #102d4d;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
}

.privacy-block h3 {
    margin: 25px 0 8px;
    color: #183653;
    font-size: 17px;
    font-weight: 700;
}

.privacy-block p {
    margin: 0 0 16px;
    color: #687789;
    font-size: 14px;
    line-height: 1.8;
}

.privacy-list {
    margin: 15px 0 20px;
    padding: 0;
    list-style: none;
}

.privacy-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #687789;
    font-size: 14px;
    line-height: 1.6;
}

.privacy-list li i {
    flex: 0 0 auto;
    margin-top: 4px;
    color: #0879c9;
    font-size: 11px;
}

.privacy-purpose {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    padding: 18px;
    border: 1px solid #edf0f4;
    border-radius: 12px;
    transition: all .3s ease;
}

.privacy-purpose:hover {
    border-color: #cce8f5;
    background: #f8fcfe;
    transform: translateX(5px);
}

.purpose-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #edf7fc;
    color: #0879c9;
    transition: all .3s ease;
}

.privacy-purpose:hover .purpose-icon {
    color: #fff;
    background: #0879c9;
    transform: rotate(-5deg);
}

.privacy-purpose h3 {
    margin: 0 0 5px;
    font-size: 15px;
}

.privacy-purpose p {
    margin: 0;
    font-size: 13px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.security-card {
    padding: 20px;
    border: 1px solid #e6edf3;
    border-radius: 12px;
    background: #fff;
    transition: all .35s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    border-color: #cce8f5;
    box-shadow: 0 12px 25px rgba(7, 26, 51, .07);
}

.security-card>i {
    margin-bottom: 14px;
    color: #0879c9;
    font-size: 20px;
}

.security-card h3 {
    margin: 0 0 7px;
    font-size: 15px;
}

.security-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
}

.privacy-note {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    padding: 20px;
    border-left: 3px solid #0879c9;
    border-radius: 8px;
    background: #f1f8fc;
}

.privacy-note>i {
    color: #0879c9;
    font-size: 20px;
}

.privacy-note p {
    margin: 0;
}

.rights-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.rights-list>div {
    padding: 18px;
    border-radius: 10px;
    background: #f7f9fb;
    transition: all .3s ease;
}

.rights-list>div:hover {
    background: #edf7fc;
    transform: translateY(-3px);
}

.rights-list strong {
    display: block;
    margin-bottom: 5px;
    color: #102d4d;
    font-size: 14px;
}

.rights-list p {
    margin: 0;
    font-size: 12px;
}

.privacy-block a {
    color: #0879c9;
    text-decoration: none;
}

.privacy-contact {
    padding: 30px;
    border: 0;
    border-radius: 14px;
    background: #f3f9fd;
}

.privacy-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 25px;
}

.privacy-contact-grid>div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border: 1px solid #dcebf4;
    border-radius: 10px;
    background: #fff;
    color: #687789;
    font-size: 12px;
    line-height: 1.6;
    transition: all .3s ease;
}

.privacy-contact-grid>div:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(7, 26, 51, .06);
}

.privacy-contact-grid i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: #0879c9;
}

.privacy-contact-grid a {
    word-break: break-word;
}

/* PRODUCT */
.products-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.products-count {
    color: var(--muted);
    font-size: 13px;
}

.products-count strong {
    color: var(--dark);
}

.products-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-btn,
.filter-btn {
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--muted);
    transition: var(--transition);
}

.view-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
}

.view-btn:hover,
.view-btn.active {
    background: var(--light);
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 38px;
    padding: 0 14px;
    border-radius: 8px;
    font-size: 12px;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.product-col {
    transition: var(--transition);
}

.product-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border: 1px solid #ededed;
    box-shadow: 0 0 4px #ccc;
    border-radius: var(--radius);
    background: var(--white);
    transition: var(--transition);
}

.product-card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-hover);
    transform: translateY(-7px);
}

.product-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 220px; */
    padding: 20px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--light);
}

.product-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(var(--primary-rgb), 0.04),
            transparent);
    pointer-events: none;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.07);
}

.category-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.category-parent>a {
    flex: 1;
}

.category-toggle {
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.category-toggle i {
    transition: transform .3s ease;
}

.category-toggle.open i {
    transform: rotate(180deg);
}

.subcategory-list {
    display: none;
}

.subcategory-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-category {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 5px 9px;
    border-radius: 5px;
    /* background: var(--white);
    color: var(--muted); */
    background: #060505;
    color: #fff;
    font-size: 10px;
    line-height: 1;
    box-shadow: 0 4px 15px rgba(var(--dark-rgb), .06);
}

.product-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--dark-rgb), .15);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-view {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    box-shadow: var(--shadow);
    transform: translateY(15px) scale(.8);
    transition: var(--transition);
}

.product-card:hover .product-view {
    transform: translateY(0) scale(1);
}

.product-view:hover {
    background: var(--primary);
    color: var(--white);
}

.product-content {
    padding: 18px 12px 20px;
    text-align: center;
}

.product-content h3 {
    margin: 0 0 7px;
    overflow: hidden;
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.55;
}

.rent-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 16px 25px;
    border-radius: 30px;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    /* font-weight: 700; */
    transition: var(--transition);
}

.rent-btn i {
    font-size: 9px;
    transform: translateX(-3px);
    opacity: 0;
    transition: var(--transition);
}

.rent-btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--secondary-rgb), .25);
}

.rent-btn:hover i {
    transform: translateX(0);
    opacity: 1;
}

.load-product {
    display: none;
}

.load-product.product-show {
    display: block;
    animation: productReveal .55s ease both;
}

.load-more-wrap {
    margin-top: 50px;
    text-align: center;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 190px;
    padding: 13px 22px;
    border: 1px solid var(--primary);
    border-radius: 50px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.load-more-btn i {
    transition: transform .35s ease;
}

.load-more-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.load-more-btn:hover i {
    transform: translateY(4px);
}

.load-more-btn.loading {
    pointer-events: none;
    opacity: .7;
}

.all-loaded {
    display: none;
    margin: 15px 0 0;
    color: var(--secondary);
    font-size: 12px;
}

.all-loaded.show {
    display: block;
    animation: productReveal .4s ease both;
}

.product-col.product-hidden {
    display: none;
}

.product-col.product-show {
    display: block;
}

.laptop-image {
    position: relative;
    overflow: hidden;
}

.product-view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -40%) scale(.7);
    transition: var(--transition);
    z-index: 5;
}

.product-view-btn i {
    display: block;
    font-size: 17px;
    line-height: 1;
}

.laptop-card:hover .product-view-btn {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.product-view-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translate(-50%, -50%) scale(1.08);
}

.laptop-image img {
    transition: var(--transition);
}

.laptop-card:hover .laptop-image img {
    transform: scale(1.05);
}

.product-card .product-content .rent-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 14px;
    border-radius: 30px;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}

/* PRODUCT DETAILS */
.product-description table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
}

.product-description table th,
.product-description table td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
}

.product-description table tr:last-child th,
.product-description table tr:last-child td {
    border-bottom: 0;
}

.product-description table tr:first-child th {
    padding: 13px 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    letter-spacing: .5px;
}

.product-description table tr:not(:first-child) td:nth-child(1),
.product-description table tr:not(:first-child) td:nth-child(3) {
    width: 20%;
    background: var(--light);
    color: var(--dark);
    font-weight: 600;
}

.product-description table tr:not(:first-child) td:nth-child(2),
.product-description table tr:not(:first-child) td:nth-child(4) {
    width: 30%;
    color: var(--text);
    background: var(--white);
}

.single-product-wrapper {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 35px;
    align-items: stretch;
}

.single-product-gallery {
    min-width: 0;
}

.single-product-image {
    position: relative;
    height: auto;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.single-product-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    transition: var(--transition);
    height: 410px;
    object-fit: contain;
    background: #fff;
}

.single-product-image:hover img {
    transform: scale(1.04);
}

.single-product-details {
    display: flex;
    align-items: flex-start;
}

.single-product-section {
    padding: 60px 0 !important;
}

.cat {
    display: flex;
    align-items: center;
}

.cat p {
    margin: 0;
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
}

.single-product-card {
    width: 100%;
    padding: 38px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: var(--white);
    animation: productCardIn .7s ease both;
}

/* .single-product-category {
    display: inline-flex;
    align-items: center;
    padding: 7px 13px;
    border-radius: 50px;
    background: rgba(var(--primary-rgb), .08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 18px;
} */

.single-product-card h1 {
    margin: 0 0 25px;
    color: var(--dark);
    font-size: 36px;
    line-height: 1.15;
    font-weight: 500;
}

.single-product-name {
    margin: 0;
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
}

.single-product-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: 28px 0;
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -40%) scale(.7);
    transition: var(--transition);
    z-index: 2;
}

.product-view-btn i {
    font-size: 16px;
    transition: var(--transition);
}

.product-card:hover .product-view-btn {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.product-view-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translate(-50%, -50%) scale(1.08);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image img {
    transition: var(--transition);
}

.single-product-card .rent-btn {
    border: 0;
    cursor: pointer;
}

.single-product-tabs {
    margin-top: 60px;
    border-top: 1px solid var(--border);
}

.product-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 35px;
    border-bottom: 1px solid var(--border);
}

.product-tab {
    position: relative;
    border: 0;
    background: transparent;
    padding: 22px 5px;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.product-tab::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.product-tab:hover,
.product-tab.active {
    color: var(--primary);
}

.product-tab.active::after {
    width: 100%;
}

.product-tab-content {
    display: none;
    padding: 45px 0 0;
    animation: tabFade .4s ease;
}

.product-tab-content.active {
    display: block;
}

.product-tab-content h2 {
    margin: 0 0 22px;
    font-size: 22px;
    color: var(--dark);
}

.product-tab-content p {
    margin-bottom: 15px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
}

.information-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 14px;
}

.information-row strong {
    color: var(--primary);
    font-weight: 500;
}

.related-products-carousel .carousel-inner {
    overflow: visible;
}

.related-product {
    transition: var(--transition);
}

.related-product .product-card {
    height: 100%;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

.related-product .product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.related-product .product-card:hover .product-image img {
    transform: scale(1.06);
}

.related-products-section .product-card .product-content {
    padding: 0;
}

.related-products-section .product-card .product-image {
    padding: 0;
}

.related-products-carousel .carousel-control-prev,
.related-products-carousel .carousel-control-next {
    width: 42px;
    height: 42px;
    top: 45%;
    transform: translateY(-50%);
    opacity: 1;
}

.related-products-carousel .carousel-control-prev {
    left: -60px;
}

.related-products-carousel .carousel-control-next {
    right: -60px;
}

.related-control {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--dark);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.related-products-carousel .carousel-control-prev:hover .related-control,
.related-products-carousel .carousel-control-next:hover .related-control {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.related-products-carousel .carousel-indicators {
    bottom: -40px;
    margin-bottom: 0;
    gap: 7px;
}

.related-products-carousel .carousel-indicators button {
    width: 8px;
    height: 8px;
    margin: 0;
    border: 0;
    border-radius: 50%;
    background: var(--border);
    opacity: 1;
    transition: var(--transition);
}

.related-products-carousel .carousel-indicators button.active {
    width: 25px;
    border-radius: 10px;
    background: var(--primary);
}

/* FORM LOADER */
.wpcf7 form {
    position: relative;
}

.wpcf7 form .form-loader {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.75);
    align-items: center;
    justify-content: center;
    border-radius: inherit;
}

.wpcf7 form.submitting .form-loader {
    display: flex;
}

.form-loader-spinner {
    width: 45px;
    height: 45px;
    border: 4px solid #ddd;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: formLoaderSpin 0.8s linear infinite;
}

.error-section {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    background: var(--light);
}

.error-section::before,
.error-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.error-section::before {
    width: 420px;
    height: 420px;
    top: -180px;
    right: -120px;
    background: rgba(var(--primary-rgb), .08);
}

.error-section::after {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
    background: rgba(var(--sky-rgb), .08);
}

.error-wrapper {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.error-content {
    animation: errorFadeUp .8s ease both;
}

.error-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin: 25px 0 10px;
    color: var(--primary);
    font-size: clamp(100px, 16vw, 190px);
    font-weight: 800;
    line-height: .9;
    letter-spacing: -10px;
}

.error-number>span {
    animation: errorNumber .7s ease both;
}

.error-number>span:last-child {
    animation-delay: .15s;
}

.error-icon {
    width: clamp(90px, 10vw, 130px);
    height: clamp(90px, 10vw, 130px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--white);
    color: var(--secondary);
    font-size: clamp(35px, 5vw, 55px);
    box-shadow: var(--shadow);
    letter-spacing: normal;
    animation: errorIcon 1s ease .2s both;
}

.error-icon i {
    animation: errorShake 2.5s ease-in-out 1.2s infinite;
}

.error-content h1 {
    margin: 25px 0 15px;
    color: var(--dark);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.15;
}

.error-content h1 span {
    color: var(--primary);
}

.error-content p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
}

.error-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
}

.error-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 25px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: var(--white);
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    width: 100%;
    text-align: center;
    margin: auto;
    align-items: center;
    justify-content: center;
}

.error-outline-btn i {
    transition: var(--transition);
}

.error-outline-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.error-outline-btn:hover i {
    transform: translateX(4px);
}

/* SEARCH */
.kpi-search {
    position: relative;
}

.kpi-search-results {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .12);
    overflow-y: scroll;
    overflow-x: hidden;
    height: 425px;
}

.kpi-search-results.active {
    display: block;
}

.kpi-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: .2s ease;
}

.kpi-search-item:hover {
    background: #f7f7f7;
}

.kpi-search-item-image {
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.kpi-search-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kpi-search-item-image i {
    font-size: 20px;
}

.kpi-search-item-content {
    min-width: 0;
}

.kpi-search-item-content h4 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
}

.kpi-search-item-content p {
    margin: 0;
    font-size: 12px;
    opacity: .7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kpi-search-loading,
.kpi-search-no-results {
    padding: 18px;
    text-align: center;
    font-size: 14px;
}