/* ==========================================
   الفنان للدعاية والإعلان - Styles
   ========================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #D4AF37;
    --primary-dark: #B8960C;
    --primary-light: #E8C84A;
    --secondary: #1a1a2e;
    --secondary-light: #252540;
    --accent: #16213e;
    --bg-dark: #0f0f1a;
    --bg-gradient: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
    --text-light: #ffffff;
    --text-muted: #a0a0b0;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F5E7A3 50%, #D4AF37 100%);

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 5px 30px rgba(212, 175, 55, 0.3);

    /* Typography */
    --font-main: 'Cairo', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50%;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

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

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

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

.navbar.scrolled {
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-normal);
}

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

.nav-link:hover {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition-normal);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    right: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px;
    box-sizing: border-box;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--bg-gradient);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 30%);
    animation: patternPulse 8s ease-in-out infinite;
}

@keyframes patternPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Particles Canvas */
#particlesCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ==========================================
   Hero Decorative Elements
   ========================================== */
.hero-decorations {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* Golden Arcs */
.golden-arc {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 2px solid transparent;
    border-radius: 50%;
    border-top-color: rgba(212, 175, 55, 0.3);
    border-right-color: rgba(212, 175, 55, 0.15);
}

.arc-left {
    top: 50%;
    left: -300px;
    transform: translateY(-50%);
    animation: rotateArc 20s linear infinite;
}

.arc-right {
    top: 50%;
    right: -300px;
    transform: translateY(-50%);
    animation: rotateArcReverse 25s linear infinite;
}

@keyframes rotateArc {
    from {
        transform: translateY(-50%) rotate(0deg);
    }

    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

@keyframes rotateArcReverse {
    from {
        transform: translateY(-50%) rotate(360deg);
    }

    to {
        transform: translateY(-50%) rotate(0deg);
    }
}

/* Golden Circles */
.golden-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    animation: pulseCircle 4s ease-in-out infinite;
}

.circle-left {
    top: 20%;
    left: -150px;
    animation-delay: 0s;
}

.circle-right {
    bottom: 20%;
    right: -150px;
    animation-delay: 2s;
}

@keyframes pulseCircle {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
        border-color: rgba(212, 175, 55, 0.2);
    }

    50% {
        transform: scale(1.1);
        opacity: 0.6;
        border-color: rgba(212, 175, 55, 0.4);
    }
}

/* Floating Dots */
.floating-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.8) 0%, rgba(212, 175, 55, 0.3) 50%, transparent 70%);
    border-radius: 50%;
    animation: floatDot 6s ease-in-out infinite;
}

.dot-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 5s;
}

.dot-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1.5s;
    animation-duration: 7s;
}

.dot-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
    animation-duration: 6s;
}

.dot-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
    animation-duration: 8s;
}

@keyframes floatDot {

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

    25% {
        transform: translateY(-30px) scale(1.3);
        opacity: 0.9;
    }

    50% {
        transform: translateY(-15px) scale(1.1);
        opacity: 0.7;
    }

    75% {
        transform: translateY(-40px) scale(1.2);
        opacity: 0.8;
    }
}

/* Large decorative arc outlines */
.hero-decorations::before,
.hero-decorations::after {
    content: '';
    position: absolute;
    border: 1px dashed rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    animation: expandArc 8s ease-in-out infinite;
}

.hero-decorations::before {
    width: 800px;
    height: 800px;
    top: 50%;
    left: -400px;
    transform: translateY(-50%);
    animation-delay: 0s;
}

.hero-decorations::after {
    width: 700px;
    height: 700px;
    top: 50%;
    right: -350px;
    transform: translateY(-50%);
    animation-delay: 4s;
}

@keyframes expandArc {

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

    50% {
        transform: translateY(-50%) scale(1.05);
        opacity: 0.5;
    }
}

/* Mobile - hide some decorations for performance */
@media (max-width: 768px) {
    .golden-arc {
        width: 300px;
        height: 300px;
    }

    .arc-left {
        left: -150px;
    }

    .arc-right {
        right: -150px;
    }

    .golden-circle {
        width: 200px;
        height: 200px;
    }

    .circle-left {
        left: -80px;
    }

    .circle-right {
        right: -80px;
    }

    .hero-decorations::before,
    .hero-decorations::after {
        display: none;
    }

    .floating-dot {
        width: 5px;
        height: 5px;
    }
}

/* Hero Logo Styles */
.hero-logo-container {
    position: relative;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-logo {
    max-width: 320px;
    width: 85%;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Glow Logo Animation */
.glow-logo {
    animation: logoGlow 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.1)) brightness(1);
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4)) drop-shadow(0 0 40px rgba(212, 175, 55, 0.2)) brightness(1.05);
        transform: scale(1.01);
    }

    100% {
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3)) drop-shadow(0 0 30px rgba(212, 175, 55, 0.15)) brightness(1.02);
        transform: scale(1);
    }
}

