/* =====================================================
   VIAN CREATIVES - Main Stylesheet
   Color Palette:
     Background Dark : #04000B
     Background Card : #1E1D1D / #121212
     Teal Primary    : #00D9D4
     Teal Light      : #06F4F0
     Text Primary    : #FFFFFF
     Text Secondary  : #CCCCCC
     Border          : rgba(0,217,212,0.25)
   ===================================================== */

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

:root {
  --orange:        #00D9D4;
  --orange-light:  #06F4F0;
  --orange-grad:   linear-gradient(273deg, #00D9D4 0%, #06F4F0 98%);
  --bg-dark:       #04000B;
  --bg-card:       #1E1D1D;
  --bg-card-2:     #121212;
  --text-white:    #FFFFFF;
  --text-grey:     #CCCCCC;
  --text-muted:    #888888;
  --border:        rgba(0,217,212,0.25);
  --border-subtle: rgba(102,252,241,0.1);
  --radius:        10px;
  --radius-lg:     20px;
  --shadow:        0 10px 40px rgba(0,0,0,0.5);
  --shadow-orange: 0 0 30px rgba(0,217,212,0.2);
  --transition:    0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-grey);
  background-color: var(--bg-dark);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; width: 20px; height: 20px; flex-shrink: 0; }
h1,h2,h3,h4,h5 { color: var(--text-white); font-family: 'Nunito', sans-serif; line-height: 1.2; }

/* ---- UTILITIES ---- */
.container {
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 100px 0; }
.text-center { text-align: center; }
.text-gradient {
  background: var(--orange-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section header block */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: #EA7D00;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 18px;
}
.section-desc {
  color: var(--text-grey);
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--orange-grad);
  color: #fff;
  border-color: var(--orange-light);
}
.btn-primary:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.btn-primary:hover svg { stroke: #000; }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.btn-lg { padding: 17px 34px; font-size: 15px; }

/* ---- TOP BAR ---- */
.topbar {
  background: rgba(4,0,11,0.95);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar-left {
  display: flex;
  gap: 20px;
  align-items: center;
}
.topbar-left a, .topbar-right a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-grey);
  transition: color var(--transition);
}
.topbar-left a:hover, .topbar-right a:hover { color: var(--orange); }
.topbar-left svg, .topbar-right svg { width: 14px; height: 14px; }
.topbar-right {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* ---- HEADER / NAV ---- */
/* Default (Dark Mode): Header has a white background, text is dark */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--transition), background var(--transition), border-color var(--transition);
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.1); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 2rem;
}

/* Nav logo: always on white background */
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition);
}
.nav-logo-inner:hover {
  opacity: 0.8;
}
.nav-logo-inner img {
  height: 120px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-text-fallback {
  display: flex;
  flex-direction: column;
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #04000B;
  line-height: 1;
  padding: 2px 0;
}
.logo-text-fallback span { color: var(--orange); font-size: 12px; letter-spacing: 3px; }

.nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
}
.nav-link {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a; /* Dark links on white background */
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--orange);
  background: rgba(4, 0, 11, 0.05);
}
.nav-link.active { color: var(--orange); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #ffffff; /* White dropdown on white background header */
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition);
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #333333;
  transition: all var(--transition);
}
.dropdown li a:hover {
  color: var(--orange);
  background: rgba(254,88,12,0.05);
  padding-left: 26px;
}

/* Theme Toggle Button Styling */
.theme-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #121212; /* Dark icon on white header */
  transition: background var(--transition), color var(--transition);
}
.theme-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}
.theme-toggle-btn svg {
  width: 20px;
  height: 20px;
}

/* Non-Darkmode (Light Mode) overrides: Header should have a colored (dark brand) background, text is light */
body.light-mode .header {
  background: rgba(4, 0, 11, 0.97); /* Colored dark purple header background */
  border-bottom: 1px solid var(--border);
}
body.light-mode .header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.6); }

