/* ============================================
   MKC SERVICES - EXACT REPLICA DESIGN SYSTEM
   Theme: Cosmic / Deep Space / High-Tech
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* --- COLOR PALETTE --- */
    --color-bg-deep: #050510;
    /* Darkest Space Black/Blue */
    --color-bg-card: #0f1020;
    /* Slightly lighter for cards */
    --color-bg-nav: rgba(5, 5, 16, 0.85);
    /* Glassmorphism Nav */

    --color-text-white: #ffffff;
    --color-text-muted: #a0a0b0;

    /* --- ACCENTS --- */
    --color-orange: #ff6b00;
    /* Main CTA Button */
    --color-orange-hover: #ff8533;

    --color-gold: #ffd700;
    /* Trust/Stars */
    --color-cyan: #00f2fe;
    /* Tech highlights */
    --color-purple: #bd00ff;
    /* Cosmic gradients */

    /* --- GRADIENTS (Exact matches from reference) --- */
    --grad-hero: linear-gradient(135deg, #1a1c35 0%, #050510 100%);
    --grad-card-1: linear-gradient(135deg, #ff0055 0%, #000066 100%);
    /* Red to Blue fluid */
    --grad-card-2: linear-gradient(135deg, #ffbd00 0%, #3a1c00 100%);
    /* Gold/Brown fluid */
    --grad-card-3: linear-gradient(135deg, #00c6ff 0%, #000044 100%);
    /* Cyan/Blue fluid */
    --grad-card-4: linear-gradient(135deg, #aa00ff 0%, #000044 100%);
    /* Purple/Deep Blue fluid */

    /* --- TYPOGRAPHY --- */
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* --- SPACING & LAYOUT --- */
    --container-max: 1200px;
    --spacing-section: 80px;
    --radius-card: 16px;
    --radius-btn: 50px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg-deep);
    color: var(--color-text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero container needs more width */
.hero .container {
    max-width: 1400px;
    padding: 0 60px;
}

/* ============================================
   PREMIUM HEADER / NAV - 50 Years Experience Quality
   Aurora Borealis + Magnetic Effects + Morphing Button
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg,
            rgba(5, 5, 20, 0.98) 0%,
            rgba(10, 10, 30, 0.95) 50%,
            rgba(5, 5, 20, 0.92) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 12px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Aurora Borealis Animated Border */
.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            #ff6b00 15%,
            #00f2fe 30%,
            #bd00ff 45%,
            #ff6b00 60%,
            #00f2fe 75%,
            #bd00ff 90%,
            transparent 100%);
    background-size: 200% 100%;
    animation: auroraBorder 4s linear infinite;
    opacity: 0.9;
}

/* Glowing Aura Effect */
.header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 107, 0, 0.15) 25%,
            rgba(0, 242, 254, 0.15) 50%,
            rgba(189, 0, 255, 0.15) 75%,
            transparent 100%);
    background-size: 200% 100%;
    animation: auroraBorder 4s linear infinite;
    filter: blur(15px);
    pointer-events: none;
}

@keyframes auroraBorder {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* Floating Particles in Header */
.header .nav-container {
    position: relative;
}

.header .nav-container::before,
.header .nav-container::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #ff6b00 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.6;
    animation: headerParticle 6s ease-in-out infinite;
}

.header .nav-container::before {
    top: 50%;
    left: 15%;
    animation-delay: 0s;
}

.header .nav-container::after {
    top: 30%;
    right: 20%;
    background: radial-gradient(circle, #00f2fe 0%, transparent 70%);
    animation-delay: 3s;
}

@keyframes headerParticle {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-10px) scale(1.5);
        opacity: 0.8;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Premium Logo with 3D Float Effect */
.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-text-white);
    font-family: var(--font-head);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    perspective: 1000px;
}

.logo span {
    color: var(--color-orange);
}

/* Logo Image with Premium Animation */
.logo-img {
    height: 70px;
    max-height: 90px;
    width: auto;
    min-width: 80px;
    margin-left: 20px;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 15px rgba(255, 107, 0, 0.3));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0) rotateY(0deg);
        filter: drop-shadow(0 4px 15px rgba(255, 107, 0, 0.3));
    }

    25% {
        transform: translateY(-3px) rotateY(2deg);
    }

    50% {
        transform: translateY(-5px) rotateY(0deg);
        filter: drop-shadow(0 8px 25px rgba(255, 107, 0, 0.5));
    }

    75% {
        transform: translateY(-3px) rotateY(-2deg);
    }
}

.logo:hover .logo-img {
    transform: scale(1.1) rotateY(10deg);
    filter: drop-shadow(0 10px 30px rgba(255, 107, 0, 0.6)) drop-shadow(0 0 20px rgba(0, 242, 254, 0.3));
    animation: none;
}

/* Premium Navigation Menu */
.nav-menu {
    display: flex;
    gap: 35px;
    position: relative;
}

/* Magnetic Nav Links with Glow Effect */
.nav-link {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 8px 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Magnetic Underline Effect */
.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b00, #00f2fe, #ff6b00);
    background-size: 200% 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Glow Background on Hover */
.nav-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center,
            rgba(255, 107, 0, 0.15) 0%,
            transparent 70%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.nav-link:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    text-shadow:
        0 0 10px rgba(255, 107, 0, 0.5),
        0 0 20px rgba(255, 107, 0, 0.3),
        0 0 30px rgba(255, 107, 0, 0.2);
}

.nav-link:hover::before {
    width: 80%;
    animation: auroraBorder 2s linear infinite;
}

.nav-link:hover::after {
    opacity: 1;
}

/* Active Nav Link State */
.nav-link.active {
    color: var(--color-orange);
}

.nav-link.active::before {
    width: 60%;
    background: var(--color-orange);
}

/* ===== MORPHING LIQUID CTA BUTTON ===== */
.btn-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg,
            #ff6b00 0%,
            #ff8c00 25%,
            #ffad00 50%,
            #ff8c00 75%,
            #ff6b00 100%);
    background-size: 300% 300%;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 200, 100, 0.4);
    box-shadow:
        0 8px 25px rgba(255, 107, 0, 0.35),
        0 0 0 0 rgba(255, 107, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    animation: morphingGradient 6s ease infinite, pulseGlow 2s ease-in-out infinite;
}

@keyframes morphingGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Liquid Blob Effect */
.btn-quote::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%,
            rgba(255, 255, 255, 0.3) 0%,
            transparent 50%);
    animation: liquidBlob 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes liquidBlob {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(10%, 10%) rotate(90deg) scale(1.1);
    }

    50% {
        transform: translate(0, 20%) rotate(180deg) scale(1);
    }

    75% {
        transform: translate(-10%, 10%) rotate(270deg) scale(1.1);
    }
}

