/* Landing Page Modern Styles */

:root {
    /* Network/Technology Theme Colors */
    --primary-gradient: linear-gradient(135deg, #0066CC 0%, #004499 100%);
    --secondary-gradient: linear-gradient(135deg, #0099FF 0%, #0066CC 100%);
    --success-gradient: linear-gradient(135deg, #00CED1 0%, #008B8B 100%);
    --warning-gradient: linear-gradient(135deg, #20B2AA 0%, #008B8B 100%);
    --info-gradient: linear-gradient(135deg, #0070E3 0%, #0052CC 100%);
    --network-gradient: linear-gradient(135deg, #001F3F 0%, #003366 100%);
    --dark-gradient: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    --primary-color: #0066CC;
    --network-blue: #0066CC;
    --network-cyan: #00CED1;
    --network-dark: #001F3F;
    --text-dark: #081828;
    --text-light: #5a6c7d;
    --bg-light: #f8f9fa;
    --shadow-sm: 0 2px 10px rgba(0, 102, 204, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 102, 204, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 102, 204, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* AOS Fallback - Ensure elements are visible if AOS fails */
/* Only show fallback if AOS is not enabled */
html:not(.aos-enabled) [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Ensure AOS elements have proper visibility */
[data-aos] {
    visibility: visible;
    will-change: transform, opacity;
}

/* Fallback: If element is stuck with opacity 0 after 3 seconds, show it */
html:not(.aos-enabled) [data-aos].aos-init:not(.aos-animate) {
    animation: aos-fallback-fade-in 0.1s ease-out 3s forwards;
}

@keyframes aos-fallback-fade-in {
    to {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* Only apply AOS animation when AOS is properly loaded and element is animated */
/* AOS handles animations through its own classes */

/* Ensure elements above the fold are visible immediately if AOS is not loaded */
html:not(.aos-enabled) [data-aos] {
    animation: none;
}

/* Mobile AOS fixes */
@media (max-width: 767px) {
    [data-aos] {
        visibility: visible;
    }
    
    html.aos-enabled [data-aos].aos-init {
        opacity: 0;
    }
    
    html.aos-enabled [data-aos].aos-animate {
        opacity: 1;
    }
    
    /* Ensure transforms work on mobile */
    [data-aos="fade-up"] {
        transform: translateY(30px);
    }
    
    html.aos-enabled [data-aos="fade-up"].aos-animate {
        transform: translateY(0);
    }
    
    [data-aos="fade-down"] {
        transform: translateY(-30px);
    }
    
    html.aos-enabled [data-aos="fade-down"].aos-animate {
        transform: translateY(0);
    }
    
    [data-aos="fade-left"] {
        transform: translateX(30px);
    }
    
    html.aos-enabled [data-aos="fade-left"].aos-animate {
        transform: translateX(0);
    }
    
    [data-aos="fade-right"] {
        transform: translateX(-30px);
    }
    
    html.aos-enabled [data-aos="fade-right"].aos-animate {
        transform: translateX(0);
    }
}

/* Hero Landing Area */
.hero-landing {
    padding: 120px 0 80px;
    /* Background image với overlay gradient - Network Theme */
    background-image: 
        linear-gradient(135deg, rgba(0, 102, 204, 0.88) 0%, rgba(0, 31, 63, 0.88) 100%),
        url('../images/landing/hero-products.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Fallback gradient nếu ảnh không load */
    background-color: #0066CC;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Overlay pattern để tạo texture */
.hero-landing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float-shape 20s ease-in-out infinite;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.06);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(0, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
}

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

.hero-landing .hero-content {
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge i {
    font-size: 18px;
    color: #ffc107;
}

.hero-landing .hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    color: #fff;
}

.hero-landing .hero-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
}

.hero-feature-item i {
    font-size: 20px;
    color: #4ade80;
}

.hero-landing .hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-landing .hero-buttons .btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
}

.hero-landing .hero-buttons .btn-primary {
    background: #fff;
    color: #0066CC;
    border: 2px solid #fff;
}

.hero-landing .hero-buttons .btn-primary:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-landing .hero-buttons .btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-landing .hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hero-stats .stat-item {
    text-align: left;
}

.hero-stats .stat-item h4 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.hero-stats .stat-item p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.hero-image-wrapper {
    position: relative;
    text-align: center;
}

.hero-image-float {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
    border-radius: 20px;
}

.hero-badge-float {
    position: absolute;
    background: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: float-badge 3s ease-in-out infinite;
}

.hero-badge-float i {
    font-size: 28px;
}

.hero-badge-float div {
    text-align: left;
}

.hero-badge-float strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-badge-float span {
    font-size: 12px;
    color: var(--text-light);
}

.badge-1 {
    top: 10%;
    left: -30px;
}

.badge-1 i {
    color: #fbbf24;
}

.badge-2 {
    top: 50%;
    right: -30px;
    animation-delay: 1s;
}

.badge-2 i {
    color: #0066CC;
}

.badge-3 {
    bottom: 10%;
    left: 5%;
    animation-delay: 2s;
}

.badge-3 i {
    color: #ef4444;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-badge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

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

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    padding: 0 20px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--primary-gradient);
}

.section-subtitle::before {
    left: -40px;
}

.section-subtitle::after {
    right: -40px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-light);
}

.single-feature {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
}

.single-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-gradient);
    transition: var(--transition);
}

.single-feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.single-feature:hover::before {
    height: 100%;
}

.single-feature .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.single-feature .feature-icon i {
    font-size: 32px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.feature-icon.gradient-1 {
    background: linear-gradient(135deg, #0066CC 0%, #004499 100%);
}

.feature-icon.gradient-2 {
    background: linear-gradient(135deg, #0099FF 0%, #0066CC 100%);
}

.feature-icon.gradient-3 {
    background: linear-gradient(135deg, #00CED1 0%, #008B8B 100%);
}

.feature-icon.gradient-4 {
    background: linear-gradient(135deg, #0070E3 0%, #0052CC 100%);
}

.feature-icon.gradient-5 {
    background: linear-gradient(135deg, #20B2AA 0%, #008B8B 100%);
}

.feature-icon.gradient-6 {
    background: linear-gradient(135deg, #0066CC 0%, #001F3F 100%);
}

.single-feature .feature-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.single-feature .feature-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.single-feature .feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
}

/* Featured Products Section */
/* Landing Featured Products - Grid Layout */
.landing-featured-products {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.landing-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid #e9ecef;
}

.landing-product-item {
    position: relative;
    border-right: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.landing-product-item:nth-child(4n) {
    border-right: none;
}

.landing-product-item:nth-last-child(-n+4) {
    border-bottom: none;
}

.landing-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

/* Ensure slick slider has equal height slides */
.landing-products-slider.slick-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

.landing-products-slider.slick-slider .slick-slide {
    height: auto !important;
    display: flex !important;
}

.landing-products-slider.slick-slider .slick-slide > div {
    width: 100%;
    height: 100%;
    display: flex !important;
}

.landing-product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.landing-product-card {
    background: #fff;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03) 0%, rgba(0, 31, 63, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.landing-product-card:hover {
    z-index: 10;
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.15);
}

.landing-product-card:hover::before {
    opacity: 1;
}

.landing-product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    flex-shrink: 0;
}

.landing-product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-product-card:hover .landing-product-image {
    transform: scale(1.1);
}

.landing-product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
    animation: fadeInLeft 0.6s ease-out;
}

.landing-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: linear-gradient(135deg, #0066CC 0%, #001F3F 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
}

.landing-badge-new i {
    font-size: 12px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.landing-product-info {
    padding: 20px 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    background: #fff;
}

.landing-product-category {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, #001F3F 100%);
    padding: 4px 10px;
    border-radius: 50px;
    align-self: flex-start;
}

.landing-product-category i {
    font-size: 11px;
}

.landing-product-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 42px;
    transition: color 0.3s ease;
}

.landing-product-card:hover .landing-product-title {
    color: var(--primary-color);
}

.landing-product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.landing-stars {
    display: flex;
    gap: 2px;
}

.landing-stars i {
    font-size: 13px;
    color: #ffc107;
}

.landing-rating-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Responsive Grid */
@media (max-width: 1199px) {
    .landing-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .landing-product-item:nth-child(4n) {
        border-right: 1px solid #e9ecef;
    }
    
    .landing-product-item:nth-child(3n) {
        border-right: none;
    }
    
    .landing-product-item:nth-last-child(-n+4) {
        border-bottom: 1px solid #e9ecef;
    }
    
    .landing-product-item:nth-last-child(-n+3) {
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    .landing-featured-products {
        padding: 60px 0 40px;
    }
    
    .landing-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .landing-product-item:nth-child(3n) {
        border-right: 1px solid #e9ecef;
    }
    
    .landing-product-item:nth-child(2n) {
        border-right: none;
    }
    
    .landing-product-item:nth-last-child(-n+3) {
        border-bottom: 1px solid #e9ecef;
    }
    
    .landing-product-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
    
    .landing-product-info {
        padding: 16px 12px;
    }
    
    .landing-product-title {
        font-size: 14px;
        min-height: 40px;
    }
    
    .landing-product-category {
        font-size: 9px;
        padding: 3px 8px;
    }
    
    .landing-stars i {
        font-size: 12px;
    }
    
    .landing-rating-text {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .landing-product-badge {
        top: 10px;
        left: 10px;
    }
    
    .landing-badge-new {
        padding: 5px 10px;
        font-size: 10px;
        gap: 4px;
    }
    
    .landing-badge-new i {
        font-size: 11px;
    }
}

.btn-arrow {
    position: relative;
    overflow: hidden;
}

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

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

/* Categories Showcase */
.landing-categories-showcase {
    padding: 80px 0;
    background: #f8f9fa;
}

.landing-categories-slider {
    margin-top: 50px;
    padding-bottom: 60px;
    position: relative;
}

/* Ensure slider is properly initialized */
.landing-categories-slider:not(.slick-initialized) {
    overflow: hidden;
}

.landing-categories-slider:not(.slick-initialized) .slider-item {
    display: none;
}

.landing-categories-slider:not(.slick-initialized) .slider-item:first-child {
    display: block;
}

/* Đảm bảo chiều cao đồng đều cho tất cả slides */
.landing-categories-slider .slider-item {
    padding: 0 12px;
    height: 100%;
    display: flex !important;
}

.landing-categories-slider.slick-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

.landing-categories-slider.slick-slider .slick-slide {
    height: inherit !important;
    display: flex !important;
}

.landing-categories-slider.slick-slider .slick-slide > div {
    width: 100%;
    height: 100%;
    display: flex !important;
}

/* Category Card */
.landing-category-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.landing-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--category-color);
    opacity: 0.8;
    transition: height 0.4s ease;
}

.landing-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.landing-category-card:hover::before {
    height: 8px;
    opacity: 1;
}

.landing-category-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 40px 32px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Category Content Wrapper */
.landing-category-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.landing-category-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--category-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-category-card:hover .landing-category-icon-wrapper {
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.landing-category-icon-wrapper i {
    font-size: 36px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.landing-category-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.landing-category-card:hover .landing-category-name {
    color: var(--primary-color);
}


/* Slider Navigation */
.landing-categories-slider .slick-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 10;
    transition: all 0.3s ease;
}

.landing-categories-slider .slick-arrow:before {
    color: #2d3748;
    font-size: 18px;
    opacity: 1;
}

.landing-categories-slider .slick-arrow:hover {
    background: #2d3748;
    border-color: #2d3748;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(45, 55, 72, 0.2);
}

.landing-categories-slider .slick-arrow:hover:before {
    color: #ffffff;
}

.landing-categories-slider .slick-prev {
    left: -25px;
}

.landing-categories-slider .slick-next {
    right: -25px;
}

.landing-categories-slider .slick-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.landing-categories-slider .slick-disabled:hover {
    background: #ffffff;
    border-color: #e9ecef;
    transform: none;
}

/* Slider Dots */
.landing-categories-slider .slick-dots {
    bottom: -45px;
    display: flex !important;
    justify-content: center;
    gap: 8px;
}

.landing-categories-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.landing-categories-slider .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
}

.landing-categories-slider .slick-dots li button:before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e0;
    opacity: 1;
    transition: all 0.3s ease;
}

.landing-categories-slider .slick-dots li.slick-active button:before {
    background: var(--primary-color);
    transform: scale(1.3);
}

.landing-categories-slider .slick-dots li:hover button:before {
    background: #a0aec0;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .landing-category-link {
        padding: 36px 28px;
    }
    
    .landing-category-content-wrapper {
        gap: 18px;
    }
    
    .landing-category-name {
        font-size: 19px;
    }
    
    .landing-category-icon-wrapper {
        width: 72px;
        height: 72px;
    }
    
    .landing-category-icon-wrapper i {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .landing-categories-showcase {
        padding: 60px 0;
    }
    
    .landing-categories-slider {
        margin-top: 40px;
    }
    
    .landing-categories-slider .slick-prev {
        left: -20px;
    }
    
    .landing-categories-slider .slick-next {
        right: -20px;
    }
    
    .landing-categories-slider .slick-arrow {
        width: 42px;
        height: 42px;
    }
    
    .landing-category-link {
        padding: 32px 24px;
    }
    
    .landing-category-content-wrapper {
        gap: 16px;
    }
    
    .landing-category-name {
        font-size: 18px;
    }
    
    .landing-category-icon-wrapper {
        width: 64px;
        height: 64px;
    }
    
    .landing-category-icon-wrapper i {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .landing-categories-slider {
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
        overflow: hidden;
    }
    
    .landing-categories-slider .slick-prev {
        left: 5px;
    }
    
    .landing-categories-slider .slick-next {
        right: 5px;
    }
    
    .landing-categories-slider .slick-arrow {
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.95);
    }
    
    /* Enable touch scrolling for categories slider on mobile */
    .landing-categories-slider .slick-list {
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
        overflow: hidden !important;
        margin: 0 -10px;
    }
    
    .landing-categories-slider .slick-track {
        touch-action: pan-y;
        display: flex !important;
    }
    
    .landing-categories-slider .slick-slide {
        display: block !important;
        height: auto;
        opacity: 1;
    }
    
    .landing-categories-slider .slick-slide > div {
        height: 100%;
    }
    
    /* Show dots on mobile for categories */
    .landing-categories-slider .slick-dots {
        display: flex !important;
        bottom: -40px;
    }
    
    /* Ensure slider items are properly sized on mobile */
    .landing-categories-slider .slider-item {
        padding: 0 10px;
    }
    
    .landing-category-link {
        padding: 28px 20px;
    }
    
    .landing-category-content-wrapper {
        gap: 14px;
    }
    
    .landing-category-name {
        font-size: 17px;
    }
    
    .landing-category-icon-wrapper {
        width: 56px;
        height: 56px;
    }
    
    .landing-category-icon-wrapper i {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .landing-categories-showcase {
        padding: 50px 0;
    }
    
    .landing-category-link {
        padding: 24px 18px;
    }
    
    .landing-category-content-wrapper {
        gap: 12px;
    }
    
    .landing-category-name {
        font-size: 16px;
    }
    
    .landing-category-icon-wrapper {
        width: 52px;
        height: 52px;
    }
    
    .landing-category-icon-wrapper i {
        font-size: 22px;
    }
}

/* Landing Contact Form */
.landing-contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    /* Network theme background với overlay */
    background-image: 
        linear-gradient(135deg, rgba(0, 102, 204, 0.03) 0%, rgba(0, 31, 63, 0.03) 100%),
        radial-gradient(circle at 20% 30%, rgba(0, 206, 209, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 153, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 102, 204, 0.05) 0%, transparent 60%);
    position: relative;
    overflow: hidden;
}

.landing-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

/* Animated background shapes */
.landing-contact::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 206, 209, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 75% 75%, rgba(0, 102, 204, 0.1) 0%, transparent 25%);
    animation: contactBgFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes contactBgFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(3%, 3%) rotate(120deg);
    }
    66% {
        transform: translate(-3%, -3%) rotate(240deg);
    }
}

/* Decorative shapes */
.landing-contact .contact-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
}

.landing-contact .contact-shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #00CED1 0%, #0066CC 100%);
    top: 10%;
    right: 10%;
    animation: contactShapeFloat 15s ease-in-out infinite;
}

.landing-contact .contact-shape-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #0099FF 0%, #001F3F 100%);
    bottom: 15%;
    left: 5%;
    animation: contactShapeFloat 18s ease-in-out infinite reverse;
}

.landing-contact .contact-shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.8) 0%, rgba(0, 102, 204, 0.8) 100%);
    top: 50%;
    right: 5%;
    animation: contactShapeFloat 12s ease-in-out infinite;
}

