@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ─── DESIGN TOKENS ─── */
:root {
  --blue:        #1565C0;
  --blue-mid:    #1976D2;
  --blue-light:  #1E88E5;
  --blue-bright: #42A5F5;
  --blue-dark:   #0D47A1;
  --blue-glow:   rgba(30, 136, 229, 0.12);
  --blue-glow-lg:rgba(30, 136, 229, 0.18);
  --gold:        #C9A84C;
  --gold-light:  #E8C87A;
  --green:       #22C55E;

  /* Light surface system */
  --bg:          #FAFBFF;
  --surface:     #FFFFFF;
  --surface-2:   #F3F7FF;
  --surface-3:   #E8F0FE;
  --border:      rgba(30, 136, 229, 0.14);
  --border-mid:  rgba(30, 136, 229, 0.22);

  /* Text */
  --text-primary:   #0A1628;
  --text-secondary: #3D5175;
  --text-muted:     #6B7FA3;
  --text-white:     #FFFFFF;

  /* Shadows */
  --shadow-xs:  0 1px 3px rgba(13, 71, 161, 0.06), 0 1px 2px rgba(13, 71, 161, 0.04);
  --shadow-sm:  0 4px 12px rgba(13, 71, 161, 0.08), 0 2px 4px rgba(13, 71, 161, 0.04);
  --shadow-md:  0 8px 24px rgba(13, 71, 161, 0.10), 0 4px 8px rgba(13, 71, 161, 0.05);
  --shadow-lg:  0 16px 48px rgba(13, 71, 161, 0.12), 0 6px 16px rgba(13, 71, 161, 0.06);
  --shadow-xl:  0 24px 64px rgba(13, 71, 161, 0.15), 0 8px 24px rgba(13, 71, 161, 0.08);
  --shadow-blue: 0 8px 32px rgba(30, 136, 229, 0.35);

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

  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:     0.18s;
  --t-mid:      0.32s;
  --t-slow:     0.5s;

  /* Legacy aliases — keeps inline HTML styles working */
  --dark:       #FAFBFF;
  --dark-card:  #FFFFFF;
  --white:      #ffffff;
  --gray-400:   #6B7FA3;
  --gray-800:   #0A1628;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--blue-light), var(--blue));
  border-radius: 99px;
}

/* ─── SHARED UTILITIES ─── */
.max-w { max-width: 1200px; margin: 0 auto; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-glow);
  border: 1px solid var(--border);
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

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

.section-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-mid), transparent);
  margin: 0;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5%;
  background: rgba(250, 251, 255, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: padding var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}

.navbar.scrolled {
  padding: 10px 5%;
  box-shadow: var(--shadow-sm);
  background: rgba(250, 251, 255, 0.97);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xs);
}

.nav-logo span {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.2px;
}

.nav-logo span em {
  color: var(--blue-light);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-light);
  background: var(--blue-glow);
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue-light), var(--blue)) !important;
  color: var(--text-white) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(30, 136, 229, 0.3) !important;
  transition: all var(--t-fast) var(--ease) !important;
}

.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 24px rgba(30, 136, 229, 0.45) !important;
  filter: brightness(1.08) !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--t-mid) var(--ease);
}

/* ─── PAGE SYSTEM ─── */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 100%);
  color: var(--text-white);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all var(--t-fast) var(--ease);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(30, 136, 229, 0.32);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30, 136, 229, 0.45);
}

.btn-primary:hover::before { opacity: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  color: var(--blue-light);
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all var(--t-fast) var(--ease);
  border: 1.5px solid var(--border-mid);
  box-shadow: var(--shadow-xs);
}

.btn-outline:hover {
  border-color: var(--blue-light);
  background: var(--blue-glow);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 110px 5% 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 80% 40%, rgba(30, 136, 229, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse 60% 60% at 10% 90%, rgba(21, 101, 192, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 0%, rgba(66, 165, 245, 0.06) 0%, transparent 50%);
}

/* Decorative floating orbs */
.hero-bg::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 136, 229, 0.06) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: orb-float 12s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.05) 0%, transparent 70%);
  bottom: -80px;
  left: 10%;
  animation: orb-float 16s ease-in-out infinite reverse;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-glow);
  border: 1px solid var(--border);
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-xs);
}

.hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  color: var(--text-primary);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.75;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  padding: 20px 24px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.hero-stat {
  position: relative;
}

.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -14px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border);
}

.hero-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--blue-light);
  letter-spacing: -0.5px;
}

.hero-stat span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── HERO PHOTO ─── */
.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0 50px;
  z-index: 2;
}

.hero-photo-frame {
  position: relative;
  width: 380px;
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.hero-photo-frame .photo-inner {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
  border: 3px solid rgba(255,255,255,0.9);
}

.hero-photo-frame .photo-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(13, 71, 161, 0.08) 100%);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Glow ring behind photo */
.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-xl) + 3px);
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark), var(--blue-bright));
  z-index: -1;
  opacity: 0.3;
  filter: blur(12px);
}

/* ─── FLOAT CARDS ─── */
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  z-index: 20;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(13, 71, 161, 0.14), 0 2px 8px rgba(13, 71, 161, 0.08);
}

.hero-float-card.card1 {
  top: 20px;
  left: -40px;
  animation: float-up 3s ease-in-out infinite;
  animation-delay: 0.6s;
}

.hero-float-card.card2 {
  bottom: 40px;
  right: -30px;
  animation: float-up 3.5s ease-in-out infinite;
  animation-delay: 0.9s;
}

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

.fc-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 3px;
}

.fc-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--blue-light);
  letter-spacing: -0.3px;
}

.fc-sub {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
}

/* ─── SECTION BASE ─── */
section { padding: 80px 5%; }

/* ─── STATS BANNER ─── */
.stats-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 60%, var(--blue-light) 100%);
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.stats-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.stats-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: 5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.stat-item strong {
  display: block;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #fff;
}

.stat-item em {
  font-style: normal;
  color: var(--gold-light);
}

.stat-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-top: 6px;
  display: block;
}

/* ─── SERVICE CARDS ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--t-mid) var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--blue-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid) var(--ease);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--blue-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-mid);
  box-shadow: var(--shadow-lg);
}

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

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  color: var(--blue-light);
  transition: all var(--t-fast) var(--ease);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  background: var(--blue-glow-lg);
  border-color: var(--border-mid);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 18px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.service-list li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--blue-light);
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
  text-decoration: none;
  transition: gap var(--t-fast) var(--ease);
  position: relative;
  z-index: 1;
}

.service-link:hover { gap: 10px; }

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-badge-wrap {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  border-radius: var(--radius-md);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-blue);
  color: #fff;
}

.ab-num { font-size: 34px; font-weight: 900; letter-spacing: -1px; }
.ab-text { font-size: 12px; font-weight: 600; opacity: 0.85; }

.about-content h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.about-content p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.af-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: var(--shadow-xs);
  transition: all var(--t-fast) var(--ease);
}

.af-item:hover {
  border-color: var(--border-mid);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.af-icon { font-size: 20px; flex-shrink: 0; color: var(--blue-light); }
.af-item strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.af-item span { font-size: 12px; color: var(--text-muted); }

/* ─── PORTFOLIO ─── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 22px;
}

.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-mid) var(--ease);
  box-shadow: var(--shadow-xs);
}

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

.portfolio-img {
  height: 200px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  position: relative;
  overflow: hidden;
}

.portfolio-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 71, 161, 0.5) 100%);
}

.portfolio-body { padding: 22px; }

.portfolio-tag {
  display: inline-block;
  background: var(--blue-glow);
  color: var(--blue-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  border: 1px solid var(--border);
}

.portfolio-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 7px; letter-spacing: -0.2px; }
.portfolio-card p { color: var(--text-muted); font-size: 13px; margin-bottom: 16px; line-height: 1.6; }

.portfolio-metrics { display: flex; gap: 20px; }
.pm { text-align: center; }
.pm strong { display: block; font-size: 20px; font-weight: 800; color: var(--blue-light); letter-spacing: -0.5px; }
.pm span { font-size: 11px; color: var(--text-muted); font-weight: 500; }

/* ─── BLOG ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-mid) var(--ease);
  box-shadow: var(--shadow-xs);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-mid);
}

.blog-img {
  height: 180px;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
}

.blog-body { padding: 22px; }

.blog-cat {
  font-size: 10px;
  font-weight: 700;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 9px;
  display: block;
}

.blog-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 9px; line-height: 1.45; letter-spacing: -0.2px; }
.blog-card p { color: var(--text-muted); font-size: 13px; margin-bottom: 14px; line-height: 1.65; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--t-mid) var(--ease);
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease);
}

.testi-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testi-card:hover::before { opacity: 1; }

.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.testi-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

.testi-author strong { display: block; font-size: 14px; font-weight: 700; letter-spacing: -0.1px; }
.testi-author span { font-size: 12px; color: var(--text-muted); font-weight: 500; }

/* ─── FAQ ─── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}

.faq-item:hover { border-color: var(--border-mid); }
.faq-item.open { border-color: var(--border-mid); box-shadow: var(--shadow-sm); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: color var(--t-fast) var(--ease);
}

.faq-q:hover { color: var(--blue-light); }
.faq-q .faq-icon { font-size: 20px; color: var(--blue-light); transition: transform var(--t-mid) var(--ease); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; }

.faq-a-inner {
  padding: 0 22px 18px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}

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

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

.ci-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-xs);
  transition: all var(--t-fast) var(--ease);
}

.ci-card:hover {
  border-color: var(--border-mid);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: var(--surface-3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.ci-card strong { display: block; font-size: 11px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 3px; }
.ci-card a { color: var(--text-primary); text-decoration: none; font-weight: 600; font-size: 15px; transition: color var(--t-fast); }
.ci-card a:hover { color: var(--blue-light); }

/* ─── CONTACT FORM ─── */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  width: 100%;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.12);
}

