/* Extracted from index.html */
@font-face {
    font-family: 'AlibabaPuHuiTi';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/Alibaba-PuHuiTi-Regular.otf') format('opentype');
    font-weight: normal;
}
@font-face {
    font-family: 'AlibabaPuHuiTi';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/Alibaba-PuHuiTi-Bold.otf') format('opentype');
    font-weight: bold;
}
@font-face {
    font-family: 'MiSans';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/MiSans-Regular.ttf') format('truetype');
    font-weight: normal;
}
@font-face {
    font-family: 'MiSans';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/MiSans-Bold.ttf') format('truetype');
    font-weight: bold;
}

:root {
    --primary-blue: #003366;
    --accent-yellow: #FFCC00;
    --light-bg: #F8F9FA;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'MiSans', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Header */
header {
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    height: 60px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px rgba(0,51,102,0.1);
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), var(--accent-yellow), var(--primary-blue), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

header.scrolled::after {
    transform: scaleX(1);
}

.logo-container {
    height: 60px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.02);
}

/* Cropping the logo based on analysis to fit header better */
.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 50px;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-family: 'AlibabaPuHuiTi', sans-serif;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative; /* for underline */
}
nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--accent-yellow);
    transition: width 0.3s, left 0.3s;
}
nav a:hover::after,
nav a.active::after {
    width: 100%;
    left: 0;
}

nav a:hover, nav a.active {
    color: var(--primary-blue);
}

.btn-quote {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004080 100%);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 10px rgba(0,51,102,0.2);
    position: relative;
    overflow: hidden;
}

.btn-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-quote:hover::before {
    left: 100%;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,51,102,0.3);
}

.btn-quote i {
    transition: transform 0.3s;
}

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

/* Hero Section */
.hero {
    width: 100%;
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #001a33 0%, #003366 100%);
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,51,102,0.85) 0%, rgba(0,30,60,0.75) 50%, rgba(0,51,102,0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    max-width: 850px;
}

.hero-tag {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #FFDD44 100%);
    color: var(--primary-blue);
    padding: 10px 24px;
    display: inline-block;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 24px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 6px 25px rgba(255, 204, 0, 0.6); }
}

.hero-title {
    font-family: 'AlibabaPuHuiTi', sans-serif;
    font-size: 48px;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-yellow), transparent);
    border-radius: 2px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 650px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-hero {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #FFDD44 100%);
    color: var(--primary-blue);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.4);
}

.btn-hero i {
    transition: transform 0.3s;
}

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

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
    transform: translateY(-3px);
}

.btn-hero-outline i {
    transition: transform 0.3s;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    color: rgba(255,255,255,0.8);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.scroll-line {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-yellow);
    border-radius: 2px;
    animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0;
    }
}

@keyframes scrollDown {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Features Bar */
.features-bar {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004080 100%);
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    color: var(--white);
    position: relative;
    z-index: 3;
    margin-top: -40px;
    margin-left: 60px;
    margin-right: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 36px;
    color: var(--accent-yellow);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.03);
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.feature-text h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.feature-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* About Section */
.about-section {
    padding: 100px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    background: linear-gradient(135deg, rgba(0,51,102,0.04) 0%, transparent 70%);
    transform: rotate(-15deg);
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 40%;
    height: 150%;
    background: linear-gradient(135deg, transparent 0%, rgba(255,204,0,0.03) 100%);
    transform: rotate(15deg);
    z-index: 0;
}

/* Bubble animation for laundry theme - water bubbles */
.about-bubbles {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.about-bubble {
    position: absolute;
    bottom: -60px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(100, 180, 255, 0.4) 40%, rgba(0, 100, 200, 0.2) 70%, transparent 80%);
    border-radius: 50%;
    border: 2px solid rgba(100, 180, 255, 0.3);
    box-shadow: 
        inset 0 0 20px rgba(255, 255, 255, 0.5),
        inset 10px 0 30px rgba(255, 255, 255, 0.3),
        0 0 10px rgba(100, 180, 255, 0.2);
    animation: bubbleFloat 8s infinite ease-in;
    opacity: 0;
}

