:root {
  --primary: #0a43c7;
  --primary-dark: #062d88;
  --accent: #ff6a00;
  --accent-dark: #e45700;
  --text: #14213d;
  --muted: #5f6b85;
  --bg: #ffffff;
  --bg-soft: #f5f8ff;
  --border: #e3e8f3;
  --shadow: 0 10px 30px rgba(10, 67, 199, 0.08);
  --radius: 18px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-soft);
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.section-heading h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--muted);
}

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
}

.logo {
  height: 58px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.main-nav a {
  font-weight: 500;
  color: var(--text);
  position: relative;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background: #fff;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-text p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
  max-width: 640px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-points {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-points span {
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  box-shadow: var(--shadow);
}

.hero-image-card {
  background: linear-gradient(135deg, rgba(10, 67, 199, 0.08), rgba(255, 106, 0, 0.08));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  border-radius: 20px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.service-card a {
  color: var(--primary);
  font-weight: 600;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.cta-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 28px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}

.cta-box .eyebrow {
  color: #ffd2b2;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-box .btn-outline {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.cta-box .btn-outline:hover {
  background: #fff;
  color: var(--primary);
}

.site-footer {
  background: #081c4a;
  color: #fff;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 30px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 12px;
}

.site-footer h4 {
  margin-bottom: 14px;
  color: #fff;
}

.site-footer ul li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

@media (max-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .nav-container {
    flex-direction: column;
    padding: 16px 0;
  }

  .main-nav {
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 2.3rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }

  .btn {
    width: 100%;
  }

  .nav-actions,
  .hero-buttons,
  .cta-buttons {
    width: 100%;
    flex-direction: column;
  }
}

/* ===== INNER PAGE STYLES ===== */
.page-banner {
  background: linear-gradient(135deg, rgba(10, 67, 199, 0.08), rgba(255, 106, 0, 0.08));
  padding: 90px 0 70px;
  border-bottom: 1px solid var(--border);
}

.page-banner h1 {
  font-size: 2.8rem;
  margin-bottom: 14px;
}

.page-banner p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.image-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  border-radius: 18px;
}

.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.two-cards {
  grid-template-columns: repeat(2, 1fr);
}

.large-card {
  min-height: 230px;
}

.feature-list {
  margin-top: 18px;
  padding-left: 18px;
}

.feature-list li {
  margin-bottom: 10px;
  color: var(--muted);
  list-style: disc;
}

/* ===== PRODUCTS ===== */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: #f5f8ff;
}

.product-body {
  padding: 22px;
}

.product-badge {
  display: inline-block;
  margin-bottom: 10px;
  background: rgba(255, 106, 0, 0.12);
  color: var(--accent-dark);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.product-body h3 {
  margin-bottom: 8px;
}

.product-body p {
  color: var(--muted);
  margin-bottom: 14px;
}

.product-specs {
  margin-bottom: 20px;
}

.product-specs li {
  margin-bottom: 8px;
  color: var(--text);
  position: relative;
  padding-left: 16px;
}

.product-specs li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.contact-card,
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-list {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

.contact-item {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fafcff;
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

/* ===== RESPONSIVE INNER PAGES ===== */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col,
  .contact-grid,
  .two-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .page-banner h1 {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  background: #25d366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  transition: 0.3s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

@media (max-width: 640px) {
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}



/* ===== TOP BAR ===== */
.top-bar {
  background: #081c4a;
  color: #fff;
  font-size: 0.92rem;
}

.top-bar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar a {
  color: #ffd7b5;
  font-weight: 600;
}

/* ===== MOBILE MENU BUTTON ===== */
.menu-toggle {
  display: none;
  border: none;
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 1.2rem;
  cursor: pointer;
}

/* ===== FAQ ===== */
.faq-wrap {
  display: grid;
  gap: 18px;
  max-width: 950px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.faq-item p {
  color: var(--muted);
}

/* ===== FLOATING CALL BUTTON ===== */
.floating-call {
  position: fixed;
  right: 20px;
  bottom: 84px;
  z-index: 1200;
  background: var(--primary);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  transition: 0.3s ease;
}

.floating-call:hover {
  transform: translateY(-3px);
}

/* ===== RESPONSIVE MENU ===== */
@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow);
  }

  .main-nav.show {
    display: flex;
  }

  .nav-container {
    align-items: flex-start;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .top-bar-inner {
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
    text-align: center;
  }

  .floating-call {
    right: 14px;
    bottom: 74px;
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}