/* Shine Sweep Effect */
.btn-quote::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.btn-quote:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 220, 130, 0.7);
    box-shadow:
        0 15px 40px rgba(255, 107, 0, 0.5),
        0 0 30px rgba(255, 140, 0, 0.4),
        0 0 60px rgba(255, 107, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    filter: brightness(1.15) saturate(1.2);
}

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

.btn-quote:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 8px 20px rgba(255, 107, 0, 0.4),
        inset 0 2px 4px rgba(0, 0, 0, 0.15);
}

.btn-quote:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 4px rgba(255, 107, 0, 0.3),
        0 15px 40px rgba(255, 107, 0, 0.5);
}

/* Premium Pulsing Glow Animation */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow:
            0 8px 25px rgba(255, 107, 0, 0.35),
            0 0 0 0 rgba(255, 107, 0, 0.4);
    }

    50% {
        box-shadow:
            0 12px 35px rgba(255, 107, 0, 0.45),
            0 0 20px rgba(255, 140, 0, 0.3);
    }
}

/* Header Scroll Effect */
.header.scrolled {
    padding: 8px 0;
    background: rgba(5, 5, 20, 0.98);
}

.header.scrolled .logo-img {
    height: 55px;
}

.header.scrolled::after {
    height: 30px;
}

/* ============================================
   HERO SECTION (Image Background Version)
   ============================================ */
.hero {
    position: relative;
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000;
    overflow: visible;
    padding-top: 130px;
    padding-bottom: 100px;
}

/* New Image Background Hero */
.hero.hero-image-bg {
    background: url('../assets/hero_bg_tech.png') no-repeat center center;
    background-size: cover;
}

.hero.hero-image-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, rgba(5, 5, 20, 0.95) 0%, rgba(5, 5, 20, 0.85) 60%, transparent 100%);
    z-index: 1;
}

.hero-layout {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
    max-width: 1400px;
    padding-left: 0;
}

.hero-content.hero-left {
    text-align: left;
    width: 55%;
    max-width: 700px;
    position: relative;
    z-index: 3;
    padding: 40px 20px 40px 0;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    border: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg,
            rgba(255, 107, 0, 0.15) 0%,
            rgba(255, 140, 0, 0.08) 50%,
            rgba(255, 107, 0, 0.12) 100%);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 28px;
    border: 2px solid transparent;
    background-clip: padding-box;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
    position: relative;
    overflow: visible;
    box-shadow:
        0 0 20px rgba(255, 107, 0, 0.25),
        0 8px 32px rgba(255, 107, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 52px;
    padding: 2px;
    background: linear-gradient(135deg,
            #ff8c00 0%,
            #ff6b00 25%,
            #ff4500 50%,
            #ff6b00 75%,
            #ff8c00 100%);
    background-size: 300% 300%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderGlow 3s ease infinite;
    pointer-events: none;
}

/* Modern Bold Text Effect */
.hero-badge.fire-text {
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 4.5px;
    background: linear-gradient(135deg,
            #ffffff 0%,
            #fff5e6 20%,
            #ffd36a 40%,
            #ff8c00 60%,
            #ff6b00 80%,
            #ffd36a 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 0 12px rgba(255, 140, 0, 0.5));
    animation:
        popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) both,
        textShimmer 3s ease-in-out infinite;
}

/* Outer Glow Ring */
.hero-badge.fire-text::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 54px;
    background: linear-gradient(135deg,
            #ff8c00 0%,
            #ffd36a 25%,
            #ff6b00 50%,
            #ffd36a 75%,
            #ff8c00 100%);
    background-size: 300% 300%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 3px;
    animation: borderGlow 2.5s ease infinite;
    filter: blur(0px);
    opacity: 1;
}

/* Subtle Glow Effect */
.hero-badge.fire-text::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 60px;
    background: radial-gradient(ellipse at center,
            rgba(255, 140, 0, 0.35) 0%,
            rgba(255, 107, 0, 0.15) 40%,
            transparent 70%);
    z-index: -1;
    animation: pulseGlow 2s ease-in-out infinite;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {

    .hero-badge.fire-text,
    .hero-badge.fire-text::before,
    .hero-badge.fire-text::after {
        animation: none !important;
    }
}

.hero-title {
    font-size: 68px;
    margin-bottom: 28px;
    letter-spacing: -2.5px;
    font-weight: 900;
    line-height: 1.05;
    color: #ffffff;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 16px 48px rgba(0, 0, 0, 0.25);
    animation: fadeSlideUp 0.8s ease-out 0.2s both;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Expert Gradient Typography */
.hero-title .highlight {
    font-weight: 900;
    background: linear-gradient(135deg,
            #fff5cc 0%,
            #FFD700 20%,
            #FF8C00 50%,
            #ff6a00 70%,
            #FFD700 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    animation: textShimmer 3.5s ease-in-out infinite;
    filter:
        drop-shadow(0 0 8px rgba(255, 140, 0, 0.5)) drop-shadow(0 4px 12px rgba(255, 100, 0, 0.3));
    text-shadow: none;
}

@keyframes textShimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 500px;
    animation: fadeSlideUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeSlideUp 1s ease-out 0.5s both;
    margin-bottom: 20px;
}

.hero-buttons .btn-primary {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg,
            #ff8c00 0%,
            #ff6b00 40%,
            #ff5500 70%,
            #ff6b00 100%);
    background-size: 200% 200%;
    border: 2px solid rgba(255, 180, 80, 0.4);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 24px rgba(255, 107, 0, 0.35),
        0 0 0 0 rgba(255, 140, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: pulseGlow 2.4s ease-in-out infinite, gradientShift 4s ease infinite;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btnShine 3s ease-in-out infinite;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-5px) scale(1.06);
    background-position: 100% 0;
    border-color: rgba(255, 220, 120, 0.6);
    box-shadow:
        0 20px 50px rgba(255, 107, 0, 0.55),
        0 0 30px rgba(255, 140, 0, 0.4),
        0 0 60px rgba(255, 107, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    filter: brightness(1.12) saturate(1.1);
}

.hero-buttons .btn-primary:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 8px 20px rgba(255, 107, 0, 0.4),
        inset 0 2px 4px rgba(0, 0, 0, 0.15);
    filter: brightness(0.95);
}

.hero-buttons .btn-secondary {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%,
            rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-5px) scale(1.04);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.35),
        0 0 20px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-buttons .btn-secondary:hover::before {
    opacity: 1;
}

.hero-buttons .btn-secondary:active {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Video fallback styles */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-video.active {
    opacity: 1;
}

/* Language Toggle */
.lang-toggle {
    position: absolute;
    top: 120px;
    right: 40px;
    z-index: 100;
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: #fff;
}

.lang-btn.active {
    background: var(--color-orange);
    color: #fff;
}

/* Hero Promises */
.hero-promises {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 25px 0 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--color-orange);
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.promise-item i {
    color: var(--color-orange);
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.promise-item strong {
    color: #fff;
}

/* ============================================
   FLOATING PARTICLES ANIMATION
   ============================================ */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #4da8ff 0%, #0066cc 100%);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 8s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(77, 168, 255, 0.6);
}

/* Different particle sizes */
.particle.small {
    width: 3px;
    height: 3px;
    box-shadow: 0 0 4px rgba(77, 168, 255, 0.5);
}

.particle.medium {
    width: 5px;
    height: 5px;
    box-shadow: 0 0 8px rgba(77, 168, 255, 0.7);
}

.particle.large {
    width: 7px;
    height: 7px;
    box-shadow: 0 0 12px rgba(77, 168, 255, 0.8);
}

/* Dash/line particles */
.particle.dash {
    width: 12px;
    height: 3px;
    border-radius: 2px;
    transform: rotate(45deg);
}

.particle.dash-vertical {
    width: 3px;
    height: 12px;
    border-radius: 2px;
}

/* Float animation */
@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg);
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        transform: translateY(-100px) rotate(360deg);
    }
}

