* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  color: #1f2937;
  background: #ffffff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.narrow {
  max-width: 700px;
}

.navbar {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
}

.hero {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: #ffffff;

}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.hero-card {
  background: #ffffff;
  color: #111827;
  padding: 25px;
  border-radius: 14px;
}

.hero-card input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

.section {
  padding: 80px 0;
}

.light {
  background: #f8fafc;
}

.gradient {
  background: linear-gradient(135deg, #1e40af, #2563eb);
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.white {
  color: #ffffff;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.info-card,
.service-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.step-card {
  background: rgba(255,255,255,0.15);
  padding: 25px;
  border-radius: 12px;
  color: #ffffff;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
}

.full {
  width: 100%;
}

.center {
  text-align: center;
  margin-top: 40px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
}

.footer {
  background: #0f172a;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
}
.menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 20px;
  left: 0;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-radius: 10px;
  min-width: 260px;
  display: none;
  z-index: 999;
}

.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  text-decoration: none;
  color: #111827;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background: #f1f5f9;
}

.dropdown:hover .dropdown-menu {
  display: block;
}


.hero-main {
  background: linear-gradient(135deg, #0b1f3a, #0f3d66);
  color: #ffffff;
  width: 100%;
  padding: 40px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}


.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-main h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-main h1 span {
  color: #ffd166;
}

.hero-sub {
  font-size: 18px;
  color: #e0ecf8;
  margin-bottom: 35px;
}

.hero-search {
  display: flex;

  margin: 0 auto 25px;
  background: #ffffff;
  border-radius: 50px;
  overflow: hidden;
}

.hero-search input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  outline: none;
  font-size: 15px;
}

.hero-search button {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  border: none;
  padding: 0 26px;
  cursor: pointer;
}

.quick-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.quick-services a {
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.quick-services a:hover {
  background: rgba(255,255,255,0.15);
}


.mega-footer {
  background: linear-gradient(135deg, #071a2e, #0b3a66);
  padding: 70px 0 0;
  color: #dbeafe;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 50px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 28px;
  height: 2px;
  background: #ffd166;
  display: block;
  margin-top: 6px;
}

.footer-col a {
  display: block;
  color: #c7d2fe;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #ffffff;
  padding-left: 6px;
}

.footer-col .mt {
  margin-top: 22px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  padding: 18px 0;
  font-size: 14px;
  color: #cbd5f5;
}

/*  */

/* ===============================
   TALK TO A LAWYER PAGE
   =============================== */

.lawyer-page {
  padding: 80px 0;
  background: #ffffff;
}

.lawyer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.breadcrumb {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 15px;
}

.trust-pill {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.lawyer-content h1 {
  font-size: 38px;
  margin-bottom: 20px;
}

.benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.benefits li {
  margin-bottom: 10px;
  font-size: 15px;
}

.live-stats {
  display: flex;
  gap: 20px;
  font-size: 14px;
  margin-bottom: 25px;
}

.testimonial-card {
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  max-width: 420px;
}

.testimonial-card p {
  font-size: 14px;
  margin-bottom: 10px;
}

.user {
  font-size: 14px;
}

.verified {
  color: #16a34a;
  margin-left: 6px;
}

/* ===============================
   OUR LEGAL EXPERTISE
   =============================== */

.legal-expertise {
  background: #ffffff;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  justify-items: center;
}

.expertise-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 22px 16px;
  text-align: center;
  width: 100%;
  max-width: 160px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.expertise-card img {
  width: 60px;
  height: auto;
  margin-bottom: 12px;
}

.expertise-card p {
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
}

.expertise-card:hover {
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

/* MORE CARD */
.expertise-card.more {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.expertise-card.more span {
  font-size: 32px;
  color: #2563eb;
  margin-bottom: 6px;
}


/*  */
/* =====================
   ABOUT HERO (ZOLVIT STYLE)
===================== */
.about-hero {
  background: linear-gradient(135deg, #020617, #003a63);
  color: #ffffff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-rating {
  font-size: 14px;
  margin-bottom: 18px;
  opacity: 0.9;
}

.about-hero-content h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-subtitle {
  font-size: 18px;
  margin-bottom: 16px;
  color: #e0f2fe;
}

.about-desc {
  font-size: 16px;
  color: #cbd5f5;
  margin-bottom: 24px;
  max-width: 620px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.about-tags span {
  background: rgba(255,255,255,0.12);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.about-cta {
  display: flex;
  gap: 16px;
}

/* Secondary Button */
.btn-secondary {
  padding: 12px 22px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff;
  font-weight: 600;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* RIGHT CARD */
.about-hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-box {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
}

.stat-box h3 {
  font-size: 28px;
  margin-bottom: 6px;
  color: #ffffff;
}

.stat-box p {
  font-size: 14px;
  color: #cbd5f5;
}

.stat-box.highlight {
  background: linear-gradient(135deg, #2563eb, #1e40af);
}
/*  */
/* =====================
   MODERN SECTIONS
===================== */
.modern-section {
  padding: 80px 0;
  background: #0f172a;
  color: #ffffff;
}

.modern-section.light {
  background: #f8fafc;
  color: #0f172a;
}

.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
}

/* =====================
   MISSION / VISION
===================== */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.mv-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 22px;
  text-align: center;
  transition: all 0.3s ease;
}

.modern-section.light .mv-card {
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.mv-card:hover {
  transform: translateY(-8px);
}

.mv-icon {
  font-size: 40px;
  margin-bottom: 14px;
}

.mv-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.mv-card p {
  font-size: 15px;
  color: #cbd5f5;
}

.modern-section.light .mv-card p {
  color: #475569;
}

.mv-card.highlight {
  background: linear-gradient(135deg, #2563eb, #1e40af);
}

/* =====================
   SERVICES GRID
===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card h4 {
  margin: 12px 0 8px;
  font-size: 18px;
}

.service-card p {
  font-size: 14px;
  color: #64748b;
}

/* =====================
   CTA SECTION
===================== */

/* =========================
   SERVICE PAGE – MODERN UI
========================= */

/* Global spacing improvement */
body {
  background-color: #f8fafc;
  color: #0f172a;
  line-height: 1.75;
}

/* -------------------------
   SERVICE HERO
------------------------- */
.service-hero {
  background: linear-gradient(135deg, #020617, #003a63);
  padding: 110px 20px;
  text-align: center;
  margin-bottom: 80px;
}

.service-hero h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.service-hero p {
  font-size: 20px;
  max-width: 720px;
  margin: 0 auto;
  color: #cbd5f5;
}

/* -------------------------
   CONTENT SECTION
------------------------- */
.section.light {
  background: #ffffff;
  padding: 90px 20px;
}

.container.narrow {
  max-width: 820px;
}

/* Headings */
.section.light h2 {
  font-size: 30px;
  margin-top: 60px;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.section.light h2:first-child {
  margin-top: 0;
}

/* Paragraphs */
.section.light p {
  font-size: 17px;
  color: #475569;
  margin-bottom: 28px;
}

/* -------------------------
   SERVICE LIST
------------------------- */
.service-list {
  margin: 30px 0 50px;
  padding-left: 0;
  list-style: none;
}

.service-list li {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  padding: 16px 22px;
  border-radius: 14px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list li::before {
  content: "✔";
  color: #2563eb;
  font-weight: bold;
}

/* -------------------------
   MINI CARDS
------------------------- */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  margin: 40px 0 70px;
}

.mini-card {
  background: #ffffff;
  padding: 28px 22px;
  border-radius: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
}

.mini-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

/* -------------------------
   CTA BUTTON
------------------------- */
.section.light .btn-primary {
  padding: 14px 34px;
  font-size: 16px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
 
}



.service-hero h1 {color: white;}


.section.light .btn-primary:hover {
  transform: translateY(-3px);
}

/* Center alignment */
.center {
  text-align: center;
}

.logo{
display: flex;
align-items: center;

}


/* -------------------------
   RESPONSIVE
------------------------- */
@media (max-width: 768px) {

  .service-hero {
    padding: 80px 16px;
    margin-bottom: 60px;
  }

  .service-hero h1 {
    font-size: 34px;
  }

  .service-hero p {
    font-size: 17px;
  }

  .section.light {
    padding: 60px 16px;
  }

  .section.light h2 {
    font-size: 24px;
  }

  .mini-card {
    padding: 22px;
  }
}



/*  */
.modern-cta {
  background: linear-gradient(135deg, #020617, #003a63);
  padding: 80px 0;
  text-align: center;
}

.cta-box h2 {
  font-size: 36px;
  margin-bottom: 12px;
  color: #ffffff;
}

.cta-box p {
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 24px;
  color: #cbd5f5;
}

/* =====================
   DOCUMENTATION PAGE
===================== */
.doc-page {
  padding: 70px 0;
  background: #f8fafc;
}

.doc-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}

/* LEFT */
.doc-content h1 {
  font-size: 38px;
  margin-bottom: 16px;
}

.doc-intro {
  font-size: 16px;
  color: #475569;
  margin-bottom: 20px;
}

.doc-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.doc-highlights span {
  background: #e0f2fe;
  color: #0369a1;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.doc-overview h2 {
  margin-bottom: 10px;
}

/* RIGHT SIDEBAR */
.doc-sidebar {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.doc-category {
  margin-bottom: 24px;
}

.doc-category h3 {
  font-size: 18px;
  margin-bottom: 12px;
  border-left: 4px solid #2563eb;
  padding-left: 10px;
}

.doc-category ul {
  list-style: none;
}

.doc-category li {
  padding: 6px 0;
  font-size: 14px;
  color: #334155;
  border-bottom: 1px dashed #e5e7eb;
}

/* CTA */
.doc-cta {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
}

.doc-cta p {
  margin-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .doc-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .cta-box h2 {
    font-size: 28px;
  }
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-content h1 {
    font-size: 36px;
  }

  .about-cta {
    flex-direction: column;
  }
}


/* MOBILE */
@media (max-width: 768px) {
  .expertise-grid {
    gap: 20px;
  }

  .expertise-card {
    max-width: 140px;
    padding: 18px 14px;
  }

  .expertise-card img {
    width: 50px;
  }
}




/* FORM */
.lawyer-form {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.lawyer-form h3 {
  margin-bottom: 20px;
}

.lawyer-form input,
.lawyer-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
}

.price-box {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.price-box strong {
  color: #16a34a;
  font-size: 18px;
}

.guarantee {
  background: #ecfdf5;
  color: #065f46;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .lawyer-grid {
    grid-template-columns: 1fr;
  }

  .lawyer-content h1 {
    font-size: 30px;
  }
}



/* ===============================
   MOBILE RESPONSIVE FIXES
   =============================== */
@media (max-width: 768px) {

  /* CONTAINER */
  .container {
    width: 92%;
  }

  /* NAVBAR */
  .nav-flex {
    flex-direction: column;
    gap: 10px;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  nav a {
    margin-left: 0;
    font-size: 14px;
  }

  /* HERO */
  .hero-main {
    padding: 30px 0 60px;
  }

  .hero-main h1 {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .trust-badge {
    font-size: 13px;
  }

  /* HERO SEARCH */
  .hero-search {
    flex-direction: column;
    border-radius: 14px;
  }

  .hero-search input {
    width: 100%;
    padding: 14px;
  }

  .hero-search button {
    width: 100%;
    padding: 14px;
    border-radius: 0 0 14px 14px;
  }

  /* QUICK SERVICES */
  .quick-services {
    gap: 8px;
  }

  .quick-services a {
    font-size: 13px;
    padding: 6px 12px;
  }

  /* SECTION SPACING */
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 26px;
  }

  /* GRIDS */
  .card-grid,
  .step-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* CARDS */
  .info-card,
  .service-card {
    padding: 20px;
  }

  /* CONTACT FORM */
  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }

  /* FOOTER */
  .mega-footer {
    padding-top: 50px;
    text-align: center;
  }

  .footer-col h4::after {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-col a {
    font-size: 13px;
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {

  .hero-main h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .btn-primary {
    padding: 10px 18px;
    font-size: 14px;
  }
}
