/* =============================================
   AGNITO CORPORATE — custom.css
   Extra overrides, animations, page-specific
   ============================================= */

/* ---- ANIMATED GRADIENT BORDER HERO ---- */
@keyframes border-spin {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-image-wrap::before {
  background-size: 200% 200%;
  animation: border-spin 5s linear infinite;
}

/* ---- SERVICE CARD HOVER ICON GLOW ---- */
.service-card:hover .service-icon {
  box-shadow: 0 0 24px rgba(0, 194, 255, 0.45), 0 0 60px rgba(0, 194, 255, 0.15);
}

/* ---- PORTFOLIO HOVER ---- */
.portfolio-item:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* ---- STAT SECTION ---- */
@media (min-width: 992px) {
  .stats-section .col { max-width: 20%; }
}

/* ---- CONTACT FORM CF7 OVERRIDES ---- */
.wpcf7-form p { margin-bottom: 16px; }
.wpcf7-form br { display: none; }
.wpcf7-spinner { display: none !important; }
.wpcf7-not-valid-tip {
  font-size: 0.78rem;
  color: #ff5252;
  margin-top: 4px;
  display: block;
}
.wpcf7-response-output {
  border-radius: var(--radius-md) !important;
  padding: 12px 18px !important;
  font-size: 0.875rem !important;
  margin: 16px 0 0 !important;
  border: 1px solid rgba(0, 194, 255, 0.3) !important;
  background: rgba(0, 194, 255, 0.06) !important;
  color: var(--color-off-white) !important;
}

/* ---- WORDPRESS MENU ACTIVE CLASSES ---- */
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a,
.main-nav .current-menu-ancestor > a {
  color: var(--color-cyan) !important;
  background: rgba(0, 194, 255, 0.08) !important;
}

/* ---- WORDPRESS PAGE CONTENT ---- */
.entry-content h2 { font-size: 1.7rem; margin: 28px 0 14px; color: var(--color-white); }
.entry-content h3 { font-size: 1.3rem; margin: 22px 0 12px; color: var(--color-cyan); }
.entry-content p  { color: var(--color-muted); line-height: 1.85; margin-bottom: 18px; }
.entry-content ul,
.entry-content ol { padding-left: 24px; margin-bottom: 18px; }
.entry-content li { color: var(--color-muted); margin-bottom: 8px; }
.entry-content a  { color: var(--color-cyan); }
.entry-content a:hover { color: var(--color-gold); }
.entry-content img { border-radius: var(--radius-md); margin-bottom: 24px; max-width: 100%; }
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 0.9rem;
}
.entry-content table th,
.entry-content table td {
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  color: var(--color-muted);
}
.entry-content table th {
  background: var(--color-card-bg);
  color: var(--color-white);
  font-weight: 600;
}

/* ---- WP ALIGNMENTS ---- */
.alignleft  { float: left;  margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 24px; }
.alignwide  { margin-left: -40px; margin-right: -40px; }
.alignfull  { margin-left: -60px; margin-right: -60px; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--color-navy); }
::-webkit-scrollbar-thumb { background: var(--color-blue); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-blue-bright); }

/* ---- SELECTION ---- */
::selection     { background: rgba(21, 101, 216, 0.35); color: var(--color-white); }
::-moz-selection{ background: rgba(21, 101, 216, 0.35); color: var(--color-white); }

/* ---- LOADING SKELETON ---- */
.skeleton {
  background: linear-gradient(90deg, var(--color-card-bg) 25%, rgba(255,255,255,.06) 50%, var(--color-card-bg) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---- BADGE PILL ---- */
.badge-pill-blue {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(21, 101, 216, 0.2);
  border: 1px solid rgba(21, 101, 216, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-cyan);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge-pill-gold {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(247, 197, 66, 0.15);
  border: 1px solid rgba(247, 197, 66, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- MOBILE NAV BODY LOCK ---- */
body.nav-open { overflow: hidden; }

/* ---- HERO DECORATIVE DOT GRID ---- */
.hero-dots {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 18px 18px;
  z-index: 0;
  pointer-events: none;
}

/* ---- BACK TO TOP PULSE ---- */
.scroll-top-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--radius-md) + 4px);
  border: 2px solid rgba(21, 101, 216, 0.4);
  animation: ring-pulse 2s ease-in-out infinite;
}
@keyframes ring-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0; transform: scale(1.3); }
}