/* Drift animation for subtle horizontal movement */
@keyframes driftParticle {

    0%,
    100% {
        transform: translateX(0) translateY(100vh);
    }

    25% {
        transform: translateX(20px) translateY(75vh);
    }

    50% {
        transform: translateX(-15px) translateY(50vh);
    }

    75% {
        transform: translateX(10px) translateY(25vh);
    }

    100% {
        transform: translateX(-5px) translateY(-50px);
    }
}

/* Twinkle effect */
@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* ============================================
   LOGO PARTICLE FORMATION ANIMATION
   50 Years Experience Premium Effect
   ============================================ */
.logo-particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

#logoParticleCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Real logo image - hidden initially, fades in after particles converge */
.real-logo-image {
    position: absolute;
    top: 45%;
    left: 72%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: auto;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.4)) drop-shadow(0 0 40px rgba(0, 200, 255, 0.3));
    transition: opacity 0.8s ease-in-out;
}

/* When logo is revealed */
.real-logo-image.visible {
    opacity: 1;
}

/* Fade out when hidden */
.logo-particle-container.hidden {
    opacity: 0;
    transition: opacity 1s ease-out;
}

/* Glow effect behind the formed logo */
.logo-particle-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center,
            rgba(255, 107, 0, 0.15) 0%,
            rgba(0, 212, 255, 0.1) 30%,
            transparent 70%);
    filter: blur(40px);
    animation: logoGlowPulse 4s ease-in-out infinite;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s ease 2.5s;
}

.logo-particle-container.animated::before {
    opacity: 1;
}

@keyframes logoGlowPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

/* Responsive - canvas remains full coverage on all sizes */

@media (max-width: 992px) {
    .logo-particle-container {
        display: none;
    }
}

.particle.twinkle {
    animation: floatParticle 10s ease-in-out infinite, twinkle 2s ease-in-out infinite;
}

/* ============================================
   BRANDS SHOWCASE SECTION (Modern Scrolling)
   ============================================ */
.brands-showcase {
    padding: 80px 0 60px;
    background: linear-gradient(180deg,
            rgba(5, 5, 16, 1) 0%,
            rgba(8, 8, 25, 1) 50%,
            rgba(5, 5, 16, 1) 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Glow Orbs */
.brands-showcase::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: floatOrb1 8s ease-in-out infinite;
    pointer-events: none;
}

.brands-showcase::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
    animation: floatOrb2 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatOrb1 {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-40%, -60%) scale(1.2);
        opacity: 1;
    }
}

@keyframes floatOrb2 {

    0%,
    100% {
        transform: translate(50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(40%, -40%) scale(1.3);
        opacity: 0.8;
    }
}

/* Subtle grid pattern overlay */
.brands-slider-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 107, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.brands-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.brands-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin: 15px 0;
    letter-spacing: -1px;
}

.brands-title .highlight {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 50%, #ffd36a 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 3s ease-in-out infinite;
}

.brands-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Slider Wrapper */
.brands-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
}

/* Gradient Overlays */
.brands-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 10;
    pointer-events: none;
}

.brands-overlay-left {
    left: 0;
    background: linear-gradient(90deg,
            rgba(5, 5, 16, 1) 0%,
            rgba(5, 5, 16, 0.9) 30%,
            rgba(5, 5, 16, 0.5) 60%,
            transparent 100%);
}

.brands-overlay-right {
    right: 0;
    background: linear-gradient(270deg,
            rgba(5, 5, 16, 1) 0%,
            rgba(5, 5, 16, 0.9) 30%,
            rgba(5, 5, 16, 0.5) 60%,
            transparent 100%);
}

/* Slider Container */
.brands-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Track - the moving element */
.brands-track {
    display: flex;
    gap: 80px;
    align-items: center;
    animation: scrollBrands 35s linear infinite;
    width: max-content;
}

.brands-track:hover {
    animation-play-state: paused;
}

/* Individual Brand Item - NO BOX, CLEAN LOGOS */
.brand-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: transparent;
    border: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Subtle glow behind logo on hover */
.brand-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    z-index: -1;
}

.brand-item:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.brand-item:hover {
    transform: translateY(-8px) scale(1.1);
}

