/* ============================================================
   KISTECHNOSOFTWARE - Global Stylesheet
   Design Tokens & Component Styles
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  --primary-blue: #0d6efd;
  --primary-dark: #0a2463;
  --accent-cyan: #00c6ff;
  --accent-teal: #0097e6;
  --gradient-hero: linear-gradient(135deg, #1a56db 0%, #0bc5ea 100%);
  --gradient-blue: linear-gradient(135deg, #0d6efd 0%, #00c6ff 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  --white: #ffffff;
  --off-white: #f8f9fb;
  --light-gray: #e8ecef;
  --text-dark: #1e2b3a;
  --text-body: #4a5568;
  --text-muted: #718096;
  --border-light: #e6ebf4;
  --card-shadow: 0 10px 30px rgba(15, 23, 42, 0.03), 0 1px 3px rgba(15, 23, 42, 0.01);
  --card-shadow-hover: 0 30px 60px rgba(13, 110, 253, 0.08), 0 4px 20px rgba(13, 110, 253, 0.03);
  --border-radius: 16px;
  --border-radius-sm: 10px;
  --border-radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Inter', 'Poppins', sans-serif;
  --topbar-height: 40px;
  --navbar-height: 100px;
  --gradient-brand: linear-gradient(135deg, #0d6efd 0%, #7c3aed 50%, #00c6ff 100%);
  --brand-gold: #f59e0b;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--gradient-hero);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  font-size: 0.82rem;
  color: var(--white);
  position: relative;
  z-index: 1000;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-bar .address-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar .address-info i {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}

.top-bar .right-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar .social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar .social-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.top-bar .social-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.2);
}

.top-bar .email-info {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: var(--white);
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(13, 110, 253, 0.12);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo .logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
}

.nav-logo .logo-text span {
  color: var(--primary-blue);
}

.nav-logo .logo-tagline {
  font-size: 0.62rem;
  color: var(--text-muted);
  display: block;
  letter-spacing: 0.3px;
}

/* INFLUEXMEDIA Brand Logo Styles */
.brand-name {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  display: block;
}
.brand-tagline {
  font-size: 0.57rem;
  color: var(--text-muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: block;
  font-weight: 500;
}
.logo-im {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-im-text {
  line-height: 1.2;
}

.logo-svg {
  width: 45px;
  height: 45px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
  background: rgba(13, 110, 253, 0.06);
}

.nav-link i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 18px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--transition);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  color: var(--primary-blue);
  background: rgba(13, 110, 253, 0.05);
  padding-left: 24px;
}

