/* ============================================
   قنديل - Kandil Relight
   Premium Arabic RTL Homepage Stylesheet
   Colors: Blue, White, Yellow, Black
   ============================================ */

/* === CSS Variables === */
:root {
    --blue-primary: #0055c4;
    --blue-dark: #003a8a;
    --blue-light: #3d8bfd;
    --blue-glow: #00a8ff;
    --yellow-primary: #f5c842;
    --yellow-dark: #d4a017;
    --yellow-light: #ffe066;
    --black-primary: #0a0a1a;
    --black-secondary: #12122a;
    --black-card: #1a1a3e;
    --white-primary: #ffffff;
    --white-off: #f0f4f8;
    --white-muted: #c8d6e5;
    --gray-text: #8892a4;
    --gradient-blue: linear-gradient(135deg, var(--blue-primary), var(--blue-glow));
    --gradient-yellow: linear-gradient(135deg, var(--yellow-dark), var(--yellow-light));
    --gradient-dark: linear-gradient(135deg, var(--black-primary), var(--black-secondary));
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.25);
    --shadow-glow-blue: 0 0 30px rgba(0, 85, 196, 0.3);
    --shadow-glow-yellow: 0 0 30px rgba(245, 200, 66, 0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50%;
    --transition-fast: 0.25s ease;
    --transition-normal: 0.4s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* === Resets === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--white-off);
    color: var(--black-primary);
    overflow-x: hidden;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    background: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Section Shared Styles === */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-blue);
    color: var(--white-primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black-primary);
    margin-bottom: 14px;
    line-height: 1.3;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--gray-text);
    max-width: 550px;
    margin: 0 auto;
}

.highlight {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Scroll Animations === */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white-primary);
    z-index: 1001;
}

.logo-img {
    height: 75px;
    width: auto;
    transition: all var(--transition-fast);
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--yellow-primary);
    filter: drop-shadow(0 0 8px rgba(245, 200, 66, 0.5));
    animation: boltPulse 2s ease-in-out infinite;
}

@keyframes boltPulse {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(245, 200, 66, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(245, 200, 66, 0.9)); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--white-muted);
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    transition: color var(--transition-fast);
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--yellow-primary);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-yellow);
    color: var(--black-primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(245, 200, 66, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 200, 66, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white-primary);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

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

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

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

/* ============================================
   HERO CAROUSEL
   ============================================ */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.carousel-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-20px) scale(1);
        opacity: 0;
    }
}

.slide-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 800px;
    padding: 0 30px;
}

.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: var(--yellow-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInDown 0.8s ease forwards;
}

.slide-content h1 {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--white-primary);
    line-height: 1.3;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s 0.2s ease both;
}

.slide-content h1 .highlight {
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    line-height: 1.8;
    animation: fadeInUp 0.8s 0.4s ease both;
}

.slide-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    animation: fadeInUp 0.8s 0.6s ease both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-yellow);
    color: var(--black-primary);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 20px rgba(245, 200, 66, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 200, 66, 0.6);
}

.btn-primary i {
    transition: transform var(--transition-fast);
}

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white-primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-fast);
    backdrop-filter: blur(5px);
}

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

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: var(--white-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.carousel-btn:hover {
    background: var(--yellow-primary);
    color: var(--black-primary);
    border-color: var(--yellow-primary);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
}

.dot.active {
    background: var(--yellow-primary);
    width: 36px;
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(245, 200, 66, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    animation: fadeInUp 1s 1.2s ease both;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--yellow-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnim 1.5s ease-in-out infinite;
}

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

.scroll-indicator span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 600;
}

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

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

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 100px 0;
    background: var(--white-primary);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 85, 196, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 200, 66, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

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

.feature-card {
    background: var(--white-primary);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    transform-origin: right;
}

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

.feature-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    background: var(--gradient-blue);
    opacity: 0.08;
    transition: all var(--transition-normal);
}

.feature-card:hover .icon-bg {
    opacity: 0.15;
    transform: scale(1.15);
}

.feature-icon i {
    font-size: 2rem;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    transition: transform var(--transition-normal);
}

.feature-card:hover .feature-icon i {
    transform: scale(1.15);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black-primary);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 18px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue-primary);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.feature-link i {
    font-size: 0.8rem;
    transition: transform var(--transition-fast);
}

.feature-link:hover {
    color: var(--blue-dark);
}

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

/* ============================================
   WORKS / PORTFOLIO SECTION
   ============================================ */
.works-section {
    padding: 100px 0;
    background: var(--black-primary);
    position: relative;
    overflow: hidden;
}

.works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 85, 196, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(245, 200, 66, 0.05) 0%, transparent 60%);
}

.works-section .section-header h2 {
    color: var(--white-primary);
}

.works-section .section-header p {
    color: var(--white-muted);
}

.works-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white-muted);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    color: var(--white-primary);
    background: rgba(255, 255, 255, 0.1);
}

