/* ==========================================
   SERVITECH MACHINERY LTD. - MAIN STYLES
   Modern, Professional, Ultra-Optimized
   ========================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors */
    --primary-color: #0066CC;
    --primary-dark: #004C99;
    --primary-light: #3385D6;
    
    /* Secondary Colors */
    --secondary-color: #FF6B35;
    --accent-color: #00C896;
    
    /* Neutral Colors */
    --dark: #1a1a1a;
    --gray-dark: #333333;
    --gray: #666666;
    --gray-light: #999999;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #0066CC 0%, #00C896 100%);
    --gradient-secondary: linear-gradient(135deg, #FF6B35 0%, #FFA94D 100%);
    --gradient-blue: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-green: linear-gradient(135deg, #00C896 0%, #00B383 100%);
    --gradient-purple: linear-gradient(135deg, #A86AEE 0%, #7F5AF0 100%);
    --gradient-orange: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    --gradient-pink: linear-gradient(135deg, #FF6B95 0%, #FF8FB3 100%);
    --gradient-cyan: linear-gradient(135deg, #00C9FF 0%, #92FE9D 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 120px;
    height: 120px;
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid var(--light-bg);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}

.loader-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: var(--white);
    font-size: 14px;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-link,
.top-bar-text {
    color: var(--white);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-link:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Main Navigation */
.main-nav {
    padding: 15px 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 16px;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: var(--light-bg);
}

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 10px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--gray-dark);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.dropdown-menu li a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.dropdown-menu li a i {
    font-size: 18px;
    width: 24px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--dark);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(0, 102, 204, 0.5); }
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 102, 204, 0.05) 0%, 
        rgba(0, 200, 150, 0.05) 100%);
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 20s infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 200, 150, 0.1);
    border: 1px solid rgba(0, 200, 150, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 25px;
    position: relative;
}

.badge-icon svg {
    color: var(--accent-color);
}

.badge-pulse {
    position: absolute;
    top: 50%;
    left: 10px;
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
}

/* Hero Title */
.hero-title {
    margin-bottom: 25px;
}

.title-line {
    display: block;
	font-size:40px;
}

.title-highlight {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
	font-size:40px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
}

/* Hero Benefits */
.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.benefit-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--light-bg);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-dark);
}

.benefit-pill i {
    color: var(--accent-color);
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

/* Hero Stats */
/* .hero-stats { */
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* gap: 30px; */
    /* padding-top: 40px; */
    /* border-top: 1px solid rgba(0, 0, 0, 0.1); */
/* } */

/* .stat-item { */
    /* flex: 1; */
    /* min-width: 150px; */
/* } */

/* .stat-number { */
    /* display: flex; */
    /* align-items: baseline; */
    /* gap: 2px; */
    /* font-size: 2.5rem; */
    /* font-weight: 700; */
    /* color: var(--primary-color); */
    /* line-height: 1; */
    /* margin-bottom: 8px; */
/* } */

/* .stat-label { */
    /* font-size: 14px; */
    /* color: var(--gray); */
    /* font-weight: 500; */
/* } */

/* .stat-divider { */
    /* width: 1px; */
    /* background: rgba(0, 0, 0, 0.1); */
/* } */

/* Social Proof Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: nowrap; /* Prevent wrapping */
}

.stat-item {
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
}

.stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.counter {
    font-family: 'Poppins', sans-serif;
}

.plus {
    font-size: 28px;
    opacity: 0.8;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    white-space: nowrap; /* Prevent text wrapping */
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-stats {
        gap: 20px;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .plus {
        font-size: 22px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .stat-divider {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-wrap: wrap; /* Allow wrapping on very small screens */
        gap: 15px;
    }
    
    .stat-divider {
        display: none; /* Hide dividers on mobile */
    }
}




/* Hero Visual */
.hero-visual {
    position: relative;
    padding: 40px; /* Add padding to accommodate floating cards */
}

.dashboard-mockup {
    position: relative;
    border-radius: var(--radius-xl);
    /* REMOVE overflow: hidden - this was clipping the cards */
    /* overflow: hidden; */
}

.mockup-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-primary);
    opacity: 0.1;
    filter: blur(60px);
    animation: rotate-glow 10s linear infinite;
    z-index: 0;
}

@keyframes rotate-glow {
    to { transform: rotate(360deg); }
}

.dashboard-img {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: block; /* Prevent image gaps */
    width: 100%;
    height: auto;
    overflow: hidden; /* Move overflow here if needed for image corners */
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    animation: float-card 3s ease-in-out infinite;
    z-index: 10; /* Ensure cards are above everything */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.floating-card i {
    font-size: 24px;
    color: var(--primary-color);
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.floating-card span {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.2;
}

.card-1 {
    top: 10%;
    right: -30px;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    left: -30px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    right: -30px;
    animation-delay: 2s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-visual {
        padding: 20px;
    }
    
    .card-1 {
        top: 5%;
        right: -15px;
    }
    
    .card-2 {
        top: 50%;
        left: -15px;
    }
    
    .card-3 {
        bottom: 5%;
        right: -15px;
    }
    
    .floating-card {
        padding: 10px 15px;
        gap: 8px;
    }
    
    .floating-card i {
        font-size: 20px;
    }
    
    .floating-card strong {
        font-size: 14px;
    }
    
    .floating-card span {
        font-size: 11px;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 13px;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gray-light);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* ==========================================
   CONTINUED - REMAINING SECTIONS
   ========================================== */

/* ===== TRUST LOGOS SECTION ===== */
.trust-logos {
    padding: 60px 0;
    background: var(--light-bg);
}

.trust-heading {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.logos-marquee {
    overflow: hidden;
    position: relative;
}

.logos-track {
    display: flex;
    gap: 50px;
    animation: marquee 30s linear infinite;
}

.logo-item {
    flex-shrink: 0;
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-normal);
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.section-label.light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 15px;
}

.section-title.light {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--section-padding);
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 35px 0;
}

.value-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.value-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 24px;
}

.value-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark);
}