.about-bubble:nth-child(1) {
    width: 50px;
    height: 50px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.about-bubble:nth-child(2) {
    width: 30px;
    height: 30px;
    left: 25%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.about-bubble:nth-child(3) {
    width: 45px;
    height: 45px;
    left: 45%;
    animation-delay: 4s;
    animation-duration: 9s;
}

.about-bubble:nth-child(4) {
    width: 25px;
    height: 25px;
    left: 65%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.about-bubble:nth-child(5) {
    width: 38px;
    height: 38px;
    left: 80%;
    animation-delay: 3s;
    animation-duration: 11s;
}

.about-bubble:nth-child(6) {
    width: 28px;
    height: 28px;
    left: 55%;
    animation-delay: 5s;
    animation-duration: 9s;
}

.about-bubble:nth-child(7) {
    width: 35px;
    height: 35px;
    left: 35%;
    animation-delay: 6s;
    animation-duration: 10s;
}

.about-bubble:nth-child(8) {
    width: 20px;
    height: 20px;
    left: 70%;
    animation-delay: 7s;
    animation-duration: 8s;
}

@keyframes bubbleFloat {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateY(-350px) translateX(30px) scale(1.15);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-700px) translateX(-30px) scale(0.85);
        opacity: 0;
    }
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
    height: 550px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,51,102,0.15);
    z-index: 1;
    transition: transform 0.5s ease;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-yellow));
    border-radius: 24px;
    z-index: -1;
    opacity: 0.3;
}

.about-image:hover {
    transform: scale(1.02);
}

/* Realistic water bubbles on about image */
.about-image-bubbles {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.about-img-bubble {
    position: absolute;
    bottom: -50px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(200, 230, 255, 0.6) 20%, 
        rgba(100, 180, 255, 0.3) 40%, 
        rgba(50, 150, 220, 0.15) 60%, 
        transparent 70%);
    border: 2px solid rgba(100, 180, 255, 0.4);
    box-shadow: 
        inset 0 0 30px rgba(255, 255, 255, 0.6),
        inset 15px 0 40px rgba(255, 255, 255, 0.4),
        inset -10px 0 30px rgba(100, 180, 255, 0.3),
        0 0 15px rgba(100, 180, 255, 0.3),
        0 0 30px rgba(255, 255, 255, 0.2);
    animation: bubbleRiseRealistic 8s infinite ease-in-out;
    opacity: 0;
}

.about-img-bubble::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 25%;
    height: 15%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.9), transparent);
    filter: blur(1px);
}

.about-img-bubble::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 25%;
    width: 10%;
    height: 8%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255,255,255,1), transparent);
}

.about-img-bubble:nth-child(1) {
    width: 45px;
    height: 45px;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 9s;
}

.about-img-bubble:nth-child(2) {
    width: 30px;
    height: 30px;
    left: 25%;
    animation-delay: 1.5s;
    animation-duration: 7s;
}

.about-img-bubble:nth-child(3) {
    width: 38px;
    height: 38px;
    left: 40%;
    animation-delay: 3s;
    animation-duration: 8s;
}

.about-img-bubble:nth-child(4) {
    width: 25px;
    height: 25px;
    left: 55%;
    animation-delay: 0.5s;
    animation-duration: 6s;
}

.about-img-bubble:nth-child(5) {
    width: 35px;
    height: 35px;
    left: 65%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.about-img-bubble:nth-child(6) {
    width: 28px;
    height: 28px;
    left: 80%;
    animation-delay: 4s;
    animation-duration: 7.5s;
}

.about-img-bubble:nth-child(7) {
    width: 32px;
    height: 32px;
    left: 35%;
    animation-delay: 5s;
    animation-duration: 9s;
}

.about-img-bubble:nth-child(8) {
    width: 22px;
    height: 22px;
    left: 50%;
    animation-delay: 2.5s;
    animation-duration: 6.5s;
}

.about-img-bubble:nth-child(9) {
    width: 40px;
    height: 40px;
    left: 70%;
    animation-delay: 3.5s;
    animation-duration: 8.5s;
}

.about-img-bubble:nth-child(10) {
    width: 26px;
    height: 26px;
    left: 10%;
    animation-delay: 4.5s;
    animation-duration: 7s;
}

@keyframes bubbleRiseRealistic {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    25% {
        transform: translateY(-100px) translateX(15px) scale(1.05);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-200px) translateX(-10px) scale(1.1);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-300px) translateX(20px) scale(1.08);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-400px) translateX(-15px) scale(1.15);
        opacity: 0;
    }
}

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