/* BIGGER LOGOS - Full Size Display */
.brand-item img {
    height: 100px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    filter: brightness(1) saturate(1);
    transition: all 0.5s ease;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.brand-item:hover img {
    filter: brightness(1.4) saturate(1.2) drop-shadow(0 0 25px rgba(255, 107, 0, 0.5));
    transform: scale(1.05);
}

/* Scrolling Animation - Right to Left */
@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .brands-title {
        font-size: 32px;
    }

    .brands-subtitle {
        font-size: 15px;
    }

    .brand-item img {
        height: 60px;
        max-width: 200px;
    }

    .brands-track {
        gap: 50px;
    }

    .brands-overlay {
        width: 100px;
    }

    .brands-showcase::before,
    .brands-showcase::after {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 576px) {
    .brands-showcase {
        padding: 50px 0 40px;
    }

    .brands-title {
        font-size: 26px;
    }

    .brands-header {
        margin-bottom: 30px;
    }

    .brand-item img {
        height: 45px;
        max-width: 150px;
    }

    .brands-track {
        gap: 35px;
        animation-duration: 25s;
    }

    .brands-overlay {
        width: 60px;
    }

    .brands-showcase::before,
    .brands-showcase::after {
        display: none;
    }
}

/* ============================================
   SERVICE SECTION - PREMIUM ULTRA-MODERN DESIGN
   ============================================ */
.section-services {
    padding: 100px 0 120px;
    background: linear-gradient(180deg,
            var(--color-bg-deep) 0%,
            rgba(10, 10, 30, 1) 50%,
            var(--color-bg-deep) 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Grid */
.section-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 107, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Floating Orbs Background */
.section-services::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatOrb1 10s ease-in-out infinite;
    z-index: 0;
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.7;
    }
}

/* ============================================
   PREMIUM SECTION HEADER
   ============================================ */
.services-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg,
            rgba(255, 107, 0, 0.15) 0%,
            rgba(255, 140, 0, 0.05) 100%);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.services-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: badgeShine 4s ease-in-out infinite;
}