.value-content p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    display: block;
    font-size: 14px;
    color: var(--gray);
    font-weight: 600;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: var(--section-padding);
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    top: -200px;
    right: -200px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    bottom: -150px;
    left: -150px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-content {
    padding: 30px;
}

.product-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 28px;
    margin-bottom: 20px;
}

.product-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark);
}

.product-content > p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-dark);
}

.product-features li i {
    color: var(--accent-color);
    font-size: 12px;
}

.products-cta {
    text-align: center;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: var(--section-padding);
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    background: var(--white);
    border: 2px solid var(--light-bg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
}

.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 36px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    opacity: 0.9;
}

.service-icon i {
    position: relative;
    z-index: 1;
}

.gradient-blue { background: var(--gradient-blue); }
.gradient-green { background: var(--gradient-green); }
.gradient-orange { background: var(--gradient-orange); }
.gradient-purple { background: var(--gradient-purple); }
.gradient-pink { background: var(--gradient-pink); }
.gradient-cyan { background: var(--gradient-cyan); }

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.reason-item {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.reason-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.reason-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    border-radius: var(--radius-md);
}

.reason-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
}

.reason-content p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.achievement-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.achievement-card {
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.achievement-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.achievement-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
}

.achievement-card p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--white);
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.stars {
    color: #FFB800;
    font-size: 20px;
    letter-spacing: 2px;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card-modern {
    flex: 0 0 calc(33.333% - 20px);
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--light-bg);
    transition: var(--transition-normal);
}

.testimonial-card-modern:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--light-bg);
}

.testimonial-author-info h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--dark);
}

.testimonial-author-info p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 8px;
}

.testimonial-stars {
    color: #FFB800;
    font-size: 14px;
}

.testimonial-quote-icon {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 40px;
    color: var(--light-bg);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--light-bg);
}

.testimonial-date {
    font-size: 13px;
    color: var(--gray);
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--accent-color);
    font-weight: 600;
}

.verified-badge i {
    font-size: 16px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--light-bg);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    background: var(--light-bg);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dots .dot.active,
.slider-dots .dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 50%;
    font-size: 12px;
    transition: var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

.faq-cta p {
    font-size: 18px;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

/* ===== FINAL CTA SECTION ===== */
.cta-section-final {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px);
}

.cta-content-final {
    text-align: center;
    color: var(--white);
}

.cta-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-final {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-glass-white {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-glass-white:hover {
    background: rgba(255, 255, 255, 0.25);
}

.cta-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.cta-benefit i {
    color: var(--accent-color);
    font-size: 18px;
}

.cta-trust-signals {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-signal {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.trust-signal i {
    font-size: 24px;
    opacity: 0.8;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 45px;
    width: auto;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 10px;
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
}

.footer-contact i {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
}

.footer-contact strong {
    display: block;
    color: var(--white);
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-contact p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--white);
}

/* Newsletter */
.footer-newsletter {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.05);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 5px;
}

.newsletter-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    padding: 10px 15px;
    border-radius: var(--radius-md);
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    z-index: 998;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-content p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin: 0;
}

.cookie-content i {
    font-size: 24px;
    color: var(--accent-color);
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-link {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 0;
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
}

.btn-link:hover {
    color: var(--white);
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }

.hidden { display: none; }
.visible { display: block; }

/* Lazy Loading */
.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}



/* ==========================================
   ADDITIONAL STYLES FOR NEW PAGES
   ========================================== */

/* ===== PAGE HEADER ===== */
.page-header {
    position: relative;
    padding: 150px 0 80px;
    background: var(--dark);
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb .current {
    color: var(--white);
    font-weight: 600;
}

/* ===== COMPANY INTRO SECTION ===== */
.company-intro-section {
    padding: var(--section-padding);
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.intro-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.highlight-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 24px;
}

.highlight-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark);
}

.highlight-content p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.intro-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-bottom: 20px;
}

.intro-image-wrapper img {
    width: 100%;
    height: auto;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.badge-circle {
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-bottom: 10px;
}

.badge-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.badge-text {
    font-size: 14px;
    color: var(--white);
}

.experience-badge p {
    font-size: 13px;
    color: var(--gray-dark);
    font-weight: 600;
    margin: 0;
}

.intro-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.intro-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* ===== VMV SECTION ===== */
.vmv-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.vmv-card {
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-color);
}

.vmv-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-size: 32px;
    margin-bottom: 25px;
}

.vmv-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}

.vmv-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.values-list .value-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
}

.values-list .value-item i {
    flex-shrink: 0;
    font-size: 24px;
    color: var(--primary-color);
}

.values-list strong {
    display: block;
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 5px;
}

.values-list p {
    font-size: 14px;
    margin: 0;
}

/* ===== LEADERSHIP SECTION ===== */
.leadership-section {
    padding: var(--section-padding);
    background: var(--white);
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.leader-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.leader-card.featured {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-color);
}

.leader-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.leader-social {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: var(--transition-normal);
}

.leader-image:hover .leader-social {
    opacity: 1;
}

.leader-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 16px;
}

.leader-info h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--dark);
}

.leader-position {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.leader-bio {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 20px;
}

.leader-contact .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-dark);
    font-size: 14px;
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary-color);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    gap: 30px;
    margin-bottom: 50px;
    align-items: center;
}

.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even) .timeline-content {
    direction: ltr;
    text-align: right;
}

.timeline-year {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 0 0 10px var(--light-bg);
    position: relative;
    z-index: 1;
}

.timeline-content {
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.timeline-content p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* ===== STATS COUNTER SECTION ===== */
.stats-counter-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.95;
}

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-box .stat-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-size: 32px;
    color: var(--white);
}

.stat-box .stat-content h3 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-box .stat-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */

.contact-info-section {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-info-card {
    padding: 35px;
    background: var(--white);
    border: 2px solid var(--light-bg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-size: 36px;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-info-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 20px;
}

.contact-info-card p a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--light-bg);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.contact-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Contact Form Section */
.contact-form-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--dark);
}

.form-header p {
    font-size: 15px;
    color: var(--gray);
}

