@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --bg: #0a0a0f;
  --fg: #fafafa;
  --primary: #f97316;
  --primary-dark: #ea580c;
  --card-bg: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.1);
  --border-light: rgba(255,255,255,0.05);
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --radius: 1.2rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
  background-image:
    radial-gradient(circle at top right, rgba(249,115,22,0.05), transparent),
    radial-gradient(circle at bottom left, rgba(249,115,22,0.05), transparent);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

::selection { background: var(--primary); color: white; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: linear-gradient(to bottom, #f97316, #ea580c); border-radius: 10px; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

.glass {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.glow-orange { box-shadow: 0 0 20px rgba(249,115,22,0.3); }
.glow-orange:hover { box-shadow: 0 0 30px rgba(249,115,22,0.5); }

.gradient-text {
  background: linear-gradient(to right, #fff, #6b7280);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.industrial-gradient { background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 0 30px rgba(249,115,22,0.4);
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 0 40px rgba(249,115,22,0.6); }
.btn-glass {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
}
.btn-glass:hover { background: white; color: black; }
.btn-round { border-radius: 9999px; padding: 2rem 3rem; font-size: 0.75rem; }
.btn-rect { border-radius: 18px; padding: 2rem 2.5rem; font-size: 1.125rem; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.5s ease;
  padding: 2rem 0;
}
.navbar.scrolled {
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 1rem 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar-logo img { height: 62px; width: auto; object-fit: contain; padding: 0.25rem 0; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7); transition: color 0.3s; padding: 0.5rem 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-cta .btn {
  font-size: 10px; padding: 0.75rem 2rem; border-radius: 9999px;
  box-shadow: 0 0 20px rgba(249,115,22,0.3);
}
.nav-cta .btn:hover { box-shadow: 0 0 30px rgba(249,115,22,0.5); }
.mobile-toggle {
  display: none; background: rgba(255,255,255,0.05); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1); padding: 0.75rem; border-radius: 0.75rem; color: white;
}
.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; width: 100%;
  background: rgba(0,0,0,0.95); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.05); box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  padding: 2rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; font-size: 1.25rem; font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6); padding: 0.75rem 0;
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 1.5rem; }
.mobile-menu-btns a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; height: 3.5rem; border-radius: 0.75rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.75rem; color: white;
}

@media (max-width: 1023px) {
  .nav-links, .nav-cta { display: none !important; }
  .mobile-toggle { display: block; }
  .navbar-logo img { height: 52px; }
}

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: 5rem; overflow: hidden; background: black;
}
.hero-videos { position: absolute; inset: 0; z-index: 0; }
.hero-videos video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: grayscale(1);
  transition: opacity 1s ease-in-out; opacity: 0;
}
.hero-videos video.active { opacity: 0.4; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, black, rgba(0,0,0,0.4), var(--bg));
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  max-width: 56rem; margin: 0 auto; padding: 0 1.5rem;
}
.hero-tag {
  color: var(--primary); font-weight: 700; letter-spacing: 0.4em;
  text-transform: uppercase; font-size: 0.75rem; margin-bottom: 2rem; margin-top: 3rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 8vw, 6rem); font-weight: 700; color: white;
  margin-bottom: 2rem; text-transform: uppercase; letter-spacing: -0.03em;
}
.hero h1 .highlight { color: var(--primary); font-style: italic; }
.hero-desc {
  font-size: 1.125rem; color: var(--gray-300); margin-bottom: 3rem;
  font-weight: 300; letter-spacing: 0.02em; max-width: 40rem; line-height: 1.8;
}
.hero-btns { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem; }
.hero-glow {
  position: absolute; bottom: 0; right: 0; width: 33%; height: 50%;
  background: rgba(249,115,22,0.05); filter: blur(120px); border-radius: 50%;
  transform: translateY(50%) translateX(50%); pointer-events: none;
}