body.light-mode .header .logo-text-fallback {
  color: var(--text-white);
}
body.light-mode .header .nav-link {
  color: var(--text-grey);
}
body.light-mode .header .nav-link:hover, body.light-mode .header .nav-link.active {
  color: var(--text-white);
  background: rgba(255,255,255,0.05);
}
body.light-mode .header .nav-link.active {
  color: var(--orange);
}
body.light-mode .header .dropdown {
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
body.light-mode .header .dropdown li a {
  color: var(--text-grey);
}
body.light-mode .header .dropdown li a:hover {
  color: var(--orange);
  background: rgba(254,88,12,0.08);
}
body.light-mode .header .theme-toggle-btn {
  color: #ffffff; /* White icon on dark/colored header */
}
body.light-mode .header .theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #04000B; /* Dark hamburger spans by default for white background header */
  border-radius: 2px;
  transition: all var(--transition);
}
body.light-mode .hamburger span {
  background: #111111; /* Dark hamburger spans on light header */
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  position: relative;
  background-color: var(--bg-dark);
  min-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-color: #04000B;
  background-image: url('../images/hero-bg.png');
  background-position: 1000px 75%;
  background-repeat: repeat-x;
  background-size: 58% auto;
  opacity: 0.18;
  z-index: 0;
}
.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-content {}
.hero-tagline {
  font-size: 13px;
  color: #EA7D00;
  letter-spacing: 1.5px;
  text-transform: capitalize;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-white);
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 16px;
  color: var(--text-white);
  opacity: 0.85;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-img {
  width: 100%;
  max-width: 520px;
  margin-top: 100px;
  margin-bottom: -40px;
  border: 4px solid var(--orange);
  border-radius: 20px;
  box-shadow: 
    0 0 60px rgba(0, 217, 212, 0.4),
    0 0 30px rgba(6, 244, 240, 0.5),
    inset 0 0 20px rgba(0, 217, 212, 0.1),
    0 20px 80px rgba(0, 217, 212, 0.25),
    0 0 0 3px rgba(0, 217, 212, 0.6);
  position: relative;
  overflow: hidden;
  animation: shimmerStroke 3s infinite ease-in-out;
}
.hero-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid var(--orange-light);
  border-radius: 12px;
  pointer-events: none;
  margin: 3px;
  box-shadow: inset 0 0 30px rgba(0, 217, 212, 0.2);
}
.hero-image::before {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(0, 217, 212, 0.3);
  border-radius: 30px;
  pointer-events: none;
  box-shadow: inset 0 0 40px rgba(0, 217, 212, 0.1);
  animation: shimmerFrame 3s infinite ease-in-out;
}
.hero-image::after {
  content: '';
  position: absolute;
  width: 620px;
  height: 620px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0, 217, 212, 0.2);
  border-radius: 40px;
  pointer-events: none;
  animation: shimmerFrameOuter 3s infinite ease-in-out;
}

/* Decorative corner accents */
.hero-image {
  overflow: visible;
}

.hero-container .hero-image {
  z-index: 2;
}

.hero-image .hero-img {
  display: block;
  z-index: 3;
}
.hero-image.img-placeholder {
  min-height: 400px;
  background: linear-gradient(135deg, rgba(254,88,12,0.1), rgba(255,144,0,0.05));
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
}
.hero-image.img-placeholder::after { content: '📷 hero-image.png'; }

/* Animated dots */
.hero-dots { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.dot {
  position: absolute;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.dot-1 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(254,88,12,0.15) 0%, transparent 70%); top: 10%; right: 5%; animation-delay: 0s; }
.dot-2 { width: 200px; height: 200px; background: radial-gradient(circle, rgba(255,144,0,0.1) 0%, transparent 70%); bottom: 20%; left: 10%; animation-delay: 3s; }
.dot-3 { width: 150px; height: 150px; background: radial-gradient(circle, rgba(254,88,12,0.08) 0%, transparent 70%); top: 50%; left: 40%; animation-delay: 5s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-30px); } }

/* Shining stroke animation */
@keyframes shimmerStroke {
  0% {
    box-shadow: 
      0 0 60px rgba(0, 217, 212, 0.4),
      0 0 30px rgba(6, 244, 240, 0.5),
      inset 0 0 20px rgba(0, 217, 212, 0.1),
      0 20px 80px rgba(0, 217, 212, 0.25),
      0 0 0 3px rgba(0, 217, 212, 0.6);
  }
  50% {
    box-shadow: 
      0 0 100px rgba(0, 217, 212, 0.6),
      0 0 60px rgba(6, 244, 240, 0.8),
      inset 0 0 40px rgba(0, 217, 212, 0.2),
      0 20px 100px rgba(0, 217, 212, 0.4),
      0 0 0 3px rgba(6, 244, 240, 1);
  }
  100% {
    box-shadow: 
      0 0 60px rgba(0, 217, 212, 0.4),
      0 0 30px rgba(6, 244, 240, 0.5),
      inset 0 0 20px rgba(0, 217, 212, 0.1),
      0 20px 80px rgba(0, 217, 212, 0.25),
      0 0 0 3px rgba(0, 217, 212, 0.6);
  }
}