@keyframes contactShapeFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.landing-contact-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 56px 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.landing-contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.landing-contact-form-wrapper:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12), 0 12px 32px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.landing-contact-form-wrapper:hover::before {
    opacity: 1;
}

.landing-contact-alert {
    padding: 18px 24px;
    border-radius: 14px;
    margin-bottom: 32px;
    font-size: 14px;
    font-weight: 500;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.landing-contact-alert.alert-success {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #166534;
    border-left-color: #22c55e;
    border: 1px solid #bbf7d0;
}

.landing-contact-alert.alert-success::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #22c55e;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.landing-contact-alert.alert-error {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #991b1b;
    border-left-color: #ef4444;
    border: 1px solid #fecaca;
}

.landing-contact-alert.alert-error::before {
    content: '✕';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ef4444;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.landing-form-group {
    margin-bottom: 28px;
    position: relative;
}

.landing-form-group label {
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.landing-form-group:focus-within label {
    color: var(--primary-color);
}

.landing-form-group label .required {
    color: #ef4444;
    margin-left: 3px;
    font-weight: 700;
}

.landing-form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-size: 15px;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    line-height: 1.5;
}

.landing-form-control:hover {
    border-color: #cbd5e0;
    background: #ffffff;
}

.landing-form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.08), 0 4px 12px rgba(0, 102, 204, 0.1);
    background: #ffffff;
    transform: translateY(-1px);
}

