/* ============================================================
   AFTER COMP ANIMATION INSTITUTE — style.css
   Premium Dark Cinematic Theme | Orange · Charcoal · White
   Brand Colors: #F7A21C (Logo Orange) · #1A1A1A (Charcoal) · #FFFFFF
   ============================================================ */

/* ===== ROOT VARIABLES ===== */
:root {
  /* Backgrounds — deep charcoal inspired by logo */
  --bg-primary: #0d0d0d;
  --bg-secondary: #141414;
  --bg-card: #1a1a1a;
  --bg-card2: #1e1e1e;

  /* Brand Colors */
  --orange: #f7a21c; /* Logo primary orange */
  --orange-light: #ffb833; /* Lighter orange */
  --orange-gold: #ffd166; /* Gold highlight */
  --orange-deep: #e07800; /* Deep/darker orange */
  --orange-dark: #c45e00; /* Darkest orange for depth */
  --orange-warm: #ff8c00; /* Warm mid orange */
  --charcoal: #4b4b4b; /* Exact logo background gray */
  --charcoal-light: #5e5e5e;
  --white: #ffffff;

  /* Gradients — all orange-based */
  --grad-main: linear-gradient(135deg, #ffd166, #f7a21c, #c45e00);
  --grad-orange: linear-gradient(135deg, #f7a21c, #e07800);
  --grad-gold: linear-gradient(135deg, #ffd166, #f7a21c);
  --grad-deep: linear-gradient(135deg, #e07800, #c45e00);
  --grad-warm: linear-gradient(135deg, #f7a21c, #ff8c00, #e07800);

  --text-white: #ffffff;
  --text-light: rgba(255, 255, 255, 0.85);
  --text-muted: rgba(255, 255, 255, 0.5);
  --text-dim: rgba(255, 255, 255, 0.35);

  --border-glass: rgba(247, 162, 28, 0.1);
  --border-glass2: rgba(255, 255, 255, 0.11);
  --border-orange: rgba(247, 162, 28, 0.2);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-blur: blur(20px);

  --shadow-card: 0 24px 64px rgba(0, 0, 0, 0.7);
  --shadow-orange: 0 0 40px rgba(247, 162, 28, 0.25);
  --shadow-orange-sm: 0 0 20px rgba(247, 162, 28, 0.2);
  --shadow-deep: 0 0 40px rgba(224, 120, 0, 0.2);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 100px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --font:
    "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: #0d0d0d;
  color-scheme: dark;
  overflow-x: hidden; /* prevent horizontal scroll on iOS/mobile */
}

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Default dark section background; light sections override below */
section {
  background-color: var(--bg-primary);
}

/* ===== BROWSER AUTOFILL — kill white background ===== */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
select:-webkit-autofill,
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #1a1a1a inset !important;
  box-shadow: 0 0 0 1000px #1a1a1a inset !important;
  -webkit-text-fill-color: #ffffff !important;
  caret-color: #ffffff;
  border-color: rgba(247, 162, 28, 0.3) !important;
  background-color: #1a1a1a !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
}
iframe {
  display: block;
}
input,
select,
textarea {
  font-family: var(--font);
}

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 90px 0;
}

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

.gradient-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: #161616;
  background-color: #161616;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(247, 162, 28, 0.1);
}

/* Section Header */
.section-label-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    rgba(247, 162, 28, 0.15),
    rgba(224, 120, 0, 0.1)
  );
  border: 1px solid rgba(247, 162, 28, 0.3);
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.body-text {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-orange);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(247, 162, 28, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(247, 162, 28, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-glass2);
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(247, 162, 28, 0.08);
  border-color: rgba(247, 162, 28, 0.35);
  color: #fff;
}

.section-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===== MODAL OVERLAY ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: #181818;
  background: linear-gradient(145deg, #181818, #202020);
  border: 1px solid rgba(247, 162, 28, 0.2);
  border-radius: var(--radius-xl);
  padding: 36px;
  width: 100%;
  max-width: 540px;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.7),
    var(--shadow-orange);
}
.modal-overlay.active .modal-box {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}
.modal-close:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.modal-header-custom {
  text-align: center;
  margin-bottom: 28px;
}

.modal-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--grad-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: var(--shadow-orange);
}

