@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&family=Playfair+Display:wght@700;900&display=swap');

:root {
  --primary: #1a3ea0;
  --primary-dark: #0d1f5c;
  --secondary: #2563eb;
  --accent: #3b82f6;
  --green: #25d366;
  --fb: #1877f2;
  --light: #f0f4ff;
  --soft-blue: #e8f0fe;
  --white: #ffffff;
  --text: #0f1f3d;
  --muted: #5a6a8a;
  --border: #d1ddf7;
  --shadow: 0 24px 64px rgba(10, 20, 80, 0.13);
  --radius: 22px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

a { text-decoration: none; color: inherit; }
img { width: 100%; display: block; }

.container {
  width: min(1180px, 92%);
  margin: auto;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-tagline { font-weight: 600; color: #a5c0ff; }

.topbar-contacts {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.topbar-phone {
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
.topbar-phone:hover { color: #fff; }

.topbar-divider { color: rgba(255,255,255,0.3); }

.topbar-fb {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #6caeff;
  font-weight: 700;
  transition: color 0.2s;
}
.topbar-fb:hover { color: #fff; }

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(10, 20, 80, 0.09);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
}

.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 10px;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-size: 19px; font-weight: 900; color: var(--primary-dark); letter-spacing: -0.5px; }
.logo-sub { font-size: 11px; color: var(--muted); font-weight: 600; }

.menu {
  display: flex;
  list-style: none;
  gap: 22px;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 14.5px;
}
.menu a:hover { color: var(--primary); }

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

.btn-fb {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--fb);
  color: #fff;
  display: grid;
  place-items: center;
  transition: 0.2s;
}
.btn-fb:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(24,119,242,0.35); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  font-size: 14.5px;
  border: 0;
  cursor: pointer;
  transition: 0.25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(26, 62, 160, 0.28); }
.btn.green { background: var(--green); }
.btn.green:hover { box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3); }
.btn.light { background: var(--white); color: var(--primary); border: 1.5px solid var(--border); }
.btn.light:hover { border-color: var(--primary); }
.btn.fb-btn { background: var(--fb); }
.btn.fb-btn:hover { box-shadow: 0 12px 28px rgba(24,119,242,0.3); }

.mobile-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 28px;
  color: var(--primary-dark);
  cursor: pointer;
}

/* ── HERO ── */
.hero {
  min-height: 88vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(110deg, rgba(10,20,80,0.93) 0%, rgba(20,60,160,0.72) 55%, rgba(37,99,235,0.45) 100%),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
  padding: 80px 0;
}

.badge {
  display: inline-flex;
  width: fit-content;
  background: rgba(255,255,255,0.12);
  color: #a5d0ff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 18px;
}

.hero h1, .page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.hero p, .page-hero p {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  max-width: 600px;
  margin-bottom: 22px;
}

.contact-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 14px;
  transition: 0.2s;
}
.contact-pill:hover { background: rgba(255,255,255,0.22); }

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

/* ── QUOTE CARD ── */
.quote-card {
  background: var(--white);
  color: var(--text);
  padding: 28px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10,20,80,0.07);
}

.quote-card h2 { color: var(--primary-dark); font-size: 26px; margin-bottom: 6px; }
.quote-card p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }

form { display: grid; gap: 11px; }

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

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font: inherit;
  font-size: 14px;
  outline: none;
  background: #f8faff;
  color: var(--text);
  transition: 0.2s;
}
textarea { min-height: 90px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.14);
  background: #fff;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--primary);
  color: #fff;
  padding: 24px 0;
}

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

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 0;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.stat:last-child { border-right: none; }
.stat-num { font-size: 32px; font-weight: 900; font-family: 'Playfair Display', serif; letter-spacing: -1px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 600; margin-top: 2px; }

/* ── SECTIONS ── */
section { padding: 82px 0; }
.light-section { background: var(--light); }

.section-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 44px;
}

.mini-title {
  display: inline-block;
  background: var(--soft-blue);
  color: var(--primary);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.section-head h2, .content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--primary-dark);
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
}

.section-head p, .content p { color: var(--muted); font-size: 16px; }

/* ── CARDS ── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 8px 30px rgba(10,20,80,0.06);
  transition: 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--accent); }

.icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--soft-blue);
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 16px;
}

.card h3 { color: var(--primary-dark); font-size: 20px; margin-bottom: 8px; font-weight: 800; }
.card p { color: var(--muted); font-size: 14.5px; }

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

.image-panel {
  min-height: 460px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.image-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,62,160,0.12), transparent);
  border-radius: 30px;
}
.image-panel img { height: 100%; object-fit: cover; }

.check-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.check-list li {
  background: var(--soft-blue);
  border: 1.5px solid var(--border);
  padding: 13px 16px;
  border-radius: 14px;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 14.5px;
}

/* ── DARK SECTION ── */
.dark-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--secondary) 100%);
  color: var(--white);
}
.dark-section h2, .dark-section p { color: var(--white); }