/* CTA Button */
.btn-cta {
  background: var(--gradient-blue);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(13, 110, 253, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
/* Lenis smooth scroll resets */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overflow: clip;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Logo styling */
.logo-img {
  height: 84px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.logo-im:hover .logo-img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .logo-img {
    height: 58px;
  }
}

.hero-section {
  min-height: calc(100vh - var(--navbar-height) - var(--topbar-height));
  background-image: url('hero_dev.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 15, 30, 0.95) 0%, rgba(10, 15, 30, 0.85) 40%, rgba(10, 15, 30, 0.2) 75%, rgba(10, 15, 30, 0.6) 100%);
  z-index: 1;
}

.hero-glow-orb {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.2) 0%, rgba(13, 110, 253, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-circuit-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
}

@media (max-width: 991px) {
  .hero-section {
    background-position: 75% center;
  }
  .hero-section::before {
    background: linear-gradient(to right, rgba(10, 15, 30, 0.95) 0%, rgba(10, 15, 30, 0.85) 60%, rgba(10, 15, 30, 0.4) 100%);
  }
}

@media (max-width: 768px) {
  .hero-section {
    background-position: 80% center;
  }
  .hero-section::before {
    background: rgba(10, 15, 30, 0.88);
  }
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-text h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-text h1 span {
  background: linear-gradient(135deg, #3b82f6 0%, #a78bfa 60%, #00c6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.75;
  font-weight: 400;
}

@media (max-width: 768px) {
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
}

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

@media (max-width: 768px) {
  .hero-buttons {
    justify-content: center;
  }
}

.btn-premium-primary {
  background: #ffffff;
  color: #0f172a !important;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #ffffff;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-premium-primary:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn-premium-outline {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff !important;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-premium-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.hero-image-spacer {
  display: block;
}

@media (max-width: 768px) {
  .hero-image-spacer {
    display: none;
  }
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--gradient-hero);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-section .inner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.stats-quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats-quote blockquote {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 16px;
}

.stats-quote cite {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stats-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stats-desc {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.8;
}

.btn-about {
  display: inline-block;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  align-self: flex-start;
}

.btn-about:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

.stats-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--gradient-hero);
  padding: 40px 0 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  grid-column: 1 / -1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 24px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

.stat-number {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ============================================================
   SECTION COMMON STYLES
   ============================================================ */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--off-white);
}

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

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

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
}

.section-title span {
  color: var(--primary-blue);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--card-shadow);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-8px);
  border-color: rgba(13, 110, 253, 0.25);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-icon {
  transform: scale(1.08) translateY(-2px);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-body);
  background: var(--light-gray);
  border-radius: 50px;
  padding: 4px 12px;
  border: 1px solid var(--border-light);
}

/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-visual {
  position: relative;
  height: 480px;
}

.tech-orbit {
  position: relative;
  width: 100%;
  height: 100%;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(13,110,253,0.3);
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1.5px dashed rgba(13,110,253,0.2);
  border-radius: 50%;
}

.orbit-ring-1 { width: 200px; height: 200px; animation: rotate 20s linear infinite; }
.orbit-ring-2 { width: 340px; height: 340px; animation: rotate 35s linear infinite reverse; }

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.tech-bubble {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.bubble-php { background: #8993be; width: 80px; height: 80px; font-size: 1rem; top: 30%; left: 52%; }
.bubble-js { background: #f0db4f; color: #323330; width: 56px; height: 56px; font-size: 0.85rem; top: 55%; left: 20%; animation-delay: 0.5s; }
.bubble-ios { background: var(--white); color: #555; border: 2px solid var(--border-light); width: 56px; height: 56px; top: 32%; left: 22%; animation-delay: 1s; }
.bubble-react { background: #20232a; width: 70px; height: 70px; font-size: 1.4rem; top: 64%; left: 50%; animation-delay: 1.5s; }
.bubble-woo { background: #7f54b3; width: 76px; height: 76px; top: 60%; left: 22%; animation-delay: 0.8s; }
.bubble-shopify { background: #96bf48; width: 64px; height: 64px; top: 18%; left: 38%; animation-delay: 1.2s; }
.bubble-blue { background: var(--primary-blue); width: 30px; height: 30px; top: 15%; left: 58%; animation-delay: 0.3s; }
.bubble-cyan { background: var(--accent-cyan); width: 18px; height: 18px; top: 75%; left: 65%; animation-delay: 0.7s; }
.bubble-dark { background: var(--text-dark); width: 24px; height: 24px; top: 42%; left: 10%; animation-delay: 1.8s; }

.why-us-text { }

.why-us-text .section-tag { text-align: left; }
.why-us-text .section-title { text-align: left; }

.why-us-text .desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 16px 0 32px;
  line-height: 1.8;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.feature-item .check-icon {
  width: 28px;
  height: 28px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 0.7rem;
}

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio-section {
  background: var(--off-white);
}

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

.portfolio-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.portfolio-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.portfolio-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-muted);
}

.portfolio-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #e8ecef, #d0d8e8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 2.5rem;
}

.portfolio-info {
  padding: 20px;
}

.portfolio-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.portfolio-info .cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--primary-blue);
}

.load-more-btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.btn-load {
  background: var(--gradient-blue);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-load:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

/* ============================================================
   PARTNERS / TICKER
   ============================================================ */
.partners-section {
  padding: 50px 0;
  overflow: hidden;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.partners-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.ticker-wrapper {
  overflow: hidden;
  position: relative;
}

.ticker-wrapper::before,
.ticker-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 1;
}

.ticker-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.ticker-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 50px;
  animation: ticker 25s linear infinite;
  width: max-content;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  min-width: 140px;
  height: 60px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
}

.ticker-item:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

/* ============================================================
   CONSULTANCY FORM SECTION
   ============================================================ */
.consultancy-section {
  background: var(--gradient-hero);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.consultancy-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.consultancy-section .section-tag {
  color: rgba(255,255,255,0.75);
}

.consultancy-section .section-title {
  color: var(--white);
}

.consultancy-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  margin-top: 50px;
}

.contact-info-block {
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.helpline {
  margin-bottom: 8px;
}

.helpline .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.helpline .number {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-detail .detail-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

.contact-detail .detail-value {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
}

.get-direction {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  margin-top: 10px;
  transition: var(--transition);
}

.get-direction:hover {
  color: var(--white);
  border-color: var(--white);
}

/* Form */
.consultancy-form {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.92);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23718096' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  margin-top: 4px;
}

.form-checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.form-checkbox-row label {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.85);
}

.form-checkbox-row a {
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  text-decoration: underline;
}

.btn-submit {
  background: var(--text-dark);
  color: var(--white);
  padding: 14px 36px;
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-submit:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.error-message {
  font-size: 0.78rem;
  color: #fc8181;
  margin-top: 4px;
  display: none;
}

.error-message.visible {
  display: block;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  padding: 80px 0;
  background: var(--white);
}

.testimonials-section .section-title span {
  color: var(--primary-blue);
}

.testimonials-section .section-subtitle {
  color: var(--text-muted);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: calc(25% - 18px);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 28px;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.testimonial-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-8px);
  border-color: rgba(13, 110, 253, 0.2);
}

.stars {
  color: #f6b93b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--light-gray);
  border: 2px solid var(--border-light);
}

.author-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.author-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #1e2b3a 0%, #0d6efd 100%);
  padding: 80px 24px;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.cta-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-white {
  background: var(--white);
  color: var(--primary-blue);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-banner .btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.footer-brand .logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}

.footer-brand .logo-text span {
  color: var(--accent-cyan);
}

.footer-brand .tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-brand .desc {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}

.footer-contact-item i {
  color: var(--accent-cyan);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  background: rgba(0,0,0,0.2);
  text-align: center;
  padding: 18px 24px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ============================================================
   PAGE HEADER (Inner pages)
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--off-white) 0%, #dbeafe 100%);
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--primary-blue);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-content {
  max-width: 860px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-align: center;
}

.about-content h2 span {
  color: var(--primary-blue);
}

.about-content p {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: justify;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-8px);
  border-color: rgba(13, 110, 253, 0.2);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--white);
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-blue);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--primary-blue);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(13,110,253,0.3);
  z-index: 1;
  top: 6px;
}