.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--surface); color: var(--text-primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ─── SERVICE DETAIL PAGES ─── */
.service-detail-hero {
  padding: 140px 5% 80px;
  background: linear-gradient(180deg, rgba(30, 136, 229, 0.06) 0%, transparent 100%);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.service-detail-hero h1 {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.service-detail-hero p {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

.detail-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.df-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: left;
  transition: all var(--t-mid) var(--ease);
  box-shadow: var(--shadow-xs);
}

.df-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.df-icon { font-size: 26px; margin-bottom: 12px; color: var(--blue-light); }
.df-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 7px; letter-spacing: -0.1px; }
.df-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ─── TELIM ─── */
.telim-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 60%, var(--blue-light) 100%);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  color: #fff;
}

.telim-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.telim-hero h2 { font-size: clamp(22px, 3vw, 38px); font-weight: 900; margin-bottom: 14px; letter-spacing: -0.5px; }
.telim-hero p { color: rgba(255,255,255,0.8); font-size: 16px; max-width: 600px; margin: 0 auto; }

.telim-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }

/* ─── CONTACT PAGE (PREMIUM REDESIGN) ─── */

.contact-hero {
  position: relative;
  padding: 120px 5% 70px;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(160deg, #EEF5FF 0%, #F6F9FF 40%, #FAFBFF 100%);
  border-bottom: 1px solid var(--border);
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(30,136,229,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 70%, rgba(21,101,192,0.07) 0%, transparent 55%);
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--text-primary);
}

.contact-hero-highlight {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 34px;
}

.contact-trust-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(8px);
}

.contact-trust-badge svg {
  color: var(--blue-light);
  flex-shrink: 0;
}

/* Main section */
.contact-main-section {
  padding: 64px 5% 80px;
  background: var(--bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 40px;
  align-items: start;
}

/* Left column */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Channel cards */
.channel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-decoration: none;
  color: var(--text-primary);
  box-shadow: var(--shadow-xs);
  transition: all 0.22s var(--ease);
  position: relative;
  overflow: hidden;
}

.channel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.22s var(--ease);
}

.channel-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.channel-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 20px;
  transition: transform 0.22s var(--ease);
}

.channel-card:hover .channel-icon-wrap {
  transform: scale(1.08);
}