/* Frame shining animations */
@keyframes shimmerFrame {
  0%, 100% {
    box-shadow: 
      0 0 50px rgba(0, 217, 212, 0.2),
      inset 0 0 50px rgba(0, 217, 212, 0.15);
  }
  50% {
    box-shadow: 
      0 0 80px rgba(0, 217, 212, 0.4),
      inset 0 0 80px rgba(0, 217, 212, 0.25);
  }
}

@keyframes shimmerFrameOuter {
  0%, 100% {
    box-shadow: 0 0 40px rgba(0, 217, 212, 0.15);
  }
  50% {
    box-shadow: 0 0 70px rgba(0, 217, 212, 0.3);
  }
}

/* ---- TRUSTED ---- */
.trusted-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 40px 0;
}
.trusted-label {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: opacity var(--transition);
  filter: grayscale(1) brightness(2);
}
.trust-logo:hover { opacity: 1; filter: none; }
.trust-logo img { height: 36px; width: auto; }
.trust-logo span { font-size: 14px; color: var(--text-muted); font-weight: 600; }

/* ---- SERVICES ---- */
.services-section { background: var(--bg-dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--bg-card-2);
  border: 3px solid rgba(255,116,38,0.35);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: #FF7426;
  box-shadow: 0 -10px 40px rgba(255,116,38,0.15);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-grad);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.service-icon svg { width: 24px; height: 24px; stroke: #fff; }
.service-num {
  font-size: 40px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: transparent;
  -webkit-text-stroke: 1px rgba(234,234,234,0.15);
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.3;
  font-family: 'Inter', sans-serif;
}
.service-card p {
  font-size: 14px;
  color: #CCCCCC;
  line-height: 1.7;
  flex: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-white);
  transition: color var(--transition);
  margin-top: auto;
}
.service-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.service-link:hover { color: var(--orange); }
.service-link:hover svg { transform: translateX(4px); }

/* ---- STATS ---- */
.stats-section {
  background: #04000B;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-subtle);
}
.stat-item {
  background: var(--bg-dark);
  text-align: center;
  padding: 50px 20px;
}
.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ---- ABOUT ---- */
.about-section { background: var(--bg-dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.about-image.img-placeholder {
  min-height: 460px;
  background: linear-gradient(135deg, rgba(254,88,12,0.08), rgba(18,18,18,0.9));
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
}
.about-image.img-placeholder::after { content: '📷 about-image.png'; }
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange-grad);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-orange);
}
.badge-icon { color: white; }
.badge-icon svg { width: 28px; height: 28px; stroke: white; }
.badge-text { display: flex; flex-direction: column; }
.badge-text strong { font-size: 18px; color: white; font-weight: 700; }
.badge-text span { font-size: 12px; color: rgba(255,255,255,0.8); }

.about-content {}
.about-content .section-tag { display: block; text-align: left; }
.about-content .section-title { text-align: left; }
.about-content p {
  color: var(--text-grey);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}
.about-list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-white);
}
.about-list li svg { width: 18px; height: 18px; stroke: var(--orange); flex-shrink: 0; }

/* ---- PROMISE ---- */
.promise-section { background: var(--bg-dark); }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.promise-card {
  background: var(--bg-card-2);
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.promise-card:hover {
  border-color: var(--orange);
  box-shadow: 0 0 30px rgba(254,88,12,0.1);
  transform: translateY(-4px);
}
.promise-icon {
  width: 52px;
  height: 52px;
  background: rgba(254,88,12,0.12);
  border: 1px solid rgba(254,88,12,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
}
.promise-icon svg { stroke: var(--orange); }
.promise-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
}
.promise-card p { font-size: 14px; color: #CCCCCC; line-height: 1.7; }

/* ---- PORTFOLIO ---- */
.portfolio-section { background: var(--bg-dark); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-item {}
.portfolio-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-img:hover img { transform: scale(1.07); }
.portfolio-img.img-placeholder {
  background: linear-gradient(135deg, rgba(254,88,12,0.08), rgba(30,29,29,0.9));
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,0,11,0.95) 0%, rgba(4,0,11,0.3) 60%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  gap: 6px;
}
.portfolio-img:hover .portfolio-overlay { opacity: 1; }
.portfolio-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
}
.portfolio-overlay h3 {
  font-size: 18px;
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
}
.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
  transition: gap var(--transition);
}
.portfolio-link:hover { gap: 10px; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--bg-dark); }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  flex: 0 0 100%;
  max-width: 100%;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 50px 60px;
  border: 1px solid var(--border);
  text-align: center;
}
.testimonial-stars {
  font-size: 22px;
  color: var(--orange);
  margin-bottom: 24px;
  letter-spacing: 4px;
}
.testimonial-text {
  font-size: 18px;
  color: var(--text-white);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}