.timeline-content {
  width: 42%;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--card-shadow);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  margin-right: calc(50% + 30px);
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  margin-left: calc(50% + 30px);
}

.timeline-year {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.timeline-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-detail-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  transition: var(--transition);
  display: flex;
  gap: 24px;
}

.service-detail-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(13,110,253,0.15);
}

.service-detail-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient-blue);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.8rem;
  color: var(--white);
}

.service-detail-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-detail-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.service-detail-info ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-detail-info ul li {
  font-size: 0.75rem;
  background: rgba(13,110,253,0.07);
  color: var(--primary-blue);
  border-radius: 50px;
  padding: 4px 12px;
  font-weight: 600;
}

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.portfolio-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border-light);
  background: var(--white);
  color: var(--text-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-blue);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(13,110,253,0.3);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--card-shadow);
  border-color: rgba(13,110,253,0.15);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 1.1rem;
}

.contact-card-info h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-card-info p,
.contact-card-info a {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--card-shadow);
}

.contact-form-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.contact-form-box .form-input,
.contact-form-box .form-select,
.contact-form-box .form-textarea {
  background: var(--off-white);
  border: 1.5px solid var(--border-light);
  color: var(--text-dark);
}

.contact-form-box .form-input:focus,
.contact-form-box .form-select:focus,
.contact-form-box .form-textarea:focus {
  background: var(--white);
  border-color: var(--primary-blue);
}

.map-placeholder {
  background: linear-gradient(135deg, #dbeafe, #e8ecef);
  border-radius: var(--border-radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  margin-top: 30px;
  overflow: hidden;
  position: relative;
}

.map-placeholder::before {
  content: '📍';
  font-size: 3rem;
  position: absolute;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-counters { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values { grid-template-columns: repeat(2, 1fr); }
  .services-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --topbar-height: 0px;
  }
  .top-bar { display: none; }
  .hamburger { display: flex; }
  
  .nav-menu {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: calc(100vh - var(--navbar-height));
    overflow-y: auto;
  }
  
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link {
    padding: 12px 16px;
    justify-content: space-between;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--off-white);
    border-radius: var(--border-radius-sm);
    margin-top: 4px;
    display: none;
  }
  
  .dropdown-menu.open {
    display: block;
  }
  
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }
  .hero-text h1 { font-size: 2rem; }
  
  .stats-section .inner-content { grid-template-columns: 1fr; gap: 30px; }
  .stats-counters { grid-template-columns: repeat(2, 1fr); }
  
  .services-grid { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-visual { height: 300px; }
  
  .consultancy-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  
  .testimonials-track { flex-wrap: wrap; }
  .testimonial-card { min-width: 100%; }
  
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; }
  .timeline-dot { left: 20px; }
  .timeline-content { width: auto; margin-left: 50px !important; margin-right: 0 !important; }
}