/* Floating Particles Effect on Logo */
.hero-logo-container::before,
.hero-logo-container::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.6) 0%, transparent 70%);
    animation: floatParticle 4s ease-in-out infinite;
    pointer-events: none;
}

.hero-logo-container::before {
    width: 20px;
    height: 20px;
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.hero-logo-container::after {
    width: 15px;
    height: 15px;
    bottom: 10%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes floatParticle {

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

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

/* Glow Text Animation */
.glow-text {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.3), 0 0 40px rgba(212, 175, 55, 0.2);
        filter: brightness(1);
    }

    to {
        text-shadow: 0 0 40px rgba(212, 175, 55, 0.6), 0 0 80px rgba(212, 175, 55, 0.4), 0 0 100px rgba(212, 175, 55, 0.2);
        filter: brightness(1.1);
    }
}

/* Fade In Animation */
.animate-fade-in {
    animation: heroFadeIn 1s ease both;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Slide Up Animation */
.animate-slide-up {
    animation: heroSlideUp 1s ease both;
}

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

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

/* Animation Delays */
.hero-badge.animate-fade-in {
    animation-delay: 0.2s;
}

.hero-tagline.animate-fade-in {
    animation-delay: 0.6s;
}

.hero-description.animate-fade-in {
    animation-delay: 0.8s;
}

.title-sub.animate-slide-up {
    animation-delay: 0.4s;
}

.hero-cta.animate-slide-up {
    animation-delay: 1s;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-badge i {
    color: var(--primary);
}

.hero-badge span {
    font-weight: 600;
    color: var(--primary);
}

.hero-title {
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.title-main {
    display: block;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
}

.title-sub {
    display: block;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 10px;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.6s backwards;
    background: rgba(212, 175, 55, 0.08);
    padding: 12px 35px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.years-number {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
    line-height: 1;
}

.years-text {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-description {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.8s backwards;
    padding: 0 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: var(--font-main);
    border: none;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--secondary);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    color: var(--primary);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(10px);
    }

    60% {
        transform: translateY(5px);
    }
}

/* ==========================================
   Section Styles
   ========================================== */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   About Section
   ========================================== */
.about {
    background: var(--secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.about-content {
    display: grid;
    gap: 50px;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.9;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-gold);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: var(--radius-full);
    font-size: 1.5rem;
    color: var(--secondary);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================
   Services Section
   ========================================== */
.services {
    background: var(--bg-dark);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--secondary);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
}

.service-card:hover::before {
    width: 200px;
    height: 200px;
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: var(--radius-md);
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.service-desc {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-features li {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Service Gallery Link */
.service-gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 30px;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-normal);
}

.service-gallery-link:hover {
    background: var(--gold-gradient);
    color: var(--secondary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.service-gallery-link i {
    font-size: 1rem;
}

/* ==========================================
   Category Cards (Main Categories)
   ========================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Image-based Category Card */
.category-card-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    text-decoration: none;
    display: block;
}

.category-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #2a2a3e;
    transition: transform 0.5s ease;
}

.category-card-img:hover .category-bg {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    transition: var(--transition-normal);
}

.category-card-img:hover .category-overlay {
    background: linear-gradient(to top, rgba(15, 15, 26, 0.95) 0%, rgba(212, 175, 55, 0.2) 100%);
}

.category-icon-float {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--secondary);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    transition: var(--transition-normal);
}

.category-card-img:hover .category-icon-float {
    transform: scale(1.1) rotate(-5deg);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
}

.category-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.4;
}

.category-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-normal);
}

.category-card-img:hover .category-info p {
    opacity: 1;
    transform: translateY(0);
}

.category-count {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Old card style (keep for fallback) */
.category-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--secondary);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-md);
    padding: 25px;
    text-decoration: none;
    transition: var(--transition-normal);
    cursor: pointer;
}

.category-card:hover {
    transform: translateX(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-gold);
    background: rgba(212, 175, 55, 0.05);
}

.category-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: var(--radius-md);
    font-size: 1.8rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.category-content {
    flex: 1;
}

.category-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 5px;
}

.category-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.category-arrow {
    color: var(--primary);
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-normal);
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
}

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

    .category-card-img {
        height: 220px;
    }

    .category-info h3 {
        font-size: 1.1rem;
    }

    .category-icon-float {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Show paragraph always on mobile */
    .category-info p {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   Packages Section
   ========================================== */
.packages {
    background: var(--secondary);
    position: relative;
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.package-card {
    background: var(--bg-dark);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition-normal);
}

.package-card.featured {
    border-color: var(--primary);
    transform: scale(1.02);
}

.package-card.featured::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gold-gradient);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.package-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: var(--secondary);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.package-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary);
}

.package-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.package-desc {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.package-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 25px;
}

.package-features {
    text-align: right;
    margin-bottom: 30px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: var(--primary);
    font-size: 0.9rem;
}

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

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

    .category-card {
        padding: 20px;
    }

    .category-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .category-content h3 {
        font-size: 1rem;
    }

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

    .package-card.featured {
        transform: none;
    }

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

