:root {
  --navy: #0a1628;
  --blue: #1a3a6b;
  --blue-mid: #1e4d8c;
  --blue-light: #2a6cb8;
  --gold: #d4a017;
  --gold-light: #f0c341;
  --white: #ffffff;
  --gray-100: #f4f6f9;
  --gray-200: #e2e6ed;
  --gray-600: #6b7a8d;
  --gray-800: #2d3748;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  zoom: 0.9;
}

/* ========== NAVIGATION ========== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

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

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .company-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1.1;
}

.logo-text .tagline-small {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600 !important;
  letter-spacing: 1px;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

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

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(26,58,107,0.85) 50%, rgba(10,22,40,0.9) 100%);
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.1) 60px, rgba(255,255,255,0.1) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.1) 60px, rgba(255,255,255,0.1) 61px);
  z-index: 1;
}

.hero-accent-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.15;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 0px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-left {
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.25);
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

.hero-badge span {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 50px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 10px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-tagline {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat {
  text-align: left;
}

.hero-stat .number {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.hero-stat .label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-right {
  position: relative;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--blue);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.hero-image-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.3;
}

.hero-image-placeholder span {
  color: rgba(255,255,255,0.25);
  font-size: 13px;
  letter-spacing: 1px;
}

.hero-image-border {
  position: absolute;
  top: -12px;
  right: -12px;
  bottom: 12px;
  left: 12px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  opacity: 0.25;
  z-index: -1;
}

.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--white);
  border-radius: 8px;
  padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 5;
}

.hero-float-card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-float-card .icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.hero-float-card .card-text .card-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
}

.hero-float-card .card-text .card-label {
  font-size: 12px;
  color: var(--gray-600);
  letter-spacing: 0.5px;
}

/* ========== ABOUT SECTION ========== */
.about {
  padding: 120px 40px;
  background: var(--white);
  position: relative;
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.section-label span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.about h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 24px;
}

.about h2 em {
  font-style: italic;
  color: var(--blue-light);
}

.about p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.about-quote {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--gray-100);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
}

.about-quote p {
  font-style: italic;
  font-size: 15px;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.about-quote .quote-author {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 0;
}

.about-visual {
  position: relative;
}

.about-feature-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 18px 48px rgba(9, 22, 44, 0.18);
  background: #0f2f68;
  transform-style: preserve-3d;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.about-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(9, 22, 44, 0.24);
}

.about-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.9s ease;
}

.about-feature-card:hover img { transform: scale(1.01); }

.about-feature-glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 55%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0) 72%);
  z-index: 2;
  pointer-events: none;
}

.about-feature-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(4, 18, 40, 0.85) 0%, rgba(4, 18, 40, 0.2) 72%, rgba(4, 18, 40, 0) 100%);
  color: #fff;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-feature-caption span {
  font-size: 11px;
  letter-spacing: 2.4px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
}

.about-feature-caption strong {
  font-size: 24px;
  line-height: 1.1;
  font-family: 'Playfair Display', serif;
}

/* ========== SERVICES ========== */
.services {
  padding: 120px 40px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.06) 0%, transparent 70%);
}

.services-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.services h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.services .section-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 40px 32px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.service-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(212,160,23,0.2);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(212,160,23,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}

/* ========== PROJECTS ========== */
.projects {
  padding: 120px 40px;
  background: var(--gray-100);
}

.projects-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.projects .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.projects h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--navy);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.project-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.project-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.project-card:first-child .project-thumb {
  aspect-ratio: auto;
  height: 100%;
  min-height: 400px;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.project-card:hover .project-thumb img {
  transform: scale(1.05);
}

.project-thumb .placeholder-proj {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 50%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 13px;
  letter-spacing: 1px;
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 24px 20px;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 100%);
}

.project-overlay h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.project-overlay span {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}

/* ========== COMPANIES ========== */
.companies {
  padding: 100px 40px;
  background: var(--white);
}

.companies-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.companies h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
}

.companies .section-sub {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 56px;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  align-items: center;
}

.company-item {
  padding: 24px;
  border-radius: 8px;
  background: var(--gray-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
}

.company-item:hover {
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.company-item .comp-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-item .comp-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}

.company-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  line-height: 1.3;
}