.landing-form-control::placeholder {
    color: #94a3b8;
    opacity: 0.8;
}

textarea.landing-form-control {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.landing-form-control.is-invalid {
    border-color: #ef4444;
    background: #fef2f2;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
}

.landing-form-control.is-invalid:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12), 0 4px 12px rgba(239, 68, 68, 0.1);
}

.landing-form-error {
    display: block;
    color: #ef4444;
    font-size: 13px;
    margin-top: 8px;
    min-height: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.landing-form-error::before {
    content: '⚠';
    font-size: 14px;
}

.landing-contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 48px;
    background: var(--primary-gradient);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.35), 0 2px 8px rgba(0, 102, 204, 0.2);
    min-width: 220px;
    position: relative;
    overflow: hidden;
}

.landing-contact-submit-btn::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 ease;
}

.landing-contact-submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.45), 0 4px 12px rgba(0, 102, 204, 0.25);
}

.landing-contact-submit-btn:hover:not(:disabled)::before {
    left: 100%;
}

.landing-contact-submit-btn:active:not(:disabled) {
    transform: translateY(-1px);
}

.landing-contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
}

.landing-contact-submit-btn .btn-loading i {
    animation: spin 1s linear infinite;
}

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

.landing-contact-submit-btn .btn-text,
.landing-contact-submit-btn .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Contact Section Title Enhancement */
.landing-contact .section-title {
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.landing-contact .section-title h2 {
    background: linear-gradient(135deg, #0066CC 0%, #001F3F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.landing-contact .container {
    position: relative;
    z-index: 1;
}

/* Contact Form Responsive */
@media (max-width: 991px) {
    .landing-contact {
        padding: 80px 0;
    }
    
    .landing-contact-form-wrapper {
        padding: 44px 36px;
    }
    
    .landing-contact .section-title {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .landing-contact {
        padding: 60px 0;
    }
    
    .landing-contact-form-wrapper {
        padding: 36px 28px;
        border-radius: 24px;
    }
    
    .landing-contact-form-wrapper::before {
        height: 4px;
    }
    
    .landing-form-group {
        margin-bottom: 24px;
    }
    
    .landing-form-control {
        padding: 14px 18px;
        font-size: 14px;
    }
    
    .landing-contact-submit-btn {
        width: 100%;
        min-width: auto;
        padding: 16px 32px;
    }
    
    .landing-contact-alert {
        padding: 16px 20px;
        font-size: 13px;
    }
    
    .landing-contact .section-title {
        margin-bottom: 32px;
    }
}

@media (max-width: 575px) {
    .landing-contact-form-wrapper {
        padding: 32px 24px;
        border-radius: 20px;
    }
    
    .landing-form-group {
        margin-bottom: 20px;
    }
    
    .landing-form-control {
        padding: 12px 16px;
        border-radius: 12px;
    }
    
    .landing-contact-submit-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* Brands Landing */
.brands-landing {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.brands-logo-wrapper {
    margin-top: 50px;
}

.brands-logo-carousel {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.brands-landing .brand-logo {
    padding: 15px;
    margin: 0 10px;
    display: flex;
    flex: 1;
    min-width: 0;
}

.brands-landing .brand-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px 20px;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
    height: 100%;
    min-height: 140px;
}

.brands-landing .brand-logo a:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.02) 0%, rgba(0, 31, 63, 0.02) 100%);
}

.brands-landing .brand-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.brands-landing .brand-logo a:hover img {
    transform: scale(1.1);
}

/* Brands Carousel - Slick Slider Support */
.brands-logo-carousel.slick-slider .slick-slide {
    display: flex;
    height: auto;
}

.brands-logo-carousel.slick-slider .slick-slide > div {
    display: flex;
    height: 100%;
    width: 100%;
}

.brands-logo-carousel.slick-slider .brand-logo {
    display: flex;
    height: 100%;
    width: 100%;
}

/* Brands Carousel Responsive */
@media (max-width: 768px) {
    .brands-landing {
        padding: 60px 0;
    }
    
    .brands-landing .brand-logo {
        padding: 10px;
        margin: 0 5px;
    }
    
    .brands-landing .brand-logo a {
        padding: 20px 15px;
        min-height: 120px;
    }
    
    .brands-landing .brand-logo img {
        max-height: 60px;
    }
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.testimonials-slider {
    padding: 20px 0 60px;
    position: relative;
}

/* Ensure slider is properly initialized */
.testimonials-slider:not(.slick-initialized) {
    overflow: hidden;
}

.testimonials-slider:not(.slick-initialized) .testimonial-slide {
    display: none;
}

.testimonials-slider:not(.slick-initialized) .testimonial-slide:first-child {
    display: block;
}

.testimonials-slider .slick-list {
    padding: 20px 0;
    overflow: visible;
}

.testimonials-slider .slick-list .slick-track {
    display: flex;
    align-items: stretch;
}

.testimonials-slider .slick-slide {
    padding: 0 15px;
    height: auto;
}

.testimonials-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.testimonials-slider .slick-slide > div {
    height: 100%;
    display: flex;
}

.testimonial-slide {
    height: 100%;
    display: flex;
}

.testimonials-slider .slick-dots {
    bottom: 0;
    margin-top: 40px;
}

.testimonials-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.testimonials-slider .slick-dots li.slick-active button {
    background: #0066CC;
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

.testimonials-slider .slick-dots li button:before {
    display: none;
}

.testimonials-slider .slick-prev,
.testimonials-slider .slick-next {
    width: 50px;
    height: 50px;
    z-index: 2;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonials-slider .slick-prev:hover,
.testimonials-slider .slick-next:hover {
    background: #0066CC;
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.testimonials-slider .slick-prev:hover:before,
.testimonials-slider .slick-next:hover:before {
    color: #fff;
}

.testimonials-slider .slick-prev {
    left: -25px;
}

.testimonials-slider .slick-next {
    right: -25px;
}

.testimonials-slider .slick-prev:before,
.testimonials-slider .slick-next:before {
    color: #0066CC;
    font-size: 24px;
    transition: all 0.3s ease;
}

/* Testimonials responsive */
@media (max-width: 991px) {
    .testimonials-slider .slick-prev {
        left: -15px;
    }
    
    .testimonials-slider .slick-next {
        right: -15px;
    }
}

@media (max-width: 767px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-slider {
        padding: 10px 0 60px;
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
        overflow: hidden;
    }
    
    .testimonials-slider .slick-list {
        padding: 10px 0;
        overflow: hidden !important;
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
        margin: 0 -10px;
    }
    
    .testimonials-slider .slick-track {
        touch-action: pan-y;
        display: flex !important;
    }
    
    .testimonials-slider .slick-slide {
        padding: 0 10px;
        height: auto;
        display: block !important;
        opacity: 1;
    }
    
    .testimonials-slider .slick-slide > div {
        height: 100%;
        display: flex;
    }
    
    .testimonials-slider .slick-prev,
    .testimonials-slider .slick-next {
        display: none !important;
    }
    
    .testimonials-slider .slick-dots {
        bottom: 10px;
        margin-top: 30px;
        position: relative;
        display: flex !important;
        justify-content: center;
    }
    
    .testimonials-slider .slick-dots li {
        margin: 0 4px;
    }
    
    .testimonials-slider .slick-dots li button {
        width: 10px;
        height: 10px;
    }
    
    .testimonials-slider .slick-dots li.slick-active button {
        width: 24px;
    }
    
    .single-testimonial {
        padding: 30px 25px;
    }
}

.single-testimonial {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.single-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.3);
}

.single-testimonial .testimonial-rating {
    margin-bottom: 20px;
}

.single-testimonial .testimonial-rating i {
    color: #ffc107;
    font-size: 18px;
    margin-right: 2px;
}

.single-testimonial .testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 25px;
    font-style: italic;
    flex-grow: 1;
}

.single-testimonial .testimonial-author h5 {
    font-size: 18px;
    font-weight: 600;
    color: #081828;
    margin-bottom: 5px;
}

.single-testimonial .testimonial-author span {
    font-size: 14px;
    color: #5a6c7d;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.92) 0%, rgba(0, 31, 63, 0.92) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Network grid pattern overlay for stats */
.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 206, 209, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 206, 209, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.single-stat {
    text-align: center;
    margin-bottom: 30px;
}

.single-stat .stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-stat .stat-icon i {
    font-size: 40px;
    color: #fff;
}

.single-stat h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.single-stat p {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0066CC 0%, #001F3F 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Network connection lines pattern */
.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(0, 206, 209, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 153, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn-light {
    background: #fff;
    color: #0066CC;
    border: 2px solid #fff;
}

.cta-buttons .btn-light:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.cta-buttons .btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

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

/* Responsive Styles */
@media only screen and (max-width: 767px) {
    .hero-landing {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-landing .hero-title {
        font-size: 36px;
    }
    
    .hero-landing .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-features {
        flex-direction: column;
    }
    
    .hero-landing .hero-buttons {
        flex-direction: column;
    }
    
    .hero-landing .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: space-between;
        gap: 20px;
    }
    
    .hero-stats .stat-item h4 {
        font-size: 24px;
    }
    
    .hero-badge-float {
        padding: 10px 15px;
    }
    
    .badge-1,
    .badge-2,
    .badge-3 {
        position: static;
        margin: 10px auto;
        /* Keep animation but make it subtle on mobile */
        animation: float-shape-mobile 15s ease-in-out infinite;
    }
    
    @keyframes float-shape-mobile {
        0%, 100% {
            transform: translate(0, 0) scale(1);
        }
        50% {
            transform: translate(10px, -10px) scale(1.05);
        }
    }
    
    .hero-image-wrapper {
        margin-top: 40px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    .section-subtitle::before,
    .section-subtitle::after {
        display: none;
    }
    
    .features,
    .featured-products,
    .landing-featured-products,
    .categories-showcase {
        padding: 60px 0;
    }
    
    .single-category img {
        height: 250px;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Landing Products Responsive */
    .landing-products-slider .slick-prev {
        left: 10px;
    }
    
    .landing-products-slider .slick-next {
        right: 10px;
    }
    
    .landing-product-slide {
        padding: 0 10px;
    }
    
    .landing-product-title {
        font-size: 15px;
        min-height: 42px;
    }
    
    .landing-product-info {
        padding: 18px;
    }
    
    .landing-product-category {
        font-size: 10px;
        padding: 5px 12px;
    }
    
    .landing-product-badge {
        top: 12px;
        left: 12px;
    }
    
    .landing-badge-new {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .landing-view-details {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .landing-product-status {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-landing .hero-title {
        font-size: 42px;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
    
    .single-category img {
        height: 300px;
    }
    
    /* Landing Products Tablet */
    .landing-product-title {
        font-size: 16px;
        min-height: 45px;
    }
    
    .landing-products-slider .slick-prev {
        left: -15px;
    }
    
    .landing-products-slider .slick-next {
        right: -15px;
    }
    
    .landing-product-info {
        padding: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-landing .hero-title {
        font-size: 48px;
    }
    
    /* Landing Products Desktop */
    .landing-products-slider .slick-prev {
        left: -20px;
    }
    
    .landing-products-slider .slick-next {
        right: -20px;
    }
    
    .landing-product-title {
        font-size: 16px;
    }
}