.about-image:hover img {
    transform: scale(1.1);
}

.about-badge {
    position: absolute;
    bottom: 35px;
    right: -35px;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #FFDD44 100%);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(255, 204, 0, 0.4), 0 0 0 3px rgba(255,255,255,0.3);
    text-align: center;
    width: 200px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.about-badge:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 204, 0, 0.5), 0 0 0 5px rgba(255,255,255,0.4);
}

.about-badge .number {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-blue);
    display: block;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-badge .text {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-tag {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 15px;
    display: block;
    position: relative;
    padding-left: 50px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-yellow), transparent);
}

.section-title {
    font-family: 'AlibabaPuHuiTi', sans-serif;
    font-size: 40px;
    color: var(--text-dark);
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-desc + .section-desc {
    margin-top: 15px;
}

.check-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 35px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(0,51,102,0.04);
    border: 1px solid rgba(0,51,102,0.06);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-yellow));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.check-list li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,51,102,0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.check-list li:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.check-list li:hover::after {
    opacity: 1;
}

.check-list li:hover {
    background: rgba(0,51,102,0.08);
    border-color: rgba(0,51,102,0.15);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 5px 20px rgba(0,51,102,0.1);
}

.check-list li i {
    color: var(--primary-blue);
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 1;
}

.check-list li:hover i {
    color: var(--accent-yellow);
    transform: scale(1.2) rotate(10deg);
    text-shadow: 0 0 10px rgba(255,204,0,0.4);
}

.check-list li span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

/* Services Section */
.services-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #e8eef5 100%);
    padding: 80px 60px;
    text-align: center;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-yellow), var(--primary-blue), var(--accent-yellow), transparent);
}

.services-header {
    max-width: 750px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 1;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: var(--white);
    padding: 35px 28px;
    border-radius: 20px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,51,102,0.08);
    box-shadow: 0 5px 20px rgba(0,51,102,0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0,51,102,0.05), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.service-card:hover::after {
    width: 300px;
    height: 300px;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,51,102,0.15);
    border-color: rgba(0,51,102,0.15);
}

.service-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.08) 0%, rgba(0, 51, 102, 0.02) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--primary-blue);
    font-size: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-icon-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-blue), #0056b3);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-icon-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon-box::after {
    transform: scale(1);
}

.service-card:hover .service-icon-box::before {
    opacity: 1;
}

.service-card:hover .service-icon-box {
    color: var(--white);
    transform: rotate(10deg) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,51,102,0.3);
}

.service-card h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--text-dark);
    transition: color 0.3s ease;
    position: relative;
}

.service-card h3::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-yellow));
    transition: width 0.3s ease;
}

.service-card:hover h3::before {
    width: 80px;
}

.service-card:hover h3 {
    color: var(--primary-blue);
}

.service-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-link {
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-yellow));
    transition: width 0.3s ease;
}

.service-link:hover::after {
    width: 100%;
}

.service-link:hover {
    gap: 12px;
    color: var(--accent-yellow);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Why Choose Us */
.why-us-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
    position: relative;
    overflow: hidden;
}

.why-us-content {
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004080 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.why-us-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.why-us-content > * {
    position: relative;
    z-index: 2;
}

/* Add floating bubbles to why-us section */
.why-us-bubbles {
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 200px;
    height: 200px;
    pointer-events: none;
    z-index: 1;
}

.why-us-bubble {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(100,180,255,0.3) 50%, transparent 80%);
    border-radius: 50%;
    border: 2px solid rgba(100,180,255,0.2);
    animation: bubbleRise 6s infinite ease-in-out;
    opacity: 0;
}

.why-us-bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 60px;
    animation-delay: 0s;
}

.why-us-bubble:nth-child(2) {
    width: 25px;
    height: 25px;
    bottom: 50px;
    right: 100px;
    animation-delay: 2s;
}