/* ---- FOOTER NEWSLETTER (optional widget) ---- */
.footer-newsletter input {
  width: 100%;
  background: var(--color-card-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 11px 18px;
  color: var(--color-white);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition);
  margin-bottom: 10px;
}
.footer-newsletter input:focus { border-color: var(--color-blue); }
.footer-newsletter button {
  width: 100%;
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-bright));
  border: none;
  border-radius: var(--radius-pill);
  padding: 11px;
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.footer-newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(41, 121, 255, 0.4);
}

/* ---- POP-UP / MODAL STUB ---- */
.agnito-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 13, 31, 0.88);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.agnito-modal-overlay.active { opacity: 1; visibility: visible; }
.agnito-modal {
  background: var(--color-navy-mid);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 560px;
  width: 90%;
  position: relative;
  transform: scale(0.92);
  transition: transform 0.3s;
}
.agnito-modal-overlay.active .agnito-modal { transform: scale(1); }
.agnito-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-muted);
  transition: all var(--transition);
  font-size: 0.9rem;
}
.agnito-modal-close:hover { color: var(--color-white); background: var(--color-blue); }

/* =============================================
   BUG FIX ADDITIONS — custom.css
   ============================================= */

/* ---- FIX: Hero fallback visual (no featured image) ---- */
.hero-fallback-visual {
  background: var(--color-navy-mid) !important;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 420px;
  display: flex !important;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.hfv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.hfv-title {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hfv-badge {
  font-size: .68rem;
  font-weight: 700;
  padding: 2px 9px;
  background: rgba(76,175,80,0.18);
  border: 1px solid rgba(76,175,80,0.3);
  color: #81c784;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hfv-clutch {
  font-size: .75rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hfv-list { display: flex; flex-direction: column; gap: 10px; }
.hfv-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}
.hfv-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}
.hfv-info { flex: 1; }
.hfv-info strong { display: block; font-size: .82rem; font-weight: 600; color: var(--color-white); }
.hfv-info span   { font-size: .72rem; color: var(--color-muted); }
.hfv-status {
  font-size: .68rem; font-weight: 700;
  padding: 3px 10px; border-radius: var(--radius-pill);
  text-transform: uppercase; letter-spacing: .05em;
}
.hfv-live { background: rgba(76,175,80,0.15); color: #81c784; border: 1px solid rgba(76,175,80,0.25); }
.hfv-build { background: rgba(247,197,66,0.15); color: var(--color-gold); border: 1px solid rgba(247,197,66,0.25); }
.hfv-done { background: rgba(138,155,191,0.15); color: var(--color-muted); border: 1px solid rgba(138,155,191,0.2); }
.hfv-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 4px;
}
.hfv-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  text-align: center;
}
.hfv-stat span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 2px;
}
.hfv-stat { font-size: .65rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: .06em; }

/* ---- FIX: Blog card thumbnail fallback (no featured image) ---- */
.blog-card-thumb--fallback {
  background: linear-gradient(135deg, var(--color-navy-light) 0%, var(--color-navy-mid) 60%, rgba(21,101,216,0.15) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 180px;
}
.blog-thumb-icon { font-size: 2.8rem; line-height: 1; }
.blog-thumb-cat {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--color-cyan);
  background: rgba(0,194,255,0.1);
  border: 1px solid rgba(0,194,255,0.2);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
}

/* ---- FIX: Footer logo-text fallback class support ---- */
/* agnito_get_logo_html() now outputs both .logo-text and the passed class.
   Ensure .footer-logo-text still matches the element when custom logo is absent. */