.channel-whatsapp .channel-icon-wrap { background: linear-gradient(135deg, #25D366, #128C7E); }
.channel-email    .channel-icon-wrap { background: linear-gradient(135deg, var(--blue-light), var(--blue)); }
.channel-instagram .channel-icon-wrap { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.channel-facebook  .channel-icon-wrap { background: linear-gradient(135deg, #1877F2, #0D47A1); }

.channel-whatsapp:hover  { border-color: #25D366; }
.channel-email:hover     { border-color: var(--blue-light); }
.channel-instagram:hover { border-color: #dc2743; }
.channel-facebook:hover  { border-color: #1877F2; }

.channel-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.channel-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.channel-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.channel-arrow {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color 0.22s var(--ease), transform 0.22s var(--ease);
}

.channel-card:hover .channel-arrow {
  color: var(--blue-light);
  transform: translate(3px);
}

/* Note card */
.contact-note-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, rgba(30,136,229,0.07) 0%, rgba(30,136,229,0.03) 100%);
  border: 1.5px solid rgba(30,136,229,0.18);
  border-radius: var(--radius-md);
  padding: 20px;
}

.contact-note-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.contact-note-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.contact-note-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Right: form card */
.contact-form-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.contact-form-header {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 70%, var(--blue-light) 100%);
  padding: 28px 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-form-header::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}

.contact-form-header h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 5px;
  position: relative;
}

.contact-form-header p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  position: relative;
}

/* Form inside the card */
.contact-form-card .contact-form {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 15px 28px;
  gap: 10px;
}

/* Success message */
.form-success-msg {
  display: none;
  text-align: center;
  padding: 36px 32px;
  border-top: 1px solid var(--border);
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 2px solid rgba(34,197,94,0.25);
}

.form-success-msg strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.form-success-msg p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-card .contact-form { padding: 22px; }
  .contact-form-header { padding: 22px; }
  .contact-hero { padding: 100px 5% 50px; }
}

/* ─── FOOTER ─── */
footer {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 60px 5% 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 14px 0 22px;
  max-width: 280px;
}

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

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  font-size: 15px;
  text-decoration: none;
  transition: all var(--t-fast) var(--ease);
  box-shadow: var(--shadow-xs);
}

.social-btn:hover {
  background: var(--blue-light);
  color: #fff;
  border-color: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(30, 136, 229, 0.3);
}

.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 14px; letter-spacing: -0.1px; }

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }

.footer-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--t-fast);
  font-weight: 500;
}

.footer-col ul a:hover { color: var(--blue-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--surface);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--t-fast);
  letter-spacing: -0.3px;
}

.mobile-nav a:hover { color: var(--blue-light); }

.mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 26px;
  cursor: pointer;
}

/* ─── SCROLL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal.visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Force cards visible (no reveal needed) */
.service-card,
.testi-card,
.portfolio-card,
.blog-card,
.faq-item,
.df-card,
.af-item {
  opacity: 1 !important;
  transform: none !important;
}

/* ─── FLOAT CARD FIXES ─── */
.hero-photo-wrap { z-index: 2; }
.hero-photo-frame { z-index: 1; }

.hero-float-card {
  z-index: 20 !important;
  opacity: 1 !important;
}

.hero-float-card.card1 {
  top: 20px;
  left: -40px;
  box-shadow: 0 8px 32px rgba(13, 71, 161, 0.14);
}

.hero-float-card.card2 {
  bottom: 40px;
  right: -30px;
  box-shadow: 0 8px 32px rgba(13, 71, 161, 0.14);
}

/* ─── SVG ICON STYLES ─── */
.ico { width: 16px; height: 16px; flex-shrink: 0; vertical-align: middle; }

.service-icon svg { width: 26px; height: 26px; }
.ci-icon svg { width: 20px; height: 20px; }
.df-icon svg { width: 26px; height: 26px; display: block; }

/* ─── SECTION BACKGROUND ACCENTS ─── */
.bg-accent {
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--bg) 100%);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .hero-photo-wrap { order: -1; }
  .hero-photo-frame { width: 280px; height: 360px; }

  .hero-float-card.card1 { top: 10px; left: 10px; }
  .hero-float-card.card2 { bottom: 10px; right: 10px; }

  .stats-banner {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .about-badge-wrap { right: 0; bottom: -10px; }
  .form-row { grid-template-columns: 1fr; }

  .hero-stats { flex-wrap: wrap; gap: 18px; }
}

@media (max-width: 600px) {
  .stats-banner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 28px;
  }

  .stat-item strong { font-size: 30px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .hero-stats { flex-direction: column; gap: 14px; }
  .hero h1 { letter-spacing: -1px; }
}