/* ==========================================
   Portfolio Section
   ========================================== */
.portfolio {
    background: var(--secondary);
    position: relative;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-normal);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.portfolio-overlay p {
    color: var(--text-muted);
}

.portfolio-subtitle {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 40px 0 30px;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

.gallery-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-gold);
    transform: scale(1.02);
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Gallery Overlay for Featured Works */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 20px 15px 15px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary);
}

.gallery-overlay span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-top: 3px;
}

.gallery-overlay .photo-count {
    color: var(--primary);
    margin-top: 8px;
}

.gallery-overlay .photo-count i {
    margin-left: 5px;
}

.portfolio-cta {
    text-align: center;
}

.portfolio-cta p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    background: var(--bg-dark);
    position: relative;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--secondary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-gold);
}

.contact-card.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-color: #25D366;
}

.contact-card.whatsapp:hover {
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
}

.contact-card.whatsapp .contact-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-card.whatsapp h4,
.contact-card.whatsapp p {
    color: white;
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: var(--radius-full);
    font-size: 1.8rem;
    color: var(--secondary);
}

.contact-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.contact-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--secondary);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 5px;
}

.footer-tagline {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px !important;
}

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

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-address h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary);
    padding-right: 10px;
}

.footer-contact p,
.footer-address p {
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i,
.footer-address i {
    color: var(--primary);
    width: 20px;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-gradient);
    color: var(--bg-dark);
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-map:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================
   WhatsApp Float Button
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

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

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
    }
}

/* ==========================================
   Animations
   ========================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   Lightbox Gallery
   ========================================== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-title {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    max-width: 60%;
    z-index: 10001;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-close:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: rotate(90deg);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
}

.lightbox-nav:hover {
    background: var(--primary);
    color: var(--secondary);
}

.lightbox-prev {
    right: 30px;
}

.lightbox-next {
    left: 30px;
}

/* Lightbox Info Panel */
.lightbox-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 70%, transparent 100%);
    padding: 60px 40px 30px;
    z-index: 10001;
}

.lightbox-info-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Header Row: Title + Category */
.lightbox-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.lightbox-title {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.3;
}

.lightbox-category {
    background: var(--primary);
    color: #000;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Details Row: Client + Counter */
.lightbox-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-client {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lightbox-client i {
    color: var(--primary);
    font-size: 0.9rem;
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 15px;
}

/* Description */
.lightbox-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
    text-align: right;
}

/* Mobile adjustments for lightbox */
@media (max-width: 768px) {
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        right: 10px;
    }

    .lightbox-next {
        left: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .lightbox-info {
        padding: 40px 20px 20px;
    }

    .lightbox-title {
        font-size: 1.3rem;
    }

    .lightbox-meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    .lightbox-description {
        font-size: 0.85rem;
    }
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(15, 15, 26, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 10px 12px;
        flex-direction: column;
        gap: 4px;
        border-bottom: 2px solid rgba(212, 175, 55, 0.4);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 9998;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        list-style: none;
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        color: #ffffff;
        font-size: 0.95rem;
        font-weight: 600;
        border-radius: 8px;
        background: transparent;
        transition: all 0.25s ease;
        text-decoration: none;
    }

    .nav-link i {
        font-size: 0.85rem;
        color: var(--primary);
        transition: transform 0.25s ease;
    }

    .nav-link:hover {
        background: rgba(212, 175, 55, 0.12);
        color: var(--primary);
        transform: scale(1.02);
    }

    .nav-link:hover i {
        transform: scale(1.15);
    }

    .nav-link.active {
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(180, 140, 40, 0.15) 100%);
        color: var(--primary);
        border: 1px solid rgba(212, 175, 55, 0.3);
    }

    .nav-link::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .hamburger {
        background: transparent;
    }

    .nav-toggle.active .hamburger::before {
        top: 0;
        transform: rotate(45deg);
        background: var(--primary);
    }

    .nav-toggle.active .hamburger::after {
        top: 0;
        transform: rotate(-45deg);
        background: var(--primary);
    }

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

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

    /* Hero fixes for mobile */
    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }

    .hero-logo {
        max-width: 200px !important;
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.2)) !important;
    }

    .hero-content {
        padding: 15px;
    }

    .hero-badge {
        padding: 8px 18px;
        margin-bottom: 20px;
        font-size: 0.85rem;
    }

    .hero-tagline {
        padding: 15px 25px;
        gap: 12px;
        margin-bottom: 20px;
    }

    .years-number {
        font-size: 2.5rem !important;
    }

    .years-text {
        font-size: 0.95rem !important;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

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

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .footer-contact p,
    .footer-address p {
        justify-content: center;
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-links ul li {
        margin-bottom: 0;
    }

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

    .portfolio-item {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.7rem;
    }

    .hero-logo {
        max-width: 300px;
    }
}