.modal-header-custom h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-header-custom p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.form-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group-custom {
  margin-bottom: 14px;
}
.form-group-custom label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-group-custom input,
.form-group-custom select,
.form-group-custom textarea {
  width: 100%;
  background: #1a1a1a;
  background-color: #1a1a1a;
  border: 1px solid rgba(247, 162, 28, 0.15);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text-white);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color-scheme: dark;
}
.form-group-custom input::placeholder,
.form-group-custom textarea::placeholder {
  color: var(--text-dim);
}
.form-group-custom input:focus,
.form-group-custom select:focus,
.form-group-custom textarea:focus {
  border-color: rgba(247, 162, 28, 0.5);
  background: rgba(247, 162, 28, 0.05);
  box-shadow: 0 0 0 3px rgba(247, 162, 28, 0.1);
}
.form-group-custom select option {
  background: #1a1a1a;
  color: #fff;
}
.form-group-custom textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-modal-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--grad-orange);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(247, 162, 28, 0.35);
  margin-top: 4px;
}
.btn-modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(247, 162, 28, 0.55);
}

.modal-form-success {
  text-align: center;
  padding: 20px 0;
}
.success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #f7a21c, #c45e00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
  box-shadow: 0 0 30px rgba(247, 162, 28, 0.45);
}
.modal-form-success h4 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.modal-form-success p {
  color: var(--text-muted);
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgb(73 73 73);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 18px 0;
}
.navbar.scrolled {
  background: rgb(73 73 73);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(247, 162, 28, 0.12);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
  border-radius: var(--radius-sm);
}
.logo-text {
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}
.logo-accent {
  display: block;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.nav-link:hover,
.nav-link.active {
  color: var(--orange-light);
  background: rgba(247, 162, 28, 0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-nav-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 1.5px solid rgba(247, 162, 28, 0.4);
  border-radius: var(--radius-pill);
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--orange-light);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nav-call:hover {
  background: rgba(247, 162, 28, 0.1);
  border-color: var(--orange);
}

.btn-nav-enquire {
  padding: 9px 20px;
  background: var(--grad-orange);
  border-radius: var(--radius-pill);
  font-size: 0.83rem;
  font-weight: 700;
  color: #fff;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(247, 162, 28, 0.35);
  white-space: nowrap;
}
.btn-nav-enquire:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(247, 162, 28, 0.5);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-light);
  border-radius: 4px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(
      ellipse at 30% 50%,
      rgba(247, 162, 28, 0.07) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 75% 30%,
      rgba(224, 120, 0, 0.05) 0%,
      transparent 60%
    ),
    var(--bg-primary);
}

#particleCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Floating Geometric Shapes */
.floating-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--orange);
  top: 10%;
  left: -80px;
  animation: floatShape 12s ease-in-out infinite;
}
.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--orange-deep);
  top: 60%;
  right: -40px;
  animation: floatShape 15s ease-in-out infinite reverse;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--orange-gold);
  bottom: 15%;
  left: 20%;
  animation: floatShape 10s ease-in-out infinite 2s;
}
.shape-4 {
  width: 80px;
  height: 80px;
  background: var(--orange);
  top: 30%;
  right: 30%;
  animation: floatShape 8s ease-in-out infinite 1s;
  opacity: 0.12;
  border-radius: 30%;
}
.shape-5 {
  width: 120px;
  height: 120px;
  background: var(--orange-warm);
  top: 70%;
  left: 40%;
  animation: floatShape 14s ease-in-out infinite 3s;
  opacity: 0.08;
}
.shape-6 {
  width: 60px;
  height: 60px;
  background: var(--charcoal);
  top: 20%;
  right: 15%;
  animation: floatShape 9s ease-in-out infinite 0.5s;
  opacity: 0.4;
  border-radius: 20%;
}
.shape-7 {
  width: 250px;
  height: 250px;
  background: var(--orange-dark);
  bottom: -50px;
  right: 40%;
  animation: floatShape 18s ease-in-out infinite 4s;
  opacity: 0.06;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) rotate(10deg);
  }
  66% {
    transform: translateY(15px) rotate(-5deg);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 100vh;
}

