/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f8fafc;
  color: #1e293b;
}

/* COMMON */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.main-header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 48px;
  height: auto;
}

.logo-text strong {
  font-size: 18px;
  color: #0f172a;
}

.logo-text span {
  font-size: 12px;
  color: #64748b;
}

.menu {
  display: flex;
  list-style: none;
  gap: 25px;
}

.menu li a {
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  padding-bottom: 4px;
}

.menu li a:hover,
.menu li a.active {
  color: #0284c7;
  border-bottom: 2px solid #0284c7;
}

/* ================= HERO ================= */
.hero {
  background: linear-gradient(180deg, #e0f2fe, #f8fafc);
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: 42px;
  color: #0f172a;
}

.hero p {
  margin: 15px 0 25px;
  font-size: 16px;
  color: #475569;
}

.btn {
  background: #0284c7;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
}

.btn:hover {
  background: #0369a1;
}

/* STATS BOX */
.hero-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.hero-box h3 {
  margin-bottom: 20px;
  color: #0f172a;
}

.stats {
  display: flex;
  justify-content: space-between;
}

.stats strong {
  font-size: 26px;
  color: #0284c7;
}

.stats span {
  display: block;
  font-size: 13px;
  color: #64748b;
}

/* ================= SERVICES ================= */
section {
  padding: 80px 0;
}

section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: #0f172a;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.card i {
  font-size: 34px;
  color: #0284c7;
  margin-bottom: 15px;
}

.card h4 {
  color: #0f172a;
}

/* ================= TABLE ================= */
table {
  width: 100%;
  background: #ffffff;
  border-radius: 15px;
  border-collapse: collapse;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

thead {
  background: #0284c7;
  color: #fff;
}

th, td {
  padding: 14px;
  text-align: left;
  font-size: 14px;
}

tbody tr:nth-child(even) {
  background: #f1f5f9;
}

/* ================= PRICING ================= */
.pricing {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.price-card {
  background: #ffffff;
  padding: 40px;
  width: 260px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.price-card h3 {
  color: #0f172a;
}

.price-card p {
  font-size: 20px;
  margin-top: 10px;
  color: #0284c7;
}

/* ================= CONTACT ================= */
form {
  max-width: 600px;
}

form input,
form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
}

form button {
  background: #0284c7;
  color: #fff;
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 30px;
  font-size: 16px;
}

/* ================= FOOTER ================= */
.site-footer {
  background: #f1f5f9;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-col h3,
.footer-col h4 {
  color: #0f172a;
  margin-bottom: 15px;
}

.footer-col p,
.footer-col li,
.footer-col a {
  font-size: 14px;
  color: #475569;
  text-decoration: none;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: #0284c7;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #64748b;
}

/* ================= WHATSAPP ================= */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(37,211,102,0.4);
  z-index: 999;
}

/* ================= DOCUMENTATION PAGE ================= */

/* Page Wrapper */
.documentation-page {
  background: #f7f9fc;
  padding: 70px 0;
}

/* Heading */
.documentation-page h1 {
  text-align: center;
  font-size: 34px;
  color: #0d1b2a;
  margin-bottom: 15px;
}

.documentation-page p.sub-text {
  text-align: center;
  color: #555;
  max-width: 750px;
  margin: auto;
  margin-bottom: 50px;
}

/* Steps Grid */
.doc-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Step Card */
.doc-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.doc-card:hover {
  transform: translateY(-6px);
}

.doc-card i {
  font-size: 38px;
  color: #00b4d8;
  margin-bottom: 15px;
}

.doc-card h3 {
  font-size: 18px;
  color: #0d1b2a;
  margin-bottom: 10px;
}

.doc-card p {
  font-size: 14px;
  color: #555;
}

/* Required Documents Section */
.required-docs {
  margin-top: 70px;
}

.required-docs h2 {
  text-align: center;
  font-size: 28px;
  color: #0d1b2a;
  margin-bottom: 30px;
}

.docs-list {
  max-width: 850px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.docs-list ul {
  list-style: none;
}

.docs-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}

.docs-list li:last-child {
  border-bottom: none;
}

.docs-list i {
  color: #00b4d8;
}

/* Documentation Request Form */
.doc-form {
  margin-top: 80px;
}

.doc-form h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #0d1b2a;
}

.doc-form form {
  max-width: 650px;
  margin: auto;
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.doc-form input,
.doc-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.doc-form textarea {
  height: 120px;
  resize: none;
}

.doc-form button {
  background: #00b4d8;
  color: #fff;
  padding: 14px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.doc-form button:hover {
  background: #0096c7;
}

/* Mobile */
@media(max-width: 768px) {
  .documentation-page h1 {
    font-size: 26px;
  }
}

