/*
Theme Name: Twenty Twenty-Five Child
Theme URI: https://neoskolera.com
Description: Child theme for Twenty Twenty-Five (NeoSkolera customizations)
Author: NeoSkolera
Version: 1.0.0
Template: twentytwentyfive
Text Domain: twentytwentyfive-child
*/


:root{
      --brand-900:#014E86;
      --brand-700:#016CB9;
      --brand-600:#0B87D3;
      --brand-50:#EAF6FF;

      --ink-900:#0B1220;
      --ink-700:#243046;
      --ink-600:#3A4A67;
      --muted:#6B7A99;

      --bg:#F6F9FC;
      --border:rgba(15, 23, 42, 0.10);

      --shadow: 0 12px 40px rgba(2, 12, 27, .08);
      --shadow2: 0 10px 28px rgba(2, 12, 27, .10);

      --radius: 18px;
      --radius2: 24px;
      --max: 1180px;
    }

    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; }
    body{
      margin:0;
      background:
        radial-gradient(1200px 600px at 20% -10%, rgba(11,135,211,.20), transparent 60%),
        radial-gradient(1200px 600px at 100% 10%, rgba(1,108,185,.18), transparent 55%),
        var(--bg);
      color:var(--ink-900);
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      line-height:1.55;
    }

    a{ color:inherit; text-decoration:none; }
    img{ max-width:100%; display:block; }
    .container{ max-width:var(--max); margin:0 auto; padding:0 18px; }
    .small{ font-size: 12px; color: var(--muted); }

    /* Topbar */
    .topbar{
      background: linear-gradient(90deg, var(--brand-900), var(--brand-700), var(--brand-600));
      color:#fff;
      font-size: 14px;
    }
    .topbar .inner{
      display:flex;
      gap:12px;
      align-items:center;
      justify-content:space-between;
      padding:10px 0;
      flex-wrap:wrap;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 10px;
      border-radius:999px;
      background: rgba(255,255,255,.14);
      border: 1px solid rgba(255,255,255,.16);
      backdrop-filter: blur(6px);
    }
    .dot{ width:8px; height:8px; border-radius:999px; background:#A7F3D0; box-shadow:0 0 0 3px rgba(167,243,208,.22); }
    .topbar .links{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
    .topbar .links a{
      opacity:.95;
      padding:6px 10px;
      border-radius:999px;
      background: rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.14);
    }
    .topbar .links a:hover{ background: rgba(255,255,255,.18); }

    /* Navbar */
    .nav{
      position: sticky;
      top:0;
      z-index:50;
      background: rgba(246, 249, 252, .72);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(15,23,42,.08);
    }
    .nav .inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:14px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 220px;
    }
    /* ✅ Logo image (replaces "N" block) */
    .logoImg{
      width:40px;
      height:40px;
      border-radius: 14px;
      background: rgba(255,255,255,.8);
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 12px 24px rgba(1,108,185,.18);
      padding:6px;
      object-fit:contain;
    }

    .brand .title{ display:flex; flex-direction:column; line-height:1.1; }
    .brand .title strong{ font-size:16px; letter-spacing:.2px; }
    .brand .title span{ font-size:12px; color:var(--muted); }

    .menu{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
      justify-content:center;
    }
    .menu a{
      padding:10px 12px;
      border-radius: 999px;
      color: var(--ink-700);
      font-size: 14px;
      font-weight: 700;
    }
    .menu a:hover{ background: rgba(1,108,185,.08); color: var(--ink-900); }

    .cta{
      display:flex; align-items:center; gap:10px;
      min-width: 240px;
      justify-content:flex-end;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:12px 14px;
      border-radius: 14px;
      border:1px solid transparent;
      font-weight: 900;
      font-size: 14px;
      cursor:pointer;
      transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:active{ transform: translateY(1px); }
    .btn-primary{
      background: linear-gradient(135deg, var(--brand-700), var(--brand-600));
      color:#fff;
      box-shadow: 0 14px 32px rgba(1,108,185,.22);
    }
    .btn-primary:hover{ box-shadow: 0 16px 40px rgba(1,108,185,.28); }
    .btn-ghost{
      background: rgba(255,255,255,.72);
      border-color: rgba(15,23,42,.10);
      color: var(--ink-800);
    }
    .btn-ghost:hover{ background:#fff; box-shadow: 0 10px 22px rgba(2,12,27,.08); }

    /* Sections */
    section{ padding: 42px 0; }
    .sectionHead{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap: 14px;
      margin-bottom: 18px;
      flex-wrap:wrap;
    }
    .sectionHead h2{ margin:0; font-size: 26px; letter-spacing:-.3px; }
    .sectionHead p{ margin:0; color: var(--muted); max-width: 92ch; font-size: 14px; }

    .card{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius: var(--radius2);
      box-shadow: var(--shadow2);
      padding: 18px;
    }

    /* Hero */
    .hero{ padding: 34px 0 18px; }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.12fr .88fr;
      gap: 22px;
      align-items:stretch;
    }
    .heroCard{
      background: rgba(255,255,255,.76);
      border:1px solid rgba(15,23,42,.10);
      border-radius: var(--radius2);
      box-shadow: var(--shadow);
      padding: 26px;
      overflow:hidden;
      position:relative;
    }
    .heroCard:before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(800px 360px at 20% 10%, rgba(11,135,211,.22), transparent 60%),
        radial-gradient(800px 360px at 90% 0%, rgba(1,108,185,.18), transparent 55%);
      pointer-events:none;
      z-index:0;
    }
    .heroCard > *{ position:relative; z-index:1; }
    .kicker{
      display:inline-flex;
      gap:10px;
      align-items:center;
      padding:8px 12px;
      border-radius: 999px;
      background: rgba(234,246,255,.85);
      border:1px solid rgba(1,108,185,.16);
      color: var(--brand-900);
      font-weight: 900;
      font-size: 13px;
    }
    .hero h1{
      margin: 14px 0 10px;
      font-size: clamp(30px, 4.2vw, 46px);
      line-height: 1.06;
      letter-spacing:-.6px;
    }
    .hero p{
      margin: 0 0 14px;
      color: var(--ink-600);
      font-size: 16px;
      max-width: 70ch;
    }
    .heroActions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 12px; }

    /* Highlight list */
    .hiList{ margin: 14px 0 0; padding: 0; list-style:none; display:grid; gap: 10px; }
    .hiList li{
      display:flex; gap:10px; align-items:flex-start;
      padding: 12px;
      border-radius: 16px;
      background: rgba(246,249,252,.72);
      border: 1px solid rgba(15,23,42,.08);
      color: var(--ink-700);
      font-size: 14px;
    }
    .tick{
      width:18px; height:18px;
      border-radius: 8px;
      background: rgba(1,108,185,.12);
      border:1px solid rgba(1,108,185,.18);
      display:grid; place-items:center;
      flex: 0 0 auto;
      margin-top: 2px;
    }
    .tick svg{ width:12px; height:12px; fill: var(--brand-700); }

    .badge{
      font-size:12px;
      padding:6px 10px;
      border-radius:999px;
      background: rgba(234,246,255,.9);
      border:1px solid rgba(1,108,185,.18);
      color: var(--brand-900);
      font-weight:900;
      white-space:nowrap;
    }

    /* Feature grid */
    .grid3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .featureCard{ padding: 0; overflow:hidden; }
    .featureTop{
      padding: 16px 16px 10px;
      display:flex;
      gap: 12px;
      align-items:flex-start;
      justify-content:space-between;
    }
    .featureTitle{ display:flex; gap: 12px; align-items:flex-start; }
    .featureTitle h3{ margin: 2px 0 4px; font-size: 16px; }
    .featureTitle p{ margin:0; color: var(--muted); font-size: 13px; }
    .chip{
      font-size: 12px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(1,108,185,.10);
      border: 1px solid rgba(1,108,185,.16);
      color: var(--brand-900);
      font-weight: 900;
      white-space: nowrap;
    }
    .icon{
      width:44px; height:44px;
      border-radius: 16px;
      background: rgba(234,246,255,.9);
      border:1px solid rgba(1,108,185,.16);
      display:grid; place-items:center;
      flex: 0 0 auto;
    }
    .icon svg{ width:22px; height:22px; fill: var(--brand-700); }

    /* Screenshots */
    .shot{
      height: 180px;
      background:
        linear-gradient(135deg, rgba(1,108,185,.10), rgba(11,135,211,.10)),
        rgba(246,249,252,.6);
      border-top: 1px solid rgba(15,23,42,.08);
      padding: 10px;
      overflow:hidden;
    }
    .shot img{
      width: 100%;
      height: 100%;
      object-fit: contain; /* show full UI without cropping */
      border-radius: 12px;
      display:block;
    }

    /* Pricing tables */
    .tableWrap{
      background: rgba(255,255,255,.82);
      border:1px solid rgba(15,23,42,.10);
      border-radius: var(--radius2);
      box-shadow: var(--shadow2);
      overflow:hidden;
    }
    table{
      width:100%;
      border-collapse: collapse;
      font-size: 14px;
    }
    thead th{
      text-align:left;
      padding: 14px 14px;
      background: linear-gradient(135deg, rgba(1,108,185,.10), rgba(11,135,211,.10));
      color: var(--ink-900);
      font-weight: 1000;
      border-bottom: 1px solid rgba(15,23,42,.10);
    }
    tbody td{
      padding: 12px 14px;
      border-bottom: 1px solid rgba(15,23,42,.08);
      color: var(--ink-700);
      vertical-align: top;
    }
    tbody tr:hover td{ background: rgba(234,246,255,.35); }
    .colPrice{ white-space: nowrap; font-weight: 1000; color: var(--ink-900); }

    .pillMini{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 10px;
      border-radius:999px;
      background: rgba(234,246,255,.9);
      border:1px solid rgba(1,108,185,.16);
      color: var(--brand-900);
      font-weight: 900;
      font-size: 12px;
      white-space: nowrap;
    }
    .noteBox{
      margin-top: 12px;
      padding: 12px 14px;
      border-radius: 16px;
      background: rgba(234,246,255,.78);
      border:1px solid rgba(1,108,185,.16);
      color: var(--ink-700);
      font-size: 13px;
    }
    .noteBox b{ color: var(--brand-900); }

    /* Support & rows */
    .grid2{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .row{
      display:flex;
      gap: 10px;
      align-items:flex-start;
      padding: 12px;
      border-radius: 16px;
      border: 1px solid rgba(15,23,42,.08);
      background: rgba(246, 249, 252, .70);
      margin-top: 10px;
      color: var(--ink-700);
      font-size: 14px;
    }

    /* Link cards */
    .linkGrid{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 14px; }
    .linkList{ margin: 10px 0 0; padding-left: 18px; color: var(--ink-700); }
    .linkList li{ margin: 8px 0; }
    .monoLink{
      display:inline-block;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(15,23,42,.10);
      font-weight: 900;
      font-size: 12px;
    }

    /* Footer */
    footer{
      padding: 26px 0;
      border-top: 1px solid rgba(15,23,42,.08);
      color: var(--muted);
    }
    .footerGrid{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
      flex-wrap:wrap;
    }
    .footerLogoWrap{
      width:34px;height:34px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.85);
      box-shadow: 0 10px 22px rgba(2,12,27,.08);
      padding:5px;
      display:grid;
      place-items:center;
    }
    .footerLogoWrap img{ width:100%; height:100%; object-fit:contain; }

    /* ===== Embedded Videos ===== */
    .videoGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top:12px;
    }
    .videoCard{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.82);
      border-radius: 18px;
      overflow:hidden;
      box-shadow: var(--shadow2);
    }
    .videoCardWide{ grid-column: 1 / -1; }
    .videoMeta{ padding: 12px 14px 14px; }
    .videoTitle{ font-weight: 1000; color: var(--ink-900); margin-bottom: 4px; }
    .videoDesc{ color: var(--muted); font-size: 13px; margin-bottom: 10px; }

    .videoFrame{
      width: 100%;
      aspect-ratio: 16 / 9;
      background: linear-gradient(135deg, rgba(1,108,185,.10), rgba(11,135,211,.10));
      border-top: 1px solid rgba(15,23,42,.08);
    }
    .videoFrame iframe{
      width:100%;
      height:100%;
      border:0;
      display:block;
    }

    .pricingVideoGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      padding: 12px 14px 14px;
    }
    .subVideo{
      border:1px solid rgba(15,23,42,.10);
      border-radius: 16px;
      overflow:hidden;
      background: rgba(246,249,252,.70);
    }
    .subTag{
      display:inline-flex;
      margin: 12px 14px 0;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(1,108,185,.10);
      border: 1px solid rgba(1,108,185,.16);
      color: var(--brand-900);
      font-weight: 900;
      font-size: 12px;
    }

    /* ===== Floating WhatsApp Buttons (updated: elegant colors, numbers hidden) ===== */
    .waFloat{
      position: fixed;
      right: 16px;
      bottom: 16px;
      z-index: 9999;
      display:flex;
      flex-direction: column;
      gap: 10px;
    }
    .waBtn{
      display:flex;
      align-items:center;
      gap:10px;
      padding: 10px 12px;
      border-radius: 999px;
      color:#fff;
      font-weight: 1000;
      font-size: 13px;
      box-shadow: 0 14px 32px rgba(2,12,27,.22);
      border: 1px solid rgba(255,255,255,.16);
      backdrop-filter: blur(6px);
    }
    .waBtn svg{ width:18px; height:18px; fill:#fff; opacity:.95; }

    /* ✅ More professional palettes */
    .waSales{ background: linear-gradient(135deg, #0B2D4D, #016CB9); }
    .waSupport{ background: linear-gradient(135deg, #0F3D36, #0B7A6A); }

    /* ===== Email Modal (NEW) ===== */
    .modalOverlay{
      position:fixed;
      inset:0;
      background: rgba(2,12,27,.55);
      backdrop-filter: blur(6px);
      display:none;
      align-items:center;
      justify-content:center;
      z-index: 10000;
      padding: 18px;
    }
    .modalOverlay.show{ display:flex; }
    .modal{
      width: min(720px, 100%);
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(15,23,42,.10);
      border-radius: 22px;
      box-shadow: 0 22px 70px rgba(2,12,27,.22);
      overflow:hidden;
    }
    .modalHead{
      padding: 14px 16px;
      background: linear-gradient(135deg, rgba(1,108,185,.10), rgba(11,135,211,.10));
      border-bottom: 1px solid rgba(15,23,42,.10);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .modalHead strong{ font-size: 15px; }
    .xBtn{
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.9);
      border-radius: 12px;
      padding: 8px 10px;
      cursor:pointer;
      font-weight: 1000;
    }
    .modalBody{ padding: 16px; }
    .formGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .field{ display:flex; flex-direction:column; gap:6px; }
    label{ font-size: 12px; font-weight: 900; color: var(--ink-700); }
    input, textarea{
      width:100%;
      border-radius: 14px;
      border: 1px solid rgba(15,23,42,.12);
      background: rgba(246,249,252,.85);
      padding: 12px 12px;
      font: inherit;
      outline: none;
    }
    textarea{ min-height: 110px; resize: vertical; grid-column: 1 / -1; }
    .modalActions{
      display:flex;
      justify-content:flex-end;
      gap:10px;
      padding: 0 16px 16px;
    }

    /* Toast */
    .toast{
      position: fixed;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      background: rgba(11,18,32,.92);
      color:#fff;
      padding: 12px 14px;
      border-radius: 999px;
      border:1px solid rgba(255,255,255,.14);
      box-shadow: 0 16px 50px rgba(2,12,27,.22);
      display:none;
      z-index: 11000;
      font-weight: 900;
      font-size: 13px;
    }
    .toast.show{ display:block; }

    /* Mobile */
    @media (max-width: 980px){
      .heroGrid{ grid-template-columns: 1fr; }
      .grid3{ grid-template-columns: 1fr; }
      .grid2{ grid-template-columns: 1fr; }
      .menu{ display:none; }
      .cta{ min-width: unset; }
      .shot{ height: 200px; }

      .tableScroll{
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
      }
      table{ min-width: 760px; }
      .linkGrid{ grid-template-columns: 1fr; }

      .videoGrid{ grid-template-columns: 1fr; }
      .pricingVideoGrid{ grid-template-columns: 1fr; }

      .waBtn{ padding: 10px 11px; font-size: 12px; }

      .formGrid{ grid-template-columns: 1fr; }
    }
    
   /* Hide theme header/title */
header.wp-block-template-part,
.wp-site-blocks > header,
.wp-block-post-title,
.entry-header {
  display: none !important;
}

/* Hide theme footer + credits */
footer.wp-block-template-part,
.wp-site-blocks > footer,
.site-footer,
.powered-by-wordpress,
.wp-block-site-generator {
  display: none !important;
}

/* Remove extra space */
.wp-site-blocks {
  padding-top: 0 !important;
  margin-top: 0 !important;
}


.topbar .links { display:flex; flex-wrap:wrap; gap:10px; align-items:center; justify-content:flex-end; }
.topbar .links .sep { opacity:.35; margin:0 4px; }

.topbar .links .topBtn{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  font-weight:700;
  line-height:1;
}
.topbar .links .topBtnSales{ background: rgba(255,255,255,.10); }
.topbar .links .topBtnSupport{ background: rgba(255,255,255,.08); }

