/*
Theme Name: SEABA Lines and Spaces Consults
Theme URI: https://seabalinesandspaces.com
Author: SEABA Lines and Spaces Consults
Author URI: https://seabalinesandspaces.com
Description: Custom WordPress theme for SEABA Lines and Spaces Consults — a Nigerian architectural design and construction firm. Built for architecture, project management, structural finishing, and facility management businesses with a navy/steel-blue brand identity.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: seaba
*/

:root {
      --navy: #0D2D52;
      --steel: #2D7FB8;
      --sky: #59A9D8;
      --off-white: #F8FAFC;
      --charcoal: #1F2937;
      --mid-gray: #6B7280;
      --light-gray: #E5EBF0;
      --white: #ffffff;
      --dark-bg: #060F1A;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--charcoal);
      background: var(--off-white);
      overflow-x: hidden;
    }

    /* ─── SCROLLBAR ─── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--dark-bg); }
    ::-webkit-scrollbar-thumb { background: var(--steel); border-radius: 3px; }

    /* ─── NAVBAR ─── */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(13,45,82,0.96);
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
      padding: 18px 64px;
      display: flex; align-items: center; justify-content: space-between;
      transition: all 0.4s ease;
      border-bottom: 1px solid rgba(89,169,216,0.1);
    }
    .navbar.scrolled {
      padding: 12px 64px;
      background: rgba(6,15,26,0.98);
      box-shadow: 0 4px 40px rgba(0,0,0,0.4);
    }
    .nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
    .nav-logo-icon {
      width: 42px; height: 42px;
      background: linear-gradient(135deg, var(--steel), var(--sky));
      border-radius: 2px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; font-weight: 800; color: white;
      font-family: 'Cormorant Garamond', serif; letter-spacing: 1px;
    }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
    .nav-logo-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px; font-weight: 700; color: white; letter-spacing: 3px;
    }
    .nav-logo-sub { font-size: 9px; color: var(--sky); letter-spacing: 2px; text-transform: uppercase; margin-top: 3px; }
    .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
    .nav-links a {
      color: rgba(255,255,255,0.8); text-decoration: none;
      font-size: 12px; font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase;
      transition: color 0.3s; position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
      background: var(--sky); transition: width 0.3s;
    }
    .nav-links a:hover { color: white; }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      background: var(--steel) !important; color: white !important;
      padding: 10px 24px !important; border-radius: 2px;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--sky) !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; transition: 0.3s; }

    /* ─── HERO ─── */
    .hero {
      position: relative; height: 100vh; min-height: 720px;
      overflow: hidden; padding: 0 !important;
    }
    .slide {
      position: absolute; inset: 0; opacity: 0;
      background-color: var(--navy);
      background-size: cover; background-position: center;
      transition: opacity 1.8s ease;
    }
    .slide.active { opacity: 1; }
    .slide::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(105deg, rgba(6,15,26,0.88) 0%, rgba(13,45,82,0.65) 45%, rgba(13,45,82,0.2) 100%);
    }
    .hero-content {
      position: relative; z-index: 2; height: 100%;
      display: flex; flex-direction: column; justify-content: center;
      padding: 0 64px; max-width: 820px;
    }
    .hero-eyebrow {
      font-size: 11px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase;
      color: var(--sky); margin-bottom: 22px;
      display: flex; align-items: center; gap: 12px;
    }
    .hero-eyebrow::before {
      content: ''; display: block; width: 32px; height: 1px; background: var(--sky);
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(50px, 7vw, 88px);
      font-weight: 400; color: white; line-height: 1.05; margin-bottom: 28px;
    }
    .hero-title em { font-style: italic; color: var(--sky); }
    .hero-desc {
      font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.9;
      max-width: 540px; margin-bottom: 44px;
    }
    .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-primary {
      background: var(--steel); color: white;
      padding: 15px 38px; border: none; border-radius: 2px;
      font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
      cursor: pointer; text-decoration: none; display: inline-block;
      transition: all 0.3s;
    }
    .btn-primary:hover { background: var(--sky); transform: translateY(-2px); }
    .btn-outline {
      background: transparent; color: white;
      padding: 15px 38px; border: 1.5px solid rgba(255,255,255,0.45); border-radius: 2px;
      font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
      cursor: pointer; text-decoration: none; display: inline-block;
      transition: all 0.3s;
    }
    .btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }
    .hero-stats {
      position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
      background: rgba(6,15,26,0.88);
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
      display: flex;
      border-top: 1px solid rgba(89,169,216,0.25);
    }
    .hero-stat {
      flex: 1; padding: 28px 32px; text-align: center;
      border-right: 1px solid rgba(255,255,255,0.07);
    }
    .hero-stat:last-child { border-right: none; }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 46px; font-weight: 600; color: white; line-height: 1;
    }
    .stat-num span { color: var(--sky); }
    .stat-label {
      font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
      color: rgba(255,255,255,0.5); margin-top: 6px;
    }
    .hero-dots {
      position: absolute; bottom: 130px; right: 64px;
      display: flex; gap: 8px; z-index: 3;
    }
    .dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(255,255,255,0.35); cursor: pointer; transition: all 0.3s;
    }
    .dot.active { background: var(--sky); width: 26px; border-radius: 4px; }

    /* ─── SECTION COMMONS ─── */
    section { padding: 108px 64px; }
    .eyebrow {
      font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
      color: var(--steel); margin-bottom: 14px;
    }
    .sec-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 4.5vw, 58px);
      font-weight: 400; color: var(--navy); line-height: 1.12; margin-bottom: 20px;
    }
    .sec-sub {
      font-size: 16px; color: var(--mid-gray); line-height: 1.85; max-width: 580px;
    }
    .sec-header { margin-bottom: 70px; }
    .sec-header.center { text-align: center; }
    .sec-header.center .sec-sub { margin: 0 auto; }

    /* ─── FADE-UP ─── */
    .fu { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .fu.vis { opacity: 1; transform: translateY(0); }
    .fu.d1 { transition-delay: 0.1s; }
    .fu.d2 { transition-delay: 0.2s; }
    .fu.d3 { transition-delay: 0.3s; }

    /* ─── SERVICES ─── */
    #services { background: var(--navy); }
    #services .sec-title { color: white; }
    #services .sec-sub { color: rgba(255,255,255,0.65); }
    #services .eyebrow { color: var(--sky); }

    .services-wrap {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }

    /* Lifecycle Cycle */
    .lifecycle { position: relative; width: 380px; height: 380px; margin: 0 auto; }
    .lc-bg-ring {
      position: absolute; inset: 30px; border-radius: 50%;
      border: 1px dashed rgba(89,169,216,0.25);
      animation: spin 25s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    .lc-center {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      width: 110px; height: 110px; border-radius: 50%;
      background: linear-gradient(135deg, var(--steel), var(--sky));
      display: flex; align-items: center; justify-content: center;
      text-align: center; padding: 12px; z-index: 2;
      box-shadow: 0 0 0 8px rgba(45,127,184,0.12), 0 0 0 16px rgba(45,127,184,0.06);
    }
    .lc-center-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 12px; font-weight: 600; color: white; line-height: 1.4;
    }
    .lc-node {
      position: absolute; width: 82px; height: 82px; border-radius: 50%;
      background: rgba(45,127,184,0.12); border: 1.5px solid rgba(89,169,216,0.5);
      display: flex; align-items: center; justify-content: center;
      text-align: center; padding: 10px; cursor: pointer; transition: all 0.35s;
    }
    .lc-node:hover { background: var(--steel); border-color: var(--sky); transform: scale(1.1); }
    .lc-node-text {
      font-size: 9.5px; font-weight: 700; color: white;
      text-transform: uppercase; letter-spacing: 0.4px; line-height: 1.4;
    }
    /* Positions */
    .lc-node.top    { top: 12px; left: 50%; transform: translateX(-50%); }
    .lc-node.right  { right: 12px; top: 50%; transform: translateY(-50%); }
    .lc-node.bottom { bottom: 12px; left: 50%; transform: translateX(-50%); }
    .lc-node.left   { left: 12px; top: 50%; transform: translateY(-50%); }
    .lc-node.top:hover    { transform: translateX(-50%) scale(1.1); }
    .lc-node.right:hover  { transform: translateY(-50%) scale(1.1); }
    .lc-node.bottom:hover { transform: translateX(-50%) scale(1.1); }
    .lc-node.left:hover   { transform: translateY(-50%) scale(1.1); }

    .services-cards {
      display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    }
    .svc-card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(89,169,216,0.18);
      border-radius: 3px; padding: 0 0 24px; overflow: hidden;
      transition: all 0.3s; cursor: pointer;
    }
    .svc-card:hover {
      background: rgba(45,127,184,0.14); border-color: rgba(89,169,216,0.5);
      transform: translateY(-4px);
    }
    .svc-img {
      width: 100%; height: 130px;
      background: linear-gradient(135deg, rgba(45,127,184,0.3), rgba(89,169,216,0.2));
      display: flex; align-items: center; justify-content: center;
      font-size: 36px; margin-bottom: 18px;
    }
    .svc-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 19px; font-weight: 600; color: white;
      margin: 0 20px 10px;
    }
    .svc-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.75; margin: 0 20px; }

    /* ─── ABOUT ─── */
    #about { background: var(--off-white); }
    .about-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: start; }
    .about-img-block { position: relative; }
    .about-img {
      width: 100%; height: 500px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
      border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 64px;
    }
    .about-badge {
      position: absolute; bottom: -28px; right: -28px;
      width: 155px; height: 155px;
      background: var(--steel);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; padding: 20px;
    }
    .badge-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 50px; font-weight: 600; color: white; line-height: 1;
    }
    .badge-label { font-size: 10px; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

    .about-tabs { display: flex; border-bottom: 2px solid var(--light-gray); margin-bottom: 36px; }
    .atab {
      padding: 12px 22px; font-size: 12px; font-weight: 600; letter-spacing: 0.8px;
      text-transform: uppercase; color: var(--mid-gray); cursor: pointer;
      border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all 0.3s;
      white-space: nowrap;
    }
    .atab.on { color: var(--navy); border-bottom-color: var(--steel); }
    .apanel { display: none; }
    .apanel.on { display: block; }
    .apanel p { font-size: 15px; color: #4B5563; line-height: 1.9; margin-bottom: 18px; }

    .values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .vitem { display: flex; gap: 12px; align-items: flex-start; }
    .vdot { width: 7px; height: 7px; background: var(--steel); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
    .vitem h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
    .vitem p { font-size: 13px; color: var(--mid-gray); margin-bottom: 0; }

    .people-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .pcard { border: 1px solid var(--light-gray); border-radius: 3px; overflow: hidden; background: white; }
    .pcard-img {
      height: 160px; display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, var(--navy), var(--steel)); font-size: 44px;
    }
    .pcard-info { padding: 18px; }
    .pcard-info h4 { font-size: 14px; font-weight: 600; color: var(--navy); }
    .pcard-info p { font-size: 12px; color: var(--steel); margin: 0; }

    .cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .cert { background: white; border: 1px solid var(--light-gray); border-radius: 3px; padding: 18px; display: flex; gap: 12px; align-items: flex-start; }
    .cert-ic {
      width: 38px; height: 38px; background: var(--navy); border-radius: 50%;
      display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
    }
    .cert h4 { font-size: 13px; font-weight: 600; color: var(--navy); }
    .cert p { font-size: 12px; color: var(--mid-gray); margin: 0; }

    /* ─── FOUNDER (editorial split layout, not a boxed card) ─── */
    .founder-wrap {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 0.85fr 1.15fr;
      gap: 72px; align-items: center;
    }
    .founder-photo-col { position: relative; }
    .founder-photo {
      width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
      border-radius: 2px;
      box-shadow: 0 24px 60px rgba(13,45,82,0.16);
    }
    .founder-photo-placeholder {
      width: 100%; aspect-ratio: 4 / 5;
      background: linear-gradient(135deg, var(--navy), var(--steel));
      border-radius: 2px;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 24px 60px rgba(13,45,82,0.16);
    }
    .founder-photo-placeholder span { font-size: 88px; opacity: 0.85; }
    .founder-text-col { padding-top: 4px; }
    .founder-credentials {
      font-family: 'Cormorant Garamond', serif; font-style: italic;
      font-size: 18px; color: var(--steel); margin-bottom: 4px;
    }
    .founder-role {
      font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--mid-gray); margin-bottom: 24px;
    }
    .founder-rule { width: 56px; height: 2px; background: var(--steel); margin-bottom: 24px; }
    .founder-quote {
      font-family: 'Cormorant Garamond', serif; font-style: italic;
      font-size: 22px; line-height: 1.6; color: var(--navy); margin: 0;
    }

    /* ─── PROJECTS ─── */
    #projects { background: white; }
    .proj-controls {
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 16px; margin-bottom: 44px;
    }
    .ptabs { display: flex; background: var(--light-gray); border-radius: 3px; padding: 4px; gap: 0; }
    .ptab {
      padding: 10px 28px; font-size: 12px; font-weight: 600;
      letter-spacing: 0.5px; text-transform: uppercase; color: var(--mid-gray);
      cursor: pointer; border-radius: 2px; transition: all 0.3s;
    }
    .ptab.on { background: var(--navy); color: white; }
    .pfilters { display: flex; gap: 12px; flex-wrap: wrap; }
    select.fsel {
      padding: 10px 16px; border: 1.5px solid var(--light-gray); border-radius: 2px;
      font-size: 13px; font-family: 'Inter', sans-serif; color: var(--charcoal);
      background: white; cursor: pointer; outline: none; transition: border 0.3s;
    }
    select.fsel:focus { border-color: var(--steel); }
    .proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
    .proj-grid + .proj-section-head { margin-top: 60px; }
    .proj-section-head { margin-bottom: 30px; }
    .proj-section-head h2 {
      font-family: 'Playfair Display', serif; font-size: 30px; color: var(--navy); margin: 0 0 8px;
    }
    .proj-section-head p { font-size: 14px; color: var(--mid-gray); margin: 0; }
    #pm-grid { margin-bottom: 20px; }
    .pcard {
      background: var(--off-white); border: 1px solid var(--light-gray); border-radius: 3px;
      overflow: hidden; transition: all 0.3s;
    }
    .pcard:hover { box-shadow: 0 16px 44px rgba(13,45,82,0.12); transform: translateY(-5px); }
    .pcard-img {
      height: 195px; background: linear-gradient(135deg, var(--navy), var(--steel));
      position: relative; display: flex; align-items: center; justify-content: center; font-size: 44px;
    }
    .pstatus {
      position: absolute; top: 12px; right: 12px;
      padding: 4px 12px; font-size: 10px; font-weight: 700; letter-spacing: 1px;
      text-transform: uppercase; border-radius: 2px;
    }
    .done { background: rgba(16,185,129,0.9); color: white; }
    .going { background: rgba(245,158,11,0.9); color: white; }
    .pcard-body { padding: 22px; }
    .pcard-body h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 10px;
    }
    .pmeta { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 12px; }
    .ptag {
      font-size: 10px; padding: 3px 10px;
      background: rgba(45,127,184,0.1); color: var(--steel); border-radius: 2px; font-weight: 700;
    }
    .pdesc { font-size: 13px; color: var(--mid-gray); line-height: 1.75; }
    .pdates {
      display: flex; justify-content: space-between;
      margin-top: 16px; padding-top: 14px;
      border-top: 1px solid var(--light-gray);
      font-size: 11px; color: #9CA3AF;
    }
    .empty-proj { grid-column: 1/-1; text-align: center; padding: 60px; color: #9CA3AF; }

    /* ─── COVERAGE ─── */
    #coverage { background: var(--navy); }
    #coverage .sec-title { color: white; }
    #coverage .sec-sub { color: rgba(255,255,255,0.65); }
    #coverage .eyebrow { color: var(--sky); }
    .cov-wrap { display: grid; grid-template-columns: 1.3fr 1fr; gap: 72px; align-items: center; }

    .map-tooltip {
      position: fixed; background: white; color: var(--navy);
      padding: 12px 16px; border-radius: 3px;
      font-size: 12.5px; font-weight: 500; line-height: 1.6;
      box-shadow: 0 8px 32px rgba(0,0,0,0.25);
      pointer-events: none; z-index: 9998; display: none; max-width: 230px;
    }
    .map-tooltip strong { color: var(--navy); display: block; margin-bottom: 2px; }

    .offices { display: flex; flex-direction: column; gap: 28px; }
    .office {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(89,169,216,0.2);
      border-left: 4px solid var(--steel); border-radius: 0 3px 3px 0;
      padding: 26px 28px;
    }
    .office-state {
      font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
      color: var(--sky); margin-bottom: 6px;
    }
    .office-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px; font-weight: 600; color: white; margin-bottom: 10px;
    }
    .office-addr { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.75; }
    .gmap-link {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 12px; font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
      color: var(--sky); text-decoration: none; transition: color 0.3s;
    }
    .gmap-link:hover { color: white; }
    .nation-badge {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(89,169,216,0.2);
      border-radius: 3px; padding: 22px; text-align: center;
    }
    .nation-badge .nb-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 8px; }
    .nation-badge .nb-val { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: white; font-weight: 600; }
    .nation-badge .nb-time { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 6px; }

    /* ─── TESTIMONIALS ─── */
    #testimonials { background: var(--off-white); }
    .rating-bar {
      display: flex; align-items: center; justify-content: center;
      gap: 10px; margin-top: 14px;
    }
    .stars { color: #F59E0B; font-size: 22px; letter-spacing: 2px; }
    .rating-text { font-size: 14px; color: var(--mid-gray); }

    .tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 64px; }
    .tcard {
      background: white; border: 1px solid var(--light-gray); border-radius: 3px;
      padding: 32px; position: relative;
    }
    .tcard::before {
      content: '\201C';
      font-family: 'Cormorant Garamond', serif;
      font-size: 80px; color: var(--light-gray);
      position: absolute; top: 10px; right: 24px; line-height: 1;
    }
    .tcard-stars { margin-bottom: 14px; }
    .ts { color: #F59E0B; font-size: 16px; }
    .ts-off { color: #D1D5DB; font-size: 16px; }
    .tquote { font-size: 14.5px; color: #4B5563; line-height: 1.85; font-style: italic; margin-bottom: 22px; }
    .tauthor { display: flex; align-items: center; gap: 12px; }
    .tavatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: linear-gradient(135deg, var(--navy), var(--steel));
      display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
    }
    .tname { font-size: 14px; font-weight: 600; color: var(--navy); }
    .trole { font-size: 12px; color: #9CA3AF; }

    .logos-section { border-top: 1px solid var(--light-gray); padding-top: 52px; }
    .logos-label {
      text-align: center; font-size: 10px; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase; color: #9CA3AF; margin-bottom: 36px;
    }

    /* Logo wall — flexible row that wraps cleanly */
    .logos-wall {
      display: flex; flex-wrap: wrap;
      justify-content: center; align-items: center;
      gap: 32px 40px;
    }

    /* Each logo slot */
    .logo-box {
      display: flex; align-items: center; justify-content: center;
      min-width: 100px; max-width: 160px; height: 64px;
      background: transparent;
      padding: 8px 16px;
      border-radius: 3px;
      transition: all 0.35s;
      text-decoration: none;
    }

    /* Actual uploaded logo image */
    .logo-box .logo-img {
      max-width: 140px; max-height: 56px;
      width: auto; height: auto;
      object-fit: contain;
      filter: grayscale(100%) opacity(0.55);
      transition: filter 0.35s, opacity 0.35s;
      display: block;
    }
    .logo-box:hover .logo-img {
      filter: grayscale(0%) opacity(1);
    }

    /* Fallback when no image uploaded: show client name as text */
    .logo-box .logo-name {
      font-size: 11px; font-weight: 700; color: #9CA3AF;
      letter-spacing: 1.5px; text-transform: uppercase;
      text-align: center;
    }
    .logo-box:hover .logo-name { color: var(--navy); }

    /* ─── BLOG ─── */
    #blog { background: white; }
    .bgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
    .bcard {
      border: 1px solid var(--light-gray); border-radius: 3px; overflow: hidden;
      transition: all 0.3s;
    }
    .bcard:hover { box-shadow: 0 12px 36px rgba(13,45,82,0.09); transform: translateY(-4px); }
    .bcard-img {
      height: 195px; background: linear-gradient(135deg, var(--navy), var(--steel));
      display: flex; align-items: center; justify-content: center; font-size: 44px;
    }
    .bcard-body { padding: 24px; }
    .bcat {
      font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
      color: var(--steel); margin-bottom: 9px;
    }
    .btitle {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px; font-weight: 600; color: var(--navy); line-height: 1.3; margin-bottom: 12px;
    }
    .bexc { font-size: 13px; color: var(--mid-gray); line-height: 1.75; margin-bottom: 20px; }
    .bmeta {
      display: flex; align-items: center; justify-content: space-between;
      font-size: 11px; color: #9CA3AF;
      border-top: 1px solid var(--light-gray); padding-top: 14px;
    }
    .bmore {
      color: var(--steel); text-decoration: none; font-weight: 700; font-size: 11px;
      letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.3s;
    }
    .bmore:hover { color: var(--navy); }

    /* Newsletter */
    .newsbox {
      background: linear-gradient(135deg, var(--navy) 0%, #1a4f8a 100%);
      border-radius: 3px; padding: 64px; text-align: center; margin-top: 64px;
    }
    .newsbox h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 40px; font-weight: 400; color: white; margin-bottom: 12px;
    }
    .newsbox p { font-size: 15px; color: rgba(255,255,255,0.75); margin-bottom: 36px; }
    .nform { display: flex; gap: 12px; justify-content: center; max-width: 480px; margin: 0 auto; }
    .ninput {
      flex: 1; padding: 14px 20px; border: none; border-radius: 2px;
      font-size: 14px; font-family: 'Inter', sans-serif; outline: none;
    }
    .nbtn {
      padding: 14px 32px; background: var(--sky); color: white; border: none; border-radius: 2px;
      font-size: 12px; font-weight: 700; cursor: pointer; letter-spacing: 1.5px; text-transform: uppercase;
      transition: background 0.3s; white-space: nowrap;
    }
    .nbtn:hover { background: #45a0d0; }
    #nmsg { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 14px; }

    /* ─── FAQ ─── */
    #faq { background: var(--off-white); }
    .faqlist { max-width: 820px; margin: 0 auto; }
    .faqitem { border-bottom: 1px solid var(--light-gray); }
    .faqq {
      width: 100%; text-align: left; padding: 22px 0;
      background: none; border: none; font-family: 'Inter', sans-serif;
      font-size: 16px; font-weight: 600; color: var(--navy);
      cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    }
    .faqchev { font-size: 16px; color: var(--steel); transition: transform 0.3s; flex-shrink: 0; }
    .faqitem.open .faqchev { transform: rotate(180deg); }
    .faqa { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
    .faqitem.open .faqa { max-height: 280px; }
    .faqa p { font-size: 15px; color: #4B5563; line-height: 1.85; padding-bottom: 24px; }

    /* ─── CAREERS ─── */
    #careers { background: white; }
    .cgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .cgrid:has(> .cjob:only-child) { display: flex; justify-content: center; }
    .cgrid:has(> .cjob:only-child) .copen { max-width: 480px; width: 100%; padding: 48px 40px; }
    .cjob {
      border: 1px solid var(--light-gray); border-radius: 3px; padding: 28px; transition: all 0.3s;
    }
    .cjob:hover { border-color: var(--steel); box-shadow: 0 8px 28px rgba(13,45,82,0.09); }
    .ctype {
      font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
      color: var(--steel); margin-bottom: 8px;
    }
    .cjob h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 7px;
    }
    .cloc { font-size: 12px; color: #9CA3AF; margin-bottom: 14px; }
    .cjob p { font-size: 13px; color: var(--mid-gray); line-height: 1.75; margin-bottom: 20px; }
    .capply {
      display: inline-block; padding: 10px 24px;
      background: var(--navy); color: white; text-decoration: none;
      font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
      border-radius: 2px; transition: background 0.3s;
    }
    .capply:hover { background: var(--steel); }
    .copen {
      background: var(--off-white); display: flex; flex-direction: column;
      align-items: center; justify-content: center; text-align: center; gap: 12px;
      min-height: 200px; border: 2px dashed var(--light-gray);
    }
    .copen:hover { border-color: var(--steel); }
    .copen h3 { font-size: 18px; }
    .copen p { margin: 0; }

    /* ─── CONSULT ─── */
    #consult { background: var(--off-white); }
    .consult-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
    .cinfo h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px; font-weight: 600; color: var(--navy); margin-bottom: 16px;
    }
    .cinfo > p { font-size: 15px; color: #4B5563; line-height: 1.85; margin-bottom: 34px; }
    .cdetails { display: flex; flex-direction: column; gap: 20px; }
    .citem { display: flex; align-items: flex-start; gap: 16px; }
    .cicon {
      width: 44px; height: 44px; background: var(--navy); border-radius: 2px;
      display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
    }
    .citem-text h4 {
      font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
      color: var(--steel); margin-bottom: 4px;
    }
    .citem-text p { font-size: 14px; color: var(--charcoal); line-height: 1.65; margin: 0; }
    .cform {
      background: white; border: 1px solid var(--light-gray); border-radius: 3px; padding: 48px;
    }
    .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .fg { margin-bottom: 22px; }
    .fg label {
      display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--navy); margin-bottom: 8px;
    }
    .fg input, .fg select, .fg textarea {
      width: 100%; padding: 12px 16px;
      border: 1.5px solid var(--light-gray); border-radius: 2px;
      font-size: 14px; font-family: 'Inter', sans-serif; color: var(--charcoal);
      background: white; outline: none; transition: border 0.3s;
    }
    .fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--steel); }
    .fg textarea { resize: vertical; min-height: 120px; }
    .fsub {
      width: 100%; padding: 16px; background: var(--navy); color: white;
      border: none; border-radius: 2px; font-size: 13px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: background 0.3s;
    }
    .fsub:hover { background: var(--steel); }

    /* ─── FOOTER ─── */
    footer { background: var(--dark-bg); color: white; padding: 80px 64px 40px; }
    .footer-grid {
      display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px;
    }
    .fbrand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px; font-weight: 700; color: white; letter-spacing: 3px; margin-bottom: 2px;
    }
    .fbrand-sub { font-size: 10px; color: var(--sky); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 18px; }
    .fdesc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.85; margin-bottom: 24px; }
    .socials { display: flex; gap: 10px; }
    .soc {
      width: 36px; height: 36px; border-radius: 2px; background: rgba(255,255,255,0.07);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px;
      transition: all 0.3s; font-weight: 700;
    }
    .soc:hover { background: var(--steel); color: white; }
    .fcol h4 {
      font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
      color: rgba(255,255,255,0.4); margin-bottom: 20px;
    }
    .fcol ul { list-style: none; }
    .fcol ul li { margin-bottom: 12px; }
    .fcol ul li a {
      font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.3s;
    }
    .fcol ul li a:hover { color: var(--sky); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
    }
    .fcopy { font-size: 12px; color: rgba(255,255,255,0.35); }
    .flinks { display: flex; gap: 24px; }
    .flinks a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.3s; }
    .flinks a:hover { color: var(--sky); }

    /* ─── WHATSAPP ─── */
    .wa-btn {
      position: fixed; bottom: 32px; right: 32px; z-index: 9998;
      display: flex; align-items: center; gap: 10px;
      background: #25D366; color: white; text-decoration: none;
      padding: 13px 22px 13px 16px; border-radius: 50px;
      font-size: 13px; font-weight: 600;
      box-shadow: 0 6px 24px rgba(37,211,102,0.45);
      transition: all 0.3s; animation: wapulse 2.5s ease-in-out infinite;
    }
    .wa-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(37,211,102,0.55); }
    .wa-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
    @keyframes wapulse {
      0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
      50%       { box-shadow: 0 6px 36px rgba(37,211,102,0.7); }
    }

    /* ─── MOBILE MENU ─── */
    .mob-nav {
      display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 1001;
      background: rgba(6,15,26,0.98); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
      flex-direction: column; align-items: center; justify-content: center; gap: 28px;
    }
    .mob-nav.open { display: flex; }
    .mob-nav a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px; font-weight: 500; color: white; text-decoration: none;
      letter-spacing: 2px; transition: color 0.3s;
    }
    .mob-nav a:hover { color: var(--sky); }
    .mob-close {
      position: absolute; top: 24px; right: 28px;
      background: none; border: none; font-size: 28px; color: white; cursor: pointer;
    }

    /* ─── RESPONSIVE ─── */
    /* ── Large screens: cap content width, generous breathing room ── */
    @media (min-width: 1400px) {
      section { padding: 108px 80px; }
      .navbar { padding: 18px 80px; }
      footer { padding: 80px 80px 48px; }
      .hero-content { max-width: 880px; }
    }

    /* ── Tablet landscape / small desktop (≤1080px) ── */
    @media (max-width: 1080px) {
      section { padding: 88px 48px; }
      .navbar { padding: 16px 48px; }
      footer { padding: 64px 48px 36px; }
      .hero-content { padding: 0 48px; }
      .hero-dots { right: 48px; }
      .services-wrap, .about-wrap, .cov-wrap, .consult-wrap { grid-template-columns: 1fr; gap: 52px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
      .page-header { padding: 180px 48px 80px; }
    }

    /* ── Tablet portrait (≤900px) ── */
    @media (max-width: 900px) {
      section { padding: 80px 40px; }
      .navbar { padding: 16px 40px; }
      footer { padding: 60px 40px 32px; }
      .hero-content { padding: 0 40px; }
      .tgrid { grid-template-columns: 1fr 1fr; }
      .bgrid { grid-template-columns: 1fr 1fr; }
      .proj-grid { grid-template-columns: 1fr 1fr; }
      .cgrid { grid-template-columns: 1fr 1fr; }
      .page-header { padding: 170px 40px 72px; }
      .hero-stat { padding: 22px 24px; }
    }

    /* ── Large phone / small tablet (≤768px) ── */
    @media (max-width: 768px) {
      section { padding: 64px 24px; }
      .navbar { padding: 14px 24px; }
      footer { padding: 48px 24px 28px; }
      .nav-links { display: none !important; }
      .hamburger { display: flex; }
      .hero-content { padding: 100px 24px 0; justify-content: flex-start; }
      .hero-dots { display: none; }
      .hero-stats { flex-wrap: wrap; }
      .hero-stat { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 20px 16px; }
      .tgrid, .bgrid, .proj-grid { grid-template-columns: 1fr; }
      .cgrid, .values-grid, .cert-grid, .people-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .nform { flex-direction: column; }
      .frow { grid-template-columns: 1fr; }
      .lifecycle { width: 280px; height: 280px; }
      .wa-btn span { display: none; }
      .wa-btn { padding: 14px; border-radius: 50%; }
      .about-wrap { gap: 56px; }
      .cov-wrap { gap: 40px; }
      .consult-wrap { gap: 40px; }
      .newsbox { padding: 44px 24px; }
      .page-header { padding: 150px 24px 60px; }
      .lc-center-text { font-size: 11px; }
      .founder-wrap { grid-template-columns: 1fr; gap: 36px; text-align: center; }
      .founder-photo, .founder-photo-placeholder { max-width: 280px; margin: 0 auto; }
      .founder-rule { margin-left: auto; margin-right: auto; }
    }

    /* ── Standard phone (≤480px) ── */
    @media (max-width: 480px) {
      section { padding: 56px 18px; }
      .navbar { padding: 14px 18px; }
      footer { padding: 44px 18px 24px; }
      .hero-content { padding: 90px 18px 0; }
      .hero-stat { min-width: 50%; padding: 16px 12px; }
      .stat-num { font-size: 36px; }
      .btn-primary, .btn-outline { padding: 12px 24px; font-size: 11px; }
      .hero-btns { gap: 10px; }
      .hero-title { font-size: clamp(36px, 9vw, 54px); }
      .sec-title { font-size: clamp(28px, 7vw, 42px); }
      .tcard { padding: 24px 20px; }
      .cform, .consult-wrap .cform { padding: 28px 20px; }
      .newsbox { padding: 36px 18px; }
      .proj-controls { flex-direction: column; align-items: stretch; }
      .pfilters { flex-direction: column; }
      .ptabs { justify-content: center; }
      .footer-grid { gap: 24px; }
      .svc-card h3 { font-size: 17px; }
      .page-header { padding: 140px 18px 52px; }
      .hero-desc { font-size: 14px; line-height: 1.75; margin-bottom: 28px; }
      .hero-eyebrow { font-size: 10px; letter-spacing: 3px; margin-bottom: 14px; }
      .hero-btns { margin-bottom: 0; }
      .logos-wall { gap: 20px 24px; }
      .logo-box { max-width: 120px; height: 52px; padding: 6px 12px; }
      .logo-box .logo-img { max-width: 100px; max-height: 44px; }
      .lifecycle { width: 240px; height: 240px; }
      .lc-node { width: 68px; height: 68px; }
      .lc-center { width: 90px; height: 90px; }
    }

    /* ── Small phone (≤380px) ── */
    @media (max-width: 380px) {
      section { padding: 48px 14px; }
      .navbar { padding: 12px 14px; }
      footer { padding: 40px 14px 20px; }
      .hero-content { padding: 0 14px; }
      .hero-title { font-size: clamp(30px, 8vw, 44px); }
      .stat-num { font-size: 30px; }
      .hero-stat { padding: 14px 10px; }
    }

/* ─── MULTI-PAGE ADDITIONS ─── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
/* Honeypot field — invisible to humans, commonly auto-filled by spam bots */
.seaba-hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.nav-links a.active { color: white; }
.nav-links a.active::after { width: 100%; }

.page-header {
  position: relative;
  padding: 200px 64px 90px;
  background-color: var(--navy);
  background-size: cover; background-position: center;
  text-align: left;
}
.page-header .eyebrow { color: var(--sky); }
.page-header .sec-title { color: white; margin-bottom: 14px; }
.page-header .crumbs { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
.page-header .crumbs a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
.page-header .crumbs a:hover { color: var(--sky); }
.page-header .sec-sub { color: rgba(255,255,255,0.7); }

@media (max-width: 768px) {
  .vision-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
}

/* ─── WORDPRESS CONTENT TYPOGRAPHY ─── */
.entry-content,
.apanel .entry-content {
  font-size: 16px;
  line-height: 1.9;
  color: #374151;
}
.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.25;
  margin: 1.6em 0 0.6em;
}
.entry-content h1 { font-size: 36px; }
.entry-content h2 { font-size: 30px; }
.entry-content h3 { font-size: 24px; }
.entry-content h4 { font-size: 19px; }
.entry-content p { margin-bottom: 1.3em; }
.entry-content a { color: var(--steel); text-decoration: underline; }
.entry-content a:hover { color: var(--navy); }
.entry-content ul, .entry-content ol { margin: 0 0 1.3em 1.4em; }
.entry-content li { margin-bottom: 0.5em; }
.entry-content img { max-width: 100%; height: auto; border-radius: 3px; margin: 1.5em 0; }
.entry-content blockquote {
  border-left: 3px solid var(--steel);
  margin: 1.6em 0; padding: 0.4em 0 0.4em 1.4em;
  font-style: italic; color: var(--mid-gray);
}
.entry-content figcaption { font-size: 13px; color: var(--mid-gray); margin-top: -1em; margin-bottom: 1.5em; }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.5em; }
.entry-content table th, .entry-content table td {
  border: 1px solid var(--light-gray); padding: 10px 14px; text-align: left;
}
.entry-content table th { background: var(--off-white); font-weight: 600; }
.entry-content code {
  background: var(--off-white); padding: 2px 6px; border-radius: 3px;
  font-size: 0.9em; color: var(--navy);
}
.entry-content pre {
  background: var(--charcoal); color: white; padding: 18px; border-radius: 3px;
  overflow-x: auto; margin-bottom: 1.5em;
}
.entry-content pre code { background: none; color: inherit; padding: 0; }
.entry-content .page-links { margin-top: 2em; font-size: 14px; color: var(--mid-gray); }

