/* ===============================
   Global / Base Styles
   =============================== */

:root {
  --brand: #0b66a3;
  --brand-dark: #0a3d62;
  --accent: #f4c430;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--brand);
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 16px;
}

/* ===============================
   Top Bar
   =============================== */

.topbar {
  background: #f8f9fb;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
}

.topbar a {
  margin-left: 12px;
  font-weight: 600;
}

.topbar .wa {
  background: #25d366;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
}

/* ===============================
   Hero Section
   =============================== */

.hero {
  background: linear-gradient(120deg, #e8f5ff 0%, #ffffff 100%);
  padding: 40px 0;
}

.hero-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 26px;
  color: var(--brand);
  margin: 0;
}

.lead {
  color: var(--muted);
  margin: 10px 0 16px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 700;
}

.btn.primary {
  background: var(--brand);
  color: #fff;
}

.btn.outline {
  border: 2px solid var(--brand);
  color: var(--brand);
}

.quick-list {
  list-style: none;
  padding: 0;
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-list li {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
}

/* ===============================
   Section Base
   =============================== */

.section {
  padding: 40px 0;
}

h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--brand);
}

.subtitle {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

/* ===============================
   SERVICES – COMPLETELY UPDATED
   =============================== */

#services {
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

#services .card {
  background: #ffffff;
  padding: 22px;
  border-radius: 14px;
  position: relative;
  border: none;
  box-shadow: 0 10px 28px rgba(11, 102, 163, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

/* Top gradient strip */
#services .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #0b66a3, #38bdf8);
}

#services .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(11, 102, 163, 0.18);
}

#services .card h3 {
  margin-top: 6px;
  font-size: 17px;
  color: var(--brand);
}

#services .card p {
  font-size: 14.5px;
  color: #374151;
}

/* ===============================
   WHY HIRE ME – COMPLETELY UPDATED
   =============================== */

.bg-light {
  background: linear-gradient(135deg, #0b66a3 0%, #0a3d62 100%);
  color: #ffffff;
}

.bg-light h2 {
  color: #ffffff;
}

.bg-light p {
  color: #e0ecff;
}

.flex.cols {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.check {
  list-style: none;
  padding: 0;
}

.check li {
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 14px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 6px solid var(--accent);
  font-weight: 600;
}

/* ===============================
   Pricing Section
   =============================== */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.price-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  text-align: center;
}

.price-card.featured {
  border: 2px solid var(--brand);
}

.price {
  font-size: 22px;
  font-weight: 800;
  color: var(--brand);
  margin: 8px 0;
}

/* ===============================
   Testimonials
   =============================== */

.testimonials blockquote {
  background: #ffffff;
  padding: 14px;
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  margin-bottom: 14px;
}

/* ===============================
   FAQ
   =============================== */

.faq details {
  background: #ffffff;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  margin-bottom: 10px;
}

/* ===============================
   Contact Section
   =============================== */

.contact-section .contact-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.contact-card {
  background: #ffffff;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

/* ===============================
   Footer
   =============================== */

.footer {
  background: #0a3d62;
  color: #ffffff;
  padding: 18px 0;
  text-align: center;
  font-size: 14px;
}

.footer a {
  color: #ffffff;
  text-decoration: underline;
}

/* ===============================
   Responsive (Desktop)
   =============================== */

@media (min-width: 768px) {
  .hero-row {
    flex-direction: row;
    align-items: center;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-section .contact-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .flex.cols {
    flex-direction: row;
  }
}
/* ===============================
   Reviews & Trust Section
   =============================== */

.reviews-section {
  background: #f8fbff;
}

.rating-summary {
  text-align: center;
  margin-bottom: 20px;
}

.stars {
  font-size: 26px;
  color: #f4c430;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 15px;
  color: #374151;
}

.trust-badge {
  text-align: center;
  margin: 18px auto 30px;
  background: #0b66a3;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 30px;
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
}

/* Testimonials grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}

.review-card {
  background: #ffffff;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 16px rgba(11,102,163,0.08);
}

.review-card p {
  font-size: 14.5px;
  color: #1f2937;
  margin-bottom: 8px;
}

.review-card span {
  font-size: 13px;
  color: #6b7280;
}

/* Case Study */
.case-study {
  margin-top: 35px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border-left: 5px solid #0b66a3;
}

.case-study h3 {
  margin-top: 0;
  color: #0b66a3;
}

.case-study ul {
  padding-left: 18px;
}

.case-study li {
  font-size: 14px;
  margin-bottom: 8px;
}

/* Note */
.review-note {
  font-size: 12.5px;
  color: #6b7280;
  margin-top: 14px;
}

/* Desktop layout */
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

