@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&display=swap');
/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    color: #e0e0e0;
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6, p, .stat-label, .stat-number, .hero-content, .section-badge, .about-text, .process-title, .process-desc {
    user-select: none;
    -webkit-user-select: none;
    cursor: default;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ========== TOP BAR ========== */
.top-bar {
    background: #111;
    padding: 8px 0;
    font-size: 0.8rem;
    border-bottom: 1px solid #222;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; gap: 20px; }
.top-bar-left a { color: #aaa; }
.top-bar-left a:hover { color: #481118; }
.top-bar-left i { margin-right: 6px; color: #481118; }
[lang="ar"] .top-bar-left i { margin-right: 0; margin-left: 6px; }
[lang="ar"] .top-bar-left a { direction: ltr; display: inline-flex; flex-direction: row-reverse; align-items: center; }

.top-bar-right {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 3px;
    border: 1px solid rgba(255,255,255,0.1);
}
.lang-switch {
    background: transparent;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 0.65rem;
    font-weight: 500;
    font-family: inherit;
    padding: 2px 10px;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}
.lang-switch:hover { color: #ccc; }
.lang-switch.active { background: rgba(72, 17, 24, 0.65); color: #fff; box-shadow: none; }
.lang-separator { display: none; }

/* ========== HEADER / NAV ========== */
.header {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 1px solid #1a1a1a;
    transition: background 0.3s, box-shadow 0.3s;
}
.header.scrolled { background: rgba(0,0,0,0.98); box-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; flex-direction: column; }
.logo-text { font-size: 1.6rem; font-weight: 800; color: #fff; letter-spacing: 1px; }
.logo-accent { color: #481118; }
.logo-tagline { font-size: 0.6rem; color: #888; text-transform: uppercase; letter-spacing: 2px; }
.logo-image { height: 57px; width: auto; max-width: 260px; object-fit: contain; }
.footer-logo-image { height: 57px; width: auto; max-width: 260px; object-fit: contain; }
.main-nav { display: flex; gap: 28px; align-items: center; position: relative; }
.nav-link {
    color: #ccc;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: #481118;
    transition: width 0.3s;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Nav dropdown */
.nav-item-dropdown { position: relative; }
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    border: 1px solid #222;
    border-radius: 6px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    padding: 8px 0;
    z-index: 100;
}
.nav-item-dropdown:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
    display: block;
    padding: 10px 20px;
    color: #ccc;
    font-size: 0.82rem;
    transition: all 0.3s;
}
.nav-dropdown a:hover { color: #481118; background: #1a1a1a; }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span {
    display: block; width: 26px; height: 2px;
    background: #fff; margin: 5px 0;
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== PAGE HERO (shared across subpages) ========== */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000;
    overflow: hidden;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(72, 17, 24,0.2));
    z-index: 1;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== HOME HERO ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #000;
    perspective: 1000px;
}
.hero-particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
}
.hero-aurora {
    position: absolute;
    inset: -15% -10%;
    z-index: 0;
    filter: blur(40px);
    opacity: 0.7;
    pointer-events: none;
}
.aurora-blob {
    position: absolute;
    border-radius: 999px;
    mix-blend-mode: screen;
    animation: auroraFloat 16s ease-in-out infinite alternate;
}
.aurora-blob-1 {
    width: 38vw;
    height: 38vw;
    min-width: 260px;
    min-height: 260px;
    background: radial-gradient(circle, rgba(72, 17, 24,0.55) 0%, rgba(72, 17, 24,0) 70%);
    top: 6%;
    left: 8%;
}
.aurora-blob-2 {
    width: 32vw;
    height: 32vw;
    min-width: 220px;
    min-height: 220px;
    background: radial-gradient(circle, rgba(245,121,34,0.45) 0%, rgba(245,121,34,0) 70%);
    bottom: 8%;
    right: 12%;
    animation-delay: -5s;
}
.aurora-blob-3 {
    width: 28vw;
    height: 28vw;
    min-width: 200px;
    min-height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0) 70%);
    top: 24%;
    right: 28%;
    animation-delay: -10s;
}
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.08;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 30%, #ffffff 0.6px, transparent 1px),
        radial-gradient(circle at 70% 60%, #ffffff 0.6px, transparent 1px),
        radial-gradient(circle at 40% 80%, #ffffff 0.6px, transparent 1px);
    background-size: 180px 180px, 220px 220px, 260px 260px;
    animation: grainDrift 10s linear infinite;
}
.hero-mouse-glow {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(
        320px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255,255,255,0.14),
        rgba(255,255,255,0) 60%
    );
    transition: background-position 0.08s linear;
}
.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('images/optimized/homepage-hero-highres.jpg');
    background-size: cover;
    background-position: center;
}
/* Hide native play button overlay on mobile browsers */
.hero-bg-video::-webkit-media-controls-start-playback-button,
.hero-bg-video::-webkit-media-controls-play-button,
.hero-bg-video::-webkit-media-controls {
    display: none !important;
    -webkit-appearance: none;
    opacity: 0 !important;
    pointer-events: none !important;
}
.hero-unmute-btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.4);
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s, opacity 0.4s, transform 0.4s;
}
.hero-unmute-btn:hover {
    background: rgba(72, 17, 24,0.7);
    border-color: #481118;
}
.hero-unmute-btn.hiding {
    opacity: 0;
    transform: scale(0.6);
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 3;
}
.hero-content {
    position: relative;
    z-index: 4;
    transform-style: preserve-3d;
    transition: transform 0.18s ease-out;
    will-change: transform;
}
.hero-cta {
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, background 0.3s;
    will-change: transform;
}
.hero-title { font-size: 5.5rem; font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; letter-spacing: -1px; }
.hero-title-line { display: block; }
.hero-accent { 
    color: #481118; 
    background-color: #ffffff;
    padding: 4px 20px;
    display: inline-block;
    border-radius: 4px;
    margin-top: 10px;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    font-weight: 300;
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-arrow {
    width: 24px; height: 24px;
    border-right: 2px solid rgba(255,255,255,0.5);
    border-bottom: 2px solid rgba(255,255,255,0.5);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
    50% { transform: rotate(45deg) translateY(10px); opacity: 0.5; }
}
@keyframes auroraFloat {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(3%, -4%, 0) scale(1.05); }
    100% { transform: translate3d(-4%, 2%, 0) scale(0.98); }
}
@keyframes grainDrift {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-60px, -40px, 0); }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}
.btn-primary { background: #481118; color: #fff; }
.btn-primary:hover { background: #300b10; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(72, 17, 24,0.3); }
.btn-outline { border: 2px solid #481118; color: #481118; background: transparent; }
.btn-outline:hover { background: #481118; color: #fff; transform: translateY(-2px); }
.btn-outline-white { border: 2px solid #fff; color: #fff; background: transparent; }
.btn-outline-white:hover { background: #fff; color: #0a0a0a; }

/* ========== SECTION COMMON ========== */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    letter-spacing: -0.5px;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px; height: 3px;
    background: #481118;
    margin: 15px auto 0;
}
.section-title-large { font-size: 3.5rem; font-weight: 800; color: #fff; line-height: 1.25; letter-spacing: -0.5px; }
.section-subtitle {
    text-align: center;
    color: #999;
    font-size: 1rem;
    max-width: 650px;
    margin: 0 auto 50px;
}
.section-header { margin-bottom: 20px; }
.section-cta { text-align: center; margin-top: 40px; }

/* ========== ABOUT SECTION (Home) ========== */
.about-section { padding: 100px 0; background: #111; }
.about-content { max-width: 800px; margin: 0 auto; text-align: center; }
.about-text { color: #bbb; font-size: 1.05rem; margin-top: 25px; line-height: 1.8; }

/* ========== ROTATING TEXT (Event Solutions) ========== */
.solutions-section { padding: 120px 0; background: #0a0a0a; overflow: hidden; }
.solutions-content { text-align: center; }
.solutions-heading { font-size: 3.8rem; font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -1px; }
.solutions-static { display: block; margin-bottom: 20px; }
.solutions-rotating-wrapper {
    display: block;
    height: 160px;
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
}
.solutions-rotating {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
.rotating-word {
    display: block;
    color: #481118;
    font-weight: 900;
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(120px) scale(0.8) rotateX(-30deg);
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: top center;
}
.rotating-word.active { 
    opacity: 1; 
    transform: translateY(0) scale(1) rotateX(0deg); 
    color: #481118;
    z-index: 3;
    text-shadow: 0 20px 30px rgba(0, 0, 0, 0.95);
}
.rotating-word.next-1 {
    opacity: 0.15;
    transform: translateY(70px) scale(0.9) rotateX(20deg);
    color: #fff;
    z-index: 2;
}
.rotating-word.next-2 {
    opacity: 0.05;
    transform: translateY(130px) scale(0.8) rotateX(35deg);
    color: #fff;
    z-index: 1;
}
.rotating-word.exit { 
    opacity: 0; 
    transform: translateY(-80px) scale(0.9) rotateX(-20deg); 
}

/* ========== STATS ========== */
.stats-section { 
    padding: 100px 0; 
    position: relative;
    background: #ffffff;
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; position: relative; z-index: 1; }
.stat-item { padding: 30px; }
.stat-icon { font-size: 2.5rem; color: #481118; margin-bottom: 15px; }
.stat-number { font-size: 3rem; font-weight: 800; color: #fff; }
.stat-number::before { content: '+'; }
.stat-label { color: #999; font-size: 0.95rem; margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }

/* ========== SERVICES GRID ========== */
.services-section { padding: 100px 0 20px; background: #0a0a0a; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    transition: transform 0.4s;
}
.service-card:hover { transform: scale(1.03); }
.service-card-bg {
    position: absolute;
    inset: 0;
    background-color: #151515;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s;
}
.service-card:hover .service-card-bg { transform: scale(1.1); }
.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
    transition: background 0.3s;
}
.service-card:hover .service-card-overlay { background: linear-gradient(180deg, transparent 20%, rgba(72, 17, 24,0.6) 100%); }
.service-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 25px;
    z-index: 2;
}
.service-card-content h3 { color: #fff; font-size: 1.15rem; font-weight: 600; }

/* ========== SERVICES PAGE - Marquee ========== */
.services-marquee { padding: 60px 0; background: #111; overflow: hidden; }
.marquee-track {
    display: flex;
    gap: 60px;
    animation: marqueeScroll 20s linear infinite;
    white-space: nowrap;
}
.marquee-item {
    font-size: 1.3rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 3px;
    flex-shrink: 0;
}
.marquee-item.highlight { color: #481118; }
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== SERVICES PAGE - Grid ========== */
.services-page-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-page-card {
    background: #151515;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.service-page-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(72, 17, 24,0.15); }
.service-page-card-img {
    height: 220px;
    background-color: #151515;
    background-size: cover;
    background-position: center;
    position: relative;
}
.service-page-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, #151515 100%);
}
.service-page-card-body { 
    padding: 25px; 
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.service-page-card-body h3 { color: #fff; font-size: 1.2rem; margin-bottom: 10px; }
.service-page-card-body p { color: #999; font-size: 0.9rem; margin-bottom: 18px; }

/* Service card interactive buttons */
.service-card-actions { 
    display: flex; 
    gap: 10px; 
    flex-wrap: wrap; 
    margin-top: auto; 
}
.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: 'Montserrat', sans-serif;
}
.btn-service i {
    transition: transform 0.3s ease;
    font-size: 0.7rem;
}
.btn-service-primary {
    background: #481118;
    color: #fff;
    box-shadow: 0 4px 15px rgba(72, 17, 24, 0.25);
}
.btn-service-primary:hover {
    background: #300b10;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 17, 24, 0.4);
}
.btn-service-primary:hover i { transform: translateX(4px); }
.btn-service-primary:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(72, 17, 24, 0.3); }
.btn-service-outline {
    background: transparent;
    color: #481118;
    border: 1.5px solid #481118;
}
.btn-service-outline:hover {
    background: #481118;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 17, 24, 0.3);
}
.btn-service-outline:active { transform: translateY(0); }

/* ========== SERVICE CARD CLICKABLE IMAGE ========== */
.service-page-card-img-link {
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.service-page-card-img-link .service-page-card-img {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-page-card-img-link:hover .service-page-card-img {
    transform: scale(1.08);
}
.service-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(72, 17, 24, 0.0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
    z-index: 2;
}
.service-img-overlay span {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 6px;
    backdrop-filter: blur(4px);
}
.service-img-overlay span i {
    transition: transform 0.3s ease;
}
.service-page-card-img-link:hover .service-img-overlay {
    background: rgba(72, 17, 24, 0.55);
}
.service-page-card-img-link:hover .service-img-overlay span {
    opacity: 1;
    transform: translateY(0);
}
.service-page-card-img-link:hover .service-img-overlay span i {
    transform: translateX(4px);
}

/* ========== WORK PROCESS ========== */
.process-section { 
    padding: 120px 0; 
    position: relative;
    background: #ffffff;
}
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; position: relative; z-index: 1; }
.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}
.process-number {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #481118;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #481118;
    margin: 0 auto 20px;
    transition: all 0.3s;
}
.process-step:hover .process-number { background: #481118; color: #fff; }
.process-title { color: #fff; font-size: 1.1rem; margin-bottom: 12px; }
.process-desc { color: #888; font-size: 0.88rem; line-height: 1.6; }

/* ========== PROJECTS ========== */
.projects-section { padding: 100px 0; background: #111; }
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.project-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/10;
}
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.project-card:hover img { transform: scale(1.08); }
.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}
.project-card:hover .project-overlay { opacity: 1; }
.play-btn {
    width: 60px; height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    transition: all 0.3s;
}
.play-btn:hover { background: #481118; border-color: #481118; }
.project-overlay h3 { color: #fff; font-size: 1rem; }
.project-tag {
    position: absolute;
    top: 15px; left: 15px;
    background: rgba(72, 17, 24,0.85);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

/* Projects page filter */
.projects-filter { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 40px; }
.filter-btn {
    padding: 8px 20px;
    border: 1px solid #333;
    background: transparent;
    color: #999;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.3s;
}
.filter-btn.active, .filter-btn:hover { background: #481118; border-color: #481118; color: #fff; }
.projects-page-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ========== CLIENTS ========== */
.clients-section { padding: 80px 0; background: #0a0a0a; }
.clients-title { color: #fff; }
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.client-logo {
    background: #151515;
    border: 1px solid #222;
    border-radius: 10px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.client-logo:hover { border-color: #481118; transform: translateY(-4px); }
.client-logo span { color: #666; font-size: 0.9rem; }

/* ========== JOIN US ========== */
.join-section { padding: 100px 0; background: #111; }
.join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.join-image img { border-radius: 12px; }
.join-content .section-title-large { margin-bottom: 20px; }
.join-text { color: #bbb; margin-bottom: 20px; font-size: 1rem; }

/* Join Us page specific */
.join-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin: 60px 0; }
.join-feature-card {
    background: #151515;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}
.join-feature-card:hover { border-color: #481118; transform: translateY(-6px); box-shadow: 0 15px 40px rgba(72, 17, 24,0.1); }
.join-feature-icon { font-size: 2.5rem; color: #481118; margin-bottom: 20px; }
.join-feature-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 12px; }
.join-feature-card p { color: #999; font-size: 0.9rem; line-height: 1.6; }
.why-work-section { padding: 80px 0; }
.why-work-content { max-width: 800px; margin: 0 auto; text-align: center; }

/* ========== SERVICE DETAIL PAGE STYLES ========== */

/* Intro text section between hero and image panels */
.service-intro {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}
.service-intro p {
    font-size: 1.25rem;
    color: #333;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    font-style: italic;
}

/* Container for the image banner panels */
.eventana-features-container {
    padding: 0;
    background: #111;
    color: #fff;
}
.eventana-features-container .section-title { display: none; }
.eventana-features-container .section-title::after { display: none; }

/* Each feature = full-width image banner */
.eventana-feature-block {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    margin-bottom: 0;
    overflow: hidden;
}
.eventana-feature-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
}
.eventana-feature-block h3 {
    position: relative;
    z-index: 2;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: none;
    letter-spacing: 1px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    margin-bottom: 0;
}
.eventana-feature-block p {
    display: none;
}

.eventana-why-work { padding: 100px 0; background: #000; color: #fff; }
.eventana-why-work .section-title { font-size: 3.5rem; text-align: left; margin-bottom: 30px; letter-spacing: -1px; }
.eventana-why-work .section-title::after { display: none; }
.eventana-why-work p { font-size: 1.15rem; color: #eee; line-height: 1.7; margin-bottom: 25px; text-align: left; }

.eventana-job-banner {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 55vh;
}
.eventana-job-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}
.eventana-job-banner > * { position: relative; z-index: 2; }
.eventana-job-banner h2 { font-size: 4.5rem; font-weight: 800; color: #fff; margin-bottom: 30px; letter-spacing: -1px; }
.eventana-job-banner .btn-outline-white {
    padding: 15px 45px;
    font-size: 1.1rem;
    font-weight: 700;
}

.why-work-content p { color: #bbb; font-size: 1rem; margin-top: 20px; line-height: 1.8; }
.jobs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.job-card {
    background: #151515;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.3s;
}
.job-card:hover { border-color: #481118; }
.job-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 20px; }

/* ========== ABOUT PAGE ========== */
.about-page-section { padding: 80px 0; background: #111; }
.about-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-page-text h2 { color: #fff; font-size: 2rem; margin-bottom: 20px; }
.about-page-text p { color: #bbb; font-size: 1rem; line-height: 1.8; margin-bottom: 15px; }

/* Tabs */
.tabs { margin-top: 40px; }
.tab-nav { display: flex; gap: 0; border-bottom: 2px solid #222; }
.tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    color: #888;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}
.tab-btn.active { color: #481118; }
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 100%; height: 2px;
    background: #481118;
}
.tab-panel { display: none; padding: 30px 0; color: #bbb; font-size: 0.95rem; line-height: 1.8; }
.tab-panel.active { display: block; animation: fadeTab 0.4s ease; }
@keyframes fadeTab { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Accordion */
.accordion { margin-top: 30px; }
.what-we-do-section { padding: 80px 0; background: #0a0a0a; }
.what-we-do-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.what-we-do-header p { color: #999; margin-top: 15px; }
.accordion-item { border-bottom: 1px solid #222; }
.accordion-btn {
    width: 100%;
    padding: 20px 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}
.accordion-btn:hover { color: #481118; }
.accordion-btn i { transition: transform 0.3s; color: #481118; }
.accordion-item.active .accordion-btn i { transform: rotate(180deg); }
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.accordion-content p { color: #999; padding-bottom: 20px; font-size: 0.92rem; line-height: 1.7; }

/* ========== CONTACT ========== */
.contact-section { padding: 100px 0; background: #0a0a0a; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 30px; }
.contact-item { display: flex; gap: 15px; align-items: flex-start; }
.contact-item i { color: #481118; font-size: 1.3rem; margin-top: 4px; }
.contact-item h4 { color: #fff; font-size: 1rem; margin-bottom: 4px; }
.contact-item p { color: #999; font-size: 0.9rem; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
    background: #151515;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 14px 18px;
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s;
    width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #481118;
}
.contact-form select { appearance: none; cursor: pointer; }

/* Contact page specific */
.contact-page-section { padding: 80px 0; background: #111; }
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-link {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: all 0.3s;
}
.social-link:hover { background: #481118; border-color: #481118; color: #fff; }

/* ========== CTA BANNER ========== */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #481118 0%, #8b0000 100%);
    text-align: center;
}
.cta-banner h2 { color: #fff; font-size: 2.2rem; margin-bottom: 15px; }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 30px; }

/* ========== FOOTER ========== */
.footer { background: #000; padding: 60px 0 0; border-top: 1px solid #1a1a1a; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; }
.footer-logo { margin-bottom: 15px; }
.footer-desc { color: #888; font-size: 0.88rem; line-height: 1.7; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: all 0.3s;
}
.footer-socials a:hover { background: #481118; border-color: #481118; color: #fff; }
.footer-heading { color: #fff; font-size: 1rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #888; font-size: 0.88rem; transition: color 0.3s; }
.footer-links a:hover { color: #481118; }
.footer-bottom {
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
    border-top: 1px solid #1a1a1a;
    color: #666;
    font-size: 0.82rem;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: #481118;
    color: #fff;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 999;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(72, 17, 24,0.3);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(72, 17, 24,0.4); }

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.scale-in.visible { opacity: 1; transform: scale(1); }

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Staggered children animation */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
}
.stagger-children.visible > *:nth-child(1) { animation: fadeUp 0.5s ease 0.1s forwards; }
.stagger-children.visible > *:nth-child(2) { animation: fadeUp 0.5s ease 0.2s forwards; }
.stagger-children.visible > *:nth-child(3) { animation: fadeUp 0.5s ease 0.3s forwards; }
.stagger-children.visible > *:nth-child(4) { animation: fadeUp 0.5s ease 0.4s forwards; }
.stagger-children.visible > *:nth-child(5) { animation: fadeUp 0.5s ease 0.5s forwards; }
.stagger-children.visible > *:nth-child(6) { animation: fadeUp 0.5s ease 0.6s forwards; }
.stagger-children.visible > *:nth-child(7) { animation: fadeUp 0.5s ease 0.7s forwards; }
.stagger-children.visible > *:nth-child(8) { animation: fadeUp 0.5s ease 0.8s forwards; }
.stagger-children.visible > *:nth-child(9) { animation: fadeUp 0.5s ease 0.9s forwards; }
.stagger-children.visible > *:nth-child(10) { animation: fadeUp 0.5s ease 1.0s forwards; }
.stagger-children.visible > *:nth-child(11) { animation: fadeUp 0.5s ease 1.1s forwards; }
.stagger-children.visible > *:nth-child(12) { animation: fadeUp 0.5s ease 1.2s forwards; }
.stagger-children.visible > *:nth-child(13) { animation: fadeUp 0.5s ease 1.3s forwards; }
.stagger-children.visible > *:nth-child(14) { animation: fadeUp 0.5s ease 1.4s forwards; }
.stagger-children.visible > *:nth-child(15) { animation: fadeUp 0.5s ease 1.5s forwards; }
.stagger-children.visible > *:nth-child(16) { animation: fadeUp 0.5s ease 1.6s forwards; }
.stagger-children.visible > *:nth-child(n+17) { animation: fadeUp 0.5s ease 1.7s forwards; }

/* ========== ENHANCED SECTION EFFECTS ========== */
.enhanced-section {
    position: relative;
    overflow: hidden;
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    margin-bottom: 18px;
}
.section-badge span {
    display: inline-block;
    padding: 6px 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #481118;
    border: 1.5px solid rgba(72, 17, 24, 0.35);
    border-radius: 30px;
    background: rgba(72, 17, 24, 0.06);
    animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { border-color: rgba(72, 17, 24, 0.35); box-shadow: 0 0 0 0 rgba(72, 17, 24, 0); }
    50% { border-color: rgba(72, 17, 24, 0.7); box-shadow: 0 0 20px rgba(72, 17, 24, 0.1); }
}

/* Floating Orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    opacity: 0.12;
    z-index: 0;
}
.floating-orb-1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #481118, transparent 70%);
    top: -100px; right: -100px;
    animation: orbFloat1 18s ease-in-out infinite alternate;
}
.floating-orb-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #f57922, transparent 70%);
    bottom: -50px; left: -80px;
    animation: orbFloat2 22s ease-in-out infinite alternate;
}
.floating-orb-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, #481118, transparent 70%);
    top: 50%; left: -120px;
    animation: orbFloat1 20s ease-in-out infinite alternate-reverse;
}
.floating-orb-4 {
    width: 320px; height: 320px;
    background: radial-gradient(circle, #ff6b35, transparent 70%);
    bottom: -80px; right: -60px;
    animation: orbFloat2 16s ease-in-out infinite alternate;
}
@keyframes orbFloat1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.1); }
    100% { transform: translate(-20px, 20px) scale(0.95); }
}
@keyframes orbFloat2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 40px) scale(1.08); }
    100% { transform: translate(25px, -15px) scale(0.92); }
}

/* Animated Grid Background */
.animated-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image:
        linear-gradient(rgba(72, 17, 24, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(72, 17, 24, 0.5) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridShift 25s linear infinite;
}
@keyframes gridShift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Section Background Pattern */
.section-bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.025;
    background-image:
        radial-gradient(circle at 25% 25%, #481118 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, #481118 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Section Background Dots */
.section-bg-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.03;
    background-image: radial-gradient(circle, #481118 1.2px, transparent 1.2px);
    background-size: 30px 30px;
    animation: dotsFloat 20s linear infinite;
}
@keyframes dotsFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-30px, -30px); }
}

/* Section Divider Glow */
.section-divider-glow {
    position: absolute;
    bottom: 0; left: 10%;
    width: 80%; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(72, 17, 24, 0.4), transparent);
    z-index: 1;
}

/* Glow Text */
.glow-text {
    text-shadow: 0 0 60px rgba(72, 17, 24, 0.08);
}

/* Card Shine Effect */
.card-shine {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.08) 45%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.08) 55%,
        transparent 60%
    );
    transform: translateX(-100%);
    transition: transform 0.7s ease;
}
.service-card:hover .card-shine {
    transform: translateX(100%);
}

/* Stat Card Enhanced */
.stat-card-enhanced {
    position: relative;
    background: rgba(72, 17, 24, 0.03);
    border: 1px solid rgba(72, 17, 24, 0.08);
    border-radius: 16px;
    padding: 40px 30px !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stat-card-enhanced:hover {
    border-color: rgba(72, 17, 24, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(72, 17, 24, 0.08);
}
.stat-ring {
    position: absolute;
    top: 50%; left: 50%;
    width: 120px; height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(72, 17, 24, 0.06);
    transform: translate(-50%, -50%);
    animation: ringPulse 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes ringPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

/* Process Step Enhanced */
.process-step-enhanced {
    background: rgba(72, 17, 24, 0.02);
    border: 1px solid rgba(72, 17, 24, 0.06);
    border-radius: 16px;
    transition: all 0.4s ease;
}
.process-step-enhanced:hover {
    border-color: rgba(72, 17, 24, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(72, 17, 24, 0.06);
}
.process-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(72, 17, 24, 0.3);
    animation: processPulse 2.5s ease-out infinite;
    pointer-events: none;
}
@keyframes processPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}
.process-number {
    position: relative;
}
.process-timeline {
    display: none;
}

/* Image Reveal & Border Glow */
.img-reveal {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}
.img-border-glow {
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(72, 17, 24, 0.4), transparent 50%, rgba(72, 17, 24, 0.4)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: borderRotate 6s linear infinite;
    z-index: 2;
}
@keyframes borderRotate {
    0% { background: linear-gradient(0deg, rgba(72, 17, 24, 0.5), transparent 40%, rgba(72, 17, 24, 0.2)) border-box; }
    25% { background: linear-gradient(90deg, rgba(72, 17, 24, 0.5), transparent 40%, rgba(72, 17, 24, 0.2)) border-box; }
    50% { background: linear-gradient(180deg, rgba(72, 17, 24, 0.5), transparent 40%, rgba(72, 17, 24, 0.2)) border-box; }
    75% { background: linear-gradient(270deg, rgba(72, 17, 24, 0.5), transparent 40%, rgba(72, 17, 24, 0.2)) border-box; }
    100% { background: linear-gradient(360deg, rgba(72, 17, 24, 0.5), transparent 40%, rgba(72, 17, 24, 0.2)) border-box; }
}

/* Animated Button */
.btn-animated {
    position: relative;
    overflow: hidden;
}
.btn-animated::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(72, 17, 24, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}
.btn-animated:hover::before {
    width: 300px;
    height: 300px;
}
.btn-animated i {
    transition: transform 0.3s ease;
}
.btn-animated:hover i {
    transform: translateX(5px);
}

/* Magnetic Card base (JS adds interactivity) */
.magnetic-card {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

/* Enhanced section z-index for content */
.enhanced-section > .container {
    position: relative;
    z-index: 1;
}

/* Parallax scroll reveal */
.parallax-section {
    will-change: transform;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .hero-title { font-size: 2.8rem; }
    .section-title-large { font-size: 2.2rem; }
    .page-hero-title { font-size: 2.5rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: 1fr; }
    .join-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-page-grid { grid-template-columns: 1fr; }
    .join-features-grid { grid-template-columns: 1fr; }
    .jobs-grid { grid-template-columns: 1fr; }
    .projects-page-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: 1fr; }
    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: #111;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        transition: right 0.3s;
        z-index: 999;
        overflow-y: auto;
    }
    .main-nav.active { right: 0; }
    .main-nav .nav-link { padding: 15px 0; display: block; border-bottom: 1px solid #1a1a1a; }
    .hamburger { display: block; z-index: 1001; }
    .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border: none; padding-left: 15px; }
}
/* Header lang switch explicitly placed next to the hamburger */
.header-lang-switch { display: none; }

@media (max-width: 768px) {
    .top-bar-inner { flex-wrap: nowrap; }
    .top-bar-left { gap: 12px; font-size: 0.72rem; flex-shrink: 1; min-width: 0; }
    .top-bar-left a { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .top-bar-right { display: none; }

    .header-inner {
        position: relative;
    }
    
    .header-lang-switch {
        display: flex;
        align-items: center;
        background: rgba(0, 0, 0, 0.10) !important;
        border: none;
        border-radius: 8px;
        padding: 1px 2px;
        margin-left: auto;
        margin-right: 8px;
        box-shadow: none;
        z-index: 1000;
        gap: 0;
    }
    .header-lang-switch .lang-switch {
        font-size: 0.48rem;
        padding: 1px 5px;
        min-width: unset;
        color: rgba(0, 0, 0, 0.35) !important;
        background: transparent !important;
        border: none;
        cursor: pointer;
        font-weight: 500;
        transition: color 0.3s;
        line-height: 1.4;
        letter-spacing: 0.3px;
    }
    .header-lang-switch .lang-switch.active {
        color: rgba(0, 0, 0, 0.65) !important;
        background: rgba(0, 0, 0, 0.06) !important;
        border-radius: 6px;
    }
    .header-lang-switch .lang-separator { display: none; }
}
@media (max-width: 576px) {
    .top-bar { padding: 6px 0; }
    .top-bar-left { gap: 10px; font-size: 0.65rem; }
    .hero-title { font-size: 7.5vw; line-height: 1.2; letter-spacing: 0; }
    .hero-title-line { word-break: normal; overflow-wrap: normal; }
    .hero-accent { padding: 2px 10px; font-size: 6.5vw; }
    .section-title-large { font-size: 6vw; }
    .page-hero-title { font-size: 2rem; }
    .solutions-heading { font-size: 1.8rem; }
    .section-title { font-size: 1.6rem; }
    .services-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .projects-page-grid { grid-template-columns: 1fr; }
    .services-page-grid { grid-template-columns: 1fr; }

    /* Disable hero 3D perspective on mobile to prevent zoom-on-scroll */
    .hero { perspective: none; }
    .hero-content {
        transform-style: flat !important;
        transform: none !important;
    }
    .hero-cta {
        transform: none !important;
    }

    /* Destroy mobile stagger animations so elements are always instantly visible */
    .stagger-children > * {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    /* Join Us Page overrides for extremely large text */
    .eventana-feature-block { min-height: 40vh; }
    .eventana-feature-block h3 { font-size: 1.8rem; }
    .eventana-why-work .section-title { font-size: 2.2rem; }
    .eventana-why-work p { font-size: 1rem; }
    .eventana-job-banner { padding: 80px 20px; }
    .eventana-job-banner h2 { font-size: 2.5rem; margin-bottom: 20px; }
    .eventana-job-banner .btn-outline-white { padding: 12px 30px; font-size: 1rem; }
}


/* ========== WHITE THEME OVERRIDES ========== */
.top-bar,
.header,
.about-section,
.solutions-section,
.stats-section,
.services-section,
.services-marquee,
.process-section,
.projects-section,
.clients-section,
.join-section,
.about-page-section,
.what-we-do-section,
.contact-section,
.contact-page-section,
.footer,
.main-nav,
.nav-dropdown {
    background: #ffffff !important;
}

.top-bar { border-bottom: 1px solid #e5e5e5; }
.header { border-bottom: 1px solid #e9e9e9; }
.header.scrolled { background: #ffffff !important; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.nav-dropdown { border: 1px solid #e5e5e5; }
.nav-dropdown a:hover { background: #f6f6f6; }

.logo-text,
.section-title,
.section-title-large,
.solutions-heading,
.stat-number,
.stat-label,
.process-title,
.contact-item h4,
.accordion-btn,
.footer-heading,
.clients-title,
.about-page-text h2,
.job-card h3,
.service-page-card-body h3 {
    color: #111111;
}

.nav-link { color: #333333; }
.nav-link:hover, .nav-link.active { color: #111111; }
.logo-tagline,
.section-subtitle,
.about-text,
.process-desc,
.contact-item p,
.footer-desc,
.footer-links a,
.footer-bottom,
.tab-panel,
.what-we-do-header p,
.accordion-content p,
.service-page-card-body p,
.join-text,
.join-feature-card p,
.why-work-content p,
.about-page-text p {
    color: #555555;
}

.stat-number { color: #111111; }
.stat-label { color: #555555; }

.client-logo,
.service-page-card,
.join-feature-card,
.job-card,
.contact-form input,
.contact-form textarea,
.contact-form select {
    background: #ffffff;
    border-color: #e5e5e5;
    color: #222222;
}

/* White theme: fix hamburger visibility */
.hamburger span {
    background: #333 !important;
}

/* ========== RTL (ARABIC) SUPPORT ========== */
html[dir="rtl"] body,
html[dir="rtl"] .btn,
html[dir="rtl"] .nav-link,
html[dir="rtl"] .btn-service,
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select,
html[dir="rtl"] .logo-text,
html[dir="rtl"] .hero-title,
html[dir="rtl"] .section-title,
html[dir="rtl"] .section-title-large {
    font-family: 'Cairo', sans-serif;
}

html[dir="rtl"] { text-align: right; }
html[dir="rtl"] .top-bar-left i { margin-right: 0; margin-left: 6px; }
html[dir="rtl"] .nav-link::after { left: auto; right: 0; }
html[dir="rtl"] .accordion-btn { text-align: right; }
html[dir="rtl"] .project-tag { left: auto; right: 15px; }
html[dir="rtl"] .tab-btn::after { left: auto; right: 0; }
html[dir="rtl"] .about-page-text, html[dir="rtl"] .join-content, html[dir="rtl"] .footer-col { text-align: right; }
html[dir="rtl"] .contact-info-item i { margin-right: 0; margin-left: 20px; }
html[dir="rtl"] .hero-title-line { display: block; }
html[dir="rtl"] .hero-accent { margin-top: 10px; }
html[dir="rtl"] .process-step { border-left: none; }
html[dir="rtl"] .hero-title, html[dir="rtl"] .hero-subtitle, html[dir="rtl"] .section-title, html[dir="rtl"] .section-subtitle, html[dir="rtl"] .stats-grid, html[dir="rtl"] .process-step { text-align: center; }


/* RTL Specific Overrides */
[lang="ar"] .contact-item { flex-direction: row; }
[lang="ar"] .contact-item i { margin-right: 0; margin-left: 20px; }
[lang="ar"] .contact-item p { direction: ltr; text-align: right; display: inline-block; }

/* ========== MOVING COLLAGE BG ========== */
.moving-collage-bg {
    position: absolute;
    inset: -30%; 
    z-index: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transform: rotate(-8deg); 
    pointer-events: none;
    opacity: 0.5;
}
.collage-track {
    display: flex;
    gap: 15px;
    width: max-content;
    will-change: transform;
}
.collage-group {
    display: flex;
    gap: 15px;
    width: max-content;
}
.collage-group img {
    height: 320px;
    width: 480px;
    object-fit: cover;
    border-radius: 12px;
}
.collage-track-1 {
    animation: scrollTrack1 60s linear infinite;
}
.collage-track-2 {
    animation: scrollTrack2 70s linear infinite;
}
.collage-track-3 {
    animation: scrollTrack1 50s linear infinite;
}
@keyframes scrollTrack1 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes scrollTrack2 {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ========== OUR EXPERIENCE PAGE ========== */
/* Experience Page Wrapper for unified background */
.experience-page-wrapper {
    position: relative;
    background: #000;
}
.experience-page-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/experience-collage-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    filter: grayscale(40%) contrast(110%);
    z-index: 0;
}

.experience-section {
    position: relative;
    padding: 100px 0 120px;
    background: transparent;
    min-height: 40vh;
    z-index: 1;
}
.experience-section .container {
    position: relative;
    z-index: 1;
}

/* Remove default black hero background only for this page */
.experience-page-wrapper .page-hero {
    background: transparent;
    z-index: 1;
}

.experience-intro {
    text-align: center;
    margin-bottom: 50px;
}
.experience-tagline {
    font-size: 1.05rem;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Experience Category Cards */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.experience-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: #111;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
}
.experience-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(72, 17, 24, 0.15);
}
.experience-card-image {
    position: absolute;
    inset: 0;
}
.experience-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
}
.experience-card:hover .experience-card-image img {
    transform: scale(1.12);
    filter: brightness(0.6);
}
.experience-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    transition: background 0.5s ease;
}
.experience-card:hover .experience-card-overlay {
    background: linear-gradient(180deg, rgba(72,17,24,0.2) 0%, rgba(0,0,0,0.85) 100%);
}
.experience-card-content {
    text-align: center;
    transform: translateY(12px);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.experience-card:hover .experience-card-content {
    transform: translateY(0);
}
.experience-card-icon {
    font-size: 2rem;
    color: #481118;
    margin-bottom: 10px;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}
.experience-card:hover .experience-card-icon {
    opacity: 1;
    transform: translateY(0);
}
.experience-card-content h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}
.experience-card-count {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.experience-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 22px;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 30px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s, background 0.3s, border-color 0.3s;
}
.experience-card:hover .experience-card-cta {
    opacity: 1;
    transform: translateY(0);
}
.experience-card-cta:hover {
    background: #481118;
    border-color: #481118;
}
.experience-card-cta i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}
.experience-card:hover .experience-card-cta i {
    transform: translateX(4px);
}

/* ========== GALLERY MODAL ========== */
.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.4s, opacity 0.4s ease;
}
.gallery-modal.active {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s, opacity 0.4s ease;
}
.gallery-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(12px);
}
.gallery-modal-container {
    position: relative;
    width: 92%;
    max-width: 1100px;
    max-height: 88vh;
    background: #111;
    border-radius: 20px;
    border: 1px solid #222;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(30px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.gallery-modal.active .gallery-modal-container {
    transform: translateY(0) scale(1);
}
.gallery-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 30px;
    border-bottom: 1px solid #222;
    background: #0d0d0d;
}
.gallery-modal-title-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}
.gallery-modal-title-wrap i {
    color: #481118;
    font-size: 1.2rem;
}
.gallery-modal-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.gallery-modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #333;
    background: transparent;
    color: #888;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.gallery-modal-close:hover {
    background: #481118;
    border-color: #481118;
    color: #fff;
    transform: rotate(90deg);
}
.gallery-modal-body {
    padding: 28px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 18px;
}
.gallery-modal-body::-webkit-scrollbar {
    width: 6px;
}
.gallery-modal-body::-webkit-scrollbar-track {
    background: #111;
}
.gallery-modal-body::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

/* Gallery Items */
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: #1a1a1a;
    animation: galleryItemIn 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}
@keyframes galleryItemIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(72, 17, 24, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay {
    background: rgba(72, 17, 24, 0.45);
}
.gallery-item-overlay i {
    color: #fff;
    font-size: 1.4rem;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay i {
    opacity: 1;
    transform: scale(1);
}

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.3s, opacity 0.3s ease;
}
.lightbox.active {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s, opacity 0.3s ease;
}
.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}
.lightbox-close:hover {
    background: #481118;
    border-color: #481118;
    transform: rotate(90deg);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.4);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}
.lightbox-nav:hover {
    background: #481118;
    border-color: #481118;
    transform: translateY(-50%) scale(1.1);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    background: rgba(0,0,0,0.5);
    padding: 8px 20px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
}

/* ========== EXPERIENCE PAGE RESPONSIVE ========== */
@media (max-width: 992px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .experience-section {
        padding: 50px 0 70px;
    }
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 480px;
        margin: 0 auto;
    }
    .experience-card {
        aspect-ratio: 16/10;
    }
    .gallery-modal-container {
        width: 96%;
        max-height: 92vh;
        border-radius: 14px;
    }
    .gallery-modal-header {
        padding: 16px 20px;
    }
    .gallery-modal-body {
        padding: 16px;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }
    .lightbox-close {
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
    }
}