.industry-grid, .project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.industry, .project-card {
  background: var(--white);
  border: 1px solid #e2edf3;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(10,20,80,0.06);
}

.dark-section .industry {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
  color: var(--white);
  text-align: center;
  font-weight: 800;
  font-size: 15px;
  transition: 0.2s;
}
.dark-section .industry:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); }

/* ── PROCESS ── */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.step {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 28px rgba(10,20,80,0.06);
  transition: 0.25s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(26,62,160,0.28);
}

.step h3 { color: var(--primary-dark); font-size: 17px; margin-bottom: 6px; font-weight: 800; }
.step p { color: var(--muted); font-size: 14px; }

/* ── CTA ── */
.cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
  color: var(--white);
  text-align: center;
  border-radius: 30px;
  padding: 56px 32px;
  box-shadow: var(--shadow);
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 12px;
}
.cta p { max-width: 700px; margin: 0 auto 20px; color: rgba(255,255,255,0.82); }

.cta-phones {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.cta-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 800;
  font-size: 15px;
  transition: 0.2s;
}
.cta-phone-pill:hover { background: rgba(255,255,255,0.25); }

/* ── PAGE HERO ── */
.page-hero {
  background:
    linear-gradient(90deg, rgba(10,20,80,0.92), rgba(26,62,160,0.65)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
  padding: 110px 0;
}

.service-hero {
  background:
    linear-gradient(90deg, rgba(10,20,80,0.9), rgba(26,62,160,0.6)),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1600&q=80") center/cover;
}

/* ── CONTACT BOX ── */
.contact-box {
  background: var(--white);
  padding: 28px;
  border-radius: 24px;
  border: 1.5px solid var(--border);
  box-shadow: 0 12px 32px rgba(10,20,80,0.07);
}
.contact-line { padding: 15px 0; border-bottom: 1px solid var(--border); }
.contact-line:last-child { border-bottom: 0; }
.contact-line strong { display: block; color: var(--primary-dark); margin-bottom: 4px; }

/* ── FOOTER ── */
footer {
  background: #070f2b;
  color: rgba(255,255,255,0.72);
  padding: 52px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 12px;
}
.footer-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
}

footer p { font-size: 14px; margin-bottom: 18px; line-height: 1.7; }
footer h3 { color: var(--white); margin-bottom: 14px; font-size: 15px; letter-spacing: 0.3px; }
footer ul { list-style: none; display: grid; gap: 8px; font-size: 14px; }
footer ul a:hover { color: #fff; }

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

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 700;
  transition: 0.2s;
}
.social-btn:hover { background: var(--fb); color: #fff; border-color: var(--fb); }
.social-btn.wa-btn:hover { background: var(--green); border-color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  font-size: 13px;
  text-align: center;
}

/* ── FLOATING BUTTONS ── */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  z-index: 100;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.4);
  transition: 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }

.facebook-float {
  position: fixed;
  right: 22px;
  bottom: 90px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--fb);
  color: var(--white);
  display: grid;
  place-items: center;
  z-index: 100;
  box-shadow: 0 14px 32px rgba(24, 119, 242, 0.38);
  transition: 0.2s;
}
.facebook-float:hover { transform: scale(1.1); }

/* ── FAQ ── */
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 18px 20px;
  font-weight: 800;
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.faq-answer { display: none; padding: 0 20px 18px; color: var(--muted); font-size: 14.5px; }
.faq-item.active .faq-answer { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .industry-grid, .project-grid, .process { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); }
  .stat:last-child, .stat:nth-child(2n) { border-bottom: none; }

  .menu {
    display: none;
    position: absolute;
    top: 76px;
    left: 4%;
    right: 4%;
    background: var(--white);
    padding: 22px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    flex-direction: column;
    border: 1.5px solid var(--border);
  }
  .menu.active { display: flex; }
  .mobile-toggle { display: block; }
}

@media (max-width: 640px) {
  .topbar-inner { flex-direction: column; text-align: center; }
  .topbar-contacts { justify-content: center; }
  .header-actions > .btn { display: none; }
  .form-row, .cards, .industry-grid, .project-grid, .process, .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { padding: 52px 0; }
  .quote-card { padding: 22px; }
  section { padding: 58px 0; }
  .page-hero { padding: 78px 0; }
  .cta { padding: 40px 20px; }
  .contact-pills { flex-direction: column; }
}