/* Hero Slider */
.hero-slider-wrap {
  position: relative;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-slide {
  display: none;
  background-color: #141414; /* dark fallback if image absent */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 480px;
  animation: slideIn 0.8s ease forwards;
}
.hero-slide.active {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale(1.03);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.slide-content {
  padding: 52px 44px;
  position: relative;
  z-index: 2;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 162, 28, 0.15);
  border: 1px solid rgba(247, 162, 28, 0.35);
  color: var(--orange-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  width: fit-content;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.4);
  }
}

.slide-headline {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.slide-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 32px;
}

.slide-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-orange);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(247, 162, 28, 0.4);
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(247, 162, 28, 0.55);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.btn-hero-secondary:hover {
  background: rgba(247, 162, 28, 0.1);
  border-color: rgba(247, 162, 28, 0.4);
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 0 4px;
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(247, 162, 28, 0.25);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.slider-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--grad-orange);
  box-shadow: 0 0 12px rgba(247, 162, 28, 0.6);
}

.slider-arrows {
  display: flex;
  gap: 8px;
}
.slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.slider-arrow:hover {
  background: rgba(247, 162, 28, 0.12);
  border-color: rgba(247, 162, 28, 0.35);
  color: var(--orange-light);
}

/* ===== HERO IMAGE ===== */
.hero-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.illus-container {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  z-index: 3;
  background: #1a1a1a;
  animation: floatMonitor 6s ease-in-out infinite;
}
@keyframes floatMonitor {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(247, 162, 28, 0.3);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.6),
    var(--shadow-orange);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.08) 0%,
    transparent 40%,
    rgba(13, 13, 13, 0.35) 100%
  );
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.hero-img-fallback {
  height: 480px;
  background: linear-gradient(135deg, #1a1a1a, #252000, #141414);
}
.hero-img-fallback .hero-main-img {
  display: none;
}

/* Experience badge */
.hero-exp-badge {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: var(--grad-orange);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(247, 162, 28, 0.45);
  z-index: 5;
}
.hero-exp-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.hero-exp-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

/* Skill Badges */
.skill-badge {
  position: absolute;
  background: rgba(20, 20, 20, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(247, 162, 28, 0.25);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-light);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 4;
  white-space: nowrap;
}
.badge-icon {
  display: flex;
  align-items: center;
}

.badge-vfx {
  top: -20px;
  right: -20px;
}
.badge-3d {
  bottom: 80px;
  right: -30px;
}
.badge-ai {
  top: 40%;
  left: -40px;
}
.badge-motion {
  bottom: -10px;
  left: -10px;
}

/* Glow Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.25;
}
.orb-blue {
  width: 200px;
  height: 200px;
  background: var(--orange);
  top: -50px;
  right: 20px;
}
.orb-purple {
  width: 160px;
  height: 160px;
  background: var(--orange-deep);
  bottom: 30px;
  left: -40px;
}
.orb-orange {
  width: 100px;
  height: 100px;
  background: var(--orange-gold);
  bottom: 80px;
  right: 10px;
}

/* Animations */
.anim-float {
  animation: floatAnim 4s ease-in-out infinite;
}
.anim-float-slow {
  animation: floatAnim 6s ease-in-out infinite;
}
.anim-spin {
  animation: spinAnim 8s linear infinite;
}
@keyframes floatAnim {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(5deg);
  }
}
@keyframes spinAnim {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 2s both;
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(247, 162, 28, 0.35);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-wheel {
  width: 3px;
  height: 8px;
  background: rgba(247, 162, 28, 0.5);
  border-radius: 4px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.2;
  }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: #ffffff;
  border-top: 2px solid rgba(247, 162, 28, 0.22);
  border-bottom: 2px solid rgba(247, 162, 28, 0.22);
  padding: 40px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.stat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 16px 24px;
}
.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-suffix {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item p {
  font-size: 0.82rem;
  color: #888888;
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(247, 162, 28, 0.25);
  flex-shrink: 0;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: #f7f5f1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
  background: #1a1a1a;
}

.about-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-glass);
  /* box-shadow: var(--shadow-card); */
}

