/* =========================================================
   FRAMEHUB STATS — Premium Corporate Design System
   Deep Navy / Royal Blue / Gold Corporate Palette
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* ── Core Corporate Palette ── */
  --navy: #0a1628;
  --navy-light: #0f2035;
  --royal: #1a3a6b;
  --royal-light: #2451a0;
  --gold: #c9a84c;
  --gold-light: #e0c36a;
  --teal: #0f766e;
  --teal-light: #14b8a6;

  /* ── Surfaces ── */
  --bg-white: #ffffff;
  --bg-light: #f6f8fb;
  --bg-warm: #faf9f7;

  /* ── Text ── */
  --text-dark: #0f172a;
  --text-body: #475569;
  --text-muted: #94a3b8;
  --text-on-dark: #e2e8f0;

  /* ── Borders & Shadows ── */
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 12px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 12px 32px rgba(10, 22, 40, 0.12);
  --shadow-xl: 0 24px 48px rgba(10, 22, 40, 0.16);
  --shadow-card: 0 2px 8px rgba(10, 22, 40, 0.06), 0 0 0 1px rgba(226, 232, 240, 0.5);

  /* ── Typography ── */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* ── Transitions ── */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s var(--ease);
  --transition-slow: all 0.6s var(--ease);
}

/* ═══════════════════════════════════════════
   GLOBAL RESET & BASE
   ═══════════════════════════════════════════ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════════
   LAYOUT UTILITIES
   ═══════════════════════════════════════════ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--royal-light);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   HEADER & NAVIGATION
   ═══════════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  transition: var(--transition);
}

.site-header.scrolled .nav-container {
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: var(--transition);
}

.site-header.scrolled .logo img {
  height: 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--royal-light);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--royal-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 28px;
  background: var(--navy);
  color: white !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--royal);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
  padding: 8px;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--navy);
  color: white;
}

.btn-primary:hover {
  background: var(--royal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--gold);
  color: var(--navy);
}

.btn-secondary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: white;
  color: var(--navy);
  border-color: white;
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: white;
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  background: var(--navy);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26, 58, 107, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 4px;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero h1 .accent {
  color: var(--gold);
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-on-dark);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.8;
  opacity: 0.9;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
  object-fit: cover;
  aspect-ratio: 4/5;
  width: 100%;
}

.hero-image-decor {
  position: absolute;
  top: -16px;
  right: -16px;
  bottom: 16px;
  left: 16px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  z-index: 1;
  opacity: 0.4;
}

/* ═══════════════════════════════════════════
   TRUST / CREDIBILITY BAR
   ═══════════════════════════════════════════ */

.trust-section {
  padding: 64px 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: 12px;
  transition: var(--transition);
}

.trust-item:hover {
  background: var(--bg-light);
}

.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--royal), var(--royal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
}

.trust-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.trust-label {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.trust-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Corporate Registration Banner */
.corp-reg {
  margin-top: 32px;
  padding: 20px 28px;
  background: var(--bg-light);
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.corp-reg-item {
  font-size: 0.85rem;
  color: var(--text-body);
  font-weight: 500;
}

.corp-reg-item strong {
  color: var(--navy);
}

/* ═══════════════════════════════════════════
   SERVICES — SALESFORCE-STYLE CARDS
   ═══════════════════════════════════════════ */

.services-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 280px;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--royal-light);
  margin-top: 20px;
  transition: var(--transition);
}

.service-card:hover .service-card-link {
  gap: 10px;
  color: var(--royal);
}

/* Salesforce-style decorative wave & icon */
.service-card-decor {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 90px;
  overflow: hidden;
  pointer-events: none;
}

.service-card-wave {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.service-card-wave svg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 140px;
  height: 100px;
}

.service-card-icon {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-white);
  box-shadow: 0 2px 8px rgba(10, 22, 40, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: var(--royal-light);
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  background: var(--navy);
  color: white;
  transform: scale(1.1);
}

/* ═══════════════════════════════════════════
   WHY CHOOSE US — INFOGRAPHIC
   ═══════════════════════════════════════════ */

.why-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content h2 {
  margin-bottom: 20px;
}