/* Form Styles */
.contact-form,
.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: var(--primary-color);
    font-size: 16px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 18px;
    border: 2px solid var(--light-bg);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--dark);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff4444;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--gray);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray);
    margin-top: 15px;
}

.form-note i {
    color: var(--accent-color);
}

/* Map Wrapper */
.contact-map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-header h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--dark);
}

.map-header p {
    font-size: 14px;
    color: var(--gray);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.map-info-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.map-info-item i {
    flex-shrink: 0;
    width: 24px;
    font-size: 20px;
    color: var(--primary-color);
}

.map-info-item strong {
    display: block;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 4px;
}

.map-info-item p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

/* Quick Contact CTA */
.quick-contact-cta {
    padding: 60px 0;
    background: var(--gradient-primary);
}

.quick-contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.quick-contact-text {
    color: var(--white);
}

.quick-contact-text h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 8px;
}

.quick-contact-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.quick-contact-buttons {
    display: flex;
    gap: 15px;
}

/* ==========================================
   QUOTE REQUEST PAGE STYLES
   ========================================== */

.quote-form-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.quote-intro {
    text-align: center;
    margin-bottom: 50px;
}

.quote-intro-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.quote-intro-text p {
    font-size: 16px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 30px;
}

.quote-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.benefit-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-dark);
}

.benefit-badge i {
    color: var(--accent-color);
    font-size: 18px;
}

.quote-form-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.quote-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-section {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 2px solid var(--light-bg);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 25px;
    padding-bottom: 0;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 25px;
}

.form-section-title i {
    font-size: 24px;
    color: var(--primary-color);
}

.form-actions {
    text-align: center;
}

/* Quote Sidebar */
.quote-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.sidebar-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-size: 32px;
}

.sidebar-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.sidebar-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 20px;
}

.sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    color: var(--gray-dark);
    font-size: 14px;
}



/* New Code */

/* Competitive Advantages - Single Line Fix */
.advantage-card {
    position: relative;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Changed from center */
}

.advantage-card > * {
    width: 100%;
}

/* Single line header container */
.advantage-card > .advantage-number,
.advantage-card > .advantage-icon,
.advantage-card > h3 {
    display: inline-flex;
    align-items: center;
    width: auto;
}

/* Create a header row */
.advantage-card::before {
    content: '';
    display: block;
    width: 100%;
    height: 0;
}

/* Better approach - wrap them in the HTML or use this CSS hack */
.advantage-number {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.1);
    line-height: 1;
    margin: 0;
}

.advantage-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 30px; /* Space for number */
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 15px 0;
    line-height: 1.3;
    white-space: nowrap; /* Prevent wrapping */
    overflow: hidden;
    text-overflow: ellipsis;
}

.advantage-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

/* Responsive */
@media (max-width: 768px) {
    .advantage-card h3 {
        white-space: normal; /* Allow wrapping on mobile */
        font-size: 18px;
    }
}




/* Timeline - Journey Section Fix */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent, 
        var(--primary-color), 
        transparent
    );
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-year {
    grid-column: 1;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 3;
}

.timeline-item:nth-child(even) .timeline-year {
    grid-column: 3;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
}

.timeline-year {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    min-width: 100px;
}

.timeline-content {
    background: var(--white);
    padding: 25px 35px; /* Reduced vertical padding */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    min-height: auto; /* Remove min-height */
    max-width: 450px; /* Control width */
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -40px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -40px;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.timeline-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

/* Center dot */
.timeline-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.1);
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: 20px;
        padding-left: 0;
    }
    
    .timeline-year {
        grid-column: 1 !important;
        grid-row: 1;
        text-align: left !important;
        font-size: 24px;
        padding-left: 60px;
    }
    
    .timeline-content {
        grid-column: 1 / -1 !important;
        grid-row: 2;
        margin-left: 60px;
        max-width: 100%;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-item::after {
        left: 30px;
        top: 30px;
    }
}




/* New code for products, gallery and Service pages */
	/* ==========================================
   PRODUCTS PAGE STYLES
   ========================================== */

/* ===== PAGE HERO (PRODUCTS) ===== */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    background: var(--dark);
    overflow: hidden;
}

.page-hero.products-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.page-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-hero .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 102, 204, 0.1) 0%, 
        rgba(0, 200, 150, 0.1) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.page-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.page-hero .breadcrumb a:hover {
    color: var(--white);
}

.page-hero .breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
}

.page-hero .breadcrumb .current {
    color: var(--white);
    font-weight: 600;
}

.page-hero .page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero .page-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* ===== PRODUCT FILTER SECTION ===== */
.product-filter-section {
    padding: 40px 0;
    background: var(--white);
    position: sticky;
    top: 140px;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.filter-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--light-bg);
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--gray-dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.filter-btn:hover {
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    border-color: rgba(0, 102, 204, 0.2);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.filter-btn i {
    font-size: 16px;
}

/* ===== PRODUCT CATEGORY SECTION ===== */
.product-category-section {
    padding: 80px 0;
    background: var(--white);
}

.product-category-section:nth-child(even) {
    background: var(--light-bg);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--light-bg);
}

.category-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 36px;
    box-shadow: var(--shadow-md);
}

.category-info {
    flex: 1;
}

.category-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--dark);
    margin-bottom: 8px;
}

.category-description {
    font-size: 16px;
    color: var(--gray);
    margin: 0;
}

/* ===== PRODUCTS SHOWCASE GRID ===== */
.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

/* ===== PRODUCT ITEM CARD ===== */
.product-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: scale(1);
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

/* Product Image Wrapper */
.product-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--light-bg);
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-item:hover .product-image-wrapper img {
    transform: scale(1.1);
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.product-badge.popular {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: var(--white);
}

.product-badge.new {
    background: linear-gradient(135deg, #00C896 0%, #00B383 100%);
    color: var(--white);
}

.product-badge.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

/* Quick View Actions */
.product-quick-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 3;
}

.product-item:hover .product-quick-actions {
    opacity: 1;
    visibility: visible;
}

.quick-view-btn {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-fast);
}