@keyframes badgeShine {
    0% {
        transform: translateX(-50%);
    }

    50%,
    100% {
        transform: translateX(50%);
    }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-orange);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--color-orange);
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.services-title {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.15;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.services-title .title-highlight {
    background: linear-gradient(135deg,
            #fff5cc 0%,
            #FFD700 20%,
            #FF8C00 50%,
            #ff6a00 70%,
            #FFD700 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 4s ease-in-out infinite;
    position: relative;
}

.services-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   PREMIUM CARDS GRID
   ============================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
}

/* ============================================
   ULTRA-MODERN GRADIENT CARD
   ============================================ */
.gradient-card {
    height: 420px;
    border-radius: 24px;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.gradient-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(255, 107, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Card Content Container */
.card-content {
    position: relative;
    z-index: 3;
    padding: 35px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Animated Glow Effect */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center,
            rgba(255, 255, 255, 0.08) 0%,
            transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.gradient-card:hover .card-glow {
    opacity: 1;
    animation: glowRotate 4s linear infinite;
}

@keyframes glowRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Shimmer/Shine Effect */
.card-shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transform: skewX(-25deg);
    z-index: 2;
    transition: left 0.6s ease;
}

.gradient-card:hover .card-shine {
    left: 150%;
}

/* Card Variants with Enhanced Gradients */
.card-web {
    background: linear-gradient(145deg,
            #ff0066 0%,
            #ff3366 20%,
            #cc0055 40%,
            #990044 70%,
            #330022 100%);
}

.card-web:hover {
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(255, 0, 102, 0.3);
}

.card-app {
    background: linear-gradient(145deg,
            #f7971e 0%,
            #ffd200 20%,
            #e6a800 40%,
            #b38600 70%,
            #4a3500 100%);
}

.card-app:hover {
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(255, 210, 0, 0.3);
}

.card-ai {
    background: linear-gradient(145deg,
            #00d4ff 0%,
            #0099cc 20%,
            #0077aa 40%,
            #005588 70%,
            #002244 100%);
}

.card-ai:hover {
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(0, 212, 255, 0.3);
}

.card-seo {
    background: linear-gradient(145deg,
            #9d00ff 0%,
            #7b00cc 20%,
            #5c0099 40%,
            #3d0066 70%,
            #1a0033 100%);
}

.card-seo:hover {
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(157, 0, 255, 0.3);
}

/* ============================================
   FLOATING ICON DESIGN
   ============================================ */
.card-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg,
            rgba(255, 255, 255, 0.5),
            transparent,
            rgba(255, 255, 255, 0.3));
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.gradient-card:hover .card-icon {
    transform: translateY(-8px) scale(1.1) rotateZ(5deg);
    background: rgba(255, 255, 255, 0.2);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(255, 255, 255, 0.1);
}

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

.card-icon i {
    font-size: 30px;
    color: #fff;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.gradient-card:hover .card-icon i {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
}

/* Card Number Badge */
.card-num {
    font-size: 13px;
    font-weight: 700;
    opacity: 0.8;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.gradient-card:hover .card-num {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   CARD TYPOGRAPHY
   ============================================ */
.card-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: -0.5px;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gradient-card:hover .card-title {
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.card-desc {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 25px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
}

/* ============================================
   PREMIUM BUTTON
   ============================================ */
.btn-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
    position: relative;
    overflow: hidden;
}

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

.btn-card:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

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

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

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

/* ============================================
   CARD FLOATING PARTICLES
   ============================================ */
.card-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.card-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card-particles span:nth-child(1) {
    top: 20%;
    right: 15%;
}

.card-particles span:nth-child(2) {
    top: 40%;
    right: 25%;
}

.card-particles span:nth-child(3) {
    top: 60%;
    right: 10%;
}

.gradient-card:hover .card-particles span {
    opacity: 1;
    animation: floatParticle2 3s ease-in-out infinite;
}

.gradient-card:hover .card-particles span:nth-child(1) {
    animation-delay: 0s;
}

.gradient-card:hover .card-particles span:nth-child(2) {
    animation-delay: 0.5s;
}

.gradient-card:hover .card-particles span:nth-child(3) {
    animation-delay: 1s;
}

@keyframes floatParticle2 {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-20px) scale(1.5);
        opacity: 1;
    }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 1200px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .services-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .section-services {
        padding: 70px 0 90px;
    }

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

    .gradient-card {
        height: 360px;
    }

    .services-title {
        font-size: 32px;
    }

    .services-subtitle {
        font-size: 16px;
    }

    .services-header {
        margin-bottom: 50px;
    }
}

/* ============================================
   FLOATING CTA (FIXED)
   =========================================== */
.floating-cta-container {
    position: fixed !important;
    left: 30px !important;
    right: 30px !important;
    bottom: 30px !important;
    z-index: 99999 !important;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 15px;
    pointer-events: none;
}

.float-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    pointer-events: auto;
}

.float-icon:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.float-wa {
    background: #25d366;
}

.float-call {
    background: #3b5998;
}

/* ============================================
   WHATSAPP POPUP WIDGET
   ============================================ */
.whatsapp-widget {
    position: relative;
    pointer-events: auto;
}

.whatsapp-popup {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 280px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom left;
}

.whatsapp-widget:hover .whatsapp-popup,
.whatsapp-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wa-popup-header {
    background: #25d366;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wa-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.wa-header-left i {
    font-size: 22px;
}

.wa-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.wa-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.wa-popup-body {
    padding: 20px;
    background: #e5ddd5;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ccc' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.wa-message-bubble {
    background: white;
    padding: 12px 18px;
    border-radius: 0 12px 12px 12px;
    display: inline-block;
    font-size: 14px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    position: relative;
}

.wa-message-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 10px 0;
    border-color: transparent white transparent transparent;
}

.wa-open-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.wa-open-chat-btn:hover {
    background: #1fb855;
}

.wa-open-chat-btn i {
    font-size: 14px;
}

.float-wa {
    background: #25d366;
    border: none;
    cursor: pointer;
}

/* ============================================
   CALL BUTTON TOOLTIP
   ============================================ */
.call-widget {
    position: relative;
    pointer-events: auto;
}

.call-tooltip {
    position: absolute;
    bottom: 60px;
    right: 0;
    background: #3b5998;
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(59, 89, 152, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.call-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 18px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: #3b5998 transparent transparent transparent;
}

.call-widget:hover .call-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.call-tooltip i {
    font-size: 14px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-content.hero-left {
        max-width: 550px;
        padding: 30px;
    }

    .hero.hero-image-bg::before {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        padding-top: 100px;
        min-height: 100vh;
    }

    .hero.hero-image-bg {
        background-position: 70% center;
    }

    .hero.hero-image-bg::before {
        width: 100%;
        background: rgba(5, 5, 20, 0.85);
    }

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

    .hero-content.hero-left {
        text-align: center;
        max-width: 100%;
        padding: 25px 15px;
        margin: 0;
        background: transparent;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 14px 28px;
        font-size: 15px;
    }

    .lang-toggle {
        top: 80px;
        right: 15px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .hero-promises {
        padding: 15px;
        margin: 20px 0;
    }

    .promise-item {
        font-size: 13px;
        gap: 10px;
    }

    .promise-item i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .floating-cta-container {
        left: 16px !important;
        right: 16px !important;
        bottom: 18px !important;
    }

    .float-icon {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }
}

/* ============================================
   WEBSITE SHOWCASE (Live Preview)
   ============================================ */
.section-showcase {
    background: #fff;
    color: #111;
    padding: 80px 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.showcase-card {
    background: #f5f5f7;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.showcase-thumb {
    height: 200px;
    background: #ddd;
    position: relative;
    overflow: hidden;
}

.showcase-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-info {
    padding: 20px;
    text-align: center;
}

.btn-preview {
    background: #111;
    color: #fff;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    margin-top: 10px;
    display: inline-block;
}

/* ============================================
   EXPLAINER VIDEOS (REELS)
   ============================================ */
.section-reels {
    padding: 100px 0;
    background: radial-gradient(circle at center, #1a1c35 0%, #050510 70%);
}

.reels-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.reel-card {
    width: 280px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.reel-card:hover {
    transform: scale(1.05);
    border-color: var(--color-orange);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2);
}

.reel-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    color: #fff;
    font-size: 24px;
}

/* ============================================
   TECH CARDS (Why Choose Us)
   ============================================ */
.section-tech {
    padding: 80px 0;
    background: linear-gradient(180deg, #050510 0%, #111222 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tech-card {
    background: #0f1020;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

/* Circuit overlay */
.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.tech-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--color-cyan);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.tech-desc {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.section-reviews {
    padding: 80px 0;
    background: #fff;
    color: #111;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.review-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #020205;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: #888;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--color-orange);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 1024px) {

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

    .reels-container {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   HERO ANIMATIONS
   ============================================ */
@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(255, 107, 0, 0.4), 0 0 15px rgba(255, 107, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 15px rgba(255, 107, 0, 0.6), 0 0 30px rgba(255, 107, 0, 0.4);
    }
}

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

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
        filter: brightness(1);
    }

    50% {
        background-position: 100% 50%;
        filter: brightness(1.2);
    }

    100% {
        background-position: 0% 50%;
        filter: brightness(1);
    }
}

/* Fire Effect Animations */
@keyframes fireTextFlow {
    0% {
        background-position: 50% 130%;
    }

    50% {
        background-position: 50% 30%;
    }

    100% {
        background-position: 50% 130%;
    }
}

@keyframes fireFlicker {
    0% {
        filter: brightness(1) contrast(1) drop-shadow(0 0 6px rgba(255, 120, 0, 0.35));
    }

    100% {
        filter: brightness(1.12) contrast(1.05) drop-shadow(0 0 12px rgba(255, 70, 0, 0.5));
    }
}

@keyframes flameRise {
    0% {
        opacity: 0.45;
        transform: translateX(-50%) translateY(7px) scale(0.96, 0.78) skewX(-2deg);
    }

    40% {
        opacity: 0.95;
        transform: translateX(-50%) translateY(0px) scale(1.02, 1.05) skewX(1.5deg);
    }

    70% {
        opacity: 0.75;
        transform: translateX(-50%) translateY(-4px) scale(0.98, 1.15) skewX(-1deg);
    }

    100% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(7px) scale(0.96, 0.82) skewX(2deg);
    }
}

@keyframes sparksRise {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
        background-position: 8% 38px, 24% 42px, 44% 40px, 62% 43px, 78% 37px, 92% 41px;
    }

    18% {
        opacity: 0.95;
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-22px);
        background-position: 12% -12px, 30% -20px, 48% -10px, 66% -18px, 82% -14px, 94% -22px;
    }
}

@keyframes sparksTwinkle {
    0% {
        filter: blur(0.15px) brightness(1);
    }

    100% {
        filter: blur(0.3px) brightness(1.25);
    }
}

/* ============================================
   YOUTUBE SHORTS SHOWCASE SECTION
   Premium 50-years Experience Design
   ============================================ */
.section-shorts-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg,
            #f8f9fa 0%,
            #ffffff 30%,
            #fff5eb 70%,
            #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

/* Background particles */
.shorts-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 140, 0, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 200, 100, 0.04) 0%, transparent 50%);
    animation: floatParticlesBg 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatParticlesBg {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

/* Header Section */
.shorts-header {
    text-align: left;
    margin-bottom: 50px;
    max-width: 700px;
}

.shorts-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.shorts-badge i {
    font-size: 14px;
}

.shorts-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 20px;
}

.shorts-title .highlight {
    background: linear-gradient(135deg, #ff6b00 0%, #ff4500 50%, #ff8c00 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 3s ease-in-out infinite;
}

.shorts-subtitle {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.shorts-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 2px solid #1a1a2e;
    transition: all 0.3s ease;
}

.shorts-cta:hover {
    color: #ff6b00;
    border-color: #ff6b00;
    gap: 12px;
}

.shorts-cta i {
    transition: transform 0.3s ease;
}

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

/* Shorts Grid */
.shorts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    perspective: 1000px;
}

/* Individual Short Card */
.short-card {
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.short-card:hover {
    transform: translateY(-10px);
}

.short-card-inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9 / 14;
    background: #1a1a2e;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.short-card:hover .short-card-inner {
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.18),
        0 10px 25px rgba(255, 107, 0, 0.12);
}

/* Animated Border Glow */
.short-card-glow {
    position: absolute;
    inset: -3px;
    border-radius: 23px;
    background: linear-gradient(135deg,
            #ff6b00, #ff8c00, #ffd700, #ff8c00, #ff6b00);
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    animation: borderRotate 4s linear infinite;
    transition: opacity 0.4s ease;
    filter: blur(3px);
}

.short-card:hover .short-card-glow {
    opacity: 1;
}

@keyframes borderRotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Card Image */
.short-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.4s ease;
}

.short-card:hover .short-thumb {
    transform: scale(1.08);
    filter: brightness(0.9) contrast(1.05);
}

/* Overlay */
.short-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.short-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            transparent 100%);
}

/* Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.play-button i {
    color: #fff;
    font-size: 20px;
    margin-left: 3px;
}

.short-card:hover .play-button {
    opacity: 1;
}

/* Play Button Pulse Ring */
.play-button-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: playPulse 2s ease-out infinite;
    opacity: 0;
}

.short-card:hover .play-button-ring {
    opacity: 1;
}

@keyframes playPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Overlay Text - Bottom */
.short-text {
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    z-index: 10;
}

.short-text-word {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    font-style: italic;
    background: linear-gradient(135deg,
            #fff 0%,
            #ffd700 30%,
            #ff8c00 60%,
            #ff6b00 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    display: inline-block;
    transform: translateY(10px);
    opacity: 0.9;
    transition: all 0.4s ease;
    animation: textGlow 3s ease-in-out infinite;
}

.short-card:hover .short-text-word {
    transform: translateY(0);
    opacity: 1;
    animation: textGlow 1.5s ease-in-out infinite, textShimmer 2s ease-in-out infinite;
}

@keyframes textGlow {

    0%,
    100% {
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    }

    50% {
        filter: drop-shadow(0 4px 15px rgba(255, 107, 0, 0.5));
    }
}

/* Shimmer effect on hover */
.short-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.15),
            transparent);
    transition: left 0.6s ease;
    z-index: 4;
    pointer-events: none;
    border-radius: 20px;
}

.short-card:hover::after {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .shorts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .shorts-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .section-shorts-showcase {
        padding: 60px 0;
    }

    .shorts-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .shorts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

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

    .short-text-word {
        font-size: 20px;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

    .play-button i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .shorts-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .short-card-inner {
        aspect-ratio: 9 / 13;
    }

    .short-text-word {
        font-size: 16px;
    }

    .short-text {
        bottom: 15px;
        left: 12px;
        right: 12px;
    }
}

/* ============================================
   PREMIUM TESTIMONIALS SECTION
   ============================================ */
.section-testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg,
            #050510 0%,
            #0a0a1a 30%,
            #0d0d20 50%,
            #0a0a1a 70%,
            #050510 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Particles */
.testimonials-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255, 140, 0, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 40% 70%, rgba(255, 107, 0, 0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 40%, rgba(255, 180, 0, 0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 60% 20%, rgba(255, 140, 0, 0.25) 0%, transparent 100%),
        radial-gradient(1px 1px at 10% 80%, rgba(255, 107, 0, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 80% 60%, rgba(255, 180, 0, 0.2) 0%, transparent 100%);
    animation: particleFloat 20s linear infinite;
    pointer-events: none;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Floating Glow Orbs */
.testimonials-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.testimonials-glow-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation: orbFloat1 15s ease-in-out infinite;
}

.testimonials-glow-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.1) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation: orbFloat2 18s ease-in-out infinite;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(50px, 30px) scale(1.2);
        opacity: 1;
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-40px, -30px) scale(1.3);
        opacity: 0.8;
    }
}

/* Section Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 140, 0, 0.08) 100%);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #ff8c00;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.testimonials-badge i {
    font-size: 14px;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.testimonials-title .highlight {
    background: linear-gradient(135deg, #ff8c00 0%, #ffd36a 50%, #ff6b00 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 3s ease-in-out infinite;
}

.testimonials-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Google Rating Badge */
.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 15px 30px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 50px;
}

.google-logo {
    height: 28px;
    width: auto;
}

.rating-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars i {
    color: #fbbc04;
    font-size: 16px;
    animation: starPulse 2s ease-in-out infinite;
}

.rating-stars i:nth-child(1) {
    animation-delay: 0s;
}

.rating-stars i:nth-child(2) {
    animation-delay: 0.1s;
}

.rating-stars i:nth-child(3) {
    animation-delay: 0.2s;
}

.rating-stars i:nth-child(4) {
    animation-delay: 0.3s;
}

.rating-stars i:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes starPulse {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.15);
        filter: brightness(1.3);
    }
}

.rating-score {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.rating-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Testimonial Card */
.testimonial-card {
    perspective: 1000px;
}

.testimonial-card-inner {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.03) 50%,
            rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 35px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.testimonial-card:hover .testimonial-card-inner {
    transform: translateY(-10px) rotateX(5deg);
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 107, 0, 0.15);
}

/* Card Glow Effect */
.testimonial-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(ellipse at top center, rgba(255, 140, 0, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.testimonial-card:hover .testimonial-glow {
    opacity: 1;
}

/* Quote Icon */
.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2) 0%, rgba(255, 140, 0, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.testimonial-quote-icon i {
    font-size: 20px;
    color: #ff8c00;
    animation: quoteGlow 3s ease-in-out infinite;
}

@keyframes quoteGlow {

    0%,
    100% {
        opacity: 0.7;
        text-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
    }
}

/* Star Rating */
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #ffd700;
    font-size: 16px;
    animation: starShimmer 3s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.testimonial-stars i:nth-child(1) {
    animation-delay: 0s;
}

.testimonial-stars i:nth-child(2) {
    animation-delay: 0.15s;
}

.testimonial-stars i:nth-child(3) {
    animation-delay: 0.3s;
}

.testimonial-stars i:nth-child(4) {
    animation-delay: 0.45s;
}

.testimonial-stars i:nth-child(5) {
    animation-delay: 0.6s;
}

@keyframes starShimmer {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }

    25% {
        transform: scale(1.2) rotate(-5deg);
        filter: brightness(1.3);
    }

    50% {
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }
}

/* Testimonial Text */
.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    position: relative;
    width: 55px;
    height: 55px;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 140, 0, 0.5);
}

.avatar-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #ff8c00 0%, #ffd36a 50%, #ff6b00 100%) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: ringRotate 4s linear infinite;
}