/* ========== MISSION / VISION / VALUES ========== */
.mvv {
  padding: 120px 40px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.mvv::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 70%);
}

.mvv-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mvv-card {
  text-align: center;
  padding: 48px 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  transition: all 0.3s;
}

.mvv-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,160,23,0.2);
}

.mvv-card .mvv-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212,160,23,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.mvv-card .mvv-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.mvv-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.mvv-card p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
}

/* ========== CTA SECTION ========== */
.cta {
  padding: 100px 40px;
  background: var(--gold);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.03) 40px,
    rgba(255,255,255,0.03) 80px
  );
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta p {
  font-size: 16px;
  color: rgba(10,22,40,0.65);
  margin-bottom: 36px;
  line-height: 1.7;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 42px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
}

.btn-dark:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10,22,40,0.3);
}

/* ========== FOOTER ========== */
footer {
  background: var(--navy);
  padding: 80px 40px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .logo-text .company-name {
  font-size: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 35px; }
  .hero-right { max-width: 500px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card:first-child { grid-column: span 2; grid-row: span 1; }
  .companies-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .hero h1 { font-size: 36px; }
  .hero-stats { gap: 24px; }
  .hero-stat .number { font-size: 32px; }
  .hero-tagline { font-size: 16px; }
  .hero-buttons { flex-direction: column; }
  .hero-float-card { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card:first-child { grid-column: span 1; }
  .mvv-grid { grid-template-columns: 1fr; }
  .companies-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .about h2, .services h2, .projects h2, .cta h2, .companies h2 { font-size: 32px; }
  .section-label span { font-size: 11px; }
}
/* ========== MOBILE MENU ========== */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}
.mobile-toggle span {
  width: 24px; height: 2px; background: var(--white); transition: all 0.3s;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

#mobile-nav {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: rgba(10,22,40,0.98);
  z-index: 999;
  padding: 40px;
  flex-direction: column;
  gap: 24px;
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
#mobile-nav a:hover { color: var(--gold); }

nav.scrolled { background: rgba(10,22,40,0.98); box-shadow: 0 4px 20px rgba(0,0,0,0.3); }

/* ========== PAGE HERO BANNER ========== */
.page-hero {
  position: relative;
  padding: 180px 40px 100px;
  background: var(--navy);
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.95) 0%, rgba(26,58,107,0.85) 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.1) 60px, rgba(255,255,255,0.1) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.1) 60px, rgba(255,255,255,0.1) 61px);
}
.page-hero h1 {
  position: relative; z-index: 2; color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 30px; margin-bottom: 16px;
  animation: heroFadeUp 0.8s ease-out both;
}
.page-hero p {
  position: relative; z-index: 2;
  color: rgba(255,255,255,0.5); max-width: 600px; margin: 0 auto; font-size: 18px; line-height: 1.7;
  animation: heroFadeUp 0.8s 0.2s ease-out both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== INNER PAGE CONTENT ========== */
.page-content {
  max-width: 1280px; margin: 0 auto; padding: 80px 40px;
}
.page-content h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(28px, 4vw, 40px); color: var(--navy); margin-bottom: 24px;
}
.page-content h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 24px; color: var(--navy); margin-bottom: 16px; margin-top: 48px;
}
.page-content p {
  font-size: 16px; line-height: 1.85; color: var(--gray-600); margin-bottom: 1em;
}

/* ========== TWO COLUMN LAYOUT ========== */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

