/* ================================
   PREMIUM LUXURY SECURITY DESIGN
   Modern, Elegant, Professional
   ================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Gold & Black Theme */
    --gold: #D4AF37;
    --gold-light: #F4E4C1;
    --gold-dark: #B8941F;
    --black: #0A0A0A;
    --black-light: #1A1A1A;
    --black-lighter: #2A2A2A;
    --white: #FFFFFF;
    --gray: #E5E5E5;
    --gray-dark: #666666;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #F4E4C1 0%, #D4AF37 50%, #B8941F 100%);
    --gradient-dark: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 100%);
    
    /* Shadows */
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.3);
    --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-soft: 0 5px 20px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--white);
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: var(--gold);
}

/* ================================
   LOADING SCREEN - مبهر وبسيط
   ================================ */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1A1A1A 0%, #0A0A0A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, transform 0.5s ease;
    overflow: hidden;
}

.loading-screen.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

/* Simple Loader - Minimalist */
.simple-loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ================================
   SCROLL PROGRESS BAR
   ================================ */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-gold);
    z-index: 10000;
    transition: width 0.2s ease-out;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8),
                0 0 40px rgba(212, 175, 55, 0.5);
}

.scroll-progress::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6));
    filter: blur(10px);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ================================
   PREMIUM GLASS NAVBAR - LUXURY
   ================================ */

.premium-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.premium-navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(212, 175, 55, 0.05) 0%,
        transparent 50%,
        rgba(212, 175, 55, 0.03) 100%);
    pointer-events: none;
}

.premium-navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.5) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-navbar.scrolled {
    background: linear-gradient(180deg,
        rgba(10, 10, 10, 0.85) 0%,
        rgba(10, 10, 10, 0.9) 100%);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    box-shadow: 
        0 8px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.premium-navbar.scrolled::after {
    opacity: 1;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: height 0.4s ease;
    position: relative;
}

.premium-navbar.scrolled .navbar-wrapper {
    height: 75px;
}

/* Premium Navbar Logo */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s ease;
}

.logo-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.navbar-logo:hover .logo-icon svg {
    transform: scale(1.08);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo-tagline {
    font-size: 9px;
    font-weight: 600;
    color: rgba(212, 175, 55, 0.8);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1;
    transition: all 0.3s ease;
}

.navbar-logo:hover .logo-title {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.navbar-logo:hover .logo-tagline {
    color: var(--gold);
}

.navbar-logo:hover {
    transform: translateX(3px);
}

/* Navbar Menu */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item {
    position: relative;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.nav-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.04) 100%);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 50%;
    height: 2px;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item:hover {
    color: var(--white);
}

.nav-item:hover::before {
    opacity: 1;
}

.nav-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-item.active {
    color: var(--gold);
}

.nav-item.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Contact Button - Glass Effect */
.nav-btn {
    padding: 12px 28px;
    margin-left: 15px;
    background: linear-gradient(135deg,
        rgba(212, 175, 55, 0.9) 0%,
        rgba(184, 148, 31, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-btn::before {
    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.5s ease;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg,
        rgba(212, 175, 55, 1) 0%,
        rgba(184, 148, 31, 1) 100%);
    box-shadow: 
        0 6px 25px rgba(212, 175, 55, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.nav-links a:hover::after {
    opacity: 1;
    bottom: 4px;
}

/* Mobile Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.navbar-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

.navbar-toggle span {
    width: 26px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* ================================
   HERO SECTION - LUXURY
   ================================ */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Particles Background Effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(244, 228, 193, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(184, 148, 31, 0.05) 0%, transparent 50%);
    z-index: 1;
    animation: particleMove 20s ease-in-out infinite;
}

@keyframes particleMove {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.8;
    }
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Scanline Effect for Glitch */
.hero-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1) 0px,
        transparent 1px,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 3px
    );
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-slider.glitching::after {
    opacity: 0.5;
    animation: scanline 0.6s linear;
}

@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: none;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    animation: glitchSlide 0.6s ease-out;
    position: relative;
}

/* RGB Split Effect */
.slide.active::before,
.slide.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    opacity: 0;
    mix-blend-mode: screen;
    pointer-events: none;
}

.slide.active::before {
    animation: glitchRed 0.6s ease-out;
}

.slide.active::after {
    animation: glitchBlue 0.6s ease-out;
}

@keyframes glitchRed {
    0%, 100% {
        opacity: 0;
        transform: translate(0);
    }
    10%, 30%, 50% {
        opacity: 0.7;
        transform: translate(-3px, 0);
        filter: hue-rotate(-30deg);
    }
}

@keyframes glitchBlue {
    0%, 100% {
        opacity: 0;
        transform: translate(0);
    }
    20%, 40%, 60% {
        opacity: 0.7;
        transform: translate(3px, 0);
        filter: hue-rotate(30deg);
    }
}