.why-us-bubble:nth-child(3) {
    width: 30px;
    height: 30px;
    bottom: 80px;
    right: 40px;
    animation-delay: 4s;
}

.why-us-bubble:nth-child(4) {
    width: 35px;
    height: 35px;
    bottom: 30px;
    right: 140px;
    animation-delay: 1s;
}

.why-us-bubble:nth-child(5) {
    width: 20px;
    height: 20px;
    bottom: 100px;
    right: 80px;
    animation-delay: 3s;
}

.why-us-bubble:nth-child(6) {
    width: 28px;
    height: 28px;
    bottom: 60px;
    right: 160px;
    animation-delay: 5s;
}

.why-us-bubble:nth-child(7) {
    width: 32px;
    height: 32px;
    bottom: 120px;
    right: 50px;
    animation-delay: 2.5s;
}

.why-us-bubble:nth-child(8) {
    width: 22px;
    height: 22px;
    bottom: 40px;
    right: 180px;
    animation-delay: 4.5s;
}

@keyframes bubbleRise {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    20% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-150px) translateX(20px);
        opacity: 0;
    }
}

.why-us-content .section-tag {
    color: #FFCC00 !important;
    position: relative;
    z-index: 2;
}

.why-us-content .section-title {
    color: #FFFFFF !important;
    position: relative;
    z-index: 2;
}

.why-us-content .section-desc {
    color: #FFFFFF !important;
    position: relative;
    z-index: 2;
}

.benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.benefit-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-item:hover::before {
    left: 100%;
}

.benefit-item:hover {
    transform: translateY(-5px) scale(1.02);
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.1) 100%);
    border-color: var(--accent-yellow);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2), 0 0 20px rgba(255,204,0,0.2);
}

.benefit-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-item h4::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--accent-yellow);
    color: var(--primary-blue);
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.benefit-item p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin-left: 28px;
}

.why-us-img {
    background-image: url('../images/ldcpcpTDB2iJimHl.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.why-us-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,51,102,0.9) 0%, rgba(0,51,102,0.7) 50%, transparent 100%);
}

/* Clients Section */
.clients-section {
    padding: 80px 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
    text-align: center;
    position: relative;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23f8faff' opacity='0.5'/%3E%3C/svg%3E") no-repeat top center;
    background-size: cover;
}

.clients-section .section-desc {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}

.clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 25px;
}

.client-logo {
    transition: all 0.4s ease;
    padding: 20px 35px;
    border-radius: 12px;
    background: rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border: 1px solid rgba(0,0,0,0.05);
    min-width: 220px;
    max-width: 260px;
    height: 180px;
}

.client-logo img {
    max-width: 140px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
}

.client-logo span {
    font-size: 15px;
    font-weight: 600;
    color: #555;
    font-family: 'AlibabaPuHuiTi', sans-serif;
    text-align: center;
    line-height: 1.3;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    background: rgba(0,51,102,0.05);
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,51,102,0.15);
}

.client-logo:hover span {
    color: var(--primary-blue);
}

.client-logo:hover img {
    transform: scale(1.08);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,51,102,0.03) 0%, transparent 70%);
    transform: rotate(-15deg);
    z-index: 0;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,204,0,0.05) 0%, transparent 70%);
    transform: rotate(15deg);
    z-index: 0;
}

.testimonials-section .section-tag {
    color: var(--primary-blue);
    position: relative;
    z-index: 1;
}

.testimonials-section .section-title {
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.testimonials-section .section-desc {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 24px;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0,51,102,0.08);
    border: 1px solid rgba(0,51,102,0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,51,102,0.15);
    border-color: rgba(0,51,102,0.15);
}

.testimonial-rating {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 22px;
    filter: drop-shadow(0 2px 4px rgba(255,215,0,0.3));
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 2px solid rgba(0,51,102,0.08);
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #FFDD44 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255,204,0,0.3);
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #FFDD44 100%);
    padding: 80px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 40%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: rotate 25s linear infinite reverse;
}

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