/* Fallback gradient when no image */
.img-fallback-about .about-main-img {
  display: none;
}
.img-fallback-about {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #1a1a1a, #252000, #141414);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--grad-orange);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 48px rgba(247, 162, 28, 0.45);
  z-index: 2;
}
.badge-icon-big {
  color: rgba(255, 255, 255, 0.9);
}
.badge-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.badge-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.img-decor {
  position: absolute;
  border-radius: var(--radius-lg);
  z-index: -1;
}
.decor-1 {
  width: 100%;
  height: 100%;
  top: 16px;
  left: 16px;
  background: linear-gradient(
    135deg,
    rgba(247, 162, 28, 0.12),
    rgba(224, 120, 0, 0.07)
  );
  border: 1px solid rgba(247, 162, 28, 0.15);
}
.decor-2 {
  width: 60%;
  height: 60%;
  bottom: -30px;
  left: -20px;
  background: linear-gradient(
    135deg,
    rgba(224, 120, 0, 0.08),
    rgba(196, 94, 0, 0.06)
  );
  border: 1px dashed rgba(247, 162, 28, 0.15);
}

.feature-list {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-check {
  width: 24px;
  height: 24px;
  background: var(--grad-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(247, 162, 28, 0.35);
}
.feature-item span {
  font-size: 0.92rem;
  color: var(--text-light);
  font-weight: 500;
}

/* About section light overrides */
.about-section .section-h2 {
  color: #1a1a1a;
}
.about-section .section-subtitle {
  color: #5a5a5a;
}
.about-section .body-text {
  color: #444444;
}
.about-section .feature-item span {
  color: #333333;
}
.about-section .about-img-wrapper {
  background: #e8e3d8;
}
.about-section .img-fallback-about {
  background: linear-gradient(135deg, #e8e3d8, #d4c898, #ddd4b5);
}
.about-section .btn-outline {
  color: var(--orange-deep);
  border-color: rgba(247, 162, 28, 0.5);
}
.about-section .btn-outline:hover {
  background: rgba(247, 162, 28, 0.1);
  border-color: var(--orange);
  color: var(--orange-dark);
}

/* ===== PROGRAMS SECTION ===== */
.programs-section {
  background: var(--bg-secondary);
  position: relative;
}
.programs-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad-orange);
  opacity: 0.3;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.programs-grid .program-card {
  grid-column: span 2;
}

/* Center last two cards when 5 total in a 6-col virtual grid */
@media (min-width: 992px) {
  .programs-grid .program-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
  .programs-grid .program-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

.program-card {
  background: #1a1a1a;
  background-color: #1a1a1a;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-slow);
  position: relative;
}
.program-card:hover {
  transform: translateY(-8px);
  border-color: rgba(247, 162, 28, 0.25);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    var(--shadow-orange);
}

.program-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px;
}

.program-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(247, 162, 28, 0.18);
  border: 1px solid rgba(247, 162, 28, 0.3);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-light);
  transition: var(--transition);
}
.program-card:hover .program-icon-wrap {
  background: rgba(247, 162, 28, 0.28);
  box-shadow: 0 0 20px rgba(247, 162, 28, 0.35);
}

.program-tag {
  background: rgba(247, 162, 28, 0.15);
  border: 1px solid rgba(247, 162, 28, 0.3);
  color: var(--orange-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  height: fit-content;
  backdrop-filter: blur(10px);
}

.program-body {
  padding: 22px;
}
.program-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-white);
}
.program-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.btn-program {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-orange);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(247, 162, 28, 0.3);
}
.btn-program:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(247, 162, 28, 0.45);
}

/* Programs CTA */
.programs-cta-inner {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(247, 162, 28, 0.1),
    rgba(224, 120, 0, 0.07),
    rgba(196, 94, 0, 0.05)
  );
  border: 1px solid rgba(247, 162, 28, 0.18);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(247, 162, 28, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.programs-cta-inner h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.programs-cta-inner p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.cta-btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(247, 162, 28, 0.45);
  color: var(--orange-light);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.btn-cta-call:hover {
  background: rgba(247, 162, 28, 0.1);
  border-color: var(--orange);
}
.btn-cta-enquire {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-orange);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(247, 162, 28, 0.35);
}
.btn-cta-enquire:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(247, 162, 28, 0.5);
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}
.why-animated-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.why-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.why-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(247, 162, 28, 0.06);
  top: -100px;
  left: -100px;
  animation: orbMove 20s ease-in-out infinite alternate;
}
.why-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(224, 120, 0, 0.06);
  top: 50%;
  right: -80px;
  animation: orbMove 15s ease-in-out infinite alternate-reverse;
}
.why-orb-3 {
  width: 250px;
  height: 250px;
  background: rgba(196, 94, 0, 0.05);
  bottom: -50px;
  left: 40%;
  animation: orbMove 25s ease-in-out infinite alternate;
}
@keyframes orbMove {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(40px, 30px) scale(1.1);
  }
}

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