.filter-btn.active {
    background: var(--gradient-blue);
    color: var(--white-primary);
    border-color: transparent;
    box-shadow: var(--shadow-glow-blue);
}

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

.work-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: all var(--transition-normal);
}

.work-card.hidden {
    display: none;
}

.work-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.work-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-placeholder i {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.25);
}

.work-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.work-card:hover .work-img {
    transform: scale(1.08);
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(10, 10, 26, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: all var(--transition-normal);
}

.work-card:hover .work-overlay {
    opacity: 1;
}

.work-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.work-info {
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.work-card:hover .work-info {
    transform: translateY(0);
}

.work-category {
    display: inline-block;
    background: var(--gradient-yellow);
    color: var(--black-primary);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.work-info h4 {
    color: var(--white-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.work-info p {
    color: var(--white-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.work-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-blue);
    color: var(--white-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.work-link:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow-blue);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--white-off);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 85, 196, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
    min-width: calc(33.333% - 16px);
    background: var(--white-primary);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    position: relative;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-primary);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black-primary);
}

.testimonial-info span {
    font-size: 0.82rem;
    color: var(--gray-text);
}

.quote-icon {
    margin-right: auto;
    margin-left: 0;
    color: var(--blue-primary);
    opacity: 0.15;
    font-size: 1.8rem;
}

.testimonial-stars {
    margin-bottom: 14px;
}

.testimonial-stars i {
    color: var(--yellow-primary);
    font-size: 0.85rem;
    margin-left: 2px;
}

.testimonial-card > p {
    font-size: 0.93rem;
    color: var(--gray-text);
    line-height: 1.8;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 40px;
}

.test-btn {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--white-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--black-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.test-btn:hover {
    background: var(--blue-primary);
    color: var(--white-primary);
    border-color: var(--blue-primary);
    box-shadow: var(--shadow-glow-blue);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--black-primary) 0%, #1a1a2e 40%, #2a1a08 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212, 160, 23, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(245, 200, 66, 0.08) 0%, transparent 60%),
        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='%23f5c842' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--white-primary);
    padding: 20px;
}

.stat-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
    color: var(--yellow-primary);
}

.chandelier-div {
    display: flex;
    justify-content: center;
}

.chandelier-icon {
    width: 3.8rem;
    height: 3.8rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    display: inline-block;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--yellow-primary);
}

.stat-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black-primary);
    color: var(--white-muted);
    position: relative;
    padding-top: 0;
}

.footer-wave {
    color: var(--white-off);
    margin-bottom: 60px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

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

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white-primary);
    margin-bottom: 16px;
}

.footer-logo i {
    color: var(--yellow-primary);
    font-size: 1.8rem;
}

.footer-logo-img {
    height: 90px;
    width: auto;
}

.footer-whatsapp-link {
    color: var(--gray-text);
    transition: color var(--transition-fast);
}

.footer-whatsapp-link:hover {
    color: #25d366;
}

.footer-about p {
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-text);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-muted);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gradient-blue);
    border-color: transparent;
    color: var(--white-primary);
    transform: translateY(-3px);
}

.footer-links-col h4,
.footer-contact h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white-primary);
    margin-bottom: 20px;
    position: relative;
}

.footer-links-col h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 30px;
    height: 3px;
    background: var(--gradient-yellow);
    border-radius: 2px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a {
    color: var(--gray-text);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links-col a::before {
    content: '◂';
    font-size: 0.7rem;
    color: var(--blue-primary);
    opacity: 0;
    transform: translateX(5px);
    transition: all var(--transition-fast);
}

.footer-links-col a:hover {
    color: var(--white-primary);
    transform: translateX(-4px);
}

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

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--gray-text);
}

.footer-contact i {
    color: var(--blue-light);
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.85rem;
    color: var(--gray-text);
}

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

.footer-bottom-links a {
    color: var(--gray-text);
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--white-primary);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--gradient-blue);
    color: var(--white-primary);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-glow-blue);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 85, 196, 0.5);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    left: 30px;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: #25d366;
    color: var(--white-primary);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-fast);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--black-primary);
    color: var(--white-primary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all var(--transition-fast);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

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

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

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

    .testimonial-card {
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transition: right var(--transition-normal);
        padding: 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.15rem;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slide-actions {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

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

    .feature-card {
        padding: 24px 12px;
    }

    .feature-card h3 {
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 12px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-link {
        font-size: 0.8rem;
    }

    .feature-card p {
        display: none;
    }

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

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

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

    .footer-links-col {
        display: none;
    }

    .work-overlay {
        opacity: 1;
        background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 26, 0.95) 100%);
    }

    .work-info {
        transform: translateY(0);
    }

    .work-info p {
        display: none;
    }

    .works-filter {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .testimonials-slider {
        padding: 0;
    }

    .scroll-indicator {
        display: none;
    }

    .carousel-controls {
        bottom: 24px;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 1.6rem;
    }

    .btn-primary,
    .btn-outline {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }
}