@media (max-width: 768px) {
  .hero-tag { font-size: 0.625rem; margin-top: 5rem; }
  .hero-desc { font-size: 1rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
}

/* ========== SECTIONS COMMON ========== */
section { padding: 8rem 0; }
.section-tag {
  color: var(--primary); font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; font-size: 0.625rem; margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 700; color: white; margin-bottom: 2rem;
}
.section-title-xl { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.text-center { text-align: center; }

/* ========== TRUST BADGES ========== */
.trust-strip { padding: 3rem 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); background: rgba(24,24,27,0.5); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.trust-badge { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; padding: 1rem 0; }
.trust-badge .icon-wrap {
  width: 3rem; height: 3rem; background: rgba(249,115,22,0.1);
  border-radius: 0.75rem; display: flex; align-items: center; justify-content: center;
}
.trust-badge .icon-wrap svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.trust-badge p { color: white; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; line-height: 1.4; }

@media (max-width: 768px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ========== STATS SECTION ========== */
.stats-section .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.stats-section h2 {
  font-size: clamp(2rem, 5vw, 4.5rem); font-weight: 700; color: white;
  margin-bottom: 2rem; line-height: 1.1;
}
.stats-section h2 .highlight { color: var(--primary); font-style: italic; }
.stats-section h2 .muted { color: var(--gray-500); font-style: italic; }
.stats-section .desc { font-size: 1.25rem; color: var(--gray-400); max-width: 36rem; line-height: 1.8; font-weight: 300; }
.stats-card {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(16px);
  padding: 2rem 3rem; border-radius: 40px; position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.stats-card .glow-bg {
  position: absolute; top: 0; right: 0; width: 16rem; height: 16rem;
  background: rgba(249,115,22,0.1); filter: blur(100px); border-radius: 50%;
  transform: translateY(-50%) translateX(50%);
}
.stat-row { margin-bottom: 2.5rem; }
.stat-row:last-child { margin-bottom: 0; }
.stat-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 0.75rem; }
.stat-label { color: var(--gray-400); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700; }
.stat-value { font-size: 1.5rem; font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: white; }
.stat-value .suffix { font-size: 0.75rem; margin-left: 0.25rem; color: var(--gray-500); }
.progress-bar { height: 6px; width: 100%; background: rgba(255,255,255,0.05); border-radius: 9999px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 9999px; width: 0; transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1); }

@media (max-width: 1023px) { .stats-section .grid-2 { grid-template-columns: 1fr; } }

/* ========== CLIENTS SHOWCASE ========== */
.clients-showcase {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(10,10,15,1) 0%, rgba(15,15,22,1) 50%, rgba(10,10,15,1) 100%);
}
.clients-showcase-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80%; height: 60%; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(249,115,22,0.04) 0%, transparent 60%);
}
.clients-logo-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem;
}
.client-logo-card {
  position: relative; border-radius: 1rem; overflow: hidden;
  background: rgba(255,255,255,0.03); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease; aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.client-logo-card:hover {
  border-color: rgba(249,115,22,0.3); transform: translateY(-6px);
  box-shadow: inset 0 0 30px rgba(249,115,22,0.06), 0 8px 32px rgba(0,0,0,0.3);
}
.client-logo-card img {
  width: 100%; height: 100%; object-fit: contain; border-radius: 0.75rem;
  filter: grayscale(100%); opacity: 0.6;
  transition: all 0.3s ease;
}
.client-logo-card:hover img {
  filter: grayscale(0%); opacity: 1; transform: scale(1.08);
}

.client-more-card {
  background: rgba(249,115,22,0.05) !important;
  border-color: rgba(249,115,22,0.2) !important;
  flex-direction: column; gap: 0.5rem;
}
.client-more-card:hover { border-color: rgba(249,115,22,0.4) !important; }
.more-plus {
  color: var(--primary); font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 700; line-height: 1;
}
.more-text {
  color: rgba(255,255,255,0.8); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em; text-align: center; line-height: 1.4;
}

@media (max-width: 1023px) { .clients-logo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .clients-logo-grid { grid-template-columns: repeat(2, 1fr); } }

/* ========== OUR TEAM ========== */
.team-section {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(10,10,15,1) 0%, rgba(18,18,25,1) 50%, rgba(10,10,15,1) 100%);
}
.team-glow-bottom {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 70%; height: 50%; pointer-events: none;
  background: radial-gradient(ellipse at 50% 100%, rgba(249,115,22,0.03) 0%, transparent 50%);
}
.team-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem;
}
.team-card {
  position: relative; border-radius: 1rem; overflow: hidden;
  background: rgba(255,255,255,0.03); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.5s ease;
}
.team-card:hover {
  border-color: rgba(249,115,22,0.3); transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(249,115,22,0.1), inset 0 0 40px rgba(249,115,22,0.03);
}
.team-img-wrap {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
}
.team-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  transition: transform 0.7s ease;
}
.team-card:hover .team-img-wrap img { transform: scale(1.1); }
.team-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.15) 40%, transparent 100%);
}
.team-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem;
}
.team-info h4 {
  color: white; font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 1.125rem; margin-bottom: 0.25rem;
}
.team-info p {
  color: var(--primary); font-size: 0.625rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
}

