/* İZ İletişim — Main Stylesheet */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #FF4D00;
  --primary-light: #FF7A3D;
  --dark: #0A0A0A;
  --dark-card: #111111;
  --dark-surface: #1A1A1A;
  --gray: #888;
  --light: #F5F5F5;
  --white: #FFFFFF;
  --gold: #C9A84C;
  --teal: #1ABCB0;
  --blue: #2D5BFF;
  --silver: #E0E0E0;
  --silver-dark: #C8C8C8;
  --logo-gray: #3A3A3A;
  --gradient: linear-gradient(135deg, #FF4D00, #FF7A3D);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, sans-serif; background: var(--dark); color: var(--white); overflow-x: hidden; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ======================== NAV ======================== */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 1.2rem 4rem; display: flex; align-items: center; justify-content: space-between; transition: all 0.4s cubic-bezier(0.16,1,0.3,1); background: transparent; }
.navbar.scrolled { background: rgba(10,10,10,0.92); backdrop-filter: blur(20px); padding: 0.8rem 4rem; border-bottom: 1px solid rgba(255,77,0,0.15); }
.navbar.solid { background: rgba(10,10,10,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,77,0,0.15); }
.nav-brand { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.nav-brand img { height: 176px; width: auto; transition: height 0.4s; }
.navbar.scrolled .nav-brand img, .navbar.solid .nav-brand img { height: 104px; }
.nav-links { display: flex; gap: 2.2rem; align-items: center; }
.nav-links a { color: var(--white); text-decoration: none; font-size: 0.82rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; position: relative; padding: 0.3rem 0; transition: color 0.3s; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--primary); }
.lang-dropdown { position: relative; }
.lang-switch { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: var(--white); padding: 0.4rem 1rem; border-radius: 50px; cursor: pointer; font-size: 0.8rem; font-weight: 600; transition: all 0.3s; min-width: 90px; text-align: center; }
.lang-switch:hover { border-color: var(--primary); color: var(--primary); background: rgba(255,77,0,0.08); }
.lang-menu { display: none; position: absolute; top: calc(100% + 0.5rem); right: 0; background: rgba(17,17,17,0.97); backdrop-filter: blur(20px); border: 1px solid rgba(255,77,0,0.15); border-radius: 12px; padding: 0.5rem 0; min-width: 160px; z-index: 2000; box-shadow: 0 10px 40px rgba(0,0,0,0.5); max-height: 380px; overflow-y: auto; }
.lang-menu.open { display: block; }
.lang-menu a { display: block; padding: 0.5rem 1.2rem; color: var(--white); text-decoration: none; font-size: 0.82rem; font-weight: 500; transition: all 0.2s; }
.lang-menu a:hover { background: rgba(255,77,0,0.1); color: var(--primary); }
.lang-menu a.active { color: var(--primary); font-weight: 700; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.menu-toggle span { display: block; width: 28px; height: 2px; background: var(--white); margin: 6px 0; transition: all 0.3s; }

/* ======================== HERO ======================== */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 0 4rem; padding-top: 120px; padding-bottom: 4rem; }
.hero-bg-img { position: absolute; inset: 0; background: url('../img/hero.jpg') center/cover no-repeat; filter: brightness(0.3); transform: scale(1.1); transition: transform 8s ease; }
.hero.loaded .hero-bg-img { transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.5) 50%, rgba(255,77,0,0.08) 100%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 80px 80px; animation: gridMove 20s linear infinite; }
@keyframes gridMove { 0% { transform: translate(0,0); } 100% { transform: translate(80px,80px); } }
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-tag { display: inline-flex; align-items: center; gap: 0.8rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--primary); margin-bottom: 1.2rem; opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s 0.3s forwards; }
.hero-tag::before { content: ''; width: 40px; height: 2px; background: var(--primary); }
.hero-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.12; letter-spacing: -2px; margin-bottom: 1.2rem; opacity: 0; transform: translateY(40px); animation: fadeUp 0.8s 0.5s forwards; }
.hero-title .accent { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 1.05rem; line-height: 1.65; color: rgba(255,255,255,0.65); max-width: 550px; margin-bottom: 1.8rem; opacity: 0; transform: translateY(40px); animation: fadeUp 0.8s 0.7s forwards; }
.hero-cta { display: flex; gap: 1rem; opacity: 0; transform: translateY(40px); animation: fadeUp 0.8s 0.9s forwards; }
.btn-primary { display: inline-flex; align-items: center; gap: 0.6rem; padding: 1rem 2.2rem; background: var(--gradient); color: var(--white); border: none; border-radius: 60px; font-size: 0.9rem; font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.3s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(255,77,0,0.3); }
.btn-outline { display: inline-flex; align-items: center; gap: 0.6rem; padding: 1rem 2.2rem; background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.25); border-radius: 60px; font-size: 0.9rem; font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.3s; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(255,77,0,0.05); }
.hero-stats { position: absolute; right: 4rem; bottom: 15%; display: flex; flex-direction: column; gap: 2rem; z-index: 2; opacity: 0; transform: translateX(40px); animation: fadeLeft 0.8s 1.1s forwards; }
.hero-stat { text-align: right; padding: 1rem 1.5rem; border-right: 3px solid var(--primary); }
.hero-stat-number { font-family: 'Space Grotesk', sans-serif; font-size: 2.5rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-stat-label { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 2px; }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; opacity: 0; animation: fadeUp 0.8s 1.3s forwards; }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--primary), transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { to { opacity: 1; transform: translateX(0); } }