.quick-view-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* Product Info Section */
.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 18px;
    line-height: 1.5;
}

/* Product Specifications */
.product-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding: 18px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
}

.product-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-dark);
    line-height: 1.4;
}

.product-specs li i {
    flex-shrink: 0;
    font-size: 12px;
    color: var(--accent-color);
}

/* Product Footer */
.product-footer {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid var(--light-bg);
}

.product-footer .btn {
    flex: 1;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== ACCESSORIES GRID ===== */
.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.accessory-card {
    padding: 35px 25px;
    background: var(--white);
    border: 2px solid var(--light-bg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.accessory-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.accessory-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-size: 32px;
}

.accessory-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.accessory-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===== PRODUCTS CTA SECTION ===== */
.products-cta-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0066CC 0%, #00C896 100%);
    overflow: hidden;
}

.products-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, 
            transparent, 
            transparent 35px, 
            rgba(255,255,255,.05) 35px, 
            rgba(255,255,255,.05) 70px);
}

.cta-box {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media (max-width: 992px) {
    .product-filter-section {
        top: 120px;
        padding: 30px 0;
    }
    
    .filter-controls {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .products-showcase {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .category-header {
        gap: 20px;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .page-hero {
        padding: 140px 0 60px;
    }
    
    .product-filter-section {
        position: relative;
        top: 0;
        padding: 25px 0;
    }
    
    .filter-controls {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .filter-btn i {
        font-size: 14px;
    }
    
    .product-category-section {
        padding: 50px 0;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 35px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .products-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-image-wrapper {
        height: 240px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-footer {
        flex-direction: column;
    }
    
    .product-footer .btn {
        width: 100%;
    }
    
    .accessories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-cta-section {
        padding: 60px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .page-hero {
        padding: 120px 0 50px;
    }
    
    .filter-btn span {
        display: none;
    }
    
    .filter-btn.active span {
        display: inline;
    }
    
    .product-specs {
        padding: 15px;
        gap: 8px;
    }
    
    .product-specs li {
        font-size: 12px;
    }
}

/* ===== ANIMATION ENHANCEMENTS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-item {
    animation: fadeInUp 0.6s ease-out;
}

.product-item:nth-child(1) { animation-delay: 0.1s; }
.product-item:nth-child(2) { animation-delay: 0.2s; }
.product-item:nth-child(3) { animation-delay: 0.3s; }
.product-item:nth-child(4) { animation-delay: 0.4s; }
.product-item:nth-child(5) { animation-delay: 0.5s; }
.product-item:nth-child(6) { animation-delay: 0.6s; }

/* Filter Animation */
.product-item {
    transition: all 0.3s ease;
}

.product-item[style*="display: none"] {
    opacity: 0;
    transform: scale(0.9);
}

/* ===== PRINT STYLES ===== */
@media print {
    .product-filter-section,
    .product-quick-actions,
    .products-cta-section,
    .whatsapp-float,
    .scroll-top {
        display: none !important;
    }
    
    .product-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}



/* ===== PRODUCT HOVER EFFECTS (ADVANCED) ===== */
.product-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
}

.product-item:hover .product-image-wrapper::before {
    opacity: 1;
}

/* ===== PRODUCT LOADING STATE ===== */
.product-item.loading {
    pointer-events: none;
    opacity: 0.6;
}

.product-item.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 4px solid var(--light-bg);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== STICKY CATEGORY HEADERS ===== */
.category-header.sticky {
    position: sticky;
    top: 200px;
    background: var(--white);
    z-index: 50;
    padding: 20px 0;
    margin: 0 -20px 30px;
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ===== PRODUCT COMPARISON CHECKBOX ===== */
.product-compare {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.product-compare input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* ===== NO RESULTS STATE ===== */
.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results i {
    font-size: 64px;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 24px;
    color: var(--gray-dark);
    margin-bottom: 10px;
}

.no-results p {
    font-size: 16px;
    color: var(--gray);
}



/* ==========================================
   SERVICES PAGE STYLES
   ========================================== */

/* ===== SERVICES HERO ===== */
.page-hero.services-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

/* ===== SERVICES OVERVIEW SECTION ===== */
.services-overview-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

/* Services Main Grid */
.services-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 35px;
}

/* ===== SERVICE DETAIL CARD ===== */
.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

/* Service Card Header */
.service-card-header {
    padding: 35px 30px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.service-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: var(--transition-slow);
}

.service-detail-card:hover .service-card-header::before {
    right: -30%;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    font-size: 40px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-card-header h3 {
    font-size: 24px;
    color: var(--white);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Service Card Body */
.service-card-body {
    padding: 30px;
    flex: 1;
}

.service-intro {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Service Features List */
.service-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.service-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.5;
}

.service-features-list li i {
    flex-shrink: 0;
    font-size: 16px;
    color: var(--accent-color);
    margin-top: 2px;
}

/* Service Highlight */
.service-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(0, 200, 150, 0.1);
    border-left: 4px solid var(--accent-color);
    border-radius: var(--radius-sm);
    margin-top: 20px;
}

.service-highlight i {
    flex-shrink: 0;
    font-size: 20px;
    color: var(--accent-color);
}

.service-highlight span {
    font-size: 13px;
    color: var(--gray-dark);
    font-weight: 600;
    line-height: 1.4;
}

/* Service Card Footer */
.service-card-footer {
    padding: 0 30px 30px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===== SERVICE PROCESS SECTION ===== */
.service-process-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, 
        var(--primary-color) 0%,
        var(--accent-color) 100%
    );
}

.process-timeline .timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.process-timeline .timeline-item:last-child {
    margin-bottom: 0;
}

/* Alternating Layout */
.process-timeline .timeline-item:nth-child(odd) .timeline-number {
    grid-column: 1;
    text-align: right;
}

.process-timeline .timeline-item:nth-child(odd) .timeline-content {
    grid-column: 3;
}

.process-timeline .timeline-item:nth-child(even) .timeline-number {
    grid-column: 3;
    text-align: left;
}

.process-timeline .timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    text-align: right;
}

/* Timeline Number */
.timeline-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    line-height: 1;
}

/* Timeline Content */
.process-timeline .timeline-content {
    background: var(--white);
    padding: 25px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all var(--transition-normal);
}

.process-timeline .timeline-content:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.process-timeline .timeline-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.process-timeline .timeline-content p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

/* Center Dots */
.process-timeline .timeline-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--white);
    border: 5px solid var(--primary-color);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 0 8px rgba(0, 102, 204, 0.1);
}

/* ===== WHY SERVICES SECTION ===== */
.why-services-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.why-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-service-card {
    padding: 35px 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.why-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 102, 204, 0.2);
}

.why-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 36px;
}

.why-service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark);
}