.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-white);
  display: inline-block;
  margin-bottom: 16px;
}
.footer-brand .logo-text span { color: var(--color-gold); }

/* =============================================
   FOOTER GRID LAYOUT FIX
   ============================================= */

/* Replace Bootstrap row/col with a controlled CSS grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1.8fr;
  gap: 40px 32px;
  align-items: start;
}

/* Location col needs more breathing room for long addresses */
.footer-location-col { min-width: 0; }

/* Office entry blocks */
.footer-office {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--color-border);
}
.footer-office:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }

.office-pin {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}
.office-pin strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-office p {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0 0 6px;
}
.footer-office a {
  font-size: 0.78rem;
  color: var(--color-cyan);
  word-break: break-all;
  transition: color var(--transition);
  display: block;
  margin-top: 2px;
}
.footer-office a:hover { color: var(--color-gold); }

/* Responsive footer grid */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px 24px;
  }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
  .footer-location-col { grid-column: span 1; }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
  .footer-location-col { grid-column: 1 / -1; }
}
@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =============================================
   NAV CTA BUTTONS — compact size for header
   ============================================= */
.nav-cta .btn-outline-ag,
.nav-cta .btn-gold-ag {
  padding: 8px 16px;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  box-shadow: none;
  white-space: nowrap;
}
.nav-cta .btn-gold-ag { box-shadow: none; }


/* =============================================
/* =============================================
   POPUP #1693 — COMPLETE FIX
   ============================================= */

/* Kill all theme interference inside popup */
#popmake-1693,
#popmake-1693 * {
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  box-sizing: border-box !important;
}

/* Container */
#popmake-1693.pum-container {
  max-width: 580px !important;
  width: 92% !important;
  border-radius: 20px !important;
  padding: 0 !important;
  background: #ffffff !important;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35) !important;
  overflow: hidden !important;
}

/* Remove inner padding from pum-content, handle in wpcf7 */
#popmake-1693 .pum-content {
  padding: 0 !important;
  background: #fff !important;
}

/* Blue top accent bar */
#popmake-1693 .pum-content::before {
  content: '' !important;
  display: block !important;
  height: 4px !important;
  background: linear-gradient(90deg, #1e3a8a, #2563eb, #38bdf8) !important;
  width: 100% !important;
}

/* Inner padding */
#popmake-1693 .wpcf7 {
  padding: 26px 28px 22px !important;
  background: #fff !important;
}

/* FORCE show h2 title — overrides theme display:none */
#popmake-1693 .wpcf7 h2,
#popmake-1693 .wpcf7 > div > h2,
#popmake-1693 .wpcf7 > form > h2,
#popmake-1693 .wpcf7 form h2 {
  display: block !important;
  color: #0f172a !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin: 0 0 6px !important;
  -webkit-text-fill-color: #0f172a !important;
}

/* Intro paragraph */
#popmake-1693 .wpcf7 form > p:first-of-type {
  font-size: 13px !important;
  color: #64748b !important;
  margin-bottom: 18px !important;
  line-height: 1.6 !important;
}

/* 2-column layout — matches your div.row > div.col */
#popmake-1693 .wpcf7-form div.row {
  display: flex !important;
  gap: 12px !important;
  margin-bottom: 0 !important;
}
#popmake-1693 .wpcf7-form div.row > div.col {
  flex: 1 !important;
  min-width: 0 !important;
}
#popmake-1693 .wpcf7-form div.row > div.col > p {
  margin: 0 0 12px !important;
}

