/* ============================================================
   AXIS SOFTWARE SOLUTIONS — New Design System
   ============================================================ */

/* --- Design Tokens --- */
:root {
  --orange: #F7941D;
  --gold: #FFB800;
  --dark: #0D0D0D;
  --dark2: #111827;
  --card-dark: #1A1A2E;
  --text: #1F2937;
  --muted: #6B7280;
  --light: #F9FAFB;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --grad: linear-gradient(135deg, #F7941D 0%, #FFB800 100%);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { font-size: 1rem; color: var(--muted); }

/* --- Utilities --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-orange { color: var(--orange); }
.bg-dark { background: var(--dark2); }
.bg-light { background: var(--light); }
.hidden { display: none; }

.section-tag {
  display: inline-block;
  background: rgba(247,148,29,0.12);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title { color: #FFFFFF; margin-bottom: 14px; }
.section-title span { color: var(--orange); }
.section-sub { font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 48px; }
.sec-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 800; color: #FFFFFF; margin-bottom: 14px;
}
.sec-title span { color: var(--orange); }
.sec-desc { font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(247,148,29,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(247,148,29,0.45); color: var(--white); }
.btn-outline {
  border: 2px solid var(--orange);
  color: var(--orange);
  background: transparent;
}
.btn-outline:hover { background: var(--orange); color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--orange);
  font-weight: 700;
}
.btn-white:hover { background: var(--light); transform: translateY(-2px); }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  padding: 16px 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  background: rgba(10,15,30,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar-logo img { height: 48px; width: auto; }
/* Dual logo: white for dark bg, dark for light bg */
.navbar:not(.scrolled) .logo-dark  { display: none; }
.navbar:not(.scrolled) .logo-white { display: block; }
.navbar.scrolled .logo-white { display: none; }
.navbar.scrolled .logo-dark  { display: block; }

.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-item { position: relative; }
.nav-link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  border-radius: 6px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar.scrolled .nav-link { color: var(--text); }
.nav-link:hover, .nav-link.active { color: var(--orange) !important; }
.nav-link svg { width: 14px; height: 14px; transition: var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  white-space: nowrap;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 6px;
  transition: var(--transition);
}
.dropdown a:hover { background: rgba(247,148,29,0.08); color: var(--orange); }

.nav-cta { margin-left: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.navbar.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--dark2);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(247,148,29,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(255,184,0,0.07) 0%, transparent 50%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}
.hero-left { }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,148,29,0.15);
  border: 1px solid rgba(247,148,29,0.3);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
.hero-title {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
}
.hero-title .highlight {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.65); margin-bottom: 36px; max-width: 520px; }

.trust-badges { display: flex; gap: 24px; margin-top: 36px; flex-wrap: wrap; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}
.trust-badge svg { color: var(--orange); }

/* Hero Lead Form */
.hero-form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.hero-form-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.hero-form-card p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.7); letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); background: rgba(255,255,255,0.1); }
.form-group select option { background: var(--dark2); color: var(--white); }
.form-note { font-size: 0.78rem; color: rgba(255,255,255,0.35); text-align: center; margin-top: 12px; }
.form-note a { color: rgba(247,148,29,0.8); }
.form-success { display: none; text-align: center; padding: 24px; }
.form-success .success-icon { font-size: 3rem; margin-bottom: 12px; }
.form-success h4 { color: var(--white); margin-bottom: 8px; }
.form-success p { color: rgba(255,255,255,0.6); }

/* Light forms (on white backgrounds) */
.form-light .form-group label { color: var(--muted); }
.form-light .form-group input,
.form-light .form-group select,
.form-light .form-group textarea {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text);
}
.form-light .form-group input::placeholder,
.form-light .form-group textarea::placeholder { color: #9CA3AF; }
.form-light .form-group input:focus,
.form-light .form-group select:focus,
.form-light .form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(247,148,29,0.1); }
.form-light .form-group select option { background: var(--white); color: var(--text); }
.form-light .form-note { color: var(--muted); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--grad);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { }
.stat-number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.8); font-weight: 500; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.25); display: none; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(247,148,29,0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(247,148,29,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--grad); }
.service-icon svg { width: 28px; height: 28px; color: var(--orange); transition: var(--transition); }
.service-card:hover .service-icon svg { color: var(--white); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: #fff; }
.service-card p { font-size: 0.88rem; line-height: 1.65; margin-bottom: 20px; }
.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-visual img { width: 100%; border-radius: var(--radius-lg); }
.why-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.why-badge-icon {
  width: 48px; height: 48px;
  background: var(--grad);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.why-badge-icon svg { width: 24px; height: 24px; color: var(--white); }
.why-badge-text strong { display: block; font-size: 1.3rem; color: var(--text); }
.why-badge-text span { font-size: 0.78rem; color: var(--muted); }
.why-points { margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-point-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(247,148,29,0.1);
  display: flex; align-items: center; justify-content: center;
}
.why-point-icon svg { width: 20px; height: 20px; color: var(--orange); }
.why-point h4 { font-size: 1rem; margin-bottom: 4px; color: var(--text); }
.why-point p { font-size: 0.86rem; margin: 0; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 16px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  opacity: 0.25;
}
.process-step { text-align: center; position: relative; }
.step-num {
  width: 64px; height: 64px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange);
  position: relative;
  transition: var(--transition);
  z-index: 1;
}
.process-step:hover .step-num { background: var(--grad); color: var(--white); border-color: transparent; transform: scale(1.1); }
.process-step h4 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--muted);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--orange); color: var(--white); border-color: var(--orange); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--light);
}
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
  opacity: 0; transition: var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.portfolio-overlay span { font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.portfolio-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--dark2); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-sub { color: rgba(255,255,255,0.5); }