.why-card {
  background: #ffffff;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-orange);
  opacity: 0;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 162, 28, 0.28);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.1),
    0 0 24px rgba(247, 162, 28, 0.12);
  background: #fff8ee;
  background-color: #fff8ee;
}
.why-card:hover::before {
  opacity: 1;
}

.why-icon-box {
  width: 62px;
  height: 62px;
  background: linear-gradient(
    135deg,
    rgba(247, 162, 28, 0.2),
    rgba(247, 162, 28, 0.04)
  );
  border: 1px solid rgba(247, 162, 28, 0.22);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-light);
  margin-bottom: 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon-box {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(247, 162, 28, 0.3);
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #1a1a1a;
  line-height: 1.3;
}
.why-card p {
  font-size: 0.88rem;
  color: #5a5a5a;
  line-height: 1.65;
}

/* Why section light overrides */
.why-section .section-h2 {
  color: #1a1a1a;
}
.why-section .section-subtitle {
  color: #5a5a5a;
}
.why-orb-1 {
  background: rgba(247, 162, 28, 0.04);
}
.why-orb-2 {
  background: rgba(224, 120, 0, 0.04);
}
.why-orb-3 {
  background: rgba(196, 94, 0, 0.03);
}

/* ===== INDUSTRY EXPERIENCE ===== */
.industry-section {
  background: var(--bg-secondary);
}

.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.industry-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  background: #1a1a1a;
}

.industry-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-card);
}

.img-fallback-industry {
  width: 100%;
  height: 460px;
  background: linear-gradient(135deg, #1a1a1a, #1e1800);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-glass);
}

.industry-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--grad-orange);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(247, 162, 28, 0.4);
}

.industry-decor ind-decor-1 {
  position: absolute;
  top: 16px;
  right: -16px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(247, 162, 28, 0.1),
    rgba(224, 120, 0, 0.07)
  );
  border-radius: var(--radius-xl);
  border: 1px dashed rgba(247, 162, 28, 0.18);
  z-index: -1;
}

.ind-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ind-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ind-feat-num {
  font-size: 1.4rem;
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1.2;
}
.ind-feat-text h5 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-white);
}
.ind-feat-text p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== DIRECTOR SECTION ===== */
.director-section {
  background: #f4f3ef;
}

.director-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: center;
  background: #ffffff;
  background-color: #ffffff;
  border: 1px solid rgba(247, 162, 28, 0.18);
  border-radius: var(--radius-xl);
  padding: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.1);
}

.director-bg-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(247, 162, 28, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.director-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  background: #1a1a1a;
}
.director-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(247, 162, 28, 0.25);
  /* box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    var(--shadow-orange); */
}
.img-fallback-director {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, #1a1a1a, #2a2000);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(247, 162, 28, 0.2);
}
.director-frame {
  position: absolute;
  inset: -8px;
  border: 2px solid transparent;
  background: linear-gradient(
      135deg,
      rgba(247, 162, 28, 0.4),
      rgba(224, 120, 0, 0.15),
      transparent
    )
    border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  border-radius: calc(var(--radius-xl) + 8px);
  pointer-events: none;
}