/* Glitch Out Effect */
@keyframes glitchOut {
    0% {
        opacity: 1;
        transform: translate(0);
        filter: hue-rotate(0deg);
    }
    25% {
        opacity: 0.7;
        transform: translate(3px, -3px);
        filter: hue-rotate(60deg) saturate(2);
    }
    50% {
        opacity: 0.4;
        transform: translate(-3px, 3px);
        filter: hue-rotate(-60deg) saturate(2);
    }
    75% {
        opacity: 0.2;
        transform: translate(2px, -2px);
        filter: hue-rotate(30deg) saturate(3);
    }
    100% {
        opacity: 0;
        transform: translate(-5px, 5px) scale(0.95);
        filter: hue-rotate(-90deg) saturate(4);
    }
}

/* Glitch Effect for Slides */
@keyframes glitchSlide {
    0% {
        opacity: 0;
        transform: translate(0);
        filter: hue-rotate(0deg);
    }
    10% {
        opacity: 0.5;
        transform: translate(-5px, 5px);
        filter: hue-rotate(90deg) saturate(3);
    }
    20% {
        opacity: 0.8;
        transform: translate(5px, -5px);
        filter: hue-rotate(-90deg) saturate(3);
    }
    30% {
        opacity: 0.6;
        transform: translate(-3px, -3px);
        filter: hue-rotate(45deg) saturate(2);
    }
    40% {
        opacity: 0.9;
        transform: translate(3px, 3px);
        filter: hue-rotate(-45deg) saturate(2);
    }
    50% {
        opacity: 0.7;
        transform: translate(-2px, 2px);
        filter: hue-rotate(20deg) saturate(1.5);
    }
    60% {
        opacity: 0.95;
        transform: translate(2px, -2px);
        filter: hue-rotate(-20deg) saturate(1.5);
    }
    70% {
        opacity: 0.85;
        transform: translate(-1px, 1px);
        filter: hue-rotate(10deg) saturate(1.2);
    }
    85% {
        opacity: 0.98;
        transform: translate(1px, -1px);
        filter: hue-rotate(-5deg) saturate(1.1);
    }
    100% {
        opacity: 1;
        transform: translate(0);
        filter: hue-rotate(0deg) saturate(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    perspective: 1000px;
}

.hero-tag {
    display: inline-block;
    padding: 14px 32px;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--gold);
    border-radius: 50px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 36px;
    animation: fadeInDown 1s ease-out, glow 2s ease-in-out infinite alternate;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3),
                inset 0 0 20px rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-tag::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 70%);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes glow {
    0% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), inset 0 0 20px rgba(212, 175, 55, 0.1); }
    100% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.6), inset 0 0 30px rgba(212, 175, 55, 0.2); }
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 28px;
    line-height: 1.1;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease-out 0.2s backwards, floatTitle 3s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes floatTitle {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-10px) rotateX(2deg); }
}

/* Flamme Word Styling - Elegant Gold Effect */
.fire-word {
    position: relative;
    display: inline-block;
    font-weight: 900;
    background: linear-gradient(135deg, #F4E4C1 0%, #D4AF37 45%, #B8941F 80%, #F4E4C1 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s ease-in-out infinite;
    text-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
}

@keyframes goldShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.fire-word::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: goldLine 3s ease-in-out infinite;
}

@keyframes goldLine {
    0% { transform: scaleX(0.2); opacity: 0.3; }
    50% { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(0.2); opacity: 0.3; }
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite, glitchText 5s ease-in-out infinite;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

@keyframes gradientShift {
    0%, 100% { 
        background-position: 0% 50%;
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    }
    50% { 
        background-position: 100% 50%;
        filter: drop-shadow(0 0 30px rgba(244, 228, 193, 0.8));
    }
}

@keyframes glitchText {
    0%, 90%, 100% { 
        transform: translate(0);
        text-shadow: none;
    }
    91% { 
        transform: translate(-2px, 2px);
        text-shadow: 2px -2px 0 rgba(212, 175, 55, 0.7);
    }
    92% { 
        transform: translate(2px, -2px);
        text-shadow: -2px 2px 0 rgba(244, 228, 193, 0.7);
    }
    93% { 
        transform: translate(0);
        text-shadow: none;
    }
}

.hero-subtitle {
    font-size: 22px;
    color: var(--gray);
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Magnetic Button Effect */
.btn:hover {
    animation: magneticPulse 0.6s ease-in-out;
}

@keyframes magneticPulse {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-2px) scale(1.01); }
    50% { transform: translateY(-4px) scale(1.02); }
    75% { transform: translateY(-2px) scale(1.01); }
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.btn-primary::before {
    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.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent);
    -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;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    color: var(--black);
}

.btn-primary:focus {
    color: var(--black);
}