.cta-text {
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-family: 'AlibabaPuHuiTi', sans-serif;
    font-size: 36px;
    color: var(--primary-blue);
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.cta-text p {
    font-size: 16px;
    color: var(--text-dark);
    max-width: 550px;
    font-weight: 500;
}

.contact-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.contact-form input,
.contact-form textarea {
    padding: 16px 24px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-size: 15px;
    font-family: 'MiSans', sans-serif;
    background: rgba(255,255,255,0.95);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    outline: none;
    color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form input {
    width: 240px;
}

.contact-form textarea {
    width: 280px;
    resize: none;
    border-radius: 20px;
    min-height: 54px;
    max-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-yellow);
    background: rgba(255,255,255,1);
    box-shadow: 0 8px 25px rgba(255,204,0,0.3), 0 0 0 4px rgba(255,204,0,0.1);
    transform: translateY(-3px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
    font-weight: 500;
}

.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
    color: #ccc;
}

.btn-cta-dark {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004080 100%);
    color: var(--white);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 25px rgba(0,51,102,0.4);
    position: relative;
    overflow: hidden;
}

.btn-cta-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-cta-dark:hover::before {
    left: 100%;
}

.btn-cta-dark:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,51,102,0.5), 0 0 0 4px rgba(255,204,0,0.2);
    background: linear-gradient(135deg, #004080 0%, var(--primary-blue) 100%);
}

.btn-cta-dark:active {
    transform: translateY(-2px) scale(1.02);
}

/* Footer */
footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 50px 60px 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-yellow), var(--primary-blue));
}

footer::after {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%231a1a1a'/%3E%3C/svg%3E") no-repeat top center;
    background-size: cover;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 60px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-about p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-yellow), #FFDD44);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover {
    transform: translateY(-3px);
    border-color: var(--accent-yellow);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.3);
}

.social-icon i {
    position: relative;
    z-index: 1;
    font-size: 20px;
}

.social-icon:hover i {
    color: var(--primary-blue);
}

.footer-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--white);
    font-family: 'AlibabaPuHuiTi', sans-serif;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-yellow), transparent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 18px;
    position: relative;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.footer-links a::before {
    content: '›';
    font-size: 18px;
    color: var(--accent-yellow);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-links a:hover {
    color: var(--accent-yellow);
    padding-left: 15px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    color: #aaa;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.footer-contact li:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact i {
    color: var(--accent-yellow);
    margin-top: 5px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.footer-contact li:hover i {
    transform: scale(1.1);
}

.copyright {
    text-align: center;
    color: #666;
    font-size: 14px;
    padding-top: 20px;
}

.copyright .designed-by {
    color: #888;
}

.copyright .designed-by a {
    color: var(--accent-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.copyright .designed-by a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-yellow);
    transition: width 0.3s ease;
}

.copyright .designed-by a:hover {
    color: #FFDD44;
}

.copyright .designed-by a:hover::after {
    width: 100%;
}
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    body {
        width: 100%;
    }

    header, .hero-content, .features-bar, .about-section, .services-section, 
    .why-us-content, .clients-section, .cta-section, footer {
        padding-left: 40px;
        padding-right: 40px;
    }

    .features-bar {
        margin-left: 40px;
        margin-right: 40px;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
    }

    nav ul li a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    nav a.active::after {
        display: none;
    }

    .btn-quote {
        display: none;
    }

    .hero-title {
        font-size: 48px;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        width: 100%;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-section {
        grid-template-columns: 1fr;
    }

    .why-us-img {
        height: 400px;
    }

    .benefit-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-section {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 20px;
        height: 80px;
    }

    header.scrolled {
        height: 70px;
    }

    nav {
        top: 80px;
    }

    header.scrolled nav {
        top: 70px;
    }

    .hero {
        height: 600px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .features-bar {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .about-section, .services-section, .clients-section, .cta-section {
        padding: 60px 20px;
    }

    .why-us-content {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .check-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .check-list li {
        padding: 15px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-section {
        padding: 60px 20px;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .clients-grid {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-badge {
        width: 150px;
        height: 150px;
        padding: 20px;
        bottom: 20px;
        right: 20px;
    }

    .about-badge .number {
        font-size: 36px;
    }

    .cta-text h2 {
        font-size: 28px;
    }
}

/* reveal on scroll animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* back to top button */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004080 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0,51,102,0.4);
    border: 2px solid transparent;
}

.back-to-top::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--accent-yellow), #FFDD44);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.back-to-top:hover::before {
    opacity: 1;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(0,51,102,0.6);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

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

.back-to-top:hover i {
    transform: translateY(-3px);
}

/* Floating Social Media Widget */
.social-widget {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 10000;
    font-family: 'MiSans', sans-serif;
    display: block;
}

.social-widget-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), #004d80);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,51,102,0.4);
    transition: all 0.3s ease;
    animation: pulse-social 2s infinite;
    pointer-events: auto;
    touch-action: manipulation;
    position: relative;
}

.social-widget-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0,51,102,0.6);
}

.social-widget-toggle i {
    font-size: 28px;
    color: var(--white);
    animation: rotate-icon 3s linear infinite;
}

@keyframes pulse-social {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0,51,102,0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(0,51,102,0.6);
    }
}