/* ========== ARTICLE/BLOG CARDS ========== */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 32px;
}
.blog-card {
  background: var(--white); border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.4s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.blog-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.blog-card .card-body { padding: 24px; }
.blog-card .card-date { font-size: 12px; color: var(--gray-600); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.blog-card h3 { font-family: 'Montserrat', sans-serif; font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.blog-card h3 a { color: var(--navy); text-decoration: none; }
.blog-card h3 a:hover { color: var(--blue-light); }
.blog-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }
.blog-card .read-more {
  font-size: 13px; color: var(--gold); font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; margin-top: 16px; display: inline-block; text-decoration: none;
}
.blog-card .read-more:hover { color: var(--blue-light); }

/* ========== ARTICLE SINGLE ========== */
.article-content {
  max-width: 820px; margin: 0 auto; padding: 60px 40px 80px;
}
.article-content img {
  width: 100%; border-radius: 8px; margin: 32px 0;
}
.article-content p {
  font-size: 17px; line-height: 1.85; color: var(--gray-800); margin-bottom: 1.5em;
}
.article-meta {
  font-size: 14px; color: var(--gray-600); margin-bottom: 32px;
  padding-bottom: 24px; border-bottom: 1px solid var(--gray-200);
}
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 1px; text-decoration: none;
  margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--gray-200);
}
.back-link:hover { color: var(--blue-light); }

/* ========== CONTACT FORM ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-info-item .icon-circle {
  width: 48px; height: 48px; border-radius: 50%; background: rgba(212,160,23,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-item .icon-circle svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-info-item h4 { font-family: 'Montserrat', sans-serif; font-size: 16px; margin-bottom: 4px; }
.contact-info-item span { font-size: 14px; color: var(--gray-600); line-height: 1.5; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600; color: var(--navy);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; border: 1px solid var(--gray-200);
  border-radius: 6px; font-family: 'Montserrat', sans-serif; font-size: 15px;
  color: var(--gray-800); background: var(--white); transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,160,23,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ========== SERVICES PAGE DETAILED ========== */
.service-detail {
  padding: 80px 0; border-bottom: 1px solid var(--gray-200);
}
.service-detail:last-child { border-bottom: none; }
.service-detail:nth-child(even) .two-col { direction: rtl; }
.service-detail:nth-child(even) .two-col > * { direction: ltr; }
.service-detail img { width: 100%; border-radius: 8px; }

/* ========== TEAM GRID (ABOUT PAGE) ========== */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px;
}
.team-card {
  text-align: center; padding: 32px 24px; border-radius: 8px;
  background: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.team-photo {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 20px;
  overflow: hidden; border: 3px solid var(--gold); background: var(--gray-200);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-family: 'Montserrat', sans-serif; margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ========== RESPONSIVE ADDITIONS ========== */
@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  .nav-links { display: none; }
  .page-hero { padding: 140px 24px 60px; }
  .page-content { padding: 60px 24px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .article-content { padding: 40px 24px 60px; }
  .service-detail:nth-child(even) .two-col { direction: ltr; }
}


.hero-slider{
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 12px;
}

.hero-slide{
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active{
  opacity: 1;
  z-index: 2;
}

.hero-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 12s ease-in-out infinite;
}

/* dark overlay for cinematic effect */
.hero-slider::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.4)
  );
  z-index:3;
}

/* slow zoom animation */
@keyframes heroZoom{
  0%{ transform: scale(1); }
  100%{ transform: scale(1.1); }
}


.about-grid-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:12px;
}

/* ========== ARTICLE TWO-COLUMN LAYOUT ========== */
.article-layout-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.article-main {}
.article-breadcrumb {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.article-date-line {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-share {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.social-share a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.social-share a:hover { background: var(--blue-light); }
.social-share svg { width: 16px; height: 16px; fill: var(--white); }
.article-main h1.article-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 28px;
}
.article-hero-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 32px;
  object-fit: cover;
  max-height: 400px;
}
.article-body p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--gray-800);
  margin-bottom: 1.4em;
}
.article-body p:first-child::first-letter {
  float: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--navy);
  line-height: 0.75;
  margin-right: 10px;
  margin-top: 8px;
}
.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.article-back-link:hover { color: var(--blue-light); }
.article-author-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-avatar-placeholder { width: 28px; height: 28px; fill: rgba(255,255,255,0.4); }
.author-info .author-name { font-weight: 700; font-size: 15px; color: var(--navy); display: block; }
.author-info .author-role { font-size: 12px; color: var(--gray-600); text-transform: uppercase; letter-spacing: 1px; }