.director-social-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}
.dir-social {
  width: 36px;
  height: 36px;
  background: rgba(247, 162, 28, 0.08);
  border: 1px solid rgba(247, 162, 28, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: var(--transition);
}
.dir-social:hover {
  background: rgba(247, 162, 28, 0.12);
  border-color: rgba(247, 162, 28, 0.3);
  color: var(--orange-light);
}

.quote-mark {
  font-size: 100px;
  line-height: 0.5;
  color: rgba(247, 162, 28, 0.2);
  font-family: Georgia, serif;
  margin-bottom: 16px;
  display: block;
}

.director-signature {
  margin-top: 24px;
}
.sig-name {
  font-size: 1.3rem;
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.sig-title {
  font-size: 0.82rem;
  color: #666666;
  font-weight: 500;
}

/* Director section light overrides */
.director-section .section-h2 {
  color: #1a1a1a;
}
.director-section .section-subtitle {
  color: #5a5a5a;
}
.director-section .director-img-wrapper {
  background: #e8e3d8;
}
.director-section .img-fallback-director {
  background: linear-gradient(135deg, #e8e3d8, #d4c898);
}
.director-section .body-text {
  color: #444444;
}
.director-section strong {
  color: #1a1a1a;
}
.director-card p {
  color: #444444;
}
.director-card h3 {
  color: #1a1a1a;
}
.director-card h4 {
  color: #333333;
}
.director-section .director-bg-glow {
  background: radial-gradient(
    circle,
    rgba(247, 162, 28, 0.06) 0%,
    transparent 70%
  );
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-info-card {
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--border-glass);
}
.contact-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 28px;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-icon-box {
  width: 46px;
  height: 46px;
  background: linear-gradient(
    135deg,
    rgba(247, 162, 28, 0.18),
    rgba(247, 162, 28, 0.04)
  );
  border: 1px solid rgba(247, 162, 28, 0.22);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-light);
  flex-shrink: 0;
}
.contact-detail h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 5px;
}
.contact-detail p,
.contact-detail a {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  transition: var(--transition);
}
.contact-detail a:hover {
  color: var(--orange-light);
}

.contact-btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn-contact-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(247, 162, 28, 0.4);
  color: var(--orange-light);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.btn-contact-call:hover {
  background: rgba(247, 162, 28, 0.1);
  border-color: var(--orange);
}

.btn-contact-enquire {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-orange);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(247, 162, 28, 0.35);
}
.btn-contact-enquire:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247, 162, 28, 0.5);
}

/* Map */
.map-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.map-header-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-glass);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}
.map-embed-wrap {
  flex: 1;
  background: #1a1a1a;
}
.map-embed-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: #1a1a1a;
  colorscheme: dark;
}
.btn-open-map {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: rgba(247, 162, 28, 0.06);
  border-top: 1px solid var(--border-glass);
  color: var(--orange-light);
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
}
.btn-open-map:hover {
  background: rgba(247, 162, 28, 0.12);
  color: var(--orange);
}