/* ======================== SECTIONS ======================== */
section { padding: 10rem 4rem; position: relative; }
.section-tag { display: inline-flex; align-items: center; gap: 0.8rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--primary); margin-bottom: 1.5rem; }
.section-tag::before { content: ''; width: 30px; height: 2px; background: var(--primary); }
.section-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -2px; margin-bottom: 1.2rem; }
.section-desc { font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 600px; margin-bottom: 1rem; }
.reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ======================== SERVICES ======================== */
#services { background: var(--dark-card); }
#services::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(255,77,0,0.3), transparent); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.service-card { padding: 0; background: var(--dark); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.16,1,0.3,1); cursor: default; }
.service-card-img { height: 180px; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; filter: brightness(0.6); }
.service-card:hover .service-card-img img { transform: scale(1.1); filter: brightness(0.8); }
.service-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--dark) 5%, transparent 60%); }
.service-card-body { padding: 1.8rem 1.5rem; position: relative; margin-top: -2rem; z-index: 1; }
.service-card:hover { transform: translateY(-8px); border-color: rgba(255,77,0,0.2); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.service-icon-pill { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.3rem 0.9rem; background: rgba(255,77,0,0.15); border-radius: 20px; font-size: 0.7rem; font-weight: 600; color: var(--primary-light); letter-spacing: 0.5px; margin-bottom: 1rem; }
.service-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.8rem; }
.service-card p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.5); }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.service-tags span { font-size: 0.77rem; padding: 0.275rem 0.66rem; background: #3b3b3b; border: 1px solid #ff8147; border-radius: 20px; color: #a5a5a5; }

/* ======================== CLIENTS ======================== */
#clients { background: var(--silver); position: relative; overflow: hidden; color: var(--logo-gray); }
#clients::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(26,188,176,0.3), transparent); }
#clients .section-tag { color: var(--primary); }
#clients .section-title { color: var(--logo-gray); }
#clients .section-desc { color: rgba(58,58,58,0.7); }
.clients-marquee { margin-top: 4rem; overflow: hidden; position: relative; }
.clients-marquee::before, .clients-marquee::after { content: ''; position: absolute; top: 0; bottom: 0; width: 150px; z-index: 2; }
.clients-marquee::before { left: 0; background: linear-gradient(to right, var(--silver), transparent); }
.clients-marquee::after { right: 0; background: linear-gradient(to left, var(--silver), transparent); }
.marquee-track { display: flex; gap: 2rem; animation: marquee 50s linear infinite; width: max-content; align-items: center; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-track-reverse { display: flex; gap: 2rem; animation: marqueeReverse 45s linear infinite; width: max-content; align-items: center; }
.marquee-track-reverse:hover { animation-play-state: paused; }
@keyframes marqueeReverse { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.client-logo { display: flex; align-items: center; justify-content: center; width: 228px; height: 97px; padding: 0.5rem 1rem; background: #ffffff; border-radius: 16px; border: 1px solid #FF4D00; box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: all 0.4s; overflow: hidden; }
.client-logo:hover { background: rgba(255,255,255,0.85); transform: scale(1.05); box-shadow: 0 6px 20px rgba(255,77,0,0.15); }
.client-logo img { width: 100%; height: 100%; object-fit: contain; opacity: 0.85; transition: all 0.4s; }
.client-logo:hover img { opacity: 1; }

/* ======================== AWARDS ======================== */
#awards { background: var(--silver); color: var(--logo-gray); }
#awards .section-tag { color: var(--primary); }
#awards .section-title { color: var(--logo-gray); }
.awards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 3rem auto 0; max-width: 800px; }
.award-card { padding: 2rem 1rem; background: #ffffff; border: 1px solid #FF4D00; border-radius: 16px; text-align: center; transition: all 0.4s; display: flex; flex-direction: column; align-items: center; gap: 0.8rem; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.award-card:hover { transform: translateY(-6px); border-color: #FF7A3D; box-shadow: 0 12px 40px rgba(255,77,0,0.15); }
.award-card img { height: 64px; width: auto; max-width: 120px; object-fit: contain; transition: all 0.4s; }
.award-card:hover img { transform: scale(1.08); }

/* ======================== ABOUT / TIMELINE ======================== */
#about { background: linear-gradient(180deg, var(--dark-card) 0%, var(--dark) 30%); overflow: hidden; }
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 6rem; align-items: center; }
.about-intro-img { border-radius: 16px; overflow: hidden; position: relative; height: 400px; }
.about-intro-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about-intro-img:hover img { transform: scale(1.05); }
.about-intro-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.6), transparent 50%); }
.about-text h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 1.2rem; }
.about-text p { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; }