.testimonial-author div { text-align: left; }
.testimonial-author strong { display: block; color: var(--text-white); font-size: 16px; }
.testimonial-author span { font-size: 13px; color: var(--orange); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.slider-prev, .slider-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.slider-prev:hover, .slider-next:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.slider-prev svg, .slider-next svg { width: 18px; height: 18px; }
.slider-dots-container { display: flex; gap: 8px; align-items: center; }
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.slider-dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* ---- CTA ---- */
.cta-section {
  background: var(--bg-dark);
  padding: 80px 0;
}
.cta-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: var(--shadow-orange);
  background-image: url('../images/cta-bg.png');
  background-size: cover;
  background-position: center;
}
.cta-content .section-tag { display: block; text-align: left; margin-bottom: 16px; }
.cta-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  max-width: 540px;
  margin-bottom: 16px;
}
.cta-content p { font-size: 15px; color: var(--text-grey); max-width: 480px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ---- BLOG ---- */
.blog-section { background: var(--bg-dark); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--bg-card-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.blog-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-img.img-placeholder {
  background: linear-gradient(135deg, rgba(254,88,12,0.08), rgba(18,18,18,1));
  border-bottom: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
}
.blog-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange-grad);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 4px;
}
.blog-content { padding: 28px; }
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.blog-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
}
.blog-content h3 a { color: var(--text-white); transition: color var(--transition); }
.blog-content h3 a:hover { color: var(--orange); }
.blog-content p { font-size: 14px; color: var(--text-grey); margin-bottom: 18px; line-height: 1.6; }
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: gap var(--transition);
}
.blog-link svg { width: 14px; height: 14px; }
.blog-link:hover { gap: 10px; }

/* ---- FOOTER ---- */
.footer {
  background: #040213;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
/* Footer logo: always on white background badge */
.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 20px;
  width: fit-content;
  max-width: 100%;
}
.footer-logo-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 18px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.18);
  transition: box-shadow var(--transition);
  max-width: 100%;
}
.footer-logo-inner:hover {
  box-shadow: 0 4px 24px rgba(254,88,12,0.22);
}
.footer-logo-inner img {
  height: 112px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}
.footer-logo .logo-text-fallback { margin-bottom: 0; color: #ffffff; }
.footer-about p { font-size: 14px; color: var(--text-grey); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(254,88,12,0.08);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-grey);
  transition: all var(--transition);
}
.footer-links a:hover {
  color: var(--orange);
  padding-left: 6px;
}
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-grey);
}
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; stroke: var(--orange); margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: var(--text-muted); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--orange); }

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--orange-grad);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(254,88,12,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 500;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px) !important; }
.back-to-top svg { stroke: white; width: 20px; height: 20px; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="150"] { transition-delay: 0.15s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }
.reveal[data-delay="400"] { transition-delay: 0.4s; }
.reveal[data-delay="500"] { transition-delay: 0.5s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-image { max-width: 500px; }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-box { flex-direction: column; text-align: center; }
  .cta-content .section-tag { text-align: center; }
  .cta-content h2 { max-width: none; }
  .cta-content p { max-width: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .topbar { display: none; }

  .nav-menu {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(320px, calc(100vw - 24px));
    background: #ffffff;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 28px 18px;
    transform: translateX(-100%);
    transition: transform var(--transition);
  }
  .nav-menu.open { transform: translateX(0); }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    text-align: left;
    width: 100%;
  }
  .nav-links > li {
    width: 100%;
  }
  .nav-link {
    width: 100%;
    justify-content: space-between;
    font-size: 18px;
    padding: 12px 18px;
    color: #111111;
  }
  .nav-link:hover,
  .nav-link.active {
    color: var(--orange);
    background: rgba(0, 0, 0, 0.04);
  }

  .has-dropdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .mobile-dropdown-row {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
  .mobile-dropdown-row .nav-link {
    flex: 1;
    margin: 0;
  }
  .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.04);
    color: #111111;
    cursor: pointer;
    margin-right: 8px;
  }
  .dropdown-toggle svg {
    width: 18px;
    height: 18px;
  }
  .has-dropdown.open .dropdown-toggle svg {
    transform: rotate(180deg);
  }
  .dropdown {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #f7f7f8;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 8px 0;
    box-shadow: none;
    margin-top: 2px;
  }
  .has-dropdown.open .dropdown {
    display: block;
  }
  .dropdown li a {
    color: #111111;
    text-align: left;
    padding: 10px 18px;
  }

  .hamburger { display: flex; z-index: 1000; }
  .nav-actions .btn-primary { display: none; }

  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-image { display: none; }
  .hero-actions { justify-content: center; }
  .hero-desc { margin: 0 auto 36px; }

  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .testimonial-card { padding: 36px 24px; }
  .cta-box { padding: 50px 28px; }
  .about-badge { bottom: 10px; right: 10px; }

  .trusted-logos { gap: 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: stretch; }
}