/* Sidebar */
.article-sidebar {}
.sidebar-section {
  background: var(--gray-100);
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 28px;
}
.sidebar-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.sidebar-news-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}
.sidebar-news-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-news-thumb {
  width: 64px;
  height: 52px;
  border-radius: 4px;
  background: var(--blue);
  flex-shrink: 0;
  overflow: hidden;
}
.sidebar-news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-news-info {}
.sidebar-news-info a {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.4;
  display: block;
}
.sidebar-news-info a:hover { color: var(--blue-light); }
.sidebar-news-info span { font-size: 11px; color: var(--gray-600); margin-top: 4px; display: block; }
.sidebar-newsletter input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--gray-800);
  box-sizing: border-box;
}
.sidebar-newsletter input:focus { outline: none; border-color: var(--gold); }
.sidebar-newsletter button {
  width: 100%;
  padding: 12px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}
.sidebar-newsletter button:hover { background: var(--gold-light); }

@media (max-width: 900px) {
  .article-layout-wrap {
    grid-template-columns: 1fr;
    padding: 40px 24px 60px;
  }
}

/* ========== COMPREHENSIVE MOBILE RESPONSIVE ========== */

/* --- Tablet (1024px) --- */
@media (max-width: 1024px) {
  .hero-content { padding: 120px 24px 80px; }
  .hero-slider { height: 320px; }
  .hero-image-wrapper { aspect-ratio: auto; }
  .mvv h2 { font-size: 36px !important; }
  .video-showcase-title { font-size: 32px !important; }
}