@media (max-width: 480px) {
  .stat-item + .stat-item::before { display: none; }
  .stats-counters { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .consultancy-form { padding: 24px 18px; }
  .contact-form-box { padding: 24px 18px; }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  transition: var(--transition);
  z-index: 997;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
  color: var(--white);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: waPulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-float .wa-tooltip {
  position: absolute;
  right: 64px;
  background: #1e2b3a;
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-float .wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #1e2b3a;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
}

.phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  border-radius: 50px;
  padding: 8px 18px;
  margin-top: 12px;
  transition: var(--transition);
  text-decoration: none;
}

.phone-badge:hover {
  background: rgba(37, 211, 102, 0.25);
  border-color: #25d366;
}

.phone-badge i { color: #25d366; font-size: 1rem; }
.phone-badge span { color: rgba(255,255,255,0.9); font-size: 0.85rem; font-weight: 600; }

/* ============================================================
   ADMIN PANEL & LEADERSHIP TEAM STYLES
   ============================================================ */

/* Leadership Team Section (About Us) */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
.team-card {
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(13, 110, 253, 0.2);
}
.team-avatar-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gradient-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
}
.team-card:nth-child(2) .team-avatar-placeholder {
  background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
}
.team-card:nth-child(3) .team-avatar-placeholder {
  background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.2);
}
.team-card:nth-child(4) .team-avatar-placeholder {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}
.team-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.team-info .role {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary-blue);
  margin-bottom: 12px;
}
.team-info .bio {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 80px;
}
.team-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.team-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.team-socials a:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
}

/* Admin Overlay Container */
.admin-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 24px;
  color: #f1f5f9;
  font-family: 'Poppins', 'Inter', sans-serif;
}
.admin-overlay.active {
  display: flex;
}

/* Admin Login Card */
.admin-login-card {
  background: rgba(20, 27, 45, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  text-align: center;
  animation: adminFadeUp 0.5s ease;
}
.admin-login-card h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.admin-login-card p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 30px;
}
.admin-form-group {
  text-align: left;
  margin-bottom: 20px;
}
.admin-form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #94a3b8;
  margin-bottom: 8px;
}
.admin-input {
  width: 100%;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: white;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.admin-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
  outline: none;
}
.admin-btn {
  width: 100%;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}
.admin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}
.admin-error-banner {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  border-radius: 8px;
  padding: 12px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  display: none;
  text-align: left;
}

/* Admin Dashboard */
.admin-dashboard {
  width: 100%;
  max-width: 1100px;
  background: rgba(20, 27, 45, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  animation: adminFadeUp 0.5s ease;
  display: none;
}
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 24px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 16px;
}
.admin-header h2 {
  font-size: 1.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}
.admin-header h2 span {
  color: #3b82f6;
}
.admin-header-actions {
  display: flex;
  gap: 12px;
}
.btn-admin-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #f1f5f9;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-admin-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}
.btn-admin-danger {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-admin-danger:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.6);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .admin-stats {
    grid-template-columns: 1fr;
  }
}
.admin-stat-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.admin-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.admin-stat-info h4 {
  font-size: 0.8rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.admin-stat-info p {
  font-size: 1.8rem;
  font-weight: 700;
}

.admin-table-wrapper {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.4);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}
.admin-table th,
.admin-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.admin-table th {
  background: rgba(15, 23, 42, 0.8);
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
}
.admin-table tbody tr {
  transition: background 0.3s;
}
.admin-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}
.admin-table td {
  color: #cbd5e1;
}
.admin-table td.date-col {
  white-space: nowrap;
  font-size: 0.82rem;
  color: #94a3b8;
}
.admin-table td.service-col span {
  display: inline-block;
  background: rgba(124, 58, 237, 0.15);
  color: #a78bfa;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: capitalize;
}
.admin-table td.msg-col {
  max-width: 250px;
  word-wrap: break-word;
  white-space: pre-wrap;
  font-size: 0.85rem;
  line-height: 1.5;
}
.btn-delete-row {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.2s;
  font-size: 0.95rem;
}
.btn-delete-row:hover {
  background: rgba(239, 68, 68, 0.15);
  transform: scale(1.1);
}
.admin-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #94a3b8;
}
.admin-empty-state i {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.4;
}

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

/* Social Coming Soon Toast */
.social-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: white;
  padding: 16px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 999999;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}
.social-toast.show {
  transform: translateX(-50%) translateY(0);
}
.social-toast i {
  color: #3b82f6;
  font-size: 1.15rem;
}

/* Admin Dashboard Tab Navigation */
.admin-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}
.admin-tab-btn {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s;
}
.admin-tab-btn:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}
.admin-tab-btn.active {
  color: white;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.4);
}
.admin-tab-content {
  display: none;
}
.admin-tab-content.active {
  display: block;
}

/* Admin CMS Form & Grid Styles */
.admin-cms-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
}
@media (max-width: 900px) {
  .admin-cms-grid {
    grid-template-columns: 1fr;
  }
}
.admin-card-header {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
}
.admin-form-box {
  background: rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px;
}
.admin-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 500px) {
  .admin-form-row {
    grid-template-columns: 1fr;
  }
}