.btn-primary:hover svg {
    animation: arrowBounceRight 0.6s ease-in-out infinite;
}

@keyframes arrowBounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 3;
}

.slider-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--gold);
    transform: scale(1.1);
}

.slider-btn svg path {
    stroke: var(--gold);
    transition: stroke 0.3s ease;
}

.slider-btn:hover svg path {
    stroke: var(--black);
}

.slider-dots {
    display: flex;
    gap: 16px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(212, 175, 55, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: var(--gold);
    width: 40px;
    border-radius: 6px;
}

/* ================================
   SECTIONS
   ================================ */

section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--gold);
    border-radius: 30px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.section-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.section-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--white);
    margin: 0 0 24px;
    letter-spacing: -1px;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.3), 
        transparent);
    animation: titleReveal 2s ease-out forwards;
}

@keyframes titleReveal {
    0% { left: -100%; }
    100% { left: 100%; }
}

.section-subtitle {
    font-size: 19px;
    color: var(--gray);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ================================
   STATS COUNTER SECTION
   ================================ */

.stats-section {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.stat-item:hover::before {
    width: 300px;
    height: 300px;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    background: rgba(26, 26, 26, 0.8);
}

.stat-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.stat-number {
    font-size: 58px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
}

.stat-number::after {
    content: '+';
    font-size: 42px;
    margin-left: 5px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ================================
   ABOUT SECTION
   ================================ */

.about-section {
    background: var(--black-light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.about-card {
    background: var(--black-lighter);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.card-icon {
    margin: 0 auto 32px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 20px;
    position: relative;
    animation: floatIcon 3s ease-in-out infinite;
    transform-style: preserve-3d;
}

.about-card:hover .card-icon {
    animation: shakeIcon 0.5s ease-in-out;
}

@keyframes shakeIcon {
    0%, 100% { transform: translateX(0) rotate(0deg) scale(1); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px) rotate(-5deg) scale(1.1); }
    20%, 40%, 60%, 80% { transform: translateX(5px) rotate(5deg) scale(1.1); }
}

.card-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 20px;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.5;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.15);
    }
}

.card-icon svg {
    width: 45px;
    height: 45px;
}

.card-icon svg path,
.card-icon svg circle {
    stroke: var(--black);
    stroke-width: 2;
}

.about-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.about-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 16px;
}

/* ================================
   SERVICES SECTION
   ================================ */

.services-section {
    background: var(--black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--black-lighter);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-gold);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

/* Wave Effect on Hover */
@keyframes wave {
    0% {
        transform: translateX(-100%) translateY(-50%) rotate(0deg);
    }
    100% {
        transform: translateX(200%) translateY(-50%) rotate(360deg);
    }
}

.service-card .wave-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.8), 
        transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .wave-line {
    opacity: 1;
    animation: wave 1.5s linear infinite;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 35px 90px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(212, 175, 55, 0.3);
    animation: glowBorder 2s ease-in-out infinite;
}

@keyframes glowBorder {
    0%, 100% {
        box-shadow: 
            0 35px 90px rgba(0, 0, 0, 0.7),
            0 0 40px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 
            0 35px 90px rgba(0, 0, 0, 0.7),
            0 0 60px rgba(212, 175, 55, 0.6),
            0 0 90px rgba(244, 228, 193, 0.4);
    }
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.2) rotate(2deg);
    filter: brightness(1.1) contrast(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.9) 100%);
}

.service-content {
    padding: 40px;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: var(--shadow-gold);
}

.service-icon svg {
    width: 35px;
    height: 35px;
}

.service-icon svg path,
.service-icon svg circle,
.service-icon svg rect {
    stroke: var(--black);
    fill: none;
}

.service-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.service-content > p {
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 16px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    color: var(--gray);
    padding-left: 32px;
    position: relative;
    font-size: 15px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 18px;
}

/* ================================
   ADDITIONAL SERVICES GRID SECTION
   ================================ */

.additional-services-section {
    background: var(--black);
    padding: 120px 0;
    position: relative;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.additional-service-card {
    position: relative;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(212, 175, 55, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--black-lighter);
}

.additional-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
    transition: all 0.5s ease;
}

.additional-service-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--gold);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.35);
}

.additional-service-card:hover::before {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.1) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.98) 100%);
}

.additional-service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.additional-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.additional-service-card:hover .additional-service-image img {
    transform: scale(1.15);
}

.additional-service-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    z-index: 2;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.98), transparent);
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    transition: all 0.5s ease;
}

.additional-service-card:hover .additional-service-title {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-5px);
}

/* ================================
   GALLERY SECTION
   ================================ */