.swiper { overflow: hidden; }
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.quote-mark {
  font-size: 4rem;
  color: var(--orange);
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 12px;
  opacity: 0.6;
}
.testimonial-text { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-family: var(--font-head); font-size: 0.95rem; color: var(--white); font-weight: 600; }
.author-company { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; }
.swiper-pagination { margin-top: 36px; position: static; }
.swiper-pagination-bullet { background: rgba(255,255,255,0.3); opacity: 1; width: 8px; height: 8px; }
.swiper-pagination-bullet-active { background: var(--orange); width: 24px; border-radius: 4px; }

/* ============================================================
   CLIENTS
   ============================================================ */
.clients-track-wrap { overflow: hidden; position: relative; }
.clients-track-wrap::before,
.clients-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
}
.clients-track-wrap::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.clients-track-wrap::after { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.clients-track { display: flex; gap: 48px; animation: marquee 30s linear infinite; width: max-content; }
.clients-track:hover { animation-play-state: paused; }
.client-logo {
  height: 48px;
  filter: grayscale(100%) opacity(0.5);
  transition: var(--transition);
  flex-shrink: 0;
  object-fit: contain;
}
.client-logo:hover { filter: grayscale(0%) opacity(1); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--grad);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 { color: var(--white); }
.cta-inner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 28px; }
.cta-features { display: flex; flex-direction: column; gap: 12px; }
.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
}
.cta-feature svg { width: 20px; height: 20px; color: rgba(255,255,255,0.9); flex-shrink: 0; }
.cta-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.cta-form-card h3 { font-size: 1.3rem; margin-bottom: 24px; color: var(--text); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--dark2);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 12px; }
.contact-info-card > p { color: rgba(255,255,255,0.5); margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; }
.contact-item-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(247,148,29,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact-item-icon svg { width: 22px; height: 22px; color: var(--orange); }
.contact-item-text strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 2px; }
.contact-item-text a,
.contact-item-text span { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.contact-item-text a:hover { color: var(--orange); }
.contact-form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-card h3 { margin-bottom: 28px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #080B12; padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.45); max-width: 280px; line-height: 1.7; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  font-size: 0.85rem;
}
.social-link:hover { background: var(--orange); color: var(--white); }
.footer-col h4 {
  font-size: 0.85rem;
  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.87rem; color: rgba(255,255,255,0.45); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--orange); gap: 10px; }
.footer-links a::before { content: '→'; font-size: 0.75rem; }
.footer-newsletter p { font-size: 0.87rem; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-input {
  flex: 1;
  padding: 11px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.85rem;
  outline: none;
  font-family: var(--font-body);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input:focus { border-color: var(--orange); }
.newsletter-btn {
  padding: 11px 18px;
  background: var(--grad);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.footer-contact-items { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.83rem; color: rgba(255,255,255,0.45); line-height: 1.5; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--orange); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--dark2);
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,148,29,0.15), transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb svg { width: 14px; height: 14px; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 520px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.animate-float { animation: float 4s ease-in-out infinite; }
.animate-fadeup { animation: slideUp 0.7s ease forwards; }

/* AOS custom durations */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ============================================================
   FLOATING SHAPES (decorative)
   ============================================================ */
.shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.shape-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(247,148,29,0.1), transparent 70%);
  top: -100px; right: -100px;
}
.shape-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,184,0,0.08), transparent 70%);
  bottom: -80px; left: -80px;
}

/* ============================================================
   LOTTIE
   ============================================================ */
.lottie-wrap {
  display: flex; align-items: center; justify-content: center;
  width: 100%; max-width: 480px;
  margin: 0 auto;
}
lottie-player { width: 100%; height: auto; }