.why-service-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* ===== SERVICE PACKAGES SECTION ===== */
.service-packages-section {
    padding: var(--section-padding);
    background: var(--white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 40px;
}

/* Package Card */
.package-card {
    background: var(--white);
    border: 3px solid var(--light-bg);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

/* Featured Package */
.package-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

/* Package Badge */
.package-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 45px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: var(--shadow-md);
}

/* Package Header */
.package-header {
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--light-bg);
}

.package-header h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--dark);
}

.package-subtitle {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* Package Features */
.package-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--gray-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    flex-shrink: 0;
    font-size: 16px;
}

.package-features li i.fa-check {
    color: var(--accent-color);
}

.package-features li i.fa-times {
    color: var(--gray-light);
}

/* Package Note */
.package-note {
    text-align: center;
    padding: 20px;
    background: rgba(0, 102, 204, 0.05);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.package-note p {
    font-size: 14px;
    color: var(--gray-dark);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.package-note i {
    color: var(--primary-color);
    font-size: 18px;
}

/* ===== SERVICES CTA SECTION ===== */
.services-cta-section {
    position: relative;
    padding: 100px 0;
    background: var(--gradient-primary);
    overflow: hidden;
}

.services-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg,
            transparent,
            transparent 35px,
            rgba(255,255,255,.05) 35px,
            rgba(255,255,255,.05) 70px);
}

.services-cta-section .cta-box {
    position: relative;
    z-index: 1;
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 35px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

.cta-contact-info .contact-item i {
    font-size: 20px;
    opacity: 0.8;
}

/* ==========================================
   GALLERY PAGE STYLES
   ========================================== */

/* ===== GALLERY HERO ===== */
.page-hero.gallery-hero {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

/* ===== GALLERY FILTER SECTION ===== */
.gallery-filter-section {
    padding: 40px 0;
    background: var(--white);
    position: sticky;
    top: 140px;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ===== GALLERY GRID SECTION ===== */
.gallery-grid-section {
    padding: 60px 0;
    background: var(--light-bg);
}

/* Gallery Grid - Masonry Style */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

/* ===== GALLERY ITEM ===== */
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    background: var(--white);
    opacity: 1;
    transform: scale(1);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.gallery-item a {
    display: block;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    margin-bottom: 15px;
}

.gallery-info h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 5px;
    line-height: 1.3;
}

.gallery-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.gallery-overlay > i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    font-size: 48px;
    color: var(--white);
    opacity: 0;
    transition: all var(--transition-normal);
}

.gallery-item:hover .gallery-overlay > i {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    min-width: 250px;
}

/* ===== VIDEO GALLERY SECTION ===== */
.video-gallery-section {
    padding: var(--section-padding);
    background: var(--white);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

/* Video Item */
.video-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

/* Video Thumbnail */
.video-thumbnail {
    position: relative;
    height: 240px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: background var(--transition-normal);
}

.video-item:hover .video-thumbnail::before {
    background: rgba(0, 0, 0, 0.5);
}

/* Play Button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 28px;
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 2;
}

.play-btn i {
    margin-left: 4px;
}

.video-item:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.video-item h3 {
    padding: 20px 25px 10px;
    font-size: 18px;
    color: var(--dark);
    margin: 0;
}

.video-item p {
    padding: 0 25px 25px;
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* ===== VIDEO MODAL ===== */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    padding: 20px;
    overflow: auto;
}

.video-modal-content {
    position: relative;
    max-width: 1200px;
    margin: 50px auto;
    animation: modalZoomIn 0.3s ease;
}

@keyframes modalZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.video-close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    transition: var(--transition-fast);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-close-btn:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: var(--radius-lg);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== GALLERY STATS SECTION ===== */
.gallery-stats-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.gallery-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg,
            transparent,
            transparent 35px,
            rgba(255,255,255,.05) 35px,
            rgba(255,255,255,.05) 70px);
}

.gallery-stats-section .stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.gallery-stats-section .stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.gallery-stats-section .stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.gallery-stats-section .stat-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    font-size: 32px;
    color: var(--white);
}

.gallery-stats-section .stat-content h3 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 5px;
    font-weight: 800;
    line-height: 1;
}

.gallery-stats-section .stat-content h3::after {
    content: '+';
    font-size: 36px;
    opacity: 0.8;
    margin-left: 4px;
}

.gallery-stats-section .stat-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

/* ===== GALLERY CTA SECTION ===== */
.gallery-cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    overflow: hidden;
}

