/* =========================================
VARIABLES & BASE
========================================= */
:root {
    --primary: #058ad8;
    --primary-dark: #3d03b4;
    --theme-color: #fe9d01;
    --secondary: #16243d;
    --white: #ffffff;
    --light-gray: #f2f5f9;
    --text: #666;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --card-radius: 12px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: #fff;
}
a,
button {
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}
.section {
    padding: 40px 0;
    position: relative;
}
.object-fit-cover {
    object-fit: cover;
}
.visible-xs {
    display: none !important;
}
.hidden-xs {
    display: block;
}
/* =========================================
TYPOGRAPHY
========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary);
    font-weight: 700;
}
.title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--secondary) 30%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
.sub_title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--theme-color);
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(5, 138, 216, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(5, 138, 216, 0.15);
    margin-bottom: 10px;
}
.sub_title::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--theme-color);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px var(--theme-color);
}
/* =========================================
IMAGE HOVER 
========================================= */
.img-hover-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.img-hover-wrapper img {
    transition:
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.img-hover-wrapper:hover img {
    transform: scale(1.15);
    filter: brightness(0.8) contrast(1.1);
}
/* =========================================
HEADER & NAVIGATION
========================================= */
.top-bar {
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.9);
    padding: 5px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    transition: var(--transition);
}
.icon-box {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}
.contact-item:hover .icon-box {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: rotate(360deg);
}
.social-link {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.social-link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
}
.main-header {
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}
.main-header.scrolled {
    width: 100%;
    position: fixed;
    padding: 5px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.nav-capsule {
    background-color: var(--light-gray);
    border-radius: 50px;
    border: 1px solid #e9ecef;
    padding: 12px;
    display: flex;
}
.nav-link-custom {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 40px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--theme-color);
    background: rgba(5, 138, 216, 0.08);
}
.offcanvas {
    background-color: var(--secondary);
    color: var(--white);
}
.nav-link-mobile-btn {
    background-color: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px;
    border-radius: 5px;
    gap: 10px;
    margin-bottom: 5px;
    transition: var(--transition);
}
.nav-link-mobile-btn:hover,
.nav-link-mobile-btn.active {
    background-color: var(--primary);
    color: var(--white);
    padding-left: 20px;
    border-color: var(--primary);
}
/* =========================================
HERO SECTION
========================================= */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    background-color: var(--secondary);
    overflow: hidden;
}
.mySwiper {
    width: 100%;
    height: 85vh;
}
.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: var(--secondary);
}
.swiper-slide-active .slide-bg {
    transform: scale(1.15);
}
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 36, 61, 0.9) 0%, rgba(22, 36, 61, 0.4) 100%);
    z-index: 1;
}
.slider-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: left;
    color: var(--white);
}
.hero-title {
    position: relative;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: capitalize;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.04em;
    margin-bottom: 29px;
}
.hero-title:before {
    position: absolute;
    top: -22px;
    left: 5px;
    height: 13px;
    width: 324px;
    content: "";
    background: rgb(254, 157, 1);
    border-radius: 6.5px;
}
.hero-title span {
    color: var(--theme-color);
    font-weight: 700;
}
.hero-lead {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    color: #e0e0e0;
}
.swiper-pagination {
    right: 40px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    bottom: auto !important;
    left: auto !important;
    width: auto !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: var(--transition);
    margin: 0 !important;
}
.swiper-pagination-bullet-active {
    background: var(--theme-color) !important;
    height: 40px !important;
    width: 12px !important;
    border-radius: 6px !important;
}
/* =========================================
ABOUT SECTION
========================================= */
.visual-showcase {
    position: relative;
    height: 600px;
}
.main-image-card {
    position: absolute;
    top: 2px;
    right: 20px;
    width: 85%;
    height: 85%;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
    transition: var(--transition);
    border: 5px solid var(--white);
}
.main-image-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}
.main-image-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.9);
}
.main-image-card img,
.floating-card img {
    transition:
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.floating-card {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 60%;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    z-index: 3;
    border: 4px solid var(--theme-color);
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}
.floating-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.9);
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}
.adventure-nav {
    background: #fe9d01;
    padding: 10px;
    border-radius: 15px;
}
.adventure-nav-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 25px;
    border-radius: 12px;
    flex-wrap: wrap;
}
.adventure-nav-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--secondary);
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s;
    background: #fff;
    border: 1px solid transparent;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}