/* ===== FOOTER ===== */
.footer {
  background: #0d0d0d;
  border-top: 1px solid rgba(247, 162, 28, 0.12);
  padding: 18px 0;
  text-align: center;
}
.footer p {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ===== PROGRAM CARD BUTTONS ===== */
.program-btn-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-prog-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid rgba(247, 162, 28, 0.45);
  color: var(--orange-light);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-prog-call:hover {
  background: rgba(247, 162, 28, 0.1);
  border-color: var(--orange);
  transform: translateY(-1px);
}

/* ===== RIGHT SIDE FLOATING ENQUIRE BUTTON ===== */
/*
  Button natural size ≈ 160px wide × 48px tall.
  After rotate(-90deg), visual width = 48px, visual height = 160px.
  To flush right edge: right = (height - width) / 2 = (48 - 160) / 2 = -56px
*/
.float-enquire-side {
  position: fixed;
  right: -56px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 900;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: var(--grad-orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 20px;
  /* After -90deg rotation: original top-left/top-right corners become visual left side */
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  box-shadow: 0 -6px 28px rgba(247, 162, 28, 0.45);
  cursor: pointer;
  border: none;
  transition: right 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.float-enquire-side:hover {
  right: -48px;
  box-shadow: 0 -8px 36px rgba(247, 162, 28, 0.65);
}

/* ===== FLOAT CALL BUTTON ===== */
.float-call-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: var(--grad-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 30px rgba(247, 162, 28, 0.45);
  transition: var(--transition);
}
.float-call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(247, 162, 28, 0.65);
}
.float-btn-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(247, 162, 28, 0.45);
  animation: pulseBorder 2.5s ease-out infinite;
}
@keyframes pulseBorder {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-up {
  transform: translateY(50px);
}
.reveal-left {
  transform: translateX(-50px);
}
.reveal-right {
  transform: translateX(50px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0);
}

/* Delay variants */
[data-delay="100"] {
  transition-delay: 0.1s;
}
[data-delay="200"] {
  transition-delay: 0.2s;
}
[data-delay="300"] {
  transition-delay: 0.3s;
}
[data-delay="400"] {
  transition-delay: 0.4s;
}
[data-delay="500"] {
  transition-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE — TABLET (max 991px) ===== */
@media (max-width: 991px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 110px 24px 60px;
    min-height: auto;
  }
  .hero-illustration {
    order: -1;
  }
  .illus-container {
    max-width: 460px;
    margin: 0 auto;
  }
  .badge-vfx {
    top: -10px;
    right: -10px;
  }
  .badge-3d {
    bottom: 60px;
    right: -15px;
  }
  .badge-ai {
    left: -20px;
  }
  .badge-motion {
    bottom: -5px;
    left: -5px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img-col {
    order: 0;
  }

  .programs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .programs-grid .program-card {
    grid-column: span 2;
  }
  .programs-grid .program-card:nth-child(4) {
    grid-column: 1 / span 2;
  }
  .programs-grid .program-card:nth-child(5) {
    grid-column: 3 / span 2;
  }

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

  .industry-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .industry-img-col {
    order: 0;
  }

  .director-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px;
  }
  .director-img-wrapper {
    max-width: 280px;
    margin: 0 auto;
  }
  .director-img {
    height: 320px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-col-brand {
    grid-column: 1 / -1;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    padding: 100px 32px 40px;
    border-left: 1px solid var(--border-glass);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
    gap: 6px;
  }
  .nav-menu.open {
    right: 0;
  }
  .nav-link {
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: var(--radius-md);
  }

  .nav-actions {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }

  /* Side tab is desktop-only — hide on tablet/mobile to prevent overflow */
  .float-enquire-side {
    display: none;
  }

  .stats-grid {
    gap: 0;
  }
  .stat-divider {
    display: none;
  }
  .stat-item {
    flex: 0 0 50%;
    border-bottom: 1px solid var(--border-glass);
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border-glass);
  }
  .stat-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

/* ===== RESPONSIVE — MOBILE (max 575px) ===== */
@media (max-width: 575px) {
  .section-pad {
    padding: 60px 0;
  }

  .slide-content {
    padding: 40px 24px;
    min-height: 400px;
  }
  .slide-headline {
    font-size: 1.7rem;
  }
  .slide-desc {
    font-size: 0.9rem;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 11px 18px;
    font-size: 0.85rem;
  }

  .illus-container {
    max-width: 340px;
  }
  .badge-ai,
  .badge-motion {
    display: none;
  }
  .badge-vfx {
    top: -5px;
    right: -5px;
    padding: 7px 10px;
    font-size: 0.7rem;
  }
  .badge-3d {
    bottom: 40px;
    right: -10px;
    padding: 7px 10px;
    font-size: 0.7rem;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }
  .programs-grid .program-card,
  .programs-grid .program-card:nth-child(4),
  .programs-grid .program-card:nth-child(5) {
    grid-column: 1 / -1;
  }

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

  .about-main-img {
    height: 300px;
  }
  .img-fallback-about {
    height: 300px;
  }
  .about-img-badge {
    right: 10px;
    bottom: -15px;
    padding: 12px 14px;
  }
  .badge-num {
    font-size: 1.4rem;
  }

  .director-card {
    padding: 24px;
  }
  .director-img {
    height: 260px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-col-brand {
    grid-column: 1;
  }

  .programs-cta-inner {
    padding: 36px 20px;
  }

  .form-row-two {
    grid-template-columns: 1fr;
  }

  .section-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-actions .btn-primary,
  .section-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .stat-item {
    flex: none;
  }

  .nav-logo img {
    height: 36px;
  }
  .logo-text {
    font-size: 0.78rem;
  }

  .contact-btn-group {
    flex-direction: column;
  }
  .btn-contact-call,
  .btn-contact-enquire {
    justify-content: center;
  }

  /* Hide rotated side tab on mobile — it causes horizontal overflow */
  .float-enquire-side {
    display: none;
  }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(247, 162, 28, 0.4);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(247, 162, 28, 0.65);
}

/* ===== SELECTION ===== */
::selection {
  background: rgba(247, 162, 28, 0.35);
  color: #fff;
}

/* ===== MOBILE NAV OVERLAY ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 997;
  backdrop-filter: blur(4px);
}
.nav-overlay.show {
  display: block;
}