/* ============================================================
   MOBILE NAV DRAWER
   ============================================================ */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  visibility: hidden;
}
.mobile-nav.open { pointer-events: auto; visibility: visible; }
.mobile-nav-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav.open .mobile-nav-overlay { opacity: 1; }
.mobile-nav-drawer {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 300px;
  max-width: calc(100vw - 48px);
  background: var(--white);
  padding: 28px 24px;
  overflow-y: auto;
  box-shadow: -8px 0 32px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open .mobile-nav-drawer { transform: translateX(0); }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-nav-header img { height: 40px; }
.mobile-nav-close {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  font-size: 1.2rem;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links a {
  display: block;
  padding: 12px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  transition: var(--transition);
}
.mobile-nav-links a:hover { background: rgba(247,148,29,0.08); color: var(--orange); }
.mobile-nav-links .section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 16px 16px 8px;
}
.mobile-nav-cta { margin-top: 24px; }

/* ============================================================
   TOAST / ALERTS
   ============================================================ */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--dark2);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid #10B981; }
.toast.error { border-left: 4px solid #EF4444; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; padding: 100px 0 60px; gap: 40px; }
  .hero-form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-badges { gap: 16px; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 2rem; }
  .contact-form-card > form > div > div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  .cta-form-card form > div > div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  .hero-form-card { padding: 24px 16px; }
}

/* Ensure Swiper bullets show in testimonials */
.testimonials-swiper .swiper-pagination { display: flex; justify-content: center; gap: 6px; }

/* Smooth scroll offset for fixed nav */
section[id], div[id] { scroll-margin-top: 80px; }

/* Loading state for buttons */
button:disabled { opacity: 0.7; cursor: not-allowed; }

/* Image lazy loading blur-up */
img[loading="lazy"] { transition: opacity 0.3s; }

/* Portfolio card display fix */
.portfolio-card[style*="display: none"] { display: none !important; }

/* ============================================================
   PREMIUM EFFECTS — Cursor · Progress · Blobs · Parallax · Tilt
   ============================================================ */

/* ============================================================
   DIGITAL MARKETING SPOTLIGHT STRIP
   ============================================================ */
.dm-spotlight {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1035 50%, #0a0f1e 100%);
  border-top: 1px solid rgba(247,148,29,0.2);
  border-bottom: 1px solid rgba(247,148,29,0.2);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.dm-spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(247,148,29,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.dm-sp-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.dm-sp-badge {
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  flex-shrink: 0;
}
.dm-sp-text {
  flex: 1;
  min-width: 200px;
}
.dm-sp-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 6px;
  line-height: 1.4;
}
.dm-sp-text h3 span { color: var(--primary); }
.dm-sp-text p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.dm-spotlight .btn { flex-shrink: 0; white-space: nowrap; }
@media (max-width: 640px) {
  .dm-sp-inner { flex-direction: column; align-items: flex-start; }
  .dm-spotlight .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   FLOATING CALL + WHATSAPP BUTTONS
   ============================================================ */
.ax-float-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9990;
}
.ax-float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 14px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1), box-shadow 0.3s ease;
  white-space: nowrap;
  max-width: 52px;
  overflow: hidden;
  transition: max-width 0.4s cubic-bezier(0.23,1,0.32,1),
              padding 0.3s ease,
              box-shadow 0.3s ease,
              transform 0.3s ease;
}
.ax-float-btn span {
  opacity: 0;
  transition: opacity 0.25s ease 0.1s;
  pointer-events: none;
}
.ax-float-btn:hover {
  max-width: 180px;
  box-shadow: 0 10px 36px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}
.ax-float-btn:hover span { opacity: 1; }

.ax-float-call { background: linear-gradient(135deg, #F7941D, #FFB800); }
.ax-float-call:hover { box-shadow: 0 10px 36px rgba(247,148,29,0.5); }

.ax-float-wa { background: linear-gradient(135deg, #25D366, #128C7E); }
.ax-float-wa:hover { box-shadow: 0 10px 36px rgba(37,211,102,0.45); }

/* Pulse animation on the icons */
.ax-float-btn svg { flex-shrink: 0; animation: ax-float-pulse 2.5s ease-in-out infinite; }
.ax-float-wa svg { animation-delay: 0.8s; }
@keyframes ax-float-pulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.15); }
}

@media (max-width: 768px) {
  .ax-float-btns { bottom: 20px; right: 16px; gap: 10px; }
  .ax-float-btn { padding: 13px; border-radius: 50%; max-width: 50px; }
  .ax-float-btn span { display: none; }
  .ax-float-btn:hover { max-width: 50px; }
}

/* ============================================================
   PRELOADER
   ============================================================ */
#ax-preloader {
  position: fixed;
  inset: 0;
  background: #0A0F1E;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              visibility 0.7s cubic-bezier(0.4,0,0.2,1);
}
#ax-preloader.ax-pre-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.ax-pre-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  position: relative;
}
/* Spinning ring */
.ax-pre-ring {
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 2px solid rgba(247,148,29,0.12);
  border-top-color: #F7941D;
  border-right-color: #FFB800;
  animation: ax-pre-spin 1.1s cubic-bezier(0.6,0,0.4,1) infinite;
  position: absolute;
  top: -10px;
}
@keyframes ax-pre-spin {
  to { transform: rotate(360deg); }
}
/* Logo inside ring */
.ax-pre-logo {
  height: 52px;
  width: auto;
  margin-top: 18px;
  animation: ax-pre-pulse 1.8s ease-in-out infinite;
}
@keyframes ax-pre-pulse {
  0%,100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.75; transform: scale(0.95); }
}
/* Progress bar */
.ax-pre-bar {
  width: 180px; height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 72px;
}
.ax-pre-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #F7941D, #FFB800);
  border-radius: 2px;
  animation: ax-pre-load 1.6s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes ax-pre-load {
  0%   { width: 0%;   }
  60%  { width: 75%;  }
  100% { width: 100%; }
}
/* Label */
.ax-pre-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: -16px;
}