/* ALL inputs — clean white */
#popmake-1693 .wpcf7-form input:not([type=submit]):not([type=hidden]):not([type=checkbox]):not([type=radio]),
#popmake-1693 .wpcf7-form select,
#popmake-1693 .wpcf7-form textarea {
  display: block !important;
  width: 100% !important;
  padding: 12px 14px !important;
  border-radius: 10px !important;
  border: 1.5px solid #e2e8f0 !important;
  background: #f8fafc !important;
  background-color: #f8fafc !important;
  color: #0f172a !important;
  font-size: 14px !important;
  height: auto !important;
  min-height: 46px !important;
  margin: 0 0 12px !important;
  box-shadow: none !important;
  outline: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  font-family: inherit !important;
}

/* Placeholder */
#popmake-1693 .wpcf7-form input::placeholder,
#popmake-1693 .wpcf7-form textarea::placeholder {
  color: #94a3b8 !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #94a3b8 !important;
}

/* Focus */
#popmake-1693 .wpcf7-form input:focus:not([type=submit]):not([type=hidden]),
#popmake-1693 .wpcf7-form select:focus,
#popmake-1693 .wpcf7-form textarea:focus {
  border-color: #2563eb !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12) !important;
}

/* Textarea */
#popmake-1693 .wpcf7-form textarea {
  height: 100px !important;
  min-height: 100px !important;
  resize: none !important;
}

/* Span wrappers */
#popmake-1693 .wpcf7-form span.wpcf7-form-control-wrap {
  display: block !important;
  width: 100% !important;
}

/* CF7 paragraph spacing */
#popmake-1693 .wpcf7-form > p {
  margin-bottom: 0 !important;
}

/* SUBMIT BUTTON — blue, kills orange/gold */
#popmake-1693 .wpcf7-form input[type=submit],
#popmake-1693 .wpcf7-form .wpcf7-submit,
#popmake-1693 input[type=submit] {
  display: block !important;
  width: 100% !important;
  height: 52px !important;
  padding: 0 20px !important;
  background: #1e3a8a !important;
  background-image: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  margin-top: 6px !important;
  box-shadow: 0 4px 20px rgba(37,99,235,0.3) !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  transform: none !important;
  border-radius: 50px !important;
}

/* Close button */
#popmake-1693 .pum-close {
  background: #f1f5f9 !important;
  color: #475569 !important;
  border-radius: 50% !important;
  width: 32px !important;
  height: 32px !important;
  font-size: 14px !important;
  line-height: 32px !important;
  text-align: center !important;
  top: 12px !important;
  right: 12px !important;
  border: none !important;
  padding: 0 !important;
  opacity: 1 !important;
}

/* Overlay */
.pum-overlay {
  background: rgba(0,0,0,0.65) !important;
}

/* Mobile */
@media (max-width: 600px) {
  #popmake-1693 .wpcf7-form div.row {
    flex-direction: column !important;
    gap: 0 !important;
  }
  #popmake-1693 .wpcf7 {
    padding: 20px 16px !important;
  }
}
/* =============================================
   POPUP #2735 — Hire Experts
   ============================================= */

#popmake-2735,
#popmake-2735 * {
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  box-sizing: border-box !important;
}
#popmake-2735.pum-container {
  max-width: 580px !important;
  width: 92% !important;
  border-radius: 20px !important;
  padding: 0 !important;
  background: #ffffff !important;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35) !important;
  overflow: hidden !important;
}
#popmake-2735 .pum-content {
  padding: 0 !important;
  background: #fff !important;
}
#popmake-2735 .pum-content::before {
  content: '' !important;
  display: block !important;
  height: 4px !important;
  background: linear-gradient(90deg, #1e3a8a, #2563eb, #38bdf8) !important;
  width: 100% !important;
}
#popmake-2735 .wpcf7 {
  padding: 26px 28px 22px !important;
  background: #fff !important;
}

/* Title */
#popmake-2735 .wpcf7 h2,
#popmake-2735 .wpcf7 > div > h2,
#popmake-2735 .wpcf7 > form > h2,
#popmake-2735 .wpcf7 form h2 {
  display: block !important;
  color: #0f172a !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin: 0 0 6px !important;
  -webkit-text-fill-color: #0f172a !important;
}