.why-content>p {
  color: var(--text-body);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.8;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(26, 58, 107, 0.1), rgba(201, 168, 76, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal);
}

.why-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

.why-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.why-image-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 20px 24px;
  color: white;
}

.why-image-overlay .stat {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.why-image-overlay .stat-label {
  font-size: 0.85rem;
  color: var(--text-on-dark);
  opacity: 0.8;
}

/* ═══════════════════════════════════════════
   ABOUT THE COMPANY
   ═══════════════════════════════════════════ */

.about-section {
  padding: 100px 0;
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-content .section-label {
  color: var(--gold);
}

.about-content .section-label::before {
  background: var(--gold);
}

.about-content h2 {
  color: white;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-on-dark);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 16px;
  opacity: 0.85;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.about-stat {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-stat .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

.about-stat .label {
  font-size: 0.85rem;
  color: var(--text-on-dark);
  opacity: 0.7;
  margin-top: 4px;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  width: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════
   PROCESS / HOW WE WORK — TIMELINE
   ═══════════════════════════════════════════ */

.process-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 60px;
}

/* Connecting line */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, var(--royal), var(--gold));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

.process-step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 3px solid var(--royal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--royal);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.process-step:hover .process-step-number {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  transform: scale(1.1);
}

.process-step h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   CLIENT INDUSTRIES
   ═══════════════════════════════════════════ */

.industries-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.industry-item {
  text-align: center;
  padding: 36px 20px;
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.industry-item:hover {
  border-color: var(--royal-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.industry-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--royal);
  transition: var(--transition);
}

.industry-item:hover .industry-icon {
  background: linear-gradient(135deg, var(--royal), var(--royal-light));
  color: white;
}

.industry-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   CONTACT / LEAD GENERATION
   ═══════════════════════════════════════════ */

.contact-section {
  padding: 100px 0;
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 58, 107, 0.4) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info h2 {
  color: white;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.contact-info>p {
  color: var(--text-on-dark);
  font-size: 1.05rem;
  margin-bottom: 36px;
  opacity: 0.85;
  line-height: 1.8;
}

.contact-office {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 16px;
  transition: var(--transition);
}

.contact-office:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-office h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-office p {
  color: var(--text-on-dark);
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 8px;
}

.contact-office a {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-office a:hover {
  color: var(--gold-light);
}

/* Contact Form */
.contact-form-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow-xl);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form-card .form-subtitle {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bg-light);
  color: var(--text-dark);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--royal-light);
  box-shadow: 0 0 0 3px rgba(26, 58, 107, 0.1);
  background: var(--bg-white);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  margin-top: 8px;
}

.form-submit-btn:hover {
  background: var(--royal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.site-footer {
  background: var(--navy);
  color: white;
  padding: 56px 0 28px;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-brand .footer-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: invert(1);
  mix-blend-mode: screen;
}

.footer-brand p {
  color: var(--text-on-dark);
  opacity: 0.7;
  margin-bottom: 24px;
  max-width: 300px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-on-dark);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-title {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-on-dark);
  opacity: 0.65;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-on-dark);
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

.footer-contact-item strong {
  display: block;
  color: white;
  opacity: 1;
  margin-bottom: 4px;
}

.footer-contact-item a {
  color: var(--gold);
  opacity: 1;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-on-dark);
  opacity: 0.5;
  font-size: 0.85rem;
}

.trust-badges {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
}

.trust-badges span {
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

/* Service sub-page content grid (responsive) */
.service-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}

.reveal-delay-7 {
  transition-delay: 0.7s;
}

/* ═══════════════════════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════════════════════ */

.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.floating-wa:hover {
  transform: scale(1.1);
}

.floating-wa svg {
  fill: white;
  width: 30px;
  height: 30px;
}

/* ═══════════════════════════════════════════
   CHATBOT WIDGET
   ═══════════════════════════════════════════ */

.chatbot-toggle {
  position: fixed;
  bottom: 28px;
  right: 100px;
  height: 52px;
  padding: 0 20px;
  background: var(--navy);
  color: white;
  border-radius: 26px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.25);
  cursor: pointer;
  z-index: 999;
  transition: var(--transition);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.chatbot-toggle:hover {
  transform: translateY(-2px);
  background: var(--royal);
  box-shadow: 0 6px 20px rgba(10, 22, 40, 0.3);
}

.chatbot-toggle .toggle-label {
  display: inline;
}

.chatbot-container {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 360px;
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.chatbot-container.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.chatbot-header {
  background: var(--navy);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-messages {
  height: 340px;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-light);
}

.chatbot-messages::-webkit-scrollbar {
  width: 5px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}

.bot-message {
  background: white;
  padding: 12px 16px;
  border-radius: 2px 14px 14px 14px;
  font-size: 0.9rem;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  align-self: flex-start;
  max-width: 85%;
  border: 1px solid var(--border);
}

.user-message {
  background: var(--navy);
  padding: 12px 16px;
  border-radius: 14px 2px 14px 14px;
  font-size: 0.9rem;
  color: white;
  box-shadow: var(--shadow-sm);
  align-self: flex-end;
  max-width: 85%;
}

.chatbot-input {
  display: flex;
  padding: 14px;
  background: white;
  border-top: 1px solid var(--border);
}

.chatbot-input input {
  flex: 1;
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 8px;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.chatbot-input input:focus {
  border-color: var(--royal-light);
}

.chatbot-input button {
  background: var(--navy);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-left: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.chatbot-input button:hover {
  background: var(--royal);
}

.chatbot-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.chat-sug-btn {
  background: rgba(26, 58, 107, 0.08);
  border: 1px solid var(--royal-light);
  color: var(--royal-light);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.chat-sug-btn:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* ═══════════════════════════════════════════
   PAGE HERO TEMPLATE (sub-pages)
   ═══════════════════════════════════════════ */

.page-hero {
  padding: 160px 0 80px;
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(26, 58, 107, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  margin-bottom: 24px;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--text-on-dark);
  opacity: 0.8;
  max-width: 600px;
}

/* Service sub-page image containers */
.service-img-container {
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
  margin-bottom: 24px;
}

.service-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.glass-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.glass-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.glass-card:hover .service-img-container img {
  transform: scale(1.05);
}

/* ═══════════════════════════════════════════
   PULSE ANIMATION (Chatbot)
   ═══════════════════════════════════════════ */

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(10, 22, 40, 0.5);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(10, 22, 40, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(10, 22, 40, 0);
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLETS
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    max-width: 640px;
    margin: 0 auto;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-image {
    max-width: 480px;
    margin: 0 auto;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-image {
    max-height: 400px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-timeline::before {
    display: none;
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Service sub-page grid — tablet */
  .service-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Chatbot — tablet */
  .chatbot-container {
    width: 340px;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-container {
    height: 64px;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border-top: 1px solid var(--border);
  }

  .site-header.nav-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 56px;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .trust-item {
    padding: 20px 12px;
  }

  .trust-number {
    font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .about-stat .number {
    font-size: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .site-footer {
    padding: 40px 0 24px;
  }

  .corp-reg {
    flex-direction: column;
    gap: 8px;
  }

  /* Service sub-page grid — mobile */
  .service-content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }

  /* Page hero — mobile */
  .page-hero {
    padding: 120px 0 48px;
  }

  .page-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  /* Chatbot — full-screen mobile */
  .chatbot-container {
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    top: 0;
    left: 0;
    border-radius: 0;
    border: none;
  }

  .chatbot-container.active {
    transform: translateY(0);
  }

  .chatbot-messages {
    height: auto;
    flex: 1;
  }

  .chatbot-toggle {
    right: 80px;
    bottom: 24px;
    height: 48px;
    padding: 0 16px;
    font-size: 0.8rem;
  }

  .chatbot-toggle .toggle-label {
    display: none;
  }

  .floating-wa {
    bottom: 24px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}

.reveal-delay-7 {
  transition-delay: 0.7s;
}

/* Pulse animation for chatbot */
@keyframes pulse-border {
  0% {
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.25);
  }

  50% {
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.25), 0 0 0 8px rgba(26, 58, 107, 0.15);
  }

  100% {
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.25);
  }
}