/*
Theme Name: Blinks Consultant Theme
Theme URI: https://example.com/
Author: Kaleemify
Description: WordPress conversion of the Blinks Consultant HTML/CSS/JS website with dynamic pages, menus, and blog. Set the header logo via Appearance → Customize → Site Identity → Logo.
Version: 1.0.4
Text Domain: blinks-consultant
*/
/*
  Blinks Consultant — Global styles (static site)
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito Sans", sans-serif;
  }
:root {
    --theme: #022d5c;
    --primary-color: #022d5c;
    --secondary-color: #0457a0;
    --accent-color: #f8a51b;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #333;
    --text-light: #6c757d;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: #0b3d5c;
  color: #fff;
  z-index: 9999;
  border-radius: 0.5rem;
}
  body {
    background-color: #f4f4f4;
  }

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
    z-index: 1000;
    box-shadow: 0px 0px 10px #06305c8a;
  }

  .logo {
    font-size: 1.2rem; 
    font-weight: bold;
    line-height: 0;
  }

  .logo > a.custom-logo-link,
  .logo > a.blinks-default-logo-link,
  .logo > a {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
    max-width: 100%;
  }

  .logo img.custom-logo,
  .logo > a img {
    display: block;
    height: auto;
    width: auto;
    max-height: 40px;
    max-width: min(220px, 65vw);
    object-fit: contain;
  }

  header nav {
    display: flex;
    gap: 20px; 
  }

  header nav a {
    color: white;
    background-color: var(--theme);
    padding: 5px 10px;
    border-radius: 8px; 
    text-decoration: none;
    font-size: 0.9rem; 
    transition: all 0.19s ease-in-out;
    font-weight: 700;
  }

  header nav a:hover {
    color: var(--theme);
    background-color: #cfe6ff;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: absolute; 
    top: 15px;
    right: 20px;
    z-index: 1002; 
  }

  .hamburger div {
    width: 22px;
    height: 2.5px; 
    background-color: rgb(0, 0, 0);
    border-radius: 2px;
  }

  .side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background-color: #e7f3ff;
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    gap: 15px;
    transition: right 0.3s ease-in-out;
    z-index: 1001;
    align-items: flex-start; 
  }

  .side-menu.open {
    right: 0;
  }

  .side-menu a {
    color: var(--theme);
    text-decoration: none;
    font-size: 1.1rem; 
    font-weight: 700;
    margin-bottom: 10px; 
  }

  .close-btn {
    align-self: flex-end;
    font-size: 2rem; 
    cursor: pointer;
    color: var(--theme);
    font-weight: 800;
    margin-bottom: 20px; 
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 998;
  }

  .overlay.active {
    display: block;
  }
  .containerhero {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
  }

  .containerhero .background-image {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    z-index: 0;
  }

  .containerhero .content {
    position: relative;
    z-index: 1;
  }

  .containerhero h1 {
    font-weight: 800;
    font-size: 1.7rem; 
    line-height: 1.2;
    margin: 0;
    color: white;
  }

  @media (min-width: 640px) {
    .containerhero h1 {
      font-size: 2.75rem;
    }
  }

  @media (min-width: 768px) {
    .containerhero h1 {
      font-size: 3.5rem;
    }
  }

  .containerhero .confidence {
    display: inline-block;
    font-weight: 800;
    font-size: inherit;
    margin-left: 0.5rem;
    padding: 0 0.25rem;
    border-radius: 0.25rem;
    color: #d9ebff;
    -webkit-text-fill-color: #d9ebff;
    -webkit-text-stroke: 0 transparent;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.22);
  }

  .containerhero p {
    margin-top: 1rem;
    font-weight: 400;
    font-size: 0.9rem; 
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.842);
  }

  @media (min-width: 640px) {
    .containerhero p {
      font-size: 1.125rem;
    }
  }

  .containerhero button {
    margin-top: 1.5rem; 
    background-color: #003366;
    border: none;
    border-radius: 9999px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .containerhero button:hover {
    background-color: #004080;
  }
    .containerquality {
      margin: 0 auto;
      margin-top: 25px;
      max-width: 1200px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 20px;
    }

    .containerquality .card1 {
      background-color: #c7e9fc;
      border-radius: 12px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 250px;
      max-width: 340px;
      width: 90vw;
      flex: 1 1 200px;
      box-sizing: border-box;
    }

    .containerquality .card1 i {
      font-size: 48px;
      color: var(--theme); /* blue-600 */
      margin-bottom: 16px;
    }

    .containerquality .card1 p {
      text-align: center;
      font-weight: 600;
      color: #1f2937; /* gray-900 */
      font-size: 14px;
      line-height: 1.4;
    }
    .containerabout {
      max-width: 1200px;
      display: flex;
      gap: 32px;
      margin: 40px auto;
    }

    @media (max-width: 768px) {
      .containerabout {
        flex-direction: column;
        margin: 20px 20px;
      }
    }

    .left-section {
      background-color: var(--theme);
      border-radius: 12px;
      padding: 24px;
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      max-width: 400px;
      color: #fff;
    }

    .left-section h2 {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .left-section p {
      font-size: 14px;
      font-weight: 600;
      line-height: 1.5;
    }

    .explore-btn {
      margin-top: 24px;
      padding: 10px 16px;
      border: 1px solid #ffffff;
      background: none;
      color: #ffffff;
      font-size: 14px;
      font-weight: 600;
      border-radius: 6px;
      cursor: pointer;
      width: max-content;
      transition: all 0.3s ease;
    }

    .explore-btn:hover {
      background-color: #ffffff;
      color: var(--theme);
    }

    .right-section {
      flex: 1;
    }

    .right-section h2 {
      font-size: 24px;
      font-weight: 800;
      color: #000000;
      margin-bottom: 12px;
    }

    .right-section p {
      font-size: 14px;
      font-weight: 600;
      color: #1E293B;
      line-height: 1.6;
      max-width: 600px;
    }

    .view-link {
      margin-top: 16px;
      display: inline-block;
      color:  var(--theme);
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      text-decoration: none;
    }

    .view-link:hover {
      text-decoration: underline;
    }

    .containerservice {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      max-width: 1200px;
      width: 100%;
      justify-content: center;
      margin: 40px auto;
    }
    .card {
      background: white;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      flex: 1 1 300px;
      max-width: 350px;
      display: flex;
      flex-direction: column;
      padding: 30px 25px 40px;
      position: relative;
      transition: transform 0.3s ease;
    }
    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }
    .card.hot {
      background: var(--theme);
      color: white;
      margin: 0px 20px;
      max-width: 400px;
      flex: 1 1 400px;
    }
    .badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: #466fad;
      color: black;
      font-weight: 700;
      font-size: 11px;
      padding: 4px 10px;
      border-radius: 0 0 0 8px;
      user-select: none;
      letter-spacing: 0.05em;
    }
    .title {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 15px;
      line-height: 1.2;
    }
    .price {
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 20px;
      opacity: 0.9;
    }
    .features {
      list-style: none;
      padding: 0;
      margin: 0 0 30px 0;
      font-weight: 600;
      font-size: 0.9rem;
      line-height: 1.4;
      color: inherit;
    }
    .features li {
      margin-bottom: 10px;
      position: relative;
      padding-left: 22px;
    }
    .features li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--theme);
      font-weight: 700;
      font-size: 1rem;
      line-height: 1;
    }
    .card.hot .features li::before {
      color: white;
    }
    .btn {
      align-self: center;
      padding: 12px 30px;
      font-weight: 700;
      font-size: 0.95rem;
      border-radius: 30px;
      cursor: pointer;
      border: 2px solid var(--theme);
      background: transparent;
      color: var(--theme);
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      user-select: none;
      box-shadow: 0 4px 10px rgba(255,74,31,0.3);
    }
    .btn:hover {
      background: var(--theme);
      color: white;
      box-shadow: 0 6px 15px rgba(31, 83, 255, 0.6);
    }
    .card.hot .btn {
      background: white;
      color: var(--theme);
      border: none;
      box-shadow: 0 4px 10px rgba(255,255,255,0.5);
      width: 100%;
      max-width: 220px;
      font-size: 1rem;
      padding: 14px 0;
      border-radius: 40px;
      margin-top: auto;
    }
    .card.hot .btn:hover {
      background: #ffe6dc;
      box-shadow: 0 6px 15px rgba(255,230,220,0.8);
      color: var(--theme);
    }
    .testimonials-section {
    background-color: #f8fafc;
    padding: 60px 20px;
    text-align: center;
  }

  .section-title {
    font-size: 28px;
    font-weight: 800;
    color: #022d5c;
    margin-bottom: 40px;
  }

  .testimonials-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }

  @media (min-width: 768px) {
    .testimonials-container {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .testimonial-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
  }

  .testimonial-text {
    font-size: 15px;
    font-weight: 500;
    color: #334155;
    margin-bottom: 16px;
  }

  .client-name {
    font-weight: bold;
    color: var(--theme);
    font-size: 14px;
    margin-top: 8px;
  }
  .containerstep {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      gap: 40px;
    }
    @media (max-width: 640px) {
      .containerstep {
        flex-direction: column;
        gap: 40px;
        margin: 20px 20px;
      }
    }
    .containerstep .image-wrapper {
      position: relative;
      width: 100%;
      max-width: 280px;
      flex-shrink: 0;
    }
    .containerstep .image-wrapper img {
      width: 100%;
      height: auto;
      border-radius: 16px;
      display: block;
      background-color: #0b1f3f; /* dark blue background behind image */
      object-fit: cover;
    }
    .containerstep .revenue-box {
      position: absolute;
      top: 16px;
      left: 16px;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
      width: 140px;
      padding: 12px 16px;
      text-align: center;
      font-feature-settings: "tnum";
    }
    .containerstep .revenue-box p:first-child {
      font-weight: 600;
      font-size: 0.875rem;
      color: #0b1f3f; /* dark blue text */
      margin: 0;
    }
    .containerstep .revenue-box p:last-child {
      font-weight: 800;
      font-size: 1.125rem;
      color: #0b1f3f; /* dark blue text */
      margin: 4px 0 0;
      line-height: 1;
    }
    .containerstep .content {
      flex: 1;
    }
    .containerstep .highlight-text {
      font-weight: 800;
      font-size: 0.75rem;
      color: #0b1f3f; /* dark blue */
      text-transform: uppercase;
      margin-bottom: 4px;
      letter-spacing: 0.1em;
    }
    .containerstep h1 {
      font-weight: 800;
      font-size: 1.75rem;
      color: #0b1f3f;
      margin: 0 0 12px 0;
      line-height: 1.2;
    }
    @media (min-width: 640px) {
      .containerstep h1 {
        font-size: 2.25rem;
      }
    }
    .containerstep .intro-text {
      font-weight: 600;
      margin-bottom: 32px;
      max-width: 600px;
      color: #4b5563;
    }
    .containerstep .step {
      display: flex;
      gap: 16px;
      max-width: 600px;
      margin-bottom: 32px;
      align-items: flex-start;
    }
    .containerstep .step:last-child {
      margin-bottom: 0;
    }
    .containerstep .icon-circle {
      background-color: #0b1f3f; /* dark blue */
      color: white;
      width: 40px;
      height: 40px;
      border-radius: 9999px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
      margin-top: 4px;
    }
    .containerstep .step-content h2 {
      font-weight: 800;
      font-size: 1rem;
      color: #0b1f3f;
      margin: 0 0 6px 0;
      line-height: 1.2;
    }
    .containerstep .step-content p {
      font-weight: 600;
      margin: 0;
      color: #4b5563;
      line-height: 1.4;
    }
    .form-container {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 100%;
  margin: 45px auto;
  max-width: 700px;
}

.form-container h2 {
  margin-bottom: 20px;
  color: #022d5c;
  font-size: 20px;
}

.form-container .form-group {
  margin-bottom: 15px;
}

.form-container label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: #1f2937;
}