/* Intro paragraph */
#popmake-2735 .wpcf7 form > p:first-of-type {
  font-size: 13px !important;
  color: #64748b !important;
  margin-bottom: 18px !important;
  line-height: 1.6 !important;
}

/* 2-column rows */
#popmake-2735 .wpcf7-form div.row {
  display: flex !important;
  gap: 12px !important;
  margin-bottom: 0 !important;
}
#popmake-2735 .wpcf7-form div.row > p {
  flex: 1 !important;
  min-width: 0 !important;
  margin: 0 0 12px !important;
}

/* All inputs, select, textarea */
#popmake-2735 .wpcf7-form input:not([type=submit]):not([type=hidden]):not([type=checkbox]):not([type=radio]),
#popmake-2735 .wpcf7-form select,
#popmake-2735 .wpcf7-form textarea {
  display: block !important;
  width: 100% !important;
  padding: 12px 14px !important;
  border-radius: 10px !important;
  border: 1.5px solid #e2e8f0 !important;
  background: #f8fafc !important;
  background-color: #f8fafc !important;
  color: #0f172a !important;
  font-size: 14px !important;
  height: auto !important;
  min-height: 46px !important;
  margin: 0 0 12px !important;
  box-shadow: none !important;
  outline: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  font-family: inherit !important;
}

/* Select arrow */
#popmake-2735 .wpcf7-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 36px !important;
}

/* Placeholder */
#popmake-2735 .wpcf7-form input::placeholder,
#popmake-2735 .wpcf7-form textarea::placeholder {
  color: #94a3b8 !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #94a3b8 !important;
}

/* Focus */
#popmake-2735 .wpcf7-form input:focus:not([type=submit]):not([type=hidden]),
#popmake-2735 .wpcf7-form select:focus,
#popmake-2735 .wpcf7-form textarea:focus {
  border-color: #2563eb !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12) !important;
}

/* Textarea */
#popmake-2735 .wpcf7-form textarea {
  height: 90px !important;
  min-height: 90px !important;
  resize: none !important;
}

/* Span wrappers */
#popmake-2735 .wpcf7-form span.wpcf7-form-control-wrap {
  display: block !important;
  width: 100% !important;
}

/* Submit button */
#popmake-2735 .wpcf7-form input[type=submit],
#popmake-2735 .wpcf7-form .wpcf7-submit,
#popmake-2735 input[type=submit] {
  display: block !important;
  width: 100% !important;
  height: 52px !important;
  padding: 0 20px !important;
  background: #1e3a8a !important;
  background-image: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  margin-top: 6px !important;
  box-shadow: 0 4px 20px rgba(37,99,235,0.3) !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  transform: none !important;
}

/* Close button */
#popmake-2735 .pum-close {
  background: #f1f5f9 !important;
  color: #475569 !important;
  border-radius: 50% !important;
  width: 32px !important;
  height: 32px !important;
  font-size: 14px !important;
  line-height: 32px !important;
  text-align: center !important;
  top: 12px !important;
  right: 12px !important;
  border: none !important;
  opacity: 1 !important;
}

/* Mobile */
@media (max-width: 600px) {
  #popmake-2735 .wpcf7-form div.row {
    flex-direction: column !important;
    gap: 0 !important;
  }
  #popmake-2735 .wpcf7 {
    padding: 20px 16px !important;
  }
}
/* ===== CF7 SUBMIT LOADING STATE ===== */
.wpcf7-submit.loading {
  position: relative !important;
  color: transparent !important;
  pointer-events: none !important;
  opacity: 0.85 !important;
}
.wpcf7-submit.loading::after {
  content: '' !important;
  position: absolute !important;
  width: 20px !important;
  height: 20px !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  border: 3px solid rgba(255,255,255,0.3) !important;
  border-top-color: #ffffff !important;
  border-radius: 50% !important;
  animation: cf7-spin 0.7s linear infinite !important;
}
@keyframes cf7-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