@keyframes ringRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.author-role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.verified-badge {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verified-badge i {
    color: #fff;
    font-size: 12px;
}

/* CTA Button */
.testimonials-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.btn-testimonial-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 50%, #ff5500 100%);
    background-size: 200% 200%;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(255, 180, 80, 0.4);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(255, 107, 0, 0.35),
        0 0 0 0 rgba(255, 140, 0, 0.4);
    animation: pulseGlow 2.5s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-testimonial-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btnShine 3s ease-in-out infinite;
}

.btn-testimonial-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 20px 50px rgba(255, 107, 0, 0.5),
        0 0 40px rgba(255, 140, 0, 0.3);
    background-position: 100% 0;
}

.btn-testimonial-cta i {
    transition: transform 0.3s ease;
}

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

/* Responsive Design for Testimonials */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card:nth-child(5) {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-testimonials {
        padding: 70px 0;
    }

    .testimonials-title {
        font-size: 32px;
    }

    .testimonials-subtitle {
        font-size: 16px;
    }

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

    .testimonial-card:nth-child(5) {
        grid-column: span 1;
        max-width: none;
    }

    .google-rating-badge {
        flex-direction: column;
        gap: 15px;
        padding: 20px 25px;
    }

    .rating-content {
        flex-direction: column;
        gap: 8px;
    }

    .testimonial-card-inner {
        padding: 28px 22px;
    }
}

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

    .testimonial-text {
        font-size: 14px;
    }

    .author-avatar {
        width: 45px;
        height: 45px;
    }

    .btn-testimonial-cta {
        padding: 16px 32px;
        font-size: 15px;
    }
}

/* ============================================
   PREMIUM FOOTER - 50 YEARS EXPERIENCE DESIGN
   ============================================ */

.premium-footer {
    position: relative;
    background: linear-gradient(180deg,
            #030308 0%,
            #050510 20%,
            #0a0a18 50%,
            #050510 80%,
            #030308 100%);
    overflow: hidden;
    padding-top: 0;
}

/* Animated Background Image */
.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/footer-bg-pattern.png') center center;
    background-size: cover;
    opacity: 0.4;
    z-index: 0;
}

/* ===== ANIMATED WAVE TOP BORDER ===== */
.footer-wave {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    overflow: hidden;
    z-index: 2;
}

.footer-wave svg {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 100%;
    animation: waveFlow 15s linear infinite;
}

.footer-wave svg path {
    fill: url(#waveGradient);
}

@keyframes waveFlow {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== FLOATING PARTICLES ===== */
.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.footer-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #ff8c00 0%, #ffb347 100%);
    border-radius: 50%;
    opacity: 0;
    animation: footerParticleFloat 12s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.6);
}

.footer-particle:nth-child(1) {
    left: 5%;
    animation-delay: 0s;
    width: 3px;
    height: 3px;
}

.footer-particle:nth-child(2) {
    left: 15%;
    animation-delay: 2s;
    width: 5px;
    height: 5px;
}

.footer-particle:nth-child(3) {
    left: 25%;
    animation-delay: 4s;
}

.footer-particle:nth-child(4) {
    left: 35%;
    animation-delay: 1s;
    width: 6px;
    height: 6px;
}

.footer-particle:nth-child(5) {
    left: 45%;
    animation-delay: 3s;
}

.footer-particle:nth-child(6) {
    left: 55%;
    animation-delay: 5s;
    width: 3px;
    height: 3px;
}

.footer-particle:nth-child(7) {
    left: 65%;
    animation-delay: 2.5s;
    width: 5px;
    height: 5px;
}

.footer-particle:nth-child(8) {
    left: 75%;
    animation-delay: 0.5s;
}

.footer-particle:nth-child(9) {
    left: 85%;
    animation-delay: 4.5s;
    width: 6px;
    height: 6px;
}

.footer-particle:nth-child(10) {
    left: 95%;
    animation-delay: 1.5s;
}

@keyframes footerParticleFloat {
    0% {
        transform: translateY(100%) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
        transform: translateY(80%) scale(1);
    }

    90% {
        opacity: 0.6;
        transform: translateY(-20%) scale(0.8);
    }

    100% {
        transform: translateY(-50%) scale(0);
        opacity: 0;
    }
}

/* ===== GLOW ORBS ===== */
.footer-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.footer-glow-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.2) 0%, transparent 70%);
    top: 20%;
    left: -10%;
    animation: orbFloat1 10s ease-in-out infinite;
}

.footer-glow-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.15) 0%, transparent 70%);
    top: 40%;
    right: -5%;
    animation: orbFloat2 12s ease-in-out infinite;
}

.footer-glow-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 200, 100, 0.12) 0%, transparent 70%);
    bottom: 10%;
    left: 40%;
    animation: orbFloat3 8s ease-in-out infinite;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(40px, -30px) scale(1.2);
        opacity: 0.9;
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-30px, 20px) scale(1.15);
        opacity: 0.8;
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(20px, -20px) scale(1.1);
        opacity: 0.7;
    }
}

/* ===== FOOTER MAIN CONTENT ===== */
.footer-main {
    position: relative;
    z-index: 3;
    padding: 100px 0 50px;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* ===== FOOTER BRAND SECTION ===== */
.footer-brand-section {
    position: relative;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.4));
    animation: footerLogoGlow 3s ease-in-out infinite;
}

@keyframes footerLogoGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.4));
    }

    50% {
        filter: drop-shadow(0 0 30px rgba(255, 107, 0, 0.7));
    }
}

.footer-logo-text {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-head);
}

.footer-logo-text span {
    color: var(--color-orange);
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 320px;
}

.footer-team-img {
    width: 100%;
    max-width: 280px;
    border-radius: 16px;
    border: 2px solid rgba(255, 107, 0, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.footer-team-img:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 107, 0, 0.5);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.2);
}

/* ===== FOOTER COLUMNS ===== */
.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b00, #ff8c00);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    width: 0;
    height: 2px;
    background: var(--color-orange);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 20px;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

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

.footer-links a i {
    font-size: 14px;
    color: var(--color-orange);
    width: 20px;
}

/* ===== CONTACT INFO ===== */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    color: #fff;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.footer-contact-item:hover .footer-contact-icon {
    background: var(--color-orange);
    color: #fff;
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4);
    transform: translateY(-3px);
}

.footer-contact-text {
    flex: 1;
}

.footer-contact-text span {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.footer-contact-text a,
.footer-contact-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin: 0;
    transition: color 0.3s ease;
}

.footer-contact-text a:hover {
    color: var(--color-orange);
}