.gallery-section {
    background: var(--black-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.gallery-item {
    position: relative;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.95) 100%);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.gallery-overlay p {
    color: var(--gold);
    font-size: 15px;
    font-weight: 600;
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */

.testimonials-section {
    background: var(--black);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--black-lighter);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    color: var(--gold);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.stars {
    color: var(--gold);
    font-size: 28px;
    margin-bottom: 24px;
    letter-spacing: 4px;
}

.testimonial-text {
    color: var(--gray);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 32px;
    font-style: italic;
    position: relative;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 6px;
}

.testimonial-author span {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================
   CONTACT SECTION
   ================================ */

.contact-section {
    background: var(--black-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-card {
    background: var(--black-lighter);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.info-icon {
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.info-icon svg {
    width: 40px;
    height: 40px;
}

.info-icon svg path,
.info-icon svg rect {
    stroke: var(--black);
}

.info-card h4 {
    color: var(--white);
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 14px;
}

.info-card p {
    color: var(--white);
    font-size: 16px;
    line-height: 1.7;
}

/* Contact Form */
.contact-form {
    background: var(--black-lighter);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: var(--black);
    color: var(--white);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-dark);
}

.checkbox-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--gray);
    font-size: 14px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
    accent-color: var(--gold);
}

.checkbox-label a {
    color: var(--white);
    text-decoration: underline;
}

.submit-btn {
    grid-column: 1 / -1;
    justify-self: start;
}

.form-message {
    grid-column: 1 / -1;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
    color: #22c55e;
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
    display: block;
}

/* ================================
   BACK TO TOP BUTTON
   ================================ */

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1) rotate(360deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.back-to-top svg {
    width: 28px;
    height: 28px;
    stroke: var(--black);
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    animation: arrowBounce 0.6s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background: var(--black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-logo svg {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.footer-section p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 16px;
}

.footer-section h4 {
    color: var(--white);
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 14px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-section ul li a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom p {
    color: var(--white);
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--black-lighter);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.footer-social a:hover svg {
    fill: var(--black);
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 25px;
    }
    
    .navbar-wrapper {
        height: 75px;
    }
    
    .navbar-menu {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 75px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        gap: 0;
        padding: 40px 25px;
        border-left: 2px solid rgba(212, 175, 55, 0.3);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.9);
    }
    
    .navbar-menu.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
        padding: 15px 20px;
        text-align: center;
        font-size: 15px;
    }
    
    .nav-btn {
        width: 100%;
        margin: 20px 0 0 0;
        text-align: center;
        padding: 15px 28px;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .logo-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .logo-title {
        font-size: 19px;
    }
    
    .logo-tagline {
        font-size: 9px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .services-grid,
    .about-grid,
    .testimonials-grid,
    .gallery-grid,
    .additional-services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-text {
        font-size: 20px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
        padding: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 32px;
    }
}

/* ================================
   SCROLL BAR
   ================================ */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* Selection */
::selection {
    background: var(--gold);
    color: var(--black);
}

/* ================================
   COOKIE CONSENT BANNER - IMPROVED
   ================================ */

.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 2px solid var(--gold);
    border-radius: 24px;
    padding: 35px 40px;
    max-width: 600px;
    width: calc(100% - 40px);
    z-index: 10000;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9),
                0 0 0 1px rgba(212, 175, 55, 0.2),
                0 0 40px rgba(212, 175, 55, 0.3);
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cookie-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    border: 2px solid var(--gold);
    animation: floatIcon 3s ease-in-out infinite;
    margin: 0 auto;
}

.cookie-text {
    color: var(--white);
    text-align: center;
}

.cookie-text h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.cookie-text a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid var(--white);
    transition: all 0.3s ease;
    font-weight: 600;
}

.cookie-text a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.cookie-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.cookie-btn {
    padding: 16px 24px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.cookie-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cookie-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cookie-btn-accept {
    background: var(--gradient-gold);
    color: var(--black);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
    grid-column: 1 / -1;
    font-size: 16px;
    padding: 18px 32px;
}

.cookie-btn-accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.7);
}

.cookie-btn-accept:active {
    transform: translateY(-1px);
}

.cookie-btn-necessary {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 2px solid var(--gold);
}

.cookie-btn-necessary:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Cookie Banner Close Animation */
@keyframes slideDown {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(150%);
    }
}

.cookie-banner.hide {
    animation: slideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Cookie Icon Animation */
@keyframes cookieRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

.cookie-icon svg {
    animation: cookieRotate 3s ease-in-out infinite;
}

/* Cookie Banner Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 20px;
        padding: 28px 25px;
        max-width: calc(100% - 30px);
        border-radius: 20px;
    }

    .cookie-text h3 {
        font-size: 22px;
    }

    .cookie-text p {
        font-size: 14px;
    }

    .cookie-buttons {
        grid-template-columns: 1fr;
    }

    .cookie-btn-accept {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 20px 15px;
    }

    .cookie-text h3 {
        font-size: 20px;
    }

    .cookie-text p {
        font-size: 14px;
    }

    .cookie-buttons {
        max-width: 100%;
    }
}