.adventure-nav-item i {
    font-size: 32px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
    transition:
    transform 0.3s,
    color 0.3s;
    background: rgba(5, 138, 216, 0.08);
    border-radius: 8px;
}
.nav-title {
    font-size: 16px;
    font-weight: 700;
    margin-right: 10px;
    color: var(--secondary);
}
.nav-count {
    font-size: 14px;
    color: #777;
    margin-right: 12px;
}
.nav-arrow {
    font-size: 14px;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: 0.3s;
}
.adventure-nav-item a:hover .nav-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================
SERVICES SECTION 
========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 10px;
    justify-content: center;
}


.service-card {
    background-color: #1e293b;
    position: relative;
    height: 320px; 
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: transform 0.1s ease;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.service-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: 0;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
        rgba(5, 138, 216, 0.8),
        transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}
.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: #1e293b; 
    z-index: -1;
    pointer-events: none;
}
.service-card:hover::before {
    opacity: 1;
}
.card-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateZ(0px);
    filter: grayscale(80%) brightness(0.7);
    z-index: 0;
}
.service-card:hover .card-bg-img {
    transform: scale(1.15);
    opacity: 0.2;
}
.card-content {
    position: relative;
    z-index: 2;
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateZ(20px); 
}
.service-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.service-card:hover .service-icon-box {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 30px rgba(5, 138, 216, 0.6);
}
.card-title {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    transform: translateY(0);
    transition: transform 0.4s ease;
}
.service-card:hover .card-title {
    transform: translateY(-3px);
    color: var(--theme-color);
}
.card-text {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.7;
    transform: translateY(15px);
    transition: all 0.4s ease;
    max-height: 0; 
    overflow: hidden;
}
.service-card:hover .card-text {
    opacity: 1;
    transform: translateY(0);
    max-height: 100px; 
    margin-bottom: 20px;
}
.card-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
}
.service-card:hover .card-action {
    opacity: 1;
    transform: translateY(0);
}
.service-card:hover .card-action i {
    transform: translateX(5px);
    transition: transform 0.3s;
}
/* =========================================
WORK PROCESS
========================================= */
.work-section {
    background-color: var(--white);
    position: relative;
}
.process-connector-line {
    position: absolute;
    top: 63px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--theme-color);
    z-index: 0;
    opacity: 1;
}
.process-step-item {
    text-align: center;
    position: relative;
    z-index: 2;
}
.step-circle-node {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    font-size: 32px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(5, 138, 216, 0.1);
    transition: var(--transition);
}
.process-step-item:hover .step-circle-node {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(5, 138, 216, 0.1);
}
.step-title-ewhtl {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.step-desc-ewhtl {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.5;
    padding: 0 10px;
}
/* =========================================
TESTIMONIALS
========================================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
.testimonial-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 40px 32px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(90deg, var(--primary), var(--theme-color)) 1;
}
.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--theme-color), var(--primary));
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    z-index: 1;
    animation: borderRotate 3s linear infinite paused;
    transition: opacity 0.4s ease;
}
@keyframes borderRotate {
    to {
        background-position: 300% 0;
    }
}
.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 30px 60px -10px rgba(5, 138, 216, 0.25);
    background: rgba(255, 255, 255, 1);
}
.testimonial-card:hover::before {
    opacity: 1;
    animation-play-state: running;
}
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    pointer-events: none;
    z-index: 2;
}
.testimonial-card:hover::after {
    left: 130%;
}
.company-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
.company-logo-placeholder {
    width: 58px;
    height: 58px;
    background: linear-gradient(145deg, var(--primary), #0775b5);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 18px -8px rgba(5, 138, 216, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.company-info {
    flex: 1;
}
.company-name {
    font-weight: 800;
    font-size: 20px;
    color: var(--secondary);
    letter-spacing: -0.3px;
    margin-bottom: 4px;
}
.company-detail {
    font-size: 13px;
    font-weight: 500;
    color: #4e6a7c;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(5, 138, 216, 0.05);
    padding: 4px 12px;
    border-radius: 40px;
    width: fit-content;
    border: 1px solid rgba(5, 138, 216, 0.08);
}
.stars {
    margin-bottom: 22px;
    color: #fe9d01;
    font-size: 19px;
    letter-spacing: 6px;
    display: flex;
    gap: 4px;
    line-height: 1;
    position: relative;
    z-index: 2;
}
.stars i {
    filter: drop-shadow(0 4px 6px rgba(254, 157, 1, 0.2));
}
.quote {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
    color: #2b3f53;
    margin-bottom: 30px;
    flex: 1;
    font-style: italic;
    padding: 18px 20px;
    border-radius: 20px;
    border-left: 5px solid var(--theme-color);
    background: linear-gradient(to right, rgba(254, 157, 1, 0.02), rgba(255, 255, 255, 0.5));
    position: relative;
    z-index: 2;
}
.quote::before {
    content: "“";
    font-size: 60px;
    position: absolute;
    left: 8px;
    top: -10px;
    color: var(--theme-color);
    opacity: 0.15;
    font-style: normal;
    font-weight: 800;
}
.client-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 24px;
    position: relative;
    z-index: 2;
}
.client-initials {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--secondary), #13273f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: white;
    box-shadow: 0 10px 18px -6px rgba(10, 26, 47, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}
.client-meta {
    display: flex;
    flex-direction: column;
}
.client-name {
    font-weight: 800;
    font-size: 18px;
    color: #0b2637;
    letter-spacing: -0.2px;
}
.client-role {
    font-size: 14px;
    font-weight: 500;
    color: #5c6977;
    display: flex;
    align-items: center;
    gap: 5px;
}
.client-role i {
    color: var(--primary);
    font-size: 12px;
}
/* =========================================
WHY CHOOSE US 
========================================= */
.why-us-section-final {
    background: transparent;
    position: relative;
    overflow: hidden;
}
.why-us-section-final::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #16243d;
    z-index: -2;
}
.why-us-section-final::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='86.6' viewBox='0 0 50 86.6'%3E%3Cpath d='M25 0L50 14.4V43.3L25 57.7L0 43.3V14.4L25 0Z' fill='none' stroke='%23ffffff' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 100px 173.2px;
    background-repeat: repeat;
    animation: floatAndRotate 20s linear infinite;
}
@keyframes floatAndRotate {
    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-20px, -30px) rotate(5deg);
    }
}
.wcu-left-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}
.wcu-big-circle-container {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.wcu-main-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(5, 138, 216, 0.3);
    position: relative;
    z-index: 2;
    border: 5px solid #f0f4f8;
}
.wcu-main-circle h2 {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: -1px;
}
.wcu-main-circle span {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
    color: var(--theme-color);
}
.wcu-spin-ring {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    border: 2px dashed var(--white);
    z-index: 1;
    animation: spinRing 30s linear infinite;
    pointer-events: none;
}
@keyframes spinRing {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.wcu-right-col {
    padding: 10px;
}
.wcu-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.wcu-feature-item-v2 {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}
.wcu-feature-item-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}
.wcu-feature-item-v2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0%;
    background: var(--primary);
    transition: height 0.3s ease;
}
.wcu-feature-item-v2:hover::before {
    height: 100%;
}
.wcu-icon-circle-v2 {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 12px;
    background: rgba(5, 138, 216, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition);
    margin-bottom: 20px;
}
.wcu-feature-item-v2:hover .wcu-icon-circle-v2 {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 5px 15px rgba(5, 138, 216, 0.3);
}
.wcu-text-v2 h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.wcu-text-v2 p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}
/* =========================================
BLOG SECTION
========================================= */
.blog-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(5, 138, 216, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    pointer-events: none;
}
.section-header-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}
.section-text-block p {
    max-width: 600px;
    color: #64748b;
}
.view-all-link {
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}
.view-all-link:hover {
    border-bottom-color: var(--primary);
    color: var(--secondary);
}
.magazine-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 25px;
}
.featured-card-v2 {
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    height: 100%;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}
.featured-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.featured-img-v2 {
    height: 400px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.featured-img-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.featured-card-v2:hover .featured-img-v2 img {
    transform: scale(1.08);
    filter: brightness(0.9);
}
.featured-content-v2 {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
}
.featured-title-v2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.3;
    margin-bottom: 15px;
    transition: color 0.3s;
}
.featured-card-v2:hover .featured-title-v2 {
    color: var(--primary);
}
.featured-excerpt-v2 {
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}
.trending-wrapper {
    background: #fff;
    padding: 25px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-soft);
    height: fit-content;
    border-radius: 12px;
}
.trending-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}
.trending-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}
.trending-item:hover .trend-number {
    color: rgba(5, 138, 216, 0.1);
}
.trend-img-box {
    width: 100px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.trend-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.trending-item:hover .trend-img-box img {
    transform: scale(1.15);
    filter: brightness(0.9);
}
.trend-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.trend-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.4;
    margin-bottom: 8px;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.trending-item:hover .trend-title {
    color: var(--primary);
}
.trend-date {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
}
/* =========================================
TEAM SECTION 
========================================= */
.team-section {
    background-color: var(--theme-color);
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 20px 20px;
}
.team-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    cursor: pointer;
    background: #fff;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(30px);
    border-radius: 16px;
}
.team-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}
.team-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 51, 102, 0.98) 0%, rgba(0, 51, 102, 0.7) 50%, rgba(0, 51, 102, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
}
.team-default-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 20px;
    text-align: center;
    z-index: 3;
    transition: transform 0.4s ease, opacity 0.4s ease;
    border-top: 4px solid var(--theme-color);
    backdrop-filter: blur(5px);
}
.member-name-sm {
    font-size: 11px;
    font-weight: 800;
    color: var(--secondary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}
.member-role-sm {
    font-size: 13px;
    color: var(--theme-color);
    font-weight: 600;
    text-transform: uppercase;
    margin: 5px 0 0 0;
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.team-card:hover .team-card-bg {
    transform: scale(1.15);
}
.team-card:hover .team-default-info {
    transform: translateY(100%);
    opacity: 0;
}
.team-card:hover .team-card-overlay {
    opacity: 1;
}
.overlay-content {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.1s;
    max-height: 100%;
    overflow-y: auto;
    padding-right: 5px;
}
.overlay-content::-webkit-scrollbar {
    width: 4px;
}
.overlay-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}
.team-card:hover .overlay-content {
    transform: translateY(0);
    opacity: 1;
}
.member-name-lg {
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1.1;
}
.member-role-lg {
    font-size: 12px;
    font-weight: 700;
    color: #dbeafe;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: inline-block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 5px;
}
.member-bio-lg {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 400;
}
.is-visible {
    animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .team-card {
        height: 400px;
    }
}
/* =========================================
FOOTER
========================================= */
.site-footer {
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.7);
    margin-top: auto;
}
.footer-contact-bar {
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.contact-item:hover .contact-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(5, 138, 216, 0.3);
}
.footer-heading {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
}
.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--theme-color);
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    position: relative;
    padding-left: 15px;
}
.footer-links a::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--theme-color);
    opacity: 0;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--theme-color);
    transform: translateX(5px);
    padding-left: 20px;
}
.footer-links a:hover::before {
    opacity: 1;
    left: 5px;
}
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.social-icon:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: rotate(360deg);
}
.newsletter-input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 12px 15px;
    border-radius: 6px;
    width: 100%;
    margin-bottom: 10px;
    transition: var(--transition);
}
.newsletter-input:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: none;
    outline: none;
}
.footer-bottom {
    background-color: #0b0d10;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-left: 20px;
    transition: var(--transition);
}
.footer-bottom a:hover {
    color: var(--theme-color);
}
/* =========================================
QUOTE HERO SECTION
========================================= */
.hero-image-col {
    position: relative;
    overflow: visible;
}
.hero-image-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}
.floating-trust-badge {
    position: absolute;
    top: 40px;
    right: -20px;
    background: var(--theme-color);
    border-radius: 10px;
    padding: 15px 25px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 3;
}
.floating-trust-badge i {
    color: var(--theme-color);
    font-size: 20px;
}
.hero-form-col {
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.hero-form-card {
    width: 100%;
    padding: 25px;
    position: relative;
    z-index: 10;
}
.quote-header-label {
    color: var(--theme-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    margin-bottom: 10px;
    display: inline-block;
    background: rgba(254, 157, 1, 0.1);
    padding: 6px 14px;
}
.quote-type-tabs-container {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}
.quote-type-tab {
    flex: 1 1 45%;
    padding: 12px 20px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: #64748b;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}
.quote-type-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: #fff;
    transform: translateY(-2px);
}
.quote-type-tab.active {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    box-shadow: 0 4px 12px rgba(22, 36, 61, 0.2);
}
.input-group-wrapper {
    position: relative;
    margin-bottom: 20px;
}
.input-group-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 18px;
    transition: var(--transition);
    z-index: 2;
}
.quote-form-control {
    width: 100%;
    padding: 18px 20px 18px 20px;
    border: 2px solid #f1f5f9;
    background-color: #fff;
    border-radius: 12px;
    font-size: 15px;
    color: var(--secondary);
    font-weight: 500;
    transition: var(--transition);
    outline: none;
}
.quote-form-control:focus {
    border-color: var(--primary);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(5, 138, 216, 0.05);
}
.input-group-wrapper:focus-within .input-group-icon {
    color: var(--primary);
}
.range-wrapper {
    margin-bottom: 25px;
    padding: 10px 15px;
}
.range-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--secondary);
    font-size: 14px;
}
.range-value {
    color: var(--primary);
    font-weight: 800;
    background: rgba(5, 138, 216, 0.1);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 13px;
}
.slider-container {
    position: relative;
    height: 8px;
    background: #e2e8f0;
    border-radius: 10px;
}
.slider-fill {
    position: absolute;
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
    width: 19%;
    pointer-events: none;
    transition: width 0.2s ease;
}
.slider-thumb {
    position: absolute;
    top: 50%;
    left: 19%;
    width: 24px;
    height: 24px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(5, 138, 216, 0.3);
    transition: left 0.2s ease;
    z-index: 1;
}
.custom-range-input {
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}
/* =========================================
CLAIMS BANNER 
========================================= */
.claims-banner-section {
    background: linear-gradient(90deg, #058ad8 0%, #fe9d01 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}
.claims-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    color: #fff;
    font-size: 40px;
    margin-bottom: 15px;
    animation: floatIcon 3s ease-in-out infinite;
}
@keyframes floatIcon {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.claims-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.claims-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}
.service-offering,
.review-section,
.blogs-section {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-duration: 20s;
}
.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    left: -100px;
    animation-name: float-diagonal-right;
    animation-duration: 25s;
}
.blob-2 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    bottom: -150px;
    right: -150px;
    animation-name: float-diagonal-left;
    animation-duration: 30s;
}
@keyframes float-diagonal-right {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    33% {
        transform: translate(50px, 100px) scale(1.1);
        opacity: 0.5;
    }
    66% {
        transform: translate(20px, 200px) scale(0.9);
        opacity: 0.2;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
}
@keyframes float-diagonal-left {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: translate(-80px, -120px) scale(1.2);
        opacity: 0.25;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.15;
    }
}