.form-container input,
.form-container textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 14px;
}

.form-container textarea {
  resize: vertical;
}

.form-container .btn {
  background-color: #022d5c;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s;
}

.form-container .btn:hover {
  background-color: #031c3e;
}

.form-container .error {
  color: red;
  font-size: 13px;
  margin-top: 5px;
}

  .site-footer {
    margin-top: 0;
    background: linear-gradient(165deg, #0c1829 0%, #060d16 48%, #040a12 100%);
    color: #e2e8f0;
    padding: clamp(2.75rem, 6vw, 4rem) clamp(1.15rem, 4vw, 2.5rem) 0;
    font-family: "Nunito Sans", system-ui, sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .footer-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 5vw, 3.5rem);
    padding-bottom: clamp(2.25rem, 5vw, 3.25rem);
    align-items: start;
  }

  .footer-brand__title {
    font-size: clamp(1.25rem, 2.5vw, 1.45rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.85rem;
    color: #f8fafc;
  }

  .footer-brand__text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(203, 213, 225, 0.92);
    max-width: 36ch;
  }

  .footer-heading {
    margin: 0 0 1.1rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.95);
  }

  .footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .footer-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0;
    background: transparent;
    color: #f1f5f9;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 0.35rem;
    transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
  }

  .footer-nav a .fa-angle-right {
    font-size: 0.65rem;
    opacity: 0.45;
    width: 1rem;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
  }

  .footer-nav a:hover {
    color: #7dd3fc;
  }

  .footer-nav a:hover .fa-angle-right {
    opacity: 1;
    transform: translateX(3px);
  }

  .footer-contact__link {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.45;
    font-weight: 500;
    padding: 0.35rem 0;
    border-radius: 0.35rem;
    transition: color 0.2s ease;
  }

  .footer-contact__link:last-child {
    margin-bottom: 0;
  }

  .footer-contact__link:hover {
    color: #7dd3fc;
  }

  .footer-contact__icon {
    flex-shrink: 0;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #7dd3fc;
    font-size: 0.85rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .footer-bottom {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 1.35rem clamp(1.15rem, 4vw, 2.5rem) 2.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .footer-bottom__line {
    margin: 0 0 0.35rem;
    font-size: 0.8125rem;
    color: rgba(148, 163, 184, 0.95);
  }

  .footer-bottom__credit {
    margin: 0;
    font-size: 0.8125rem;
  }

  .footer-bottom__credit a {
    color: rgba(148, 163, 184, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .footer-bottom__credit a:hover {
    color: #e2e8f0;
  }

  @media (max-width: 900px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .footer-brand__text {
      max-width: none;
    }

    .footer-bottom {
      text-align: left;
    }

    .footer-nav a {
      padding: 0.55rem 0;
    }
  }
    @media (max-width: 900px) {
      .containerservice {
        flex-direction: column;
        align-items: center;
      }
      .card, .card.hot {
        max-width: 100%;
        flex: none;
      }
    }
    @media (max-width: 640px) {
      .containerquality .card {
        width: 170px;
      }
    }
  @media (max-width: 768px) {
    header nav {
      display: none; 
    }

    .hamburger {
      display: flex;
    }

    /* Reserve horizontal space so the logo is not covered by the fixed-position hamburger */
    header .logo {
      position: relative;
      z-index: 1003;
      flex: 1 1 auto;
      min-width: 0;
      max-width: calc(100% - 3.75rem);
    }

    header .logo a {
      display: inline-flex;
      align-items: center;
      max-width: 100%;
    }

    header .logo img {
      display: block;
      width: auto;
      max-width: 100%;
      height: auto;
      max-height: 40px;
      object-fit: contain;
    }
  }

  @media (min-width: 769px) {
    .side-menu {
      display: none !important; 
    }

    .overlay {
      display: none !important;
    }
  }

/* -------------------------------------------------------------------------- */
/* Inner pages premium system (about, services, blog, contact)                */
/* -------------------------------------------------------------------------- */

.page-about,
.page-service,
.page-blog,
.page-contact {
  --page-bg: #f5f7fb;
  --surface: #ffffff;
  --ink: #0c1222;
  --ink-muted: #475569;
  --line: rgba(12, 18, 34, 0.08);
  --accent: #0b3d5c;
  --accent-hover: #072f49;
  --radius: 1rem;
  --shadow-soft: 0 18px 40px -24px rgba(10, 18, 34, 0.22);
  background: var(--page-bg);
  color: var(--ink);
}

.page-about header,
.page-service header,
.page-blog header,
.page-contact header {
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 247, 251, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: none;
  border-bottom: 1px solid var(--line);
}

.page-about header .logo,
.page-service header .logo,
.page-blog header .logo,
.page-contact header .logo {
  display: flex;
  align-items: center;
}

.page-about header,
.page-service header,
.page-blog header,
.page-contact header {
  padding: 0.9rem clamp(1rem, 4vw, 2.5rem);
}

.page-about header nav,
.page-service header nav,
.page-blog header nav,
.page-contact header nav {
  gap: 0.45rem;
}

.page-about header nav a,
.page-service header nav a,
.page-blog header nav a,
.page-contact header nav a {
  background: transparent;
  color: #334155;
  border: 1px solid transparent;
  border-radius: 0.6rem;
  padding: 0.5rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.page-about header nav a:hover,
.page-service header nav a:hover,
.page-blog header nav a:hover,
.page-contact header nav a:hover {
  background: #e8f1f7;
  color: var(--accent);
  border-color: rgba(11, 61, 92, 0.1);
}

.page-about .container,
.page-service main,
.page-blog .blog-container,
.page-contact .form-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page-about .container,
.page-service main,
.page-blog .blog-container {
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
}

.page-about .about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.page-about .about-text h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.page-about .about-text p {
  color: var(--ink-muted);
  line-height: 1.72;
  font-size: 1rem;
}

.page-about .about-image img {
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.page-service main h1,
.page-blog .blog-hero h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: center;
  margin: 0 0 2rem;
}

.page-service .services-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.page-service .service {
  position: relative;
  isolation: isolate;
  background: linear-gradient(165deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(12, 18, 34, 0.1);
  border-radius: 1.05rem;
  padding: 1.25rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.2s ease;
}

.page-service .service:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 61, 92, 0.18);
  box-shadow: var(--shadow-soft);
}

.page-service .service::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(11, 61, 92, 0.06);
  pointer-events: none;
}

.page-service .service__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #e8f1f7 0%, #dceaf5 100%);
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(11, 61, 92, 0.1);
}

.page-service .service h2 {
  font-size: 1.08rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 0.45rem;
  color: var(--ink);
}

.page-service .service__desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 0 0 0.75rem;
}

.page-service .service__price {
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 800;
  margin: 0 0 0.85rem;
  letter-spacing: -0.01em;
}

.page-service .service__cta {
  width: 100%;
  margin-top: auto;
  border: 1px solid rgba(11, 61, 92, 0.16);
  border-radius: 9999px;
  background: #f8fcff;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 0.68rem 1rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-service .service__cta:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}

.page-service .service:nth-child(1),
.page-service .service:nth-child(4),
.page-service .service:nth-child(7) {
  background: linear-gradient(170deg, #ffffff 0%, #f4f9ff 100%);
}

.page-blog .blog-hero {
  max-width: 1200px;
  margin: clamp(2rem, 5vw, 3rem) auto 1.5rem;
  border-radius: 1.25rem;
  padding: clamp(2rem, 5vw, 3.2rem) clamp(1rem, 4vw, 2.5rem);
  background: linear-gradient(150deg, #0b3d5c 0%, #163d69 55%, #0b2e49 100%);
  color: #eff6ff;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.page-blog .blog-hero p {
  max-width: 60ch;
  margin: 0 auto;
  color: rgba(226, 236, 248, 0.92);
}

.page-blog .blog-hero h1 {
  color: #f8fbff;
  margin-bottom: 0.85rem;
}

.page-blog .blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.page-blog .blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-blog .blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.page-blog .blog-image {
  height: 210px;
}

.page-blog .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-blog .blog-content {
  padding: 1.1rem 1.1rem 1.25rem;
}

.page-blog .blog-title {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.35;
  margin: 0 0 0.85rem;
}

.page-blog .read-more {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.page-blog .read-more:hover {
  color: var(--accent-hover);
}

.page-contact .contact-band {
  background: linear-gradient(140deg, #0b3d5c 0%, #0a2f49 100%);
  color: #f1f5f9;
  margin-top: 1.5rem;
}

.page-contact .contact-band__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 2rem) clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.page-contact .contact-band__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.page-contact .contact-band__item i {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
}

.page-contact .contact-band__item h4 {
  margin: 0 0 0.15rem;
  font-size: 1rem;
}

.page-contact .contact-band__item p {
  margin: 0;
  opacity: 0.94;
}

.page-contact .form-container {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: clamp(1.35rem, 3vw, 1.8rem);
  box-shadow: var(--shadow-soft);
}

.page-contact .form-container h2 {
  color: var(--ink);
  text-align: center;
  margin-bottom: 1rem;
}

.page-contact .form-group {
  margin-bottom: 0.85rem;
}

.page-contact .form-container label {
  color: #334155;
  font-weight: 600;
}

.page-contact .form-container input,
.page-contact .form-container textarea {
  border: 1px solid rgba(12, 18, 34, 0.14);
  border-radius: 0.65rem;
  padding: 0.72rem 0.8rem;
}

.page-contact .form-container .btn {
  border-radius: 9999px;
  padding: 0.8rem 1rem;
}

@media (max-width: 980px) {
  .page-service .services-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-blog .blog-grid {
    grid-template-columns: 1fr;
  }

  .page-about .about-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-contact .contact-band__inner {
    grid-template-columns: 1fr;
  }

  .page-about header nav,
  .page-service header nav,
  .page-blog header nav,
  .page-contact header nav {
    display: none;
  }

  .page-about .hamburger,
  .page-service .hamburger,
  .page-blog .hamburger,
  .page-contact .hamburger {
    display: flex;
  }
}

@media (max-width: 640px) {
  .page-service .services-container {
    grid-template-columns: 1fr;
  }
}

/* WordPress menu compatibility */
header nav ul,
.site-header nav ul,
.side-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

header nav ul,
.site-header nav ul {
  display: flex;
  gap: 20px;
}

header nav li,
.site-header nav li {
  display: inline-flex;
}

.side-menu ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Single blog page */
.single-blog-wrap {
  max-width: 980px;
  margin: 2.5rem auto;
  padding: 0 1rem;
}

.single-blog-card {
  background: #fff;
  border: 1px solid rgba(12, 18, 34, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 18px 40px -24px rgba(10, 18, 34, 0.22);
}

.single-blog-featured img {
  width: 100%;
  height: auto;
  border-radius: 0.85rem;
  margin-bottom: 1rem;
}

.single-blog-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: 0 0 1rem;
  color: #0c1222;
}

.single-blog-content {
  line-height: 1.75;
  color: #1f2937;
}

.single-blog-content h2,
.single-blog-content h3 {
  color: #0b3d5c;
  margin-top: 1.4rem;
}

.single-blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

/* Posts pagination (blog listing) */
.page-blog .blog-container .navigation.pagination,
.blog-container .navigation.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.75rem 0 0;
}

.page-blog .blog-container .navigation.pagination a,
.page-blog .blog-container .navigation.pagination span,
.blog-container .navigation.pagination a,
.blog-container .navigation.pagination span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(12, 18, 34, 0.14);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  background: #fff;
  color: var(--accent, #0b3d5c);
}

.page-blog .blog-container .navigation.pagination span.current,
.blog-container .navigation.pagination span.current {
  border-color: rgba(11, 61, 92, 0.28);
  background: #e8f1f7;
}