@keyframes rotate-icon {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.social-widget-content {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--white);
    border-radius: 16px;
    padding: 20px 15px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s ease;
    min-width: 180px;
    pointer-events: none;
    z-index: 10001;
}

.social-widget.active .social-widget-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.social-widget-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-bg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-float-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 10002;
}

.social-float-btn:last-child {
    margin-bottom: 0;
}

.social-float-btn:hover {
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.social-float-btn i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

/* Platform-specific colors */
.social-float-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-float-btn.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
}

.social-float-btn.linkedin {
    background: linear-gradient(135deg, #0077B5, #005582);
}

.social-float-btn.linkedin:hover {
    background: linear-gradient(135deg, #005582, #003D5C);
}

.social-float-btn.facebook {
    background: linear-gradient(135deg, #1877F2, #0D5CBF);
}

.social-float-btn.facebook:hover {
    background: linear-gradient(135deg, #0D5CBF, #084291);
}

.social-float-btn.instagram {
    background: linear-gradient(135deg, #F09433, #E6683C, #DC2743, #CC2366, #BC1888);
}

.social-float-btn.instagram:hover {
    background: linear-gradient(135deg, #BC1888, #A01470);
}

.social-float-btn.tiktok {
    background: linear-gradient(135deg, #000000, #25F4EE, #FE2C55);
}

.social-float-btn.tiktok:hover {
    background: linear-gradient(135deg, #FE2C55, #CC1844);
}

.social-float-btn.twitter {
    background: linear-gradient(135deg, #000000, #333333);
}

.social-float-btn.twitter:hover {
    background: linear-gradient(135deg, #333333, #555555);
}

.social-float-btn.phone {
    background: linear-gradient(135deg, #00C853, #009624);
}

.social-float-btn.phone:hover {
    background: linear-gradient(135deg, #009624, #006939);
}

.social-float-btn.email {
    background: linear-gradient(135deg, #EA4335, #B92B1F);
}

.social-float-btn.email:hover {
    background: linear-gradient(135deg, #B92B1F, #8B1F17);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .social-widget {
        bottom: 70px;
        right: 15px;
    }

    .social-widget-toggle {
        width: 55px;
        height: 55px;
    }

    .social-widget-toggle i {
        font-size: 24px;
    }

    .social-widget-content {
        min-width: 160px;
        padding: 15px 12px;
    }

    .social-float-btn {
        padding: 10px 12px;
        font-size: 13px;
    }

    .social-float-btn i {
        font-size: 18px;
    }

    .social-widget-title {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .social-widget-content {
        min-width: 140px;
    }

    .social-float-btn span {
        font-size: 12px;
    }
}

/* Location Map Section */
.location-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--light-bg), #e8ecf0);
    position: relative;
    overflow: hidden;
}

.location-container {
    max-width: 1400px;
    margin: 0 auto;
}

.location-header {
    text-align: center;
    margin-bottom: 50px;
}

.location-header .section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), #004d80);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.location-header .section-title {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.location-header .section-desc {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.map-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.map-container {
    position: relative;
    min-height: 450px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.location-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.location-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,51,102,0.1);
}

.location-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,51,102,0.15);
    border-color: var(--primary-blue);
}

.location-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), #004d80);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,51,102,0.3);
}

.location-icon i {
    font-size: 24px;
    color: var(--white);
}

.location-details h4 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-weight: 600;
}

.location-details p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-blue), #004d80);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,51,102,0.3);
}

.btn-directions:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,51,102,0.4);
    background: linear-gradient(135deg, #004d80, #003366);
}

.btn-directions i {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .map-wrapper {
        grid-template-columns: 1fr;
    }

    .map-container {
        min-height: 400px;
    }

    .location-info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .location-section {
        padding: 60px 5%;
    }

    .location-header .section-title {
        font-size: 32px;
    }

    .location-header .section-desc {
        font-size: 16px;
    }

    .location-info {
        padding: 25px;
    }

    .location-card {
        padding: 15px;
    }

    .location-icon {
        width: 45px;
        height: 45px;
    }

    .location-icon i {
        font-size: 20px;
    }

    .location-details h4 {
        font-size: 16px;
    }

    .location-details p {
        font-size: 14px;
    }

    .btn-directions {
        padding: 12px 25px;
        font-size: 14px;
    }

    .map-container {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .location-header .section-title {
        font-size: 28px;
    }

    .location-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .location-card:hover {
        transform: translateY(-5px);
    }

    .location-icon {
        margin-bottom: 10px;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 20px 30px;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    transition: bottom 0.4s ease-in-out;
    border-top: 3px solid var(--primary-blue);
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.cookie-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), #004080);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,51,102,0.3);
}

.cookie-icon i {
    font-size: 28px;
    color: var(--white);
}

.cookie-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-family: 'AlibabaPuHuiTi', sans-serif;
}

.cookie-text p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 8px;
}