/* Scroll progress bar */
.ax-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #F7941D, #FFB800, #F7941D);
  background-size: 200%;
  animation: ax-shimmer-bar 2s linear infinite;
  z-index: 99999;
  transition: width 0.1s linear;
}
@keyframes ax-shimmer-bar {
  0%   { background-position: 200% center; }
  100% { background-position: 0%   center; }
}

/* Custom cursor */
.ax-cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(247,148,29,0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transition: opacity 0.3s;
  will-change: transform;
}
.ax-cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: #F7941D;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  will-change: transform;
}
.ax-cursor-ring.ax-cursor-hover {
  width: 64px; height: 64px;
  border-color: rgba(247,148,29,0.4);
  background: rgba(247,148,29,0.06);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  margin: -12px;
}
.ax-cursor-ring.ax-cursor-click { transform: scale(0.8) !important; }

/* Gradient animated blobs */
.ax-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.ax-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  will-change: transform;
}
.ax-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #F7941D, #FFB800);
  top: 60px; right: -120px;
  animation: ax-float1 12s ease-in-out infinite;
}
.ax-blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #6366F1, #8B5CF6);
  bottom: -120px; left: -80px;
  animation: ax-float2 15s ease-in-out infinite;
}
.ax-blob-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #FFB800, #F7941D);
  top: 40%; left: 35%;
  animation: ax-float3 10s ease-in-out infinite;
  opacity: 0.1;
}
@keyframes ax-float1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(-60px,40px) scale(1.08); }
  66%      { transform: translate(40px,-30px) scale(0.95); }
}
@keyframes ax-float2 {
  0%,100% { transform: translate(0,0) scale(1); }
  40%      { transform: translate(50px,-50px) scale(1.1); }
  70%      { transform: translate(-30px,30px) scale(0.92); }
}
@keyframes ax-float3 {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(-40px,-40px); }
}

/* Orb that follows mouse */
.ax-orb-follow {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,148,29,0.15), transparent 70%);
  transform: translate(-50%,-50%);
  pointer-events: none;
  transition: left 0.6s ease, top 0.6s ease;
  filter: blur(20px);
  z-index: 0;
}

/* Grain overlay — subtle texture for premium feel */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99997;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Shimmer text effect */
.ax-shimmer {
  background: linear-gradient(90deg, var(--orange) 0%, #FFD700 40%, var(--orange) 80%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ax-shimmer 3s linear infinite;
}
@keyframes ax-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* Reveal animation */
.ax-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ax-reveal.ax-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Tilt cards — reset on mobile */
.ax-tilt { transform-style: preserve-3d; }
@media (max-width: 768px) {
  .ax-cursor-ring, .ax-cursor-dot { display: none; }
  .ax-blob { opacity: 0.1; filter: blur(60px); }
  .ax-orb-follow { display: none; }
}

/* Glowing CTA button */
.btn-glow {
  box-shadow: 0 0 0 0 rgba(247,148,29,0.5);
  animation: ax-glow-pulse 2.5s ease-in-out infinite;
}
@keyframes ax-glow-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(247,148,29,0.4), 0 0 0 0 rgba(247,148,29,0.3); }
  50%      { box-shadow: 0 6px 24px rgba(247,148,29,0.4), 0 0 0 14px rgba(247,148,29,0); }
}

/* Inner page hero parallax wrapper */
.ip-hero { overflow: hidden; position: relative; }
.ip-hero-bg {
  position: absolute; inset: -60px;
  background: linear-gradient(135deg, #0A0F1E 0%, #111827 60%, #1A0A00 100%);
  will-change: transform;
  z-index: 0;
}
.ip-hero > .ip-wrap { position: relative; z-index: 1; }