/* ─── COMMENTS ─── */
.comments-area { font-size: 15px; }
.comments-area .comment-list { list-style: none; padding: 0; }
.comments-area .comment-form input,
.comments-area .comment-form textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--light-gray);
  border-radius: 2px; font-family: 'Inter', sans-serif; margin-bottom: 14px;
}
.comments-area .comment-form input[type="submit"] {
  width: auto; background: var(--navy); color: white; border: none;
  padding: 12px 28px; cursor: pointer; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; font-size: 12px;
}
.comments-area .comment-form input[type="submit"]:hover { background: var(--steel); }

/* ─── 404 PAGE ─── */
.error-404-content {
  max-width: 640px; margin: 0 auto; padding: 120px 24px; text-align: center;
}
.error-404-content .error-num {
  font-family: 'Cormorant Garamond', serif; font-size: 120px; font-weight: 700;
  color: var(--steel); line-height: 1; margin-bottom: 12px;
}

/* ─── SINGLE PROJECT PAGE ─── */
.project-detail-meta {
  display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 36px;
}
.project-detail-hero {
  height: 360px; background: linear-gradient(135deg, var(--navy), var(--steel));
  display: flex; align-items: center; justify-content: center; font-size: 64px;
  border-radius: 3px; margin-bottom: 36px; background-size: cover; background-position: center;
}

/* ─── MAX-WIDTH CONTENT CONTAINERS ─── */
/* Stops content stretching uncomfortably wide on 4K/ultra-wide screens */
.services-wrap,
.about-wrap,
.cov-wrap,
.consult-wrap,
.sec-header,
.faqlist,
.tgrid,
.bgrid,
.proj-grid,
.cgrid,
.logos-wall,
.proj-controls,
.services-cards,
.offices {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* Narrower cap for text-heavy sections */
.faqlist { max-width: 860px; }
.newsbox { max-width: 860px; margin-left: auto; margin-right: auto; }
.error-404-content { max-width: 660px; }