.cookie-policy-link {
    font-size: 13px;
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cookie-policy-link:hover {
    color: var(--accent-yellow);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie-reject,
.btn-cookie-accept {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'MiSans', sans-serif;
}

.btn-cookie-reject {
    background: transparent;
    color: var(--text-gray);
    border: 2px solid var(--text-gray);
}

.btn-cookie-reject:hover {
    border-color: var(--text-dark);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-cookie-accept {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #FFDD44 100%);
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 204, 0, 0.5);
}

.cookie-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-close i {
    font-size: 24px;
    color: var(--text-gray);
}

.cookie-close:hover {
    background: rgba(0,0,0,0.05);
}

.cookie-close:hover i {
    color: var(--text-dark);
}

/* Mobile responsive for cookie consent */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 20px 15px;
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cookie-icon {
        width: 45px;
        height: 45px;
    }

    .cookie-icon i {
        font-size: 24px;
    }

    .cookie-text h4 {
        font-size: 16px;
    }

    .cookie-text p {
        font-size: 13px;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cookie-reject,
    .btn-cookie-accept {
        width: 100%;
        padding: 14px 20px;
    }

    .cookie-close {
        top: 5px;
        right: 5px;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 15px 12px;
    }

    .cookie-icon {
        width: 40px;
        height: 40px;
    }

    .cookie-icon i {
        font-size: 20px;
    }

    .cookie-text h4 {
        font-size: 15px;
    }

    .cookie-text p {
        font-size: 12px;
    }
}

/* Service Areas Section */
.service-areas-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.service-areas-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.provinces-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px auto;
}

.province-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,51,102,0.08);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid rgba(0,51,102,0.06);
    position: relative;
    overflow: hidden;
}

.province-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-yellow));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.province-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,51,102,0.15);
}

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

.province-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004080 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--accent-yellow);
    transition: all 0.4s ease;
}

.province-card:hover .province-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #FFDD44 100%);
    color: var(--primary-blue);
}

.province-card h3 {
    font-family: 'AlibabaPuHuiTi', sans-serif;
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: bold;
}

.province-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.service-areas-cta {
    margin-top: 50px;
}

/* Responsive for service areas */
@media (max-width: 1024px) {
    .provinces-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-areas-section {
        padding: 60px 30px;
    }

    .provinces-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .province-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .service-areas-section {
        padding: 50px 20px;
    }

    .province-card h3 {
        font-size: 20px;
    }

    .province-card p {
        font-size: 13px;
    }
}