/* --- Mobile (768px) --- */
@media (max-width: 768px) {
  /* Disable zoom on mobile for proper viewport behavior */
  body { zoom: 1; }

  /* Prevent horizontal overflow */
  html, body { overflow-x: hidden; }

  /* Nav */
  .nav-inner { padding: 0 16px; height: 64px; }
  .logo-icon img { height: 32px; }
  .logo-text .company-name { font-size: 18px; letter-spacing: 1px; }
  .logo-text .tagline-small { font-size: 8px; letter-spacing: 2px; }
  #mobile-nav { top: 64px !important; padding: 24px; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-content { padding: 80px 20px 48px; gap: 32px; }
  .hero h1 { font-size: 28px; word-break: break-word; }
  .hero-badge { padding: 6px 14px; margin-bottom: 20px; }
  .hero-badge span { font-size: 10px; letter-spacing: 1.5px; }
  .hero-tagline { font-size: 15px; margin-bottom: 28px; max-width: 100%; }
  .hero-stats { gap: 16px; flex-wrap: wrap; margin-bottom: 32px; padding-top: 16px; }
  .hero-stat .number { font-size: 28px; }
  .hero-stat .label { font-size: 11px; letter-spacing: 1px; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons a { text-align: center; justify-content: center; padding: 14px 24px; font-size: 13px; width: 100%; }
  .hero-image-wrapper { aspect-ratio: auto; background: none; }
  .hero-slider { height: 240px; border-radius: 8px; }
  .hero-image-border { display: none; }
  .hero-right { max-width: 100%; }

  /* About */
  .about { padding: 60px 20px; }
  .about h2 { font-size: 28px; }
  .about p { font-size: 15px; }
  .about-quote { padding: 16px 20px; }
  .about-quote p { font-size: 14px; }
  .about-feature-card { aspect-ratio: 16 / 9; border-radius: 12px; }
  .about-feature-caption { padding: 18px; }
  .about-feature-caption strong { font-size: 20px; }

  /* Services */
  .services { padding: 60px 20px; }
  .services .section-header { margin-bottom: 40px; }
  .services h2 { font-size: 28px; }
  .service-card { padding: 28px 20px; }
  .service-card h3 { font-size: 18px; }
  .service-card p { font-size: 13px; }

  /* Projects */
  .projects { padding: 60px 20px; }
  .projects .section-header { flex-direction: column; gap: 16px; align-items: flex-start; }
  .projects h2 { font-size: 28px; }
  .project-card:first-child .project-thumb { min-height: 220px; }
  .project-overlay { padding: 20px 16px 16px; }
  .project-overlay h3 { font-size: 16px; }
  .project-overlay span { font-size: 12px; }

  /* Companies */
  .companies { padding: 60px 20px; }
  .companies h2 { font-size: 28px; }
  .companies .section-sub { font-size: 14px; margin-bottom: 36px; }
  .company-item { padding: 16px; }
  .company-item span { font-size: 12px; }

  /* Video showcase — override inline styles */
  .video-showcase { padding: 60px 16px !important; }
  .video-showcase-inner { padding: 0 !important; }
  .video-showcase-title { font-size: 24px !important; }
  .video-slider-wrap { border-radius: 8px !important; max-height: 280px !important; }
  .video-controls { gap: 12px !important; margin-top: 20px !important; }
  #video-prev-btn, #video-next-btn { padding: 10px 20px !important; font-size: 12px !important; }
  #video-slide-labels { bottom: 12px !important; left: 12px !important; }
  #video-current-label { font-size: 11px !important; padding: 4px 10px !important; }

  /* Partners — override inline styles */
  .partners-section { padding: 48px 16px !important; }
  .partners-grid { gap: 12px !important; justify-content: center !important; }
  .partner-card { padding: 16px !important; min-width: 120px !important; min-height: 64px !important; flex: 1 1 calc(50% - 12px) !important; max-width: calc(50% - 6px) !important; }
  .partner-card img { max-height: 40px !important; max-width: 100px !important; }

  /* MVV */
  .mvv { padding: 60px 20px; }
  .mvv .section-header { margin-bottom: 40px !important; }
  .mvv h2 { font-size: 28px !important; }
  .mvv-card { padding: 32px 24px; }
  .mvv-card h3 { font-size: 20px; }
  .mvv-card p { font-size: 13px; }

  /* CTA */
  .cta { padding: 60px 20px; }
  .cta h2 { font-size: 26px; }
  .cta p { font-size: 14px; padding: 0 8px; }
  .btn-dark { padding: 14px 28px; font-size: 13px; }

  /* Footer — override inline styles on .footer-inner */
  footer { padding: 0 !important; }
  .footer-inner { padding: 48px 20px 24px !important; grid-template-columns: 1fr !important; gap: 32px !important; }
  .footer-bottom { padding: 20px 20px 24px !important; flex-direction: column !important; gap: 8px !important; text-align: center !important; }

  /* Prevent long words/emails from causing horizontal scroll */
  * { word-break: break-word; }
}

/* --- Small phones (480px) --- */
@media (max-width: 480px) {
  .hero-content { padding: 72px 16px 40px; }
  .hero h1 { font-size: 24px; }
  .hero-tagline { font-size: 14px; line-height: 1.6; }
  .hero-stats { gap: 10px; justify-content: center; }
  .hero-stat { min-width: 0; text-align: center; }
  .hero-stat .number { font-size: 24px; }
  .hero-stat .label { font-size: 10px; }
  .hero-slider { height: 180px; }
  .hero-buttons a { padding: 12px 20px; font-size: 12px; letter-spacing: 1px; }

  .about h2, .services h2, .projects h2, .cta h2, .companies h2, .mvv h2 { font-size: 22px !important; }

  .companies-grid { grid-template-columns: 1fr !important; }

  .about-inner { gap: 32px !important; }
  .about-feature-card { aspect-ratio: 16/9; }
  .about-feature-caption strong { font-size: 18px; }

  .service-card { padding: 24px 16px; }

  .nav-inner { padding: 0 12px; }
  .logo-text .company-name { font-size: 16px; }

  .page-hero { padding: 100px 16px 40px; }
  .page-hero h1 { font-size: 22px; }
  .page-hero p { font-size: 14px; }
  .page-content { padding: 40px 16px; }

  .contact-info-item { flex-direction: column; }

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

  .blog-grid { grid-template-columns: 1fr; }
  .blog-card img { aspect-ratio: 16/9; }

  /* Video showcase small screens */
  .video-showcase { padding: 40px 12px !important; }
  .video-slider-wrap { max-height: 220px !important; border-radius: 6px !important; }
  #video-prev-btn, #video-next-btn { padding: 8px 16px !important; font-size: 11px !important; }

  /* Partners small screens — single column */
  .partner-card { flex: 1 1 100% !important; max-width: 100% !important; }

  /* Footer small phones */
  .footer-inner { padding: 40px 16px 20px !important; gap: 28px !important; }
  .footer-bottom { padding: 16px 16px 20px !important; }

  /* CTA small phones */
  .cta h2 { font-size: 22px; }
  .cta p { font-size: 13px; }
  .btn-dark { padding: 12px 24px; font-size: 12px; }

  /* MVV cards */
  .mvv-card { padding: 24px 20px; }
  .mvv-card h3 { font-size: 18px; }

  /* Project card */
  .project-card:first-child .project-thumb { min-height: 180px; }
}

/* --- Touch-friendly tap targets --- */
@media (pointer: coarse) {
  .nav-cta { padding: 12px 20px; }
  #mobile-nav a { padding: 16px 0; font-size: 16px; min-height: 48px; display: flex; align-items: center; }
  .btn-primary, .btn-secondary, .btn-dark { min-height: 48px; }
  .video-dot { width: 14px !important; height: 14px !important; }
  .footer-col ul li { margin-bottom: 14px; }
  .hero-buttons a { min-height: 48px; display: flex; align-items: center; justify-content: center; }
}

/* ========== INLINE-STYLE MOBILE OVERRIDES ========== */
/* These fix sections in about.html and other pages that use inline grid styles */
@media (max-width: 768px) {
  /* About page: MVV inline grid (3-col) -> 1 col */
  div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
  }
  /* About page: Executive messages inline grid (2-col) -> 1 col */
  div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Sections with inline padding:100px 40px -> smaller on mobile */
  div[style*="padding:100px 40px"] {
    padding: 60px 20px !important;
  }
  /* Contact form inline padding */
  form[style*="padding:40px"] {
    padding: 24px 20px !important;
  }
  /* Inline h2 font sizes on about page */
  div[style*="font-size:clamp(28px"] {
    font-size: 28px !important;
  }
  /* MVV cards inline padding on about page */
  div[style*="padding:48px 36px"] {
    padding: 28px 20px !important;
  }
}