@media (max-width: 1023px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* ========== CLIENT TYPES ========== */
.clients-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.5rem; }
.client-card {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(16px);
  padding: 2rem; border-radius: 22px; display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 1.25rem;
  border: 1px solid rgba(255,255,255,0.05); transition: all 0.5s;
}
.client-card:hover { transform: translateY(-0.5rem); border-color: rgba(249,115,22,0.2); }
.client-card .icon-wrap {
  width: 4rem; height: 4rem; background: rgba(249,115,22,0.1);
  border-radius: 1rem; display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.client-card:hover .icon-wrap { background: rgba(249,115,22,0.2); }
.client-card .icon-wrap svg { width: 2rem; height: 2rem; color: var(--primary); }
.client-card p { color: white; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; }

@media (max-width: 1023px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }

/* ========== ABOUT BRIEF ========== */
.about-brief .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-brief .logo-img { height: 5rem; width: auto; object-fit: contain; margin-bottom: 2rem; }
.about-brief h2 { font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 700; color: var(--gray-500); font-style: italic; margin-bottom: 2rem; }
.about-brief .desc { font-size: 1.25rem; color: var(--gray-400); line-height: 1.8; font-weight: 300; margin-bottom: 2rem; }
.about-brief .link-arrow {
  color: var(--primary); font-size: 1.125rem; text-transform: uppercase; letter-spacing: 0.15em;
  font-weight: 700; display: inline-flex; align-items: center; gap: 0.5rem;
}
.about-brief .link-arrow:hover { text-decoration: underline; }
.about-brief .link-arrow svg { transition: transform 0.3s; }
.about-brief .link-arrow:hover svg { transform: translateX(0.5rem); }
.about-img-wrap {
  position: relative; border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}
.about-img-wrap img { width: 100%; height: 500px; object-fit: cover; filter: grayscale(1); transition: filter 1s; }
.about-img-wrap:hover img { filter: grayscale(0); }
.about-img-wrap .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); }
.about-img-wrap .caption { position: absolute; bottom: 2rem; left: 2rem; }
.about-img-wrap .caption h3 { font-size: 1.875rem; font-weight: 700; color: white; }
.about-img-wrap .caption p { color: var(--primary); text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.625rem; font-weight: 700; }

@media (max-width: 1023px) { .about-brief .grid-2 { grid-template-columns: 1fr; } }

/* ========== SERVICES CARDS ========== */
.services-section { background: rgba(24,24,27,0.3); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 5rem; gap: 2rem; flex-wrap: wrap; }
.services-header .section-title { margin-bottom: 0; }
.services-header .btn {
  padding: 1.5rem 2rem; border-radius: 18px; font-size: 0.625rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  background: rgba(255,255,255,0.05); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1); color: white; transition: all 0.3s;
}
.services-header .btn:hover { background: var(--primary); color: white; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(16px);
  padding: 2rem 2.5rem; border-radius: 22px; display: flex; flex-direction: column;
  align-items: center; text-align: center; overflow: hidden; transition: all 0.5s;
}
.service-card:hover { transform: translateY(-0.75rem); }
.service-card .icon-wrap {
  width: 4rem; height: 4rem; background: rgba(249,115,22,0.1);
  border-radius: 1rem; display: flex; align-items: center; justify-content: center;
  margin-bottom: 2rem; transition: background 0.3s;
}
.service-card:hover .icon-wrap { background: rgba(249,115,22,0.2); }
.service-card .icon-wrap svg { width: 2rem; height: 2rem; color: var(--primary); }
.service-card h4 {
  font-size: 1.25rem; font-weight: 700; color: white; margin-bottom: 1rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.service-card p { color: var(--gray-400); line-height: 1.7; font-weight: 300; font-size: 0.875rem; margin-bottom: 2rem; }
.service-card .divider { width: 100%; height: 1px; background: rgba(255,255,255,0.05); transition: background 0.3s; margin-top: auto; }
.service-card:hover .divider { background: rgba(249,115,22,0.3); }

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

/* ========== PROCESS ========== */
.process-section { background: rgba(24,24,27,0.1); }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2rem; }
.process-step { display: flex; flex-direction: column; }
.process-step .img-wrap {
  position: relative; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden;
  margin-bottom: 2rem; border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}