/* Timeline */
.timeline-section { position: relative; }
.timeline-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; text-align: center; margin-bottom: 4rem; }
.timeline-wrapper { position: relative; max-width: 1100px; margin: 0 auto; }
.timeline-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; transform: translateX(-50%); background: linear-gradient(to bottom, var(--primary), #FF7A3D, #FFB347, var(--teal), var(--blue)); opacity: 0.25; }
.timeline-line-fill { position: absolute; left: 50%; top: 0; width: 3px; height: 0; transform: translateX(-50%); background: linear-gradient(to bottom, var(--primary), #FF7A3D, var(--teal)); transition: height 2s cubic-bezier(0.16,1,0.3,1); }
.tl-item { display: flex; flex-direction: row; align-items: flex-start; margin-bottom: 4rem; position: relative; opacity: 0; transition: all 0.7s cubic-bezier(0.16,1,0.3,1); }
.tl-item.active { opacity: 1; }
.tl-item:nth-child(odd) { transform: translateX(-60px); }
.tl-item:nth-child(odd).active { transform: translateX(0); }
.tl-item:nth-child(even) { transform: translateX(60px); }
.tl-item:nth-child(even).active { transform: translateX(0); }
.tl-content { width: 44%; padding: 2rem; position: relative; overflow: hidden; border-radius: 16px; transition: all 0.4s; }
.tl-spacer { width: 44%; }
.tl-item:nth-child(6n+1) .tl-content { background: linear-gradient(135deg, #1a1207 0%, #111 60%); border: 1px solid rgba(255,77,0,0.15); }
.tl-item:nth-child(6n+2) .tl-content { background: linear-gradient(135deg, #0d1117 0%, #111 60%); border: 1px solid rgba(59,130,246,0.15); }
.tl-item:nth-child(6n+3) .tl-content { background: linear-gradient(135deg, #071210 0%, #111 60%); border: 1px solid rgba(16,185,129,0.15); }
.tl-item:nth-child(6n+4) .tl-content { background: linear-gradient(135deg, #170d1a 0%, #111 60%); border: 1px solid rgba(168,85,247,0.15); }
.tl-item:nth-child(6n+5) .tl-content { background: linear-gradient(135deg, #1a0d0d 0%, #111 60%); border: 1px solid rgba(239,68,68,0.15); }
.tl-item:nth-child(6n+6) .tl-content { background: linear-gradient(135deg, #0d1a17 0%, #111 60%); border: 1px solid rgba(34,211,238,0.15); }
.tl-content::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; transform: scaleX(0); transition: transform 0.6s; }
.tl-item:nth-child(6n+1) .tl-content::before { background: linear-gradient(90deg, #FF4D00, #FFB347); }
.tl-item:nth-child(6n+2) .tl-content::before { background: linear-gradient(90deg, #3B82F6, #60A5FA); }
.tl-item:nth-child(6n+3) .tl-content::before { background: linear-gradient(90deg, #10B981, #34D399); }
.tl-item:nth-child(6n+4) .tl-content::before { background: linear-gradient(90deg, #A855F7, #C084FC); }
.tl-item:nth-child(6n+5) .tl-content::before { background: linear-gradient(90deg, #EF4444, #F87171); }
.tl-item:nth-child(6n+6) .tl-content::before { background: linear-gradient(90deg, #22D3EE, #67E8F9); }
.tl-item.active .tl-content::before { transform: scaleX(1); }
.tl-content:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.tl-image { width: 100%; height: 180px; border-radius: 10px; overflow: hidden; margin-bottom: 1.2rem; }
.tl-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.tl-content:hover .tl-image img { transform: scale(1.08); }
.tl-year { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--primary); margin-bottom: 0.4rem; }
.tl-heading { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.tl-desc { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.tl-dot-wrapper { width: 12%; display: flex; justify-content: center; padding-top: 2rem; position: relative; z-index: 1; }
.tl-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--primary); border: 3px solid var(--dark); box-shadow: 0 0 0 3px var(--primary); }

/* ======================== CASES ======================== */
#cases { background: var(--dark); }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.case-card { border-radius: 16px; overflow: hidden; cursor: pointer; position: relative; transition: all 0.4s; }
.case-image { position: relative; height: 260px; overflow: hidden; }
.case-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; filter: brightness(0.65); }
.case-card:hover .case-image img { transform: scale(1.08); filter: brightness(0.8); }
.case-overlay-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%); }
.case-tag-pill { display: inline-flex; align-items: center; padding: 0.3rem 0.8rem; background: rgba(255,77,0,0.85); border-radius: 20px; font-size: 0.72rem; font-weight: 600; color: var(--white); margin-bottom: 0.6rem; width: fit-content; }
.case-overlay-content h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; line-height: 1.3; }
.case-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }

/* ======================== STATS STRIP ======================== */
.stats-strip { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--dark-card); border-top: 1px solid rgba(255,77,0,0.1); border-bottom: 1px solid rgba(255,77,0,0.1); }
.stat-item { padding: 3rem 2rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.05); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Space Grotesk', sans-serif; font-size: 3rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.82rem; color: var(--gray); text-transform: uppercase; letter-spacing: 2px; margin-top: 0.5rem; }

/* ======================== CONTACT ======================== */
#contact { background: linear-gradient(180deg, var(--dark) 0%, var(--dark-card) 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; margin-top: 4rem; align-items: start; }
.contact-info h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { font-size: 1.2rem; padding-top: 0.1rem; }
.contact-detail-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); margin-bottom: 0.3rem; }
.contact-detail-value { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.contact-detail-value a { color: var(--primary-light); text-decoration: none; }
.contact-detail-value a:hover { color: var(--primary); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-input { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 0.9rem 1.2rem; color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.9rem; transition: all 0.3s; width: 100%; resize: none; }
.form-input:focus { outline: none; border-color: rgba(255,77,0,0.4); background: rgba(255,77,0,0.03); }
textarea.form-input { min-height: 120px; }
.btn-submit { background: var(--gradient); color: var(--white); border: none; border-radius: 60px; padding: 1rem 2.5rem; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.3s; align-self: flex-start; font-family: 'Inter', sans-serif; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(255,77,0,0.3); }

/* ======================== LEGAL BAR ======================== */
.legal-bar { background: var(--dark-card); padding: 1rem 4rem; display: flex; gap: 2rem; border-top: 1px solid rgba(255,255,255,0.04); }
.legal-bar a { font-size: 0.78rem; color: var(--gray); cursor: pointer; text-decoration: none; transition: color 0.3s; }
.legal-bar a:hover { color: var(--primary); }

/* ======================== LEGAL MODALS ======================== */
.legal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 5000; align-items: center; justify-content: center; padding: 2rem; }
.legal-overlay.open { display: flex; }
.legal-modal { background: var(--dark-card); border: 1px solid rgba(255,77,0,0.15); border-radius: 20px; max-width: 700px; width: 100%; max-height: 80vh; overflow: hidden; display: flex; flex-direction: column; }
.legal-modal-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.legal-modal-header h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 700; }
.legal-modal-close { background: rgba(255,77,0,0.1); border: 1px solid rgba(255,77,0,0.2); color: var(--white); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.legal-modal-close:hover { background: rgba(255,77,0,0.3); }
.legal-modal-body { padding: 2rem; overflow-y: auto; flex: 1; scrollbar-width: thin; scrollbar-color: var(--primary) transparent; }
.legal-modal-body h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; margin: 1.5rem 0 0.6rem; color: var(--primary-light); }
.legal-modal-body h3:first-child { margin-top: 0; }
.legal-modal-body p { font-size: 0.85rem; line-height: 1.8; color: rgba(255,255,255,0.65); margin-bottom: 0.8rem; }
.legal-modal-body table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.8rem; }
.legal-modal-body th, .legal-modal-body td { padding: 0.5rem 0.8rem; border: 1px solid rgba(255,255,255,0.08); text-align: left; }
.legal-modal-body th { background: rgba(255,77,0,0.1); color: var(--primary-light); }
.legal-modal-body td { color: rgba(255,255,255,0.65); }
.legal-modal-body a { color: var(--primary-light); }

/* ======================== POPUP (CASES) ======================== */
.popup-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 4000; align-items: center; justify-content: center; padding: 2rem; transition: opacity 0.4s; opacity: 0; }
.popup-overlay.show { opacity: 1; }
.popup-box { background: var(--dark-card); border: 1px solid rgba(255,77,0,0.2); border-radius: 20px; max-width: 900px; width: 100%; max-height: 85vh; overflow-y: auto; position: relative; transform: translateY(30px); transition: transform 0.4s; }
.popup-overlay.show .popup-box { transform: translateY(0); }
.popup-close { position: absolute; top: 1rem; right: 1rem; background: rgba(255,77,0,0.12); border: 1px solid rgba(255,77,0,0.3); color: var(--white); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; z-index: 1; transition: all 0.2s; }
.popup-close:hover { background: rgba(255,77,0,0.3); }
.popup-slider { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; border-radius: 20px 20px 0 0; max-height: 380px; }
.popup-slider::-webkit-scrollbar { display: none; }
.popup-slider-item { min-width: 100%; scroll-snap-align: start; }
.popup-slider-item img, .popup-slider-item video { width: 100%; max-height: 380px; object-fit: cover; display: block; }
.popup-slider-dots { display: flex; justify-content: center; gap: 0.5rem; padding: 0.8rem 0; }
.popup-slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: all 0.3s; }
.popup-slider-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }
.popup-arrow { position: absolute; top: calc(380px / 2); transform: translateY(-50%); background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.2); color: var(--white); width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: all 0.3s; z-index: 2; }
.popup-arrow:hover { background: var(--primary); border-color: var(--primary); }
.popup-arrow-left { left: 1rem; }
.popup-arrow-right { right: 1rem; }
.popup-body { padding: 2rem; }
.popup-tag { display: inline-block; background: rgba(255,77,0,0.15); color: var(--primary-light); font-size: 0.72rem; font-weight: 600; padding: 0.3rem 0.8rem; border-radius: 20px; margin-bottom: 0.8rem; }
.popup-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
.popup-desc { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; }
.popup-metrics { display: flex; flex-wrap: wrap; gap: 1rem; }
.popup-metric { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,77,0,0.12); border-radius: 12px; padding: 1rem 1.5rem; text-align: center; min-width: 100px; }
.popup-metric-value { font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.popup-metric-label { font-size: 0.72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.3rem; }

/* ======================== FOOTER ======================== */
.footer { padding: 3rem 4rem; background: var(--dark-card); border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; }
.footer-logo { height: 56px; width: auto; opacity: 0.7; }
.footer-text { font-size: 0.82rem; color: var(--gray); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.82rem; color: var(--gray); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--primary); }

/* ======================== PAGE HEADER (subpages) ======================== */
.page-header { padding: 16rem 4rem 4rem; text-align: center; position: relative; }
.page-header::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(255,77,0,0.3), transparent); }
.page-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -2px; margin-bottom: 1.2rem; }
.page-desc { font-size: 1rem; color: rgba(255,255,255,0.55); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ======================== CAREERS PAGE ======================== */
.career-content { max-width: 800px; margin: 0 auto; padding: 5rem 4rem 8rem; }
.career-text { font-size: 1.1rem; line-height: 1.9; color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.career-highlight { font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; font-weight: 700; line-height: 1.4; color: var(--white); margin: 3rem 0; padding-left: 1.5rem; border-left: 3px solid var(--primary); }
.career-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 3rem 0; }
.career-value { padding: 2rem; background: var(--dark-card); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; text-align: center; transition: all 0.3s; }
.career-value:hover { border-color: rgba(255,77,0,0.2); transform: translateY(-4px); }
.career-value-icon { font-size: 2rem; margin-bottom: 1rem; }
.career-value h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.career-value p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
.career-cta { margin-top: 3rem; text-align: center; }

/* ======================== TEAM PAGE ======================== */
.team-section { padding: 5rem 4rem 8rem; }
.team-layout { display: grid; grid-template-columns: 3fr 1fr; gap: 1.5rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.team-card { background: var(--dark-card); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; overflow: hidden; cursor: pointer; transition: all 0.4s; }
.team-card:hover { transform: translateY(-6px); border-color: rgba(255,77,0,0.2); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.team-card-beige { background: #f5f0e8; border: 1px solid rgba(255,77,0,0.15); border-radius: 16px; overflow: hidden; cursor: pointer; transition: all 0.4s; }
.team-card-beige:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.team-card-beige .team-info h3 { color: var(--logo-gray); }
.team-card-beige .team-info .role { color: rgba(58,58,58,0.65); }
.team-photo { height: 220px; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .team-photo img, .team-card-beige:hover .team-photo img { transform: scale(1.06); }
.team-info { padding: 1.2rem 1.4rem; }
.team-info h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.team-info .role { font-size: 0.78rem; color: var(--primary-light); font-weight: 500; }

/* Team popup */
.team-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 5000; align-items: center; justify-content: center; padding: 2rem; }
.team-overlay.open { display: flex; }
.team-popup { background: #131313; border: 1px solid rgba(255,77,0,0.25); border-radius: 24px; max-width: 820px; width: 100%; max-height: 90vh; overflow: hidden; display: flex; position: relative; box-shadow: 0 40px 100px rgba(0,0,0,0.6); }
.popup-close-btn { position: absolute; top: 1.2rem; right: 1.2rem; width: 36px; height: 36px; background: rgba(255,77,0,0.12); border: 1px solid rgba(255,77,0,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; transition: all 0.2s; color: var(--white); font-size: 1.1rem; }
.popup-close-btn:hover { background: rgba(255,77,0,0.3); }
.popup-photo-col { width: 260px; min-width: 260px; background: linear-gradient(160deg, #1a1a1a, #0d0d0d); border-right: 1px solid rgba(255,77,0,0.12); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2.5rem 1.5rem; }
.popup-photo-wrap { width: 160px; height: 160px; border-radius: 50%; overflow: hidden; border: 3px solid rgba(255,77,0,0.4); box-shadow: 0 0 40px rgba(255,77,0,0.15); margin-bottom: 1.4rem; }
.popup-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.popup-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 700; text-align: center; margin-bottom: 0.35rem; }
.popup-role { font-size: 0.78rem; color: var(--primary-light); font-weight: 500; text-align: center; line-height: 1.5; }
.popup-bio-col { flex: 1; padding: 2.5rem 2.2rem; overflow-y: auto; scrollbar-width: thin; scrollbar-color: rgba(255,77,0,0.4) transparent; }
.popup-bio-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--primary); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.7rem; }
.popup-bio-label::after { content: ''; flex: 1; height: 1px; background: rgba(255,77,0,0.2); }
.popup-bio-text { font-size: 0.92rem; line-height: 1.85; color: rgba(255,255,255,0.72); white-space: pre-line; }

/* ======================== RTL SUPPORT ======================== */
[dir="rtl"] .clients-marquee { direction: ltr; }
[dir="rtl"] .hero-stats { right: auto; left: 4rem; }
[dir="rtl"] .hero-stat { text-align: left; border-right: none; border-left: 3px solid var(--primary); }
[dir="rtl"] .nav-links { direction: rtl; }
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .tl-line { left: auto; right: 12px; }
[dir="rtl"] .form-row { direction: rtl; }
[dir="rtl"] .footer-content { direction: rtl; }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  section { padding: 6rem 2rem; }
  .navbar { padding: 1rem 2rem; }
  .navbar.scrolled { padding: 0.8rem 2rem; }
  .hero { padding: 0 2rem; padding-top: 100px; padding-bottom: 4rem; }
  .hero-stats { display: none; }
  .about-intro { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer { padding: 2rem; }
  .legal-bar { padding: 1rem 2rem; }
  .page-header { padding: 12rem 2rem 3rem; }
  .career-content { padding: 3rem 2rem 5rem; }
  .team-section { padding: 3rem 2rem 5rem; }
  .team-layout { grid-template-columns: 1fr; }
  .team-sidebar { flex-direction: row; }
  .team-card-beige { flex: 1; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,10,0.97); backdrop-filter: blur(20px); padding: 2rem; gap: 1.5rem; border-bottom: 1px solid rgba(255,77,0,0.15); }
  .menu-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .stat-item:last-child { border-bottom: none; }
  .timeline-line, .timeline-line-fill { left: 12px; }
  .tl-item { flex-direction: column; padding-left: 3rem; }
  .tl-item:nth-child(odd), .tl-item:nth-child(even) { transform: translateX(0); }
  .tl-item.active { transform: translateX(0); }
  .tl-content, .tl-spacer { width: 100%; }
  .tl-spacer { display: none; }
  .tl-dot-wrapper { position: absolute; left: 4px; padding-top: 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-sidebar { flex-direction: column; }
  .popup-photo-col { width: 100%; min-width: unset; border-right: none; border-bottom: 1px solid rgba(255,77,0,0.12); padding: 2rem 1.5rem 1.5rem; flex-direction: row; gap: 1.2rem; justify-content: flex-start; }
  .popup-photo-wrap { width: 90px; height: 90px; margin-bottom: 0; flex-shrink: 0; }
  .team-popup { flex-direction: column; }
  .career-values { grid-template-columns: 1fr; }
  .footer { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .awards-grid { grid-template-columns: 1fr; max-width: 300px; margin-left: auto; margin-right: auto; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
}