@media (max-width: 480px) {
  div[style*="padding:100px 40px"] {
    padding: 40px 16px !important;
  }
  div[style*="padding:48px 36px"] {
    padding: 24px 16px !important;
  }
  form[style*="padding:40px"] {
    padding: 20px 16px !important;
  }
}

/* ========== ENHANCED ANIMATIONS ========== */

/* --- Staggered reveal variants --- */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* --- Stagger children delay (applied via JS data-delay) --- */
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }
.reveal-left[data-delay="1"], .reveal-right[data-delay="1"], .reveal-scale[data-delay="1"] { transition-delay: 0.1s; }
.reveal-left[data-delay="2"], .reveal-right[data-delay="2"], .reveal-scale[data-delay="2"] { transition-delay: 0.2s; }
.reveal-left[data-delay="3"], .reveal-right[data-delay="3"], .reveal-scale[data-delay="3"] { transition-delay: 0.3s; }
.reveal-left[data-delay="4"], .reveal-right[data-delay="4"], .reveal-scale[data-delay="4"] { transition-delay: 0.4s; }
.reveal-left[data-delay="5"], .reveal-right[data-delay="5"], .reveal-scale[data-delay="5"] { transition-delay: 0.5s; }

/* --- Gold shimmer on hero accent line --- */
@keyframes shimmer {
  0% { top: -100%; }
  100% { top: 200%; }
}
.hero-accent-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, transparent, rgba(212,160,23,0.6), transparent);
  animation: shimmer 4s ease-in-out infinite;
}

/* --- Floating animation for hero float card --- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-float-card {
  animation: float 4s ease-in-out infinite;
}

/* --- Hero badge dot glow --- */
@keyframes dotGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,160,23,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(212,160,23,0); }
}
.hero-badge-dot {
  animation: dotGlow 2s ease-in-out infinite;
}

/* --- Hero stat counter flash on count-up --- */
@keyframes countPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.hero-stat .number.counted {
  animation: countPop 0.5s ease-out;
}

/* --- Service card icon rotate on hover --- */
.service-card:hover .service-icon {
  transform: rotateY(180deg);
  transition: transform 0.6s ease;
}
.service-icon {
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

/* --- Project card image shine overlay --- */
.project-thumb::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
  z-index: 2;
}
.project-card:hover .project-thumb::after {
  left: 120%;
}