/* ===== NEWSLETTER SECTION ===== */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b00, #ff8c00, #ffd700, #ff8c00, #ff6b00);
    background-size: 200% 100%;
    animation: shimmerLine 3s linear infinite;
}

@keyframes shimmerLine {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.footer-newsletter h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.footer-newsletter p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 18px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    border-color: var(--color-orange);
    background: rgba(255, 107, 0, 0.05);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.15);
}

.newsletter-btn {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

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

/* ===== SOCIAL MEDIA ICONS ===== */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-orange) 0%, #ff8c00 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.social-icon i {
    position: relative;
    z-index: 1;
}

.social-icon:hover {
    transform: translateY(-8px) scale(1.1);
    border-color: var(--color-orange);
    color: #fff;
    box-shadow:
        0 15px 35px rgba(255, 107, 0, 0.4),
        0 0 0 4px rgba(255, 107, 0, 0.1);
}

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

/* Special hover colors for each social */
.social-icon.facebook:hover {
    border-color: #1877f2;
    box-shadow: 0 15px 35px rgba(24, 119, 242, 0.4), 0 0 0 4px rgba(24, 119, 242, 0.1);
}

.social-icon.facebook:hover::before {
    background: linear-gradient(135deg, #1877f2 0%, #3b5998 100%);
}

.social-icon.instagram:hover {
    border-color: #e4405f;
    box-shadow: 0 15px 35px rgba(228, 64, 95, 0.4), 0 0 0 4px rgba(228, 64, 95, 0.1);
}

.social-icon.instagram:hover::before {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
}

.social-icon.youtube:hover {
    border-color: #ff0000;
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.4), 0 0 0 4px rgba(255, 0, 0, 0.1);
}

.social-icon.youtube:hover::before {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.social-icon.linkedin:hover {
    border-color: #0077b5;
    box-shadow: 0 15px 35px rgba(0, 119, 181, 0.4), 0 0 0 4px rgba(0, 119, 181, 0.1);
}

.social-icon.linkedin:hover::before {
    background: linear-gradient(135deg, #0077b5 0%, #005582 100%);
}

.social-icon.whatsapp:hover {
    border-color: #25d366;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4), 0 0 0 4px rgba(37, 211, 102, 0.1);
}

.social-icon.whatsapp:hover::before {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    position: relative;
    z-index: 3;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff6b00, #ffd700, #ff6b00, transparent);
    animation: shimmerLine 3s linear infinite;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-copyright span {
    color: #ff6b00;
}

.footer-copyright i.fa-heart {
    color: #ff4757;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-orange);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 25px rgba(255, 107, 0, 0.4);
    z-index: 999;
}

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

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5);
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 1200px) {
    .footer-content-grid {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
    }

    .footer-newsletter {
        grid-column: span 4;
        max-width: 500px;
    }
}

@media (max-width: 992px) {
    .footer-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand-section {
        grid-column: span 2;
    }

    .footer-newsletter {
        grid-column: span 2;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 80px 0 40px;
    }

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

    .footer-brand-section {
        grid-column: span 1;
        text-align: center;
    }

    .footer-brand-desc {
        max-width: none;
        margin: 0 auto 25px;
    }

    .footer-team-img {
        margin: 0 auto;
    }

    .footer-column h4 {
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        text-align: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .footer-links a::before {
        display: none;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-newsletter {
        grid-column: span 1;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-logo-text {
        font-size: 24px;
    }

    .footer-logo-img {
        height: 50px;
    }

    .social-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .footer-glow-orb-1,
    .footer-glow-orb-2,
    .footer-glow-orb-3 {
        display: none;
    }
}

/* ============================================
   TESTIMONIALS AUTO-SCROLL SLIDER
   Right to Left Animation
   ============================================ */
.section-testimonials {
    padding: 100px 0;
    background: #0a0a15;
    position: relative;
    overflow: hidden;
}

.testimonials-bg-particles {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 242, 254, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.testimonials-glow-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 107, 0, 0.1);
    top: 10%;
    left: -10%;
    animation: floatOrb 8s ease-in-out infinite;
}

.testimonials-glow-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(0, 242, 254, 0.08);
    bottom: 10%;
    right: -5%;
    animation: floatOrb 10s ease-in-out infinite reverse;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(255, 140, 0, 0.08));
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ff8c00;
    margin-bottom: 20px;
}

.testimonials-badge i {
    color: #ff8c00;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.testimonials-title .highlight {
    background: linear-gradient(135deg, #ff6b00, #ff8c00, #ffad00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Google Rating Badge */
.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    padding: 15px 30px;
    margin-bottom: 40px;
}

.google-logo {
    height: 28px;
}

.rating-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars i {
    color: #ffc107;
    font-size: 16px;
}

.rating-score {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.rating-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Testimonials Slider Wrapper */
.testimonials-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-slider {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: scrollTestimonials 30s linear infinite;
    width: max-content;
}

/* Pause animation on hover */
.testimonials-slider-wrapper:hover .testimonials-track {
    animation-play-state: paused;
}

/* Right to Left scroll animation - starts from right, moves to left */
@keyframes scrollTestimonials {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Gradient Overlays */
.testimonials-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 3;
    pointer-events: none;
}

.testimonials-overlay-left {
    left: 0;
    background: linear-gradient(90deg, #0a0a15 0%, transparent 100%);
}

.testimonials-overlay-right {
    right: 0;
    background: linear-gradient(-90deg, #0a0a15 0%, transparent 100%);
}

/* Testimonial Card */
.testimonial-card {
    flex-shrink: 0;
    width: 340px;
    transition: all 0.4s ease;
}

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

.testimonial-card-inner {
    background: linear-gradient(135deg, rgba(20, 20, 35, 0.95), rgba(15, 15, 28, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 22px;
    position: relative;
    overflow: hidden;
}

.testimonial-card-inner:hover {
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.15);
}

.testimonial-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover .testimonial-glow {
    opacity: 1;
}

.testimonial-quote-icon {
    position: absolute;
    top: 15px;
    right: 18px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-quote-icon i {
    color: #fff;
    font-size: 13px;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

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

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    position: relative;
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar-ring {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid #ff8c00;
    pointer-events: none;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.author-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.verified-badge {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verified-badge i {
    color: #28a745;
    font-size: 18px;
}

/* CTA Button */
.testimonials-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.btn-testimonial-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.btn-testimonial-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.4);
}

.btn-testimonial-cta i {
    transition: transform 0.3s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
    .testimonials-title {
        font-size: 32px;
    }

    .testimonial-card {
        width: 320px;
    }

    .testimonials-overlay {
        width: 80px;
    }
}