.gallery-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg,
            transparent,
            transparent 35px,
            rgba(255,255,255,.03) 35px,
            rgba(255,255,255,.03) 70px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media (max-width: 992px) {
    /* Services */
    .services-main-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
    
    .process-timeline .timeline-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-timeline .timeline-item:nth-child(odd) .timeline-number,
    .process-timeline .timeline-item:nth-child(even) .timeline-number {
        grid-column: 1;
        grid-row: 1;
        text-align: left;
        padding-left: 70px;
    }
    
    .process-timeline .timeline-item:nth-child(odd) .timeline-content,
    .process-timeline .timeline-item:nth-child(even) .timeline-content {
        grid-column: 1;
        grid-row: 2;
        text-align: left;
        margin-left: 70px;
    }
    
    .process-timeline .timeline-item::after {
        left: 30px;
        top: 15px;
        transform: translateX(0);
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Services */
    .services-main-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card-header {
        padding: 30px 25px;
    }
    
    .service-icon-large {
        width: 70px;
        height: 70px;
        font-size: 36px;
    }
    
    .service-card-body,
    .service-card-footer {
        padding: 25px;
    }
    
    .why-services-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .cta-contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Gallery */
    .gallery-filter-section {
        position: relative;
        top: 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 240px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-stats-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-modal-content {
        margin: 20px auto;
    }
    
    .video-close-btn {
        top: -35px;
        font-size: 32px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .service-card-header h3 {
        font-size: 20px;
    }
    
    .service-features-list li {
        font-size: 13px;
    }
    
    .timeline-number {
        font-size: 36px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-overlay {
        padding: 20px;
    }
    
    .gallery-info h3 {
        font-size: 16px;
    }
    
    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* ===== LIGHTBOX CUSTOMIZATION ===== */
.lb-data .lb-caption {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: var(--white) !important;
}

.lb-data .lb-number {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 1 !important;
    transition: all 0.3s ease !important;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
    transform: scale(1.1);
}

/* ===== PRINT STYLES ===== */
@media print {
    .gallery-filter-section,
    .video-gallery-section,
    .gallery-stats-section,
    .gallery-cta-section,
    .services-cta-section,
    .whatsapp-float,
    .scroll-top {
        display: none !important;
    }
    
    .gallery-item,
    .service-detail-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* ===== ANIMATION ENHANCEMENTS ===== */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-item {
    animation: fadeInScale 0.5s ease-out;
}

.gallery-item:nth-child(1) { animation-delay: 0.05s; }
.gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-item:nth-child(3) { animation-delay: 0.15s; }
.gallery-item:nth-child(4) { animation-delay: 0.2s; }
.gallery-item:nth-child(5) { animation-delay: 0.25s; }
.gallery-item:nth-child(6) { animation-delay: 0.3s; }

/* Filter Transition */
.gallery-item[style*="display: none"] {
    opacity: 0;
    transform: scale(0.8);
}



/* ===== ADVANCED GALLERY FEATURES ===== */

/* Isotope/Masonry Layout Enhancement */
.gallery-grid.masonry {
    display: block;
    column-count: 3;
    column-gap: 25px;
}

.gallery-grid.masonry .gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 25px;
}

@media (max-width: 992px) {
    .gallery-grid.masonry {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .gallery-grid.masonry {
        column-count: 1;
    }
}

/* Lazy Loading Skeleton */
.gallery-item.loading {
    background: linear-gradient(
        90deg,
        var(--light-bg) 25%,
        #f0f0f0 50%,
        var(--light-bg) 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Image Zoom Effect on Lightbox */
.lb-image {
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Service Package Comparison Highlight */
.package-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    z-index: -1;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ==========================================
   LEGAL PAGES STYLES
   (Privacy Policy, Terms & Conditions, Sitemap)
   ========================================== */

/* ===== LEGAL PAGE HERO ===== */
.page-hero.legal-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 160px 0 100px;
}

.page-hero.sitemap-hero {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.legal-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.legal-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.legal-meta i {
    font-size: 16px;
}

/* ===== LEGAL NAVIGATION SECTION ===== */
.legal-nav-section {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 2px solid var(--light-bg);
    position: sticky;
    top: 140px;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.legal-quick-nav {
    text-align: center;
}

.legal-quick-nav h3 {
    font-size: 18px;
    color: var(--gray-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.legal-quick-nav h3 i {
    color: var(--primary-color);
}

.legal-quick-nav .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.legal-quick-nav .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--light-bg);
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--gray-dark);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.legal-quick-nav .nav-link:hover,
.legal-quick-nav .nav-link.active {
    background: rgba(0, 102, 204, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ===== LEGAL CONTENT SECTION ===== */
.legal-content-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: start;
}

/* ===== LEGAL SIDEBAR ===== */
.legal-sidebar {
    position: sticky;
    top: 240px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.sidebar-card:hover {
    border-color: rgba(0, 102, 204, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.sidebar-card.highlight {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-color: var(--primary-color);
}

.sidebar-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 28px;
    margin-bottom: 20px;
}

.sidebar-card h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 12px;
}

.sidebar-card h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.sidebar-card p:last-child {
    margin-bottom: 0;
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 12px;
}

.sidebar-links li:last-child {
    margin-bottom: 0;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    color: var(--gray-dark);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.sidebar-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.sidebar-links a i {
    font-size: 12px;
}

/* ===== LEGAL MAIN CONTENT ===== */
.legal-main-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 50px;
}

/* Legal Sections */
.legal-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--light-bg);
    position: relative;
}

.legal-section:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-section.intro-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(0, 102, 204, 0.2);
}

/* Section Numbers */
.section-number {
    position: absolute;
    top: -10px;
    left: -20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.legal-section h2 {
    font-size: clamp(24px, 3vw, 32px);
    color: var(--dark);
    margin-bottom: 20px;
    margin-top: 10px;
}

.legal-section h3 {
    font-size: 20px;
    color: var(--gray-dark);
    margin: 30px 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-section h3 i {
    color: var(--primary-color);
    font-size: 22px;
}

.legal-section h4 {
    font-size: 18px;
    color: var(--dark);
    margin: 25px 0 12px;
}

.legal-section p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section p.lead {
    font-size: 18px;
    color: var(--gray-dark);
    font-weight: 500;
    line-height: 1.7;
}

/* Styled Lists */
.styled-list {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.styled-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.7;
}

.styled-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Ordered lists */
.legal-section ol.styled-list {
    counter-reset: item;
}

.legal-section ol.styled-list li::before {
    content: counter(item);
    counter-increment: item;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 2px;
}

/* ===== INFO BOXES ===== */
.info-box,
.warning-box,
.action-box {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: var(--radius-md);
    margin: 25px 0;
    border-left: 4px solid;
}

.info-box {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.info-box i {
    flex-shrink: 0;
    font-size: 24px;
    color: #3b82f6;
}

.warning-box {
    background: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
}

.warning-box i {
    flex-shrink: 0;
    font-size: 24px;
    color: #f59e0b;
}

.action-box {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
}

.action-box i {
    flex-shrink: 0;
    font-size: 24px;
    color: #10b981;
}

.info-box div,
.warning-box div,
.action-box div {
    flex: 1;
}

.info-box strong,
.warning-box strong,
.action-box strong {
    display: block;
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 5px;
}

.info-box p,
.warning-box p,
.action-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== USAGE GRID ===== */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.usage-card {
    padding: 25px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.usage-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.usage-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.usage-card h4 {
    font-size: 16px;
    color: var(--dark);
    margin: 0 0 10px;
}

.usage-card p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

/* ===== DISCLOSURE ITEMS ===== */
.disclosure-item {
    padding: 25px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.disclosure-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: var(--dark);
    margin: 0 0 12px;
}

.disclosure-item h4 i {
    color: var(--primary-color);
    font-size: 20px;
}

.disclosure-item p {
    margin-bottom: 12px;
}

.disclosure-item p:last-child {
    margin-bottom: 0;
}

/* ===== SECURITY MEASURES ===== */
.security-measures {
    margin: 30px 0;
}

.security-measures h3 {
    margin-bottom: 25px;
}

.measures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.measure-item {
    padding: 25px;
    background: var(--white);
    border: 2px solid var(--light-bg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.measure-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.measure-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.measure-item h4 {
    font-size: 16px;
    color: var(--dark);
    margin: 0 0 10px;
}

.measure-item p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

/* ===== RIGHTS LIST ===== */
.rights-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.right-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    border-left: 4px solid transparent;
}

.right-item:hover {
    background: var(--white);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.right-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 24px;
}

.right-content h4 {
    font-size: 16px;
    color: var(--dark);
    margin: 0 0 8px;
}

.right-content p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* ===== COOKIES TYPES ===== */
.cookies-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.cookie-type {
    padding: 25px;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.cookie-type:hover {
    border-color: var(--primary-color);
    background: var(--white);
    transform: translateY(-5px);
}

.cookie-type h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--dark);
    margin: 0 0 12px;
}

.cookie-type h4 i {
    color: var(--primary-color);
}

.cookie-type p {
    font-size: 14px;
    margin-bottom: 0;
}

.cookie-controls {
    text-align: center;
    margin: 30px 0;
}

/* ===== CONTACT DETAILS BOX ===== */
.contact-details-box {
    padding: 35px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(0, 102, 204, 0.2);
    margin: 30px 0;
}

.company-info h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 102, 204, 0.2);
}

.info-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row i {
    flex-shrink: 0;
    width: 24px;
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 2px;
}

.info-row strong {
    display: block;
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 5px;
}

.info-row p,
.info-row div {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.6;
}

.response-time {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid rgba(0, 102, 204, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
}

.response-time i {
    font-size: 24px;
    color: var(--primary-color);
}

.response-time p {
    margin: 0;
    font-size: 14px;
}

.contact-list {
    list-style: none;
    margin: 15px 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--gray-dark);
}

.contact-list i {
    color: var(--primary-color);
    width: 20px;
}

.note {
    font-size: 13px;
    color: var(--gray);
    font-style: italic;
    margin-top: 15px;
}

/* ===== PROHIBITED GRID ===== */
.prohibited-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.prohibited-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(239, 68, 68, 0.05);
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-md);
    text-align: center;
}

.prohibited-item i {
    font-size: 32px;
    color: #ef4444;
}

.prohibited-item p {
    font-size: 13px;
    color: var(--gray-dark);
    margin: 0;
    line-height: 1.4;
}

/* ===== PRICING TERMS ===== */
.pricing-terms {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.term-item {
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.term-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--dark);
    margin: 0 0 10px;
}

.term-item h4 i {
    color: var(--primary-color);
}

.term-item p {
    font-size: 14px;
    margin: 0;
}

/* ===== PAYMENT SCHEDULE ===== */
.payment-schedule {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.schedule-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.schedule-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.schedule-step {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
}

.schedule-content h4 {
    font-size: 16px;
    color: var(--dark);
    margin: 0 0 8px;
}

.schedule-content p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* ===== WARRANTY CARDS ===== */
.warranty-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.warranty-card {
    padding: 30px;
    background: var(--white);
    border: 2px solid var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.warranty-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.warranty-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 28px;
    margin-bottom: 20px;
}

.warranty-card h4 {
    font-size: 18px;
    color: var(--dark);
    margin: 0 0 15px;
}

.warranty-card p {
    font-size: 14px;
    margin-bottom: 15px;
}

.warranty-card ul {
    list-style: none;
    padding: 0;
}

.warranty-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--gray-dark);
}

.warranty-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* ===== LIABILITY ITEMS ===== */
.liability-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.liability-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(239, 68, 68, 0.05);
    border: 2px solid rgba(239, 68, 68, 0.15);
    border-radius: var(--radius-md);
}

.liability-item i {
    flex-shrink: 0;
    font-size: 28px;
    color: #ef4444;
    margin-top: 5px;
}

.liability-item h4 {
    font-size: 16px;
    color: var(--dark);
    margin: 0 0 8px;
}

.liability-item p {
    font-size: 14px;
    margin: 0;
}

/* ===== DISPUTE RESOLUTION PROCESS ===== */
.dispute-process {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    padding: 30px;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
}

.dispute-step {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%;
    max-width: 600px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
}

.step-content h4 {
    font-size: 18px;
    color: var(--dark);
    margin: 0 0 8px;
}

.step-content p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.arrow-down {
    font-size: 24px;
    color: var(--primary-color);
}

/* ===== LEGAL DISCLAIMER ===== */
.legal-disclaimer {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-md);
    margin: 40px 0;
}

.legal-disclaimer i {
    flex-shrink: 0;
    font-size: 32px;
    color: #f59e0b;
}

.legal-disclaimer div {
    flex: 1;
}

.legal-disclaimer strong {
    display: block;
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 8px;
}

.legal-disclaimer p {
    margin: 0;
    font-size: 14px;
    color: var(--gray-dark);
}

/* ===== LEGAL ACCEPTANCE ===== */
.legal-acceptance {
    margin: 40px 0;
}

.acceptance-box {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border: 2px solid #10b981;
    border-radius: var(--radius-lg);
}

.acceptance-box i {
    flex-shrink: 0;
    font-size: 40px;
    color: #10b981;
}

.acceptance-box h3 {
    font-size: 20px;
    color: var(--dark);
    margin: 0 0 10px;
}

.acceptance-box p {
    font-size: 15px;
    color: var(--gray-dark);
    margin: 0;
    line-height: 1.6;
}

/* ===== LEGAL ACTIONS ===== */
.legal-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    padding-top: 40px;
    border-top: 2px solid var(--light-bg);
    flex-wrap: wrap;
}

/* ==========================================
   SITEMAP SPECIFIC STYLES
   ========================================== */

/* ===== SITEMAP SEARCH ===== */
.sitemap-search-section {
    padding: 50px 0;
    background: var(--white);
}

.search-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.search-input-wrapper i {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--gray);
}

.search-input-wrapper input {
    width: 100%;
    padding: 18px 25px 18px 60px;
    border: 3px solid var(--light-bg);
    border-radius: 50px;
    font-size: 16px;
    color: var(--dark);
    transition: all var(--transition-normal);
    background: var(--light-bg);
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 5px rgba(0, 102, 204, 0.1);
}

.search-helper {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* ===== SITEMAP CONTENT ===== */
.sitemap-content-section {
    padding: 60px 0 80px;
    background: var(--light-bg);
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

/* Sitemap Category */
.sitemap-category {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.sitemap-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.sitemap-category .category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--light-bg);
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.sitemap-category .category-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 28px;
}

.sitemap-category .category-header h2 {
    font-size: 22px;
    color: var(--dark);
    margin: 0;
}

/* Sitemap Links */
.sitemap-links {
    list-style: none;
    padding: 20px;
}

.sitemap-links li {
    margin-bottom: 5px;
}

.sitemap-links li:last-child {
    margin-bottom: 0;
}

.sitemap-links a {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.sitemap-links a:hover {
    background: var(--light-bg);
    border-color: rgba(0, 102, 204, 0.2);
    transform: translateX(5px);
}

.sitemap-links a i {
    flex-shrink: 0;
    font-size: 12px;
    color: var(--primary-color);
    margin-top: 5px;
}

.sitemap-links a span {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-dark);
    display: block;
}

.sitemap-links a small {
    display: block;
    font-size: 13px;
    color: var(--gray);
    margin-top: 4px;
    font-weight: 400;
}

/* ===== SOCIAL CONNECT ===== */
.social-connect {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.facebook:hover {
    background: #0d5dbf;
}

.social-btn.linkedin {
    background: #0a66c2;
}

.social-btn.linkedin:hover {
    background: #004182;
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.twitter:hover {
    background: #0c85d0;
}

.social-btn.whatsapp {
    background: #25d366;
}

.social-btn.whatsapp:hover {
    background: #1da851;
}

.social-btn.email {
    background: #ea4335;
}

.social-btn.email:hover {
    background: #d33426;
}

.social-btn.phone {
    background: #34a853;
}

.social-btn.phone:hover {
    background: #2d8e47;
}

/* ===== CONTACT INFO BOX ===== */
.contact-info-box {
    padding: 20px;
}

.contact-info-box .info-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-bg);
}

.contact-info-box .info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-box .info-item i {
    flex-shrink: 0;
    width: 24px;
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 2px;
}

.contact-info-box .info-item strong {
    display: block;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-info-box .info-item p {
    font-size: 13px;
    color: var(--gray-dark);
    line-height: 1.5;
    margin: 0;
}

/* ===== SITEMAP CTA ===== */
.sitemap-cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.sitemap-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg,
            transparent,
            transparent 35px,
            rgba(255,255,255,.05) 35px,
            rgba(255,255,255,.05) 70px);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablets */
@media (max-width: 992px) {
    .legal-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .legal-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .legal-main-content {
        padding: 40px;
    }

    .sitemap-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .social-connect {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .legal-nav-section {
        top: 120px;
        padding: 30px 0;
    }

    .legal-quick-nav .nav-links {
        flex-direction: column;
        align-items: stretch;
    }

    .legal-quick-nav .nav-link {
        justify-content: center;
    }

    .legal-main-content {
        padding: 30px 25px;
    }

    .section-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        left: -10px;
    }

    .legal-section h2 {
        font-size: 24px;
    }

    .legal-section h3 {
        font-size: 18px;
    }

    .usage-grid,
    .measures-grid,
    .cookies-types,
    .warranty-cards {
        grid-template-columns: 1fr;
    }

    .dispute-process {
        padding: 20px;
    }

    .dispute-step {
        flex-direction: column;
        text-align: center;
    }

    .legal-actions {
        flex-direction: column;
    }

    .legal-actions .btn {
        width: 100%;
    }

    .sitemap-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-card {
        padding: 25px;
    }

    .contact-details-box {
        padding: 25px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .legal-meta {
        flex-direction: column;
        gap: 10px;
    }

    .legal-main-content {
        padding: 25px 20px;
    }

    .info-box,
    .warning-box,
    .action-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-disclaimer,
    .acceptance-box {
        flex-direction: column;
        padding: 20px;
    }

    .payment-schedule .schedule-item {
        flex-direction: column;
        text-align: center;
    }

    .sitemap-links a {
        padding: 12px;
    }

    .search-input-wrapper input {
        padding: 15px 20px 15px 50px;
        font-size: 14px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .legal-nav-section,
    .legal-sidebar,
    .legal-actions,
    .sitemap-search-section,
    .sitemap-cta-section,
    .social-connect,
    .whatsapp-float,
    .scroll-top {
        display: none !important;
    }

    .legal-wrapper {
        grid-template-columns: 1fr;
    }

    .legal-main-content {
        box-shadow: none;
        padding: 0;
    }

    .legal-section {
        page-break-inside: avoid;
    }

    .section-number {
        position: static;
        display: inline-flex;
        margin-right: 15px;
    }
}