.process-step .img-wrap img {
  width: 100%; height: 100%; object-fit: cover; filter: grayscale(1);
  transition: all 0.7s;
}
.process-step:hover .img-wrap img { filter: grayscale(0); transform: scale(1.1); }
.process-step .img-wrap .overlay-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, black, rgba(0,0,0,0.2), transparent);
}
.process-step .img-wrap .step-num {
  position: absolute; top: 1.5rem; left: 1.5rem;
  font-size: 2.5rem; font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  color: rgba(255,255,255,0.4); transition: color 0.3s;
}
.process-step:hover .img-wrap .step-num { color: var(--primary); }
.process-step h4 {
  color: white; font-weight: 700; letter-spacing: 0.15em; font-size: 0.75rem;
  margin-bottom: 0.75rem; text-transform: uppercase; transition: color 0.3s;
}
.process-step:hover h4 { color: var(--primary); }
.process-step .step-desc { color: var(--gray-500); font-size: 0.875rem; line-height: 1.7; font-weight: 300; }
.process-step .step-line {
  margin-top: 1.5rem; height: 2px; width: 100%;
  background: rgba(255,255,255,0.05); position: relative; overflow: hidden;
}
.process-step .step-line .fill {
  position: absolute; inset: 0; background: var(--primary);
  transform: scaleX(0); transform-origin: left; transition: transform 1s ease;
}
.process-step.animated .step-line .fill { transform: scaleX(1); }

@media (max-width: 1023px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }

/* ========== MID CTA ========== */
.cta-mid {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 3rem 6rem; border-radius: 40px; border: 1px solid rgba(255,255,255,0.05);
  text-align: center; position: relative; overflow: hidden;
}
.cta-mid .glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px; background: rgba(249,115,22,0.05);
  filter: blur(120px); border-radius: 50%;
}
.cta-mid .inner { position: relative; z-index: 1; }
.cta-mid h2 { font-size: clamp(2rem, 5vw, 4.5rem); font-weight: 700; color: white; margin-bottom: 2rem; }
.cta-mid .desc { font-size: 1.25rem; color: var(--gray-400); margin-bottom: 3rem; max-width: 40rem; margin-left: auto; margin-right: auto; font-weight: 300; line-height: 1.8; }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }

@media (max-width: 768px) { .cta-mid { padding: 3rem 1.5rem; } }

/* ========== ENQUIRY FORM ========== */
.enquiry-section { background: rgba(24,24,27,0.3); }
.enquiry-section .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.enquiry-section h2 { font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 700; color: white; margin-bottom: 2rem; line-height: 1.15; }
.enquiry-section .desc { font-size: 1.25rem; color: var(--gray-400); font-weight: 300; line-height: 1.8; margin-bottom: 2.5rem; }
.enquiry-features { display: flex; flex-direction: column; gap: 1.5rem; }
.enquiry-feature { display: flex; align-items: center; gap: 1rem; }
.enquiry-feature .icon-wrap {
  width: 2.5rem; height: 2.5rem; background: rgba(249,115,22,0.1);
  border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.enquiry-feature .icon-wrap svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.enquiry-feature p { color: var(--gray-300); font-weight: 300; }

.form-card {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(16px);
  padding: 2.5rem 3.5rem; border-radius: 40px; position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}
.form-card .top-line {
  position: absolute; top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; color: var(--gray-500); text-transform: uppercase; font-size: 0.625rem;
  letter-spacing: 0.2em; font-weight: 700; margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  height: 3.5rem; border-radius: 14px; padding: 0 1rem; color: white; font-size: 1rem;
  transition: border-color 0.3s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); }