/* =====================================================
   LIGHT MODE (NON-DARKMODE) COLOR THEME SYSTEM
   ===================================================== */
body.light-mode {
  background-color: #F8F9FA;
  color: #333333;
}
body.light-mode .hero,
body.light-mode .section,
body.light-mode .services-section,
body.light-mode .about-section,
body.light-mode .promise-section,
body.light-mode .portfolio-section,
body.light-mode .testimonials-section,
body.light-mode .blog-section {
  background-color: #F8F9FA;
}
body.light-mode .hero-bg-overlay {
  background-color: #F8F9FA;
  opacity: 0.05;
}
body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4,
body.light-mode h5,
body.light-mode h6,
body.light-mode .section-title,
body.light-mode .stat-number {
  color: #121212;
}
body.light-mode p,
body.light-mode .section-desc,
body.light-mode .stat-label,
body.light-mode .trusted-label {
  color: #555555;
}
body.light-mode .service-card,
body.light-mode .promise-card,
body.light-mode .blog-card,
body.light-mode .blog-card-long,
body.light-mode .testimonial-card,
body.light-mode .cta-box,
body.light-mode .widget,
body.light-mode .contact-card,
body.light-mode .contact-form-wrap,
body.light-mode .value-card,
body.light-mode .team-card {
  background-color: #FFFFFF;
  border-color: rgba(254, 88, 12, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
body.light-mode .service-card h3,
body.light-mode .promise-card h3,
body.light-mode .testimonial-text,
body.light-mode .testimonial-author strong,
body.light-mode .blog-content h3 a,
body.light-mode .cta-content h2,
body.light-mode .widget-title,
body.light-mode .contact-card-info h3,
body.light-mode .contact-form-title,
body.light-mode .form-label,
body.light-mode .value-card h3,
body.light-mode .team-info h3 {
  color: #121212;
}
body.light-mode .hero-tagline,
body.light-mode .hero-title,
body.light-mode .hero-desc,
body.light-mode .about-content p,
body.light-mode .service-card p,
body.light-mode .service-link,
body.light-mode .promise-card p,
body.light-mode .stat-label,
body.light-mode .blog-content p,
body.light-mode .value-card p,
body.light-mode .contact-card p,
body.light-mode .widget p,
body.light-mode .cta-content p {
  color: #333333;
}
body.light-mode .about-list li {
  color: #222222;
}
body.light-mode .form-control {
  background: #F8F9FA;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #121212;
}
body.light-mode .form-control:focus {
  border-color: var(--orange);
}
body.light-mode .stat-item {
  background-color: #FFFFFF;
}
body.light-mode .service-link,
body.light-mode .portfolio-link,
body.light-mode .blog-link {
  color: var(--orange);
}
body.light-mode .btn-outline {
  color: #121212;
  border-color: rgba(0, 0, 0, 0.2);
}
body.light-mode .btn-outline:hover {
  background: #121212;
  color: #FFFFFF;
  border-color: #121212;
}
body.light-mode .topbar {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
body.light-mode .topbar-left a,
body.light-mode .topbar-right a {
  color: #555555;
}
body.light-mode .topbar-left a:hover,
body.light-mode .topbar-right a:hover {
  color: var(--orange);
}
body.light-mode .footer {
  background: #0D0B18; /* Keep footer dark for premium contrast */
}
body.light-mode .footer h4,
body.light-mode .footer-links a,
body.light-mode .footer-contact li,
body.light-mode .footer-about p {
  color: rgba(255, 255, 255, 0.8);
}
body.light-mode .footer-links a:hover {
  color: var(--orange);
}
body.light-mode .map-placeholder-bg {
  background: radial-gradient(circle, rgba(254, 88, 12, 0.03) 0%, rgba(248, 249, 250, 0.98) 80%);
}
body.light-mode .map-placeholder-bg h3 {
  color: #121212;
}
body.light-mode .trusted-section {
  background: #F8F9FA;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
body.light-mode .trust-logo {
  filter: grayscale(1) brightness(0.2);
}
body.light-mode .trust-logo:hover {
  filter: none;
}
body.light-mode .slider-prev,
body.light-mode .slider-next {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  color: #121212;
}
body.light-mode .slider-prev:hover,
body.light-mode .slider-next:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #FFFFFF;
}
body.light-mode .stats-grid {
  background: rgba(0, 0, 0, 0.05);
}