/* --- Company items staggered bounce-in --- */
@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.7) translateY(20px); }
  60% { transform: scale(1.05) translateY(-4px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.company-item.animate-in {
  animation: bounceIn 0.6s ease-out forwards;
}

/* --- MVV card border glow on hover --- */
.mvv-card:hover {
  box-shadow: 0 0 30px rgba(212,160,23,0.12), inset 0 0 30px rgba(212,160,23,0.04);
}

/* --- MVV icon spin on hover --- */
.mvv-card:hover .mvv-icon {
  transform: rotate(360deg);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.mvv-icon {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- CTA section text shimmer --- */
@keyframes textShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.cta h2 {
  background: linear-gradient(90deg, var(--navy) 40%, var(--blue-light) 50%, var(--navy) 60%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 4s linear infinite;
}

/* --- Button hover ripple --- */
.btn-primary, .btn-dark {
  position: relative;
  overflow: hidden;
}
.btn-primary::after, .btn-dark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}
.btn-primary:hover::after, .btn-dark:hover::after {
  width: 300px;
  height: 300px;
}

/* --- Nav link underline animation enhanced --- */
.nav-links a::after {
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover::after {
  transform-origin: left;
  transform: scaleX(1);
}

/* --- Footer link slide-in underline --- */
.footer-col ul a,
footer a[style] {
  position: relative;
}
.footer-col ul a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.footer-col ul a:hover::after {
  width: 100%;
}

/* --- Partner logo hover pop --- */
section [alt="Emerson"],
section [alt="Hinada"],
section [alt="Unitech"],
section [alt="Ion Exchange"] {
  transition: transform 0.3s ease;
}
section [alt="Emerson"]:hover,
section [alt="Hinada"]:hover,
section [alt="Unitech"]:hover,
section [alt="Ion Exchange"]:hover {
  transform: scale(1.08);
}

/* --- Smooth section separator gradient lines --- */
@keyframes gradientSlide {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.about::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--blue-light), var(--gold), transparent);
  background-size: 200% auto;
  animation: gradientSlide 3s linear infinite;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========== INTERACTIVE PROJECTS PAGE ========== */
.projects-showcase {
  position: relative;
}

/* Filter Tabs */
.project-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 28px;
  border: 2px solid var(--gray-200);
  background: transparent;
  color: var(--gray-600);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.25);
}

/* Project Cards Grid */
.project-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 32px;
}

/* Individual Project Card */
.proj-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.proj-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15);
}

/* Card Image */
.proj-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
}

.proj-card-img.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.proj-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.5s ease;
}

.proj-card:hover .proj-card-img img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

/* Image shine sweep */
.proj-card-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  z-index: 3;
  transition: left 0.7s ease;
}

.proj-card:hover .proj-card-img::before {
  left: 130%;
}

/* Overlay */
.proj-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.proj-card:hover .proj-card-overlay {
  opacity: 1;
}

.proj-tag {
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  transform: translateY(10px);
  transition: transform 0.4s 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.proj-card:hover .proj-tag {
  transform: translateY(0);
}

.proj-view-btn {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  padding: 10px 0;
  position: relative;
  transform: translateY(10px);
  transition: transform 0.4s 0.15s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.3s ease;
}

.proj-card:hover .proj-view-btn {
  transform: translateY(0);
}

.proj-view-btn::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.proj-card:hover .proj-view-btn::after {
  width: 100%;
}

/* Card Info */
.proj-card-info {
  padding: 24px 28px 28px;
}

.proj-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.proj-card-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.proj-card-info h3 a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.3s ease;
}

.proj-card-info h3 a:hover {
  color: var(--blue-light);
}

.proj-card-info p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
}

/* Responsive */
@media (max-width: 900px) {
  .project-cards-grid {
    grid-template-columns: 1fr;
  }
  .project-filters {
    gap: 8px;
  }
  .filter-btn {
    padding: 8px 20px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .proj-card-info {
    padding: 20px;
  }
  .proj-card-overlay {
    padding: 20px;
  }
  .proj-card-info h3 {
    font-size: 18px;
  }
}