.form-group textarea { height: auto; min-height: 120px; padding: 1rem; resize: none; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.form-group select option { background: #1a1a1a; color: white; }
.form-submit {
  width: 100%; background: var(--primary); color: white; border: none;
  height: 3.5rem; border-radius: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; font-size: 0.75rem; cursor: pointer; transition: all 0.3s;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.form-submit:hover { transform: scale(1.02); box-shadow: 0 0 20px rgba(249,115,22,0.4); }

@media (max-width: 1023px) { .enquiry-section .grid-2 { grid-template-columns: 1fr; } }

/* ========== FAQ ========== */
.faq-section .faq-list { max-width: 56rem; margin: 0 auto; }
.faq-item {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(16px);
  border-radius: 1rem; border: 1px solid rgba(255,255,255,0.05);
  padding: 0 2rem; margin-bottom: 1rem; overflow: hidden;
}
.faq-question {
  width: 100%; background: none; border: none; color: white;
  font-size: 1.125rem; font-weight: 700; text-align: left; padding: 1.5rem 0;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: color 0.3s; font-family: 'Space Grotesk', sans-serif;
}
.faq-question:hover { color: var(--primary); }
.faq-question .chevron { transition: transform 0.3s; color: var(--gray-500); }
.faq-item.open .faq-question { color: var(--primary); }
.faq-item.open .faq-question .chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner { padding-bottom: 1.5rem; color: var(--gray-400); font-size: 1rem; line-height: 1.7; font-weight: 300; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ========== CTA BOTTOM ========== */
.cta-bottom {
  position: relative; border-radius: 32px; border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden; text-align: center; background: black;
}
.cta-bottom .bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.4; filter: grayscale(1); transition: filter 1s;
}
.cta-bottom:hover .bg-img { filter: grayscale(0); }
.cta-bottom .overlay { position: absolute; inset: 0; background: linear-gradient(to top, black, rgba(0,0,0,0.6), rgba(0,0,0,0.2)); }
.cta-bottom .inner { position: relative; z-index: 1; padding: 3rem 3rem; }
.cta-bottom h2 { font-size: clamp(2rem, 5vw, 4.5rem); font-weight: 700; color: white; margin-bottom: 2rem; }
.cta-bottom .desc { font-size: 1.25rem; color: var(--gray-400); margin-bottom: 3rem; max-width: 40rem; margin-left: auto; margin-right: auto; font-weight: 300; }

@media (min-width: 768px) { .cta-bottom .inner { padding: 6rem; } }

/* ========== FOOTER ========== */
.footer { background: black; border-top: 1px solid rgba(255,255,255,0.1); padding: 5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-logo img {
  width: 180px; height: auto; filter: grayscale(1) brightness(2); transition: all 0.5s; margin-bottom: 2rem;
}
.footer-logo img:hover { filter: grayscale(0) brightness(1); }
.footer-desc { color: var(--gray-400); max-width: 24rem; margin-bottom: 2rem; line-height: 1.7; }
.footer-phones { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-phones a {
  color: white; font-size: 0.875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; border-bottom: 1px solid rgba(249,115,22,0.5); padding-bottom: 0.25rem;
  transition: color 0.3s;
}
.footer-phones a:hover { color: var(--primary); }
.footer-email { display: inline-block; color: white; font-size: 0.875rem; font-weight: 700; letter-spacing: 0.1em; margin-top: 0.75rem; transition: color 0.3s; }
.footer-email:hover { color: var(--primary); }
.footer h4 { color: white; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.875rem; margin-bottom: 1.5rem; }
.footer-links a { display: block; color: var(--gray-400); font-size: 0.875rem; padding: 0.5rem 0; transition: color 0.3s; }
.footer-links a:hover { color: white; }
.footer address { font-style: normal; color: var(--gray-400); font-size: 0.875rem; line-height: 1.8; }
.footer .maps-link {
  color: var(--primary); display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 0.5rem; transition: color 0.3s; font-size: 0.875rem;
}
.footer .maps-link:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: var(--gray-500); font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.1em; }

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

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 100;
  width: 64px; height: 64px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.3s;
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }

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

/* ========== SCROLL ANIMATIONS ========== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.8s ease; }
.fade-in.visible { opacity: 1; }
.slide-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.slide-left.visible { opacity: 1; transform: translateX(0); }
.slide-right { opacity: 0; transform: translateX(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.slide-right.visible { opacity: 1; transform: translateX(0); }

/* ========== SERVICES PAGE ========== */
.page-hero { padding-top: 10rem; padding-bottom: 5rem; position: relative; overflow: hidden; }
.page-hero .glow {
  position: absolute; top: 0; right: 0; width: 600px; height: 600px;
  background: rgba(249,115,22,0.05); filter: blur(120px); border-radius: 50%;
  transform: translateY(-50%) translateX(50%);
}
.page-hero h1 { font-size: clamp(3rem, 8vw, 6rem); font-weight: 700; color: white; margin-bottom: 2rem; }
.page-hero .desc { font-size: 1.25rem; color: var(--gray-400); max-width: 40rem; font-weight: 300; line-height: 1.8; }

.services-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.service-detail-card {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(16px);
  padding: 2.5rem 3.5rem; border-radius: 32px; transition: all 0.5s; position: relative; overflow: hidden;
}
.service-detail-card:hover { transform: translateY(-0.5rem); }
.service-detail-card .glow-sm {
  position: absolute; top: 0; right: 0; width: 8rem; height: 8rem;
  background: rgba(249,115,22,0.05); filter: blur(48px); border-radius: 50%;
  transform: translateX(40px) translateY(-40px); transition: background 0.3s;
}
.service-detail-card:hover .glow-sm { background: rgba(249,115,22,0.1); }
.service-detail-card .card-inner { display: flex; gap: 2rem; align-items: flex-start; }
.service-detail-card h3 {
  font-size: 1.875rem; font-weight: 700; margin-bottom: 1rem; transition: color 0.3s;
}
.service-detail-card:hover h3 { color: var(--primary); }
.service-detail-card .card-desc { color: var(--gray-400); line-height: 1.7; font-weight: 300; font-size: 1.125rem; margin-bottom: 2rem; }
.features-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.features-list li {
  display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700;
}
.features-list li svg { width: 0.75rem; height: 0.75rem; color: var(--primary); }

@media (max-width: 768px) {
  .services-detail-grid { grid-template-columns: 1fr; }
  .service-detail-card .card-inner { flex-direction: column; }
}

/* ========== ABOUT PAGE ========== */
.about-story .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-story h2 { font-size: 2.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: white; margin-bottom: 2.5rem; }
.about-story .text-block { color: var(--gray-400); font-size: 1.25rem; line-height: 1.8; font-weight: 300; }
.about-story .text-block p { margin-bottom: 2rem; }
.about-img-frame { position: relative; }
.about-img-frame .frame { position: absolute; inset: -1.5rem; border: 1px solid rgba(249,115,22,0.2); border-radius: 40px; }
.about-img-frame .glass-wrap {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(16px);
  padding: 1rem; border-radius: 40px; position: relative; z-index: 1; overflow: hidden;
}
.about-img-frame img { width: 100%; border-radius: 32px; filter: grayscale(1); transition: filter 1s; }
.about-img-frame:hover img { filter: grayscale(0); }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 10rem; text-align: center; }
.about-stat {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(16px);
  padding: 3rem; border-radius: 32px; transition: transform 0.3s;
}
.about-stat:hover { transform: translateY(-0.5rem); }
.about-stat h3 { font-size: 4.5rem; font-weight: 700; color: white; margin-bottom: 1rem; }
.about-stat p { text-transform: uppercase; letter-spacing: 0.2em; color: var(--primary); font-weight: 700; font-size: 0.875rem; }

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

/* ========== PROJECTS PAGE ========== */
.projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.project-card {
  position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: 40px;
  background: rgba(255,255,255,0.05); backdrop-filter: blur(16px); padding: 0.75rem;
}
.project-card .img-inner { width: 100%; height: 100%; overflow: hidden; border-radius: 32px; position: relative; }
.project-card img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 1s;
  opacity: 0.6; filter: grayscale(1);
}
.project-card:hover img { transform: scale(1.1); opacity: 1; filter: grayscale(0); }
.project-card .info {
  position: absolute; inset: 0;
  background: linear-gradient(to top, black, rgba(0,0,0,0.2), transparent);
  padding: 2.5rem; display: flex; flex-direction: column; justify-content: flex-end;
}
.project-card .info .tag {
  color: var(--primary); font-size: 0.625rem; text-transform: uppercase;
  letter-spacing: 0.2em; font-weight: 700; margin-bottom: 0.75rem;
}
.project-card .info h3 { font-size: 2.5rem; font-weight: 700; color: white; transition: color 0.3s; }
.project-card:hover .info h3 { color: var(--primary); }

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

/* ========== CONTACT PAGE ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact-info-block { display: flex; gap: 2rem; margin-bottom: 3rem; }
.contact-info-block .icon-wrap {
  width: 4rem; height: 4rem; background: rgba(255,255,255,0.05); backdrop-filter: blur(16px);
  border-radius: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1); transition: background 0.3s;
}
.contact-info-block:hover .icon-wrap { background: rgba(249,115,22,0.2); }
.contact-info-block .icon-wrap svg { width: 2rem; height: 2rem; color: var(--primary); }
.contact-info-block h4 { color: white; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.625rem; margin-bottom: 0.5rem; }
.contact-info-block .phone-num { font-size: 1.5rem; font-family: 'Space Grotesk', sans-serif; font-weight: 700; }
.contact-info-block .phone-muted { color: var(--gray-500); }
.contact-info-block .address-text { font-size: 1.25rem; color: var(--gray-400); font-weight: 300; line-height: 1.7; max-width: 16rem; }
.contact-info-block .maps-link-small {
  color: var(--primary); display: inline-block; margin-top: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.625rem;
}
.contact-info-block .maps-link-small:hover { text-decoration: underline; }
.contact-map {
  margin-top: 4rem; width: 100%; height: 350px; border-radius: 32px; overflow: hidden;
  background: rgba(255,255,255,0.05); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(0.9) contrast(1.2); transition: filter 1s; }
.contact-map:hover iframe { filter: none; }

.contact-form-card {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(16px);
  padding: 2.5rem 4rem; border-radius: 40px; position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}
.contact-form-card .top-line {
  position: absolute; top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
}
.contact-form-card h3 { font-size: 1.875rem; font-weight: 700; margin-bottom: 2rem; }

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

/* ========== BLOG PAGE ========== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(16px);
  padding: 2.5rem; border-radius: 32px; transition: all 0.5s; display: flex;
  flex-direction: column; position: relative; overflow: hidden; cursor: pointer;
}
.blog-card:hover { transform: translateY(-0.5rem); }
.blog-card .glow-sm {
  position: absolute; top: 0; right: 0; width: 6rem; height: 6rem;
  background: rgba(249,115,22,0.05); filter: blur(32px); border-radius: 50%;
}
.blog-card .category {
  color: var(--primary); font-size: 0.625rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.3em; margin-bottom: 1.5rem;
}
.blog-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.3; transition: color 0.3s; }
.blog-card:hover h3 { color: var(--primary); }
.blog-card .excerpt { color: var(--gray-500); margin-bottom: 2rem; flex-grow: 1; font-weight: 300; line-height: 1.7; }
.blog-card .meta {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); margin-top: auto;
}
.blog-card .meta .date {
  display: flex; align-items: center; gap: 0.5rem; color: var(--gray-600);
  font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
}
.blog-card .meta .arrow { color: white; transition: all 0.3s; }
.blog-card:hover .meta .arrow { transform: translateX(0.5rem); color: var(--primary); }

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

/* ========== SEO CONTENT PAGES ========== */
.seo-content {
  max-width: 52rem; margin: 0 auto;
  color: var(--gray-300); font-size: 1.0625rem; line-height: 1.8;
}
.seo-content h2 {
  color: white; font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 1.75rem; margin: 3rem 0 1rem; line-height: 1.3;
}
.seo-content h3 { color: white; font-size: 1.375rem; margin: 2rem 0 0.75rem; }
.seo-content p { margin-bottom: 1rem; }
.seo-content ul {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
}
.seo-content ul li {
  position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem;
}
.seo-content ul li::before {
  content: ''; position: absolute; left: 0; top: 0.6em;
  width: 6px; height: 6px; background: var(--primary); border-radius: 50%;
}
.seo-content strong { color: white; }
.seo-cta {
  margin-top: 3rem; padding: 3rem; border-radius: 1.5rem;
  background: rgba(249,115,22,0.05); border: 1px solid rgba(249,115,22,0.15);
  text-align: center;
}
.seo-cta h3 { color: white; margin-bottom: 0.5rem; font-size: 1.5rem; }
.seo-cta p { color: var(--gray-400); }

.seo-footer-links {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.03);
}
.seo-footer-links a {
  color: rgba(255,255,255,0.15); font-size: 0.625rem; margin-right: 1rem;
  text-decoration: none; transition: color 0.3s;
}
.seo-footer-links a:hover { color: rgba(255,255,255,0.4); }

/* ========== RESPONSIVE UTILITIES ========== */
@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; justify-content: center; }
  .seo-content { font-size: 0.9375rem; }
  .seo-content h2 { font-size: 1.5rem; }
  .seo-cta { padding: 2rem; }
}
