/* ═══════════════════════════════════════════════════
   Compton Services — theme.css
   Full stylesheet for the WordPress theme.
═══════════════════════════════════════════════════ */

:root {
  --cs-blue:       #29ABE2;
  --cs-blue-dark:  #1a8bbf;
  --cs-blue-light: #e8f7fd;
  --cs-black:      #0D0D0D;
  --cs-dark:       #141414;
  --cs-dark2:      #1a1a1a;
  --cs-mid:        #2a2a2a;
  --cs-white:      #ffffff;
  --cs-muted:      #8a9bb0;
  --cs-border:     rgba(41,171,226,0.15);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--cs-black); color: var(--cs-white); font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cs-blue); }

/* ── NAV ───────────────────────────────────────── */
nav {
  background: rgba(13,13,13,0.97);
  border-bottom: 1px solid var(--cs-border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo svg, .nav-logo img { width: 44px; height: 44px; }
.nav-brand { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 22px; letter-spacing: 2px; color: var(--cs-white); text-transform: uppercase; }
.nav-brand-sub { font-size: 10px; letter-spacing: 4px; color: var(--cs-blue); text-transform: uppercase; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-menu-list { list-style: none; display: flex; gap: 4px; }
.nav-menu-list li a { text-decoration: none; color: var(--cs-muted); font-size: 13px; font-weight: 500; padding: 8px 13px; border-radius: 6px; transition: all 0.2s; display: block; }
.nav-menu-list li a:hover, .nav-menu-list li.current-menu-item a { color: var(--cs-white); background: rgba(41,171,226,0.08); }
.nav-cta { display: flex; gap: 8px; align-items: center; }
.btn-portal { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 6px; font-size: 12px; font-weight: 600; text-decoration: none; border: 1px solid var(--cs-border); color: var(--cs-muted); transition: all 0.2s; }
.btn-portal:hover { border-color: var(--cs-blue); color: var(--cs-blue); background: rgba(41,171,226,0.06); }
.btn-portal svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.btn-nav-primary { padding: 9px 20px; background: var(--cs-blue); color: var(--cs-black); border-radius: 6px; font-size: 13px; font-weight: 700; text-decoration: none; transition: all 0.2s; }
.btn-nav-primary:hover { background: var(--cs-blue-dark); color: var(--cs-white); }
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-mobile-toggle span { width: 24px; height: 2px; background: var(--cs-white); border-radius: 2px; transition: all 0.3s; display: block; }
.nav-mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ───────────────────────────────────────── */
.hero { background: var(--cs-dark); padding: 90px 60px 80px; position: relative; overflow: hidden; }
.hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(41,171,226,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(41,171,226,0.04) 1px,transparent 1px); background-size: 48px 48px; pointer-events: none; }
.hero-glow { position: absolute; top: -80px; right: -80px; width: 500px; height: 500px; background: radial-gradient(circle,rgba(41,171,226,0.08) 0%,transparent 65%); pointer-events: none; }
.hero-content { position: relative; max-width: 680px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px 5px 8px; background: rgba(41,171,226,0.1); border: 1px solid rgba(41,171,226,0.25); border-radius: 100px; font-size: 11px; font-weight: 600; color: var(--cs-blue); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; }
.dot { width: 6px; height: 6px; background: var(--cs-blue); border-radius: 50%; display: inline-block; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 68px; line-height: 1; letter-spacing: -0.5px; text-transform: uppercase; margin-bottom: 20px; }
.hero h1 span { color: var(--cs-blue); }
.hero p { font-size: 17px; color: var(--cs-muted); max-width: 520px; margin-bottom: 36px; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn-primary { padding: 14px 28px; background: var(--cs-blue); color: var(--cs-black); border-radius: 8px; font-weight: 700; font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; }
.btn-primary svg { width: 16px; height: 16px; }
.btn-primary:hover { background: var(--cs-blue-dark); color: var(--cs-white); transform: translateY(-1px); }
.btn-primary.btn-whatsapp { background: #25D366; }
.btn-primary.btn-whatsapp svg { fill: #fff; }
.btn-primary.btn-whatsapp:hover { background: #1da851; }
.btn-secondary { padding: 14px 28px; background: transparent; color: var(--cs-white); border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; font-weight: 600; font-size: 14px; text-decoration: none; transition: all 0.2s; }
.btn-secondary:hover { border-color: var(--cs-blue); color: var(--cs-blue); }
.hero-stats { display: grid; grid-template-columns: repeat(4,auto); gap: 16px 48px; margin-top: 52px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.07); }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 36px; color: var(--cs-blue); letter-spacing: -1px; }
.stat-label { font-size: 12px; color: var(--cs-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* ── PORTALS BAND ──────────────────────────────── */
.portals-band { background: rgba(41,171,226,0.07); border-top: 1px solid var(--cs-border); border-bottom: 1px solid var(--cs-border); padding: 16px 60px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.portals-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--cs-muted); margin-right: 4px; flex-shrink: 0; }
.portals-hint { font-size: 12px; color: var(--cs-muted); margin-left: auto; }
.portal-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 6px; font-size: 13px; font-weight: 600; text-decoration: none; border: 1px solid var(--cs-border); color: var(--cs-white); background: rgba(41,171,226,0.05); transition: all 0.2s; height: 42px; white-space: nowrap; }
.portal-btn:hover { background: var(--cs-blue); color: var(--cs-black); border-color: var(--cs-blue); }
.portal-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.portal-btn .badge { font-size: 10px; background: rgba(41,171,226,0.2); color: var(--cs-blue); padding: 2px 7px; border-radius: 20px; font-weight: 700; }
.portal-link { color: var(--cs-blue) !important; }

/* ── SECTIONS (shared) ─────────────────────────── */
.section { padding: 80px 60px; }
.section-dark { background: var(--cs-dark); }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--cs-blue); margin-bottom: 10px; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 44px; text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 12px; }
.section-sub { font-size: 16px; color: var(--cs-muted); max-width: 520px; margin-bottom: 48px; }

/* ── SERVICES ──────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.service-card { background: var(--cs-dark2); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 28px; transition: all 0.25s; position: relative; overflow: hidden; }
.service-card::before { content:''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--cs-blue); opacity: 0; transition: opacity 0.25s; }
.service-card:hover { border-color: rgba(41,171,226,0.3); transform: translateY(-2px); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 48px; height: 48px; background: rgba(41,171,226,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.service-icon svg { width: 22px; height: 22px; stroke: var(--cs-blue); fill: none; stroke-width: 2; }
.service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--cs-muted); line-height: 1.65; margin-bottom: 16px; }
.service-link { font-size: 13px; font-weight: 600; color: var(--cs-blue); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.service-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── WHY US ────────────────────────────────────── */
.whyus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px; border: 1px solid rgba(255,255,255,0.05); border-radius: 10px; background: var(--cs-dark2); }
.feature-check { width: 28px; height: 28px; min-width: 28px; background: rgba(41,171,226,0.12); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.feature-check svg { width: 15px; height: 15px; stroke: var(--cs-blue); fill: none; stroke-width: 2.5; }
.feature-text h4 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.feature-text p { font-size: 13px; color: var(--cs-muted); line-height: 1.5; }
.whyus-visual { background: var(--cs-dark2); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 32px; }
.visual-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--cs-muted); margin-bottom: 20px; }
.metric-row { display: flex; flex-direction: column; gap: 14px; }
.metric-top { display: flex; justify-content: space-between; margin-bottom: 6px; }
.metric-name { font-size: 13px; color: var(--cs-muted); }
.metric-val { font-size: 13px; font-weight: 700; color: var(--cs-white); }
.metric-bar { height: 6px; background: rgba(255,255,255,0.07); border-radius: 4px; overflow: hidden; }
.metric-fill { height: 100%; background: var(--cs-blue); border-radius: 4px; }
.whyus-locations { margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.06); }
.locations-label { font-size: 12px; color: var(--cs-muted); }
.locations-list { font-size: 15px; font-weight: 600; margin-top: 4px; }

/* ── TESTIMONIALS ──────────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.testimonial-card { background: var(--cs-dark2); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 24px; }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star { width: 14px; height: 14px; fill: var(--cs-blue); }
.testimonial-card blockquote { font-size: 14px; color: var(--cs-muted); line-height: 1.65; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(41,171,226,0.15); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--cs-blue); }
.author-name { font-size: 13px; font-weight: 600; }
.author-loc { font-size: 12px; color: var(--cs-muted); }

/* ── WHATSAPP BAND ─────────────────────────────── */
.wa-band { background: linear-gradient(135deg,#075e54 0%,#128c7e 60%,#25d366 100%); padding: 28px 60px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.wa-band-left { display: flex; align-items: center; gap: 18px; }
.wa-band-icon { width: 52px; height: 52px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-band-icon svg { width: 28px; height: 28px; fill: #fff; }
.wa-band-text h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.wa-band-text p { font-size: 13px; color: rgba(255,255,255,0.8); }
.wa-band-btn { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: #075e54; font-weight: 700; font-size: 14px; padding: 12px 24px; border-radius: 10px; text-decoration: none; transition: all 0.2s; white-space: nowrap; }
.wa-band-btn:hover { background: #f0fff4; transform: translateY(-2px); }
.wa-band-btn svg { width: 20px; height: 20px; fill: #25D366; }

/* ── COVERAGE ──────────────────────────────────── */
.coverage-section { background: var(--cs-dark2); }
.coverage-intro { max-width: 680px; margin: 0 auto 0; text-align: center; }
.coverage-intro .section-sub { margin: 0 auto 40px; }
.district-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 16px; margin-bottom: 36px; }
.district-card { background: var(--cs-mid); border: 1px solid var(--cs-border); border-radius: 12px; padding: 18px 20px; transition: border-color 0.2s; }
.district-card:hover { border-color: rgba(41,171,226,0.4); }
.district-name { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; color: var(--cs-blue); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.district-name svg { width: 13px; height: 13px; stroke: var(--cs-blue); fill: none; stroke-width: 2; }
.district-towns { font-size: 12px; color: var(--cs-muted); line-height: 1.7; }
.coverage-tagline { text-align: center; padding: 22px 28px; background: rgba(41,171,226,0.06); border: 1px solid rgba(41,171,226,0.2); border-radius: 12px; font-size: 14px; color: rgba(255,255,255,0.75); }
.coverage-tagline strong { color: var(--cs-blue); }

/* ── PRICING ───────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; margin-top: 40px; }
.pricing-card { background: var(--cs-dark2); border: 1px solid var(--cs-border); border-radius: 14px; padding: 32px 28px; position: relative; transition: border-color 0.2s, transform 0.2s; }
.pricing-card:hover { border-color: rgba(41,171,226,0.4); transform: translateY(-3px); }
.pricing-card.featured { border-color: var(--cs-blue); background: linear-gradient(135deg,rgba(41,171,226,0.07) 0%,var(--cs-dark2) 60%); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--cs-blue); color: var(--cs-black); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; }
.pricing-type { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--cs-blue); margin-bottom: 8px; }
.pricing-name { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; color: var(--cs-white); margin-bottom: 6px; }
.pricing-desc { font-size: 13px; color: var(--cs-muted); margin-bottom: 24px; line-height: 1.5; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.price-from { font-size: 12px; color: var(--cs-muted); margin-right: 2px; }
.price-amount { font-family: 'Barlow Condensed', sans-serif; font-size: 42px; font-weight: 900; color: var(--cs-white); line-height: 1; }
.price-unit { font-size: 13px; color: var(--cs-muted); }
.pricing-items { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.pricing-items li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: rgba(255,255,255,0.8); line-height: 1.4; }
.pricing-items li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; stroke: var(--cs-blue); fill: none; stroke-width: 2; }
.storage-tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 14px; }
.storage-tier { display: flex; justify-content: space-between; align-items: center; padding: 7px 10px; background: rgba(41,171,226,0.06); border: 1px solid rgba(41,171,226,0.15); border-radius: 6px; font-size: 12.5px; }
.tier-size { font-weight: 700; color: var(--cs-white); }
.tier-price { color: var(--cs-blue); font-weight: 600; }
.pricing-footnote { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--cs-muted); margin-bottom: 14px; padding: 8px 10px; background: rgba(255,255,255,0.03); border-radius: 0 6px 6px 0; border-left: 2px solid rgba(41,171,226,0.4); }
.pricing-footnote svg { width: 13px; height: 13px; flex-shrink: 0; stroke: var(--cs-blue); fill: none; }
.pricing-footnote.setup-fee { border-left-color: rgba(255,180,0,0.5); color: rgba(255,220,100,0.85); }
.pricing-footnote.setup-fee svg { stroke: rgba(255,220,100,0.85); }
.pricing-download { display: inline-flex; align-items: center; gap: 8px; width: 100%; justify-content: center; padding: 11px 20px; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; transition: all 0.2s; background: rgba(41,171,226,0.1); border: 1px solid rgba(41,171,226,0.3); color: var(--cs-blue); }
.pricing-download:hover { background: var(--cs-blue); color: var(--cs-black); border-color: var(--cs-blue); }
.pricing-download svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; }
.pricing-notes { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; }
.pricing-note { display: flex; align-items: flex-start; gap: 10px; padding: 14px 18px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; font-size: 13px; color: var(--cs-muted); line-height: 1.5; }
.pricing-note svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; stroke: var(--cs-blue); fill: none; }
.pricing-note strong { color: var(--cs-white); }

/* ── PORTFOLIO ─────────────────────────────────── */
.portfolio-filters { display: flex; gap: 8px; margin-bottom: 36px; flex-wrap: wrap; justify-content: center; }
.pf-filter { padding: 8px 20px; border-radius: 8px; font-size: 13px; font-weight: 600; border: 1px solid var(--cs-border); background: transparent; color: var(--cs-muted); cursor: pointer; transition: all 0.2s; }
.pf-filter.active, .pf-filter:hover { background: var(--cs-blue); border-color: var(--cs-blue); color: var(--cs-black); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(320px,1fr)); gap: 22px; }
.portfolio-card { background: var(--cs-dark2); border: 1px solid var(--cs-border); border-radius: 14px; overflow: hidden; transition: all 0.2s; }
.portfolio-card:hover { border-color: rgba(41,171,226,0.45); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.portfolio-thumb { width: 100%; height: 200px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.portfolio-thumb.web      { background: linear-gradient(135deg,#0d1f35 0%,#1a3a5c 100%); }
.portfolio-thumb.ict      { background: linear-gradient(135deg,#0d2b1a 0%,#1a4d2e 100%); }
.portfolio-thumb.network  { background: linear-gradient(135deg,#1f1035 0%,#3b1f5c 100%); }
.portfolio-thumb.security { background: linear-gradient(135deg,#2b1a0d 0%,#4d3010 100%); }
.portfolio-thumb-img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-thumb-mockup { width: 80%; height: 76%; background: rgba(255,255,255,0.06); border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; overflow: hidden; }
.mock-bar { height: 22px; background: rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; padding: 0 8px; gap: 5px; flex-shrink: 0; }
.mock-dot { width: 6px; height: 6px; border-radius: 50%; }
.mock-body { flex: 1; padding: 8px; display: flex; flex-direction: column; gap: 5px; }
.mock-line { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.08); }
.mock-line.accent { background: rgba(41,171,226,0.35); }
.mock-line.short { width: 60%; }
.mock-line.shorter { width: 40%; }
.portfolio-tag { position: absolute; top: 12px; right: 12px; background: rgba(13,13,13,0.85); color: var(--cs-blue); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; border: 1px solid rgba(41,171,226,0.3); }
.portfolio-body { padding: 20px 22px 22px; }
.portfolio-title { font-size: 17px; font-weight: 700; color: var(--cs-white); margin-bottom: 6px; }
.portfolio-desc { font-size: 13px; color: var(--cs-muted); line-height: 1.55; margin-bottom: 16px; }
.portfolio-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.ptag { font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 4px; background: rgba(41,171,226,0.1); border: 1px solid rgba(41,171,226,0.2); color: var(--cs-blue); }
.portfolio-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--cs-blue); text-decoration: none; transition: gap 0.2s; }
.portfolio-link:hover { gap: 10px; }
.portfolio-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.portfolio-placeholder { margin-top: 36px; padding: 22px 28px; border: 1px dashed rgba(41,171,226,0.25); border-radius: 12px; text-align: center; font-size: 13px; color: var(--cs-muted); }
.portfolio-placeholder strong { color: var(--cs-white); display: block; margin-bottom: 6px; font-size: 14px; }

/* ── DOCUMENTS ─────────────────────────────────── */
.docs-tabs { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.docs-tab { padding: 8px 20px; border-radius: 8px; font-size: 13px; font-weight: 600; border: 1px solid var(--cs-border); background: transparent; color: var(--cs-muted); cursor: pointer; transition: all 0.2s; }
.docs-tab.active, .docs-tab:hover { background: var(--cs-blue); border-color: var(--cs-blue); color: var(--cs-black); }
.docs-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 16px; }
.doc-card { background: var(--cs-dark2); border: 1px solid var(--cs-border); border-radius: 12px; padding: 20px 22px; display: flex; align-items: center; gap: 16px; text-decoration: none; transition: all 0.2s; }
.doc-card:hover { border-color: rgba(41,171,226,0.45); background: rgba(41,171,226,0.04); transform: translateX(3px); }
.doc-icon { width: 44px; height: 44px; background: rgba(41,171,226,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.doc-icon svg { width: 22px; height: 22px; stroke: var(--cs-blue); fill: none; stroke-width: 1.75; }
.doc-info { flex: 1; min-width: 0; }
.doc-name { font-size: 14px; font-weight: 600; color: var(--cs-white); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.doc-meta { font-size: 11.5px; color: var(--cs-muted); }
.doc-dl { width: 28px; height: 28px; background: rgba(41,171,226,0.08); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; }
.doc-card:hover .doc-dl { background: var(--cs-blue); }
.doc-dl svg { width: 14px; height: 14px; stroke: var(--cs-blue); fill: none; stroke-width: 2; transition: stroke 0.2s; }
.doc-card:hover .doc-dl svg { stroke: var(--cs-black); }
.docs-note { margin-top: 28px; padding: 16px 20px; background: rgba(41,171,226,0.05); border: 1px solid rgba(41,171,226,0.15); border-radius: 10px; font-size: 13px; color: var(--cs-muted); display: flex; align-items: flex-start; gap: 10px; }
.docs-note svg { width: 16px; height: 16px; stroke: var(--cs-blue); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 1px; }

/* ── CTA ───────────────────────────────────────── */
.cta-section { padding: 80px 60px; background: var(--cs-dark); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content:''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 300px; background: radial-gradient(ellipse,rgba(41,171,226,0.07) 0%,transparent 65%); pointer-events: none; }
.cta-section h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 52px; text-transform: uppercase; margin-bottom: 14px; position: relative; }
.cta-section h2 span { color: var(--cs-blue); }
.cta-section p { font-size: 16px; color: var(--cs-muted); margin-bottom: 32px; position: relative; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FOOTER ────────────────────────────────────── */
footer { background: #0a0a0a; border-top: 1px solid rgba(255,255,255,0.05); padding: 48px 60px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 13px; color: var(--cs-muted); margin-top: 14px; line-height: 1.7; max-width: 240px; }
.footer-logo-row { display: flex; align-items: center; gap: 10px; }
.footer-logo-row svg { width: 36px; height: 36px; }
.footer-logo-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 19px; letter-spacing: 2px; text-transform: uppercase; color: var(--cs-white); }
.footer-logo-services { font-size: 9px; letter-spacing: 3px; color: var(--cs-blue); text-transform: uppercase; font-weight: 600; display: block; }
.footer-contact-row { margin-top: 16px; display: flex; flex-direction: column; gap: 7px; }
.footer-contact-link { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--cs-muted); text-decoration: none; transition: color 0.2s; }
.footer-contact-link:hover { color: var(--cs-blue); }
.footer-contact-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--cs-muted); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cs-white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.seo-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; color: var(--cs-muted); border: 1px solid rgba(255,255,255,0.08); padding: 4px 10px; border-radius: 20px; }
.footer-bottom a { font-size: 12px; color: var(--cs-blue); text-decoration: none; }

/* ── WHATSAPP FLOAT ────────────────────────────── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.wa-bubble { background: #25D366; border-radius: 50%; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.45); cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; position: relative; }
.wa-bubble:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.wa-bubble svg { width: 32px; height: 32px; fill: #fff; }
.wa-tooltip { background: var(--cs-dark2); border: 1px solid rgba(37,211,102,0.3); color: var(--cs-white); font-size: 13px; font-weight: 500; padding: 8px 14px; border-radius: 8px; white-space: nowrap; opacity: 0; transform: translateY(6px); transition: opacity 0.25s, transform 0.25s; pointer-events: none; }
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateY(0); }
.wa-pulse { position: absolute; top: 0; right: 0; width: 14px; height: 14px; background: #25D366; border-radius: 50%; border: 2px solid var(--cs-black); animation: wapulse 2s infinite; }
@keyframes wapulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.5);opacity:0.4} }

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; height: 62px; }
  .nav-links { display: none; position: absolute; top: 62px; left: 0; right: 0; background: rgba(13,13,13,0.98); padding: 16px 20px; flex-direction: column; gap: 4px; border-bottom: 1px solid var(--cs-border); }
  .nav-links.open { display: flex; }
  .nav-menu-list { flex-direction: column; }
  .nav-cta .btn-portal { display: none; }
  .nav-mobile-toggle { display: flex; }
  .hero { padding: 52px 20px 48px; }
  .hero h1 { font-size: 46px; }
  .hero p { font-size: 15px; }
  .hero-stats { grid-template-columns: repeat(2, auto); gap: 12px 32px; margin-top: 36px; padding-top: 28px; }
  .stat-num { font-size: 28px; }
  .portals-band { padding: 12px 20px; gap: 8px; }
  .portals-label { width: 100%; margin-bottom: 2px; }
  .portals-hint { display: none; }
  .portal-btn { flex: 1; justify-content: center; font-size: 12px; padding: 9px 10px; height: 40px; }
  .section { padding: 52px 20px; }
  .section-title { font-size: 34px; }
  .services-grid { grid-template-columns: 1fr; }
  .whyus-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .wa-band { padding: 20px; flex-direction: column; align-items: flex-start; gap: 14px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 52px 20px; }
  .cta-section h2 { font-size: 38px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  footer { padding: 36px 20px 20px; }
  .district-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 38px; }
  .footer-grid { grid-template-columns: 1fr; }
  .district-grid { grid-template-columns: 1fr; }
  .storage-tiers { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2, auto); gap: 10px 24px; }
}

/* ═══════════════════════════════════════════════════
   INNER PAGES — page.php, single.php, portfolio single
═══════════════════════════════════════════════════ */

/* ── Page Hero ─────────────────────────────────── */
.page-hero {
  background: var(--cs-dark);
  padding: 60px 60px 52px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--cs-border);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(41,171,226,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,171,226,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.page-hero-content { position: relative; max-width: 800px; }

/* ── Breadcrumb ────────────────────────────────── */
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--cs-muted);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.page-breadcrumb a { color: var(--cs-muted); text-decoration: none; transition: color 0.2s; }
.page-breadcrumb a:hover { color: var(--cs-blue); }
.page-breadcrumb span:last-child { color: var(--cs-blue); }

/* ── Page Title ────────────────────────────────── */
.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 52px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1;
  color: var(--cs-white);
  margin-bottom: 0;
}
.page-hero-sub {
  font-size: 16px;
  color: var(--cs-muted);
  margin-top: 14px;
  max-width: 560px;
  line-height: 1.65;
}
.project-type-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cs-blue);
  margin-bottom: 10px;
}

/* ── Page Layout ───────────────────────────────── */
.page-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 40px 72px;
}
.page-content { width: 100%; }

/* ── Content Styles (cs-content) ──────────────── */
.cs-content { color: rgba(255,255,255,0.85); line-height: 1.8; font-size: 15px; }

.cs-content h1,
.cs-content h2,
.cs-content h3,
.cs-content h4,
.cs-content h5,
.cs-content h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--cs-white);
  margin-top: 2em;
  margin-bottom: 0.5em;
  line-height: 1.1;
}
.cs-content h1 { font-size: 42px; }
.cs-content h2 { font-size: 34px; }
.cs-content h3 { font-size: 26px; }
.cs-content h4 { font-size: 20px; }

.cs-content p { margin-bottom: 1.2em; }
.cs-content p:last-child { margin-bottom: 0; }

.cs-content a { color: var(--cs-blue); text-decoration: underline; text-underline-offset: 3px; }
.cs-content a:hover { color: var(--cs-blue-dark); }

.cs-content strong, .cs-content b { font-weight: 700; color: var(--cs-white); }
.cs-content em, .cs-content i { font-style: italic; }

.cs-content ul,
.cs-content ol {
  padding-left: 0;
  margin-bottom: 1.4em;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cs-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 0;
}
.cs-content ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cs-blue);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 9px;
}
.cs-content ol {
  counter-reset: cs-ol;
}
.cs-content ol li {
  counter-increment: cs-ol;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cs-content ol li::before {
  content: counter(cs-ol);
  width: 22px;
  height: 22px;
  background: rgba(41,171,226,0.1);
  border: 1px solid rgba(41,171,226,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--cs-blue);
  flex-shrink: 0;
  margin-top: 3px;
}

.cs-content blockquote {
  border-left: 3px solid var(--cs-blue);
  padding: 16px 20px;
  margin: 24px 0;
  background: rgba(41,171,226,0.05);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--cs-muted);
  font-size: 15px;
  line-height: 1.7;
}
.cs-content blockquote p { margin-bottom: 0; }

.cs-content hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 36px 0;
}

.cs-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.4em;
  font-size: 14px;
}
.cs-content table th {
  background: rgba(41,171,226,0.1);
  color: var(--cs-blue);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(41,171,226,0.2);
}
.cs-content table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.8);
  vertical-align: top;
}
.cs-content table tr:last-child td { border-bottom: none; }
.cs-content table tr:hover td { background: rgba(255,255,255,0.02); }

.cs-content img {
  border-radius: 10px;
  margin: 20px 0;
  max-width: 100%;
  height: auto;
}

.cs-content code {
  background: rgba(41,171,226,0.08);
  border: 1px solid rgba(41,171,226,0.15);
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 13px;
  color: var(--cs-blue);
  font-family: 'Courier New', monospace;
}
.cs-content pre {
  background: var(--cs-dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 20px 24px;
  overflow-x: auto;
  margin-bottom: 1.4em;
}
.cs-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: rgba(255,255,255,0.8);
}

/* ── Info / Notice Boxes (Gutenberg groups) ────── */
.cs-content .wp-block-group.is-style-notice,
.cs-content .notice-box {
  background: rgba(41,171,226,0.06);
  border: 1px solid rgba(41,171,226,0.2);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 24px 0;
}
.cs-content .wp-block-group.is-style-warning {
  background: rgba(255,180,0,0.06);
  border-color: rgba(255,180,0,0.25);
}

/* ── Post Meta ─────────────────────────────────── */
.post-meta-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.post-date {
  font-size: 12px;
  color: var(--cs-muted);
  font-weight: 500;
}
.post-cats a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cs-blue);
  text-decoration: none;
  background: rgba(41,171,226,0.1);
  border: 1px solid rgba(41,171,226,0.2);
  padding: 3px 9px;
  border-radius: 4px;
}

/* ── Featured Image ────────────────────────────── */
.post-featured-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 36px;
}
.post-featured-image img { width: 100%; height: auto; display: block; }

/* ── Post Navigation ───────────────────────────── */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.post-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--cs-dark2);
  border: 1px solid var(--cs-border);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
}
.post-nav-link:hover { border-color: rgba(41,171,226,0.4); background: rgba(41,171,226,0.04); }
.post-nav-link svg { width: 16px; height: 16px; flex-shrink: 0; stroke: var(--cs-blue); }
.post-nav-link div { min-width: 0; }
.post-nav-link span { display: block; font-size: 11px; color: var(--cs-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.post-nav-link strong { display: block; font-size: 13px; color: var(--cs-white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.post-nav-next { justify-content: flex-end; text-align: right; }

/* ── Page CTA Strip ────────────────────────────── */
.page-cta-strip {
  background: var(--cs-dark2);
  border-top: 1px solid var(--cs-border);
  border-bottom: 1px solid var(--cs-border);
  padding: 28px 60px;
}
.page-cta-strip-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.page-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-cta-text strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--cs-white);
}
.page-cta-text span {
  font-size: 13px;
  color: var(--cs-muted);
}
.page-cta-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Responsive inner pages ────────────────────── */
@media (max-width: 768px) {
  .page-hero { padding: 40px 20px 36px; }
  .page-hero-title { font-size: 36px; }
  .page-wrap { padding: 36px 20px 52px; }
  .page-cta-strip { padding: 24px 20px; }
  .page-cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-next { text-align: left; justify-content: flex-start; }
}

/* ── Status badge & subdomain footer ───────────── */
.badge.status-ok {
  background: rgba(37,211,102,0.15);
  color: #25D366;
}


/* ═══════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════ */

.contact-section { background: var(--cs-dark); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

/* ── Left col ──────────────────────────────────── */
.contact-intro {
  font-size: 15px;
  color: var(--cs-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 400px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--cs-dark2);
  border: 1px solid var(--cs-border);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
}
.contact-method:hover {
  border-color: rgba(41,171,226,0.45);
  background: rgba(41,171,226,0.04);
  transform: translateX(4px);
}
.contact-method-wa:hover {
  border-color: rgba(37,211,102,0.4);
  background: rgba(37,211,102,0.04);
}

.contact-method-icon {
  width: 42px;
  height: 42px;
  background: rgba(41,171,226,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-icon svg { width: 20px; height: 20px; stroke: var(--cs-blue); }
.contact-method-icon-wa { background: rgba(37,211,102,0.1); }
.contact-method-icon-wa svg { fill: #25D366; stroke: none; width: 22px; height: 22px; }

.contact-method-text { flex: 1; min-width: 0; }
.contact-method-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cs-muted);
  margin-bottom: 2px;
}
.contact-method-text strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--cs-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-method-arrow {
  width: 14px;
  height: 14px;
  stroke: var(--cs-muted);
  flex-shrink: 0;
  transition: stroke 0.2s, transform 0.2s;
}
.contact-method:hover .contact-method-arrow {
  stroke: var(--cs-blue);
  transform: translateX(3px);
}

.contact-response-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--cs-muted);
  line-height: 1.5;
  padding: 12px 14px;
  background: rgba(41,171,226,0.04);
  border: 1px solid rgba(41,171,226,0.12);
  border-radius: 8px;
}
.contact-response-note svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--cs-blue);
  margin-top: 1px;
}

/* ── Right col — form card ─────────────────────── */
.contact-form-card {
  background: var(--cs-dark2);
  border: 1px solid var(--cs-border);
  border-radius: 16px;
  padding: 36px 32px;
}
.contact-form-header { margin-bottom: 28px; }
.contact-form-header h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cs-white);
  margin-bottom: 6px;
}
.contact-form-header p { font-size: 13px; color: var(--cs-muted); }

/* ── Form fields ───────────────────────────────── */
.cs-contact-form { display: flex; flex-direction: column; gap: 16px; }

.cf-row { display: flex; gap: 14px; }
.cf-row-2 > .cf-field { flex: 1; min-width: 0; }

.cf-field { display: flex; flex-direction: column; gap: 6px; }

.cf-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--cs-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
}
.cf-required { color: var(--cs-blue); font-size: 14px; line-height: 1; }
.cf-optional { font-size: 10px; color: rgba(138,155,176,0.6); font-weight: 400; text-transform: none; letter-spacing: 0; }

.cf-field input[type="text"],
.cf-field input[type="email"],
.cf-field input[type="tel"],
.cf-field select,
.cf-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: 'Barlow', sans-serif;
  color: var(--cs-white);
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: rgba(138,155,176,0.5); }

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: rgba(41,171,226,0.5);
  background: rgba(41,171,226,0.04);
}
.cf-field input.cf-error-field,
.cf-field select.cf-error-field,
.cf-field textarea.cf-error-field {
  border-color: rgba(220,60,60,0.5);
}

.cf-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9bb0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.cf-field select option { background: var(--cs-dark2); color: var(--cs-white); }

.cf-field textarea { resize: vertical; min-height: 120px; }

/* Checkbox consent */
.cf-consent { margin-top: 4px; }
.cf-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 12.5px;
  color: var(--cs-muted);
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.cf-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  accent-color: var(--cs-blue);
  padding: 0;
}

/* Submit button */
.cf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 24px;
  background: var(--cs-blue);
  color: var(--cs-black);
  border: none;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 4px;
}
.cf-submit:hover { background: var(--cs-blue-dark); color: var(--cs-white); transform: translateY(-1px); }
.cf-submit:active { transform: translateY(0); }
.cf-submit svg { width: 16px; height: 16px; }
.cf-submit-text,
.cf-submit-sending { display: inline-flex; align-items: center; gap: 8px; }
.cf-spin { animation: cfspin 0.8s linear infinite; }
@keyframes cfspin { to { transform: rotate(360deg); } }

/* Notices */
.cf-notice {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 4px;
}
.cf-notice svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; }
.cf-success { background: rgba(37,211,102,0.08); border: 1px solid rgba(37,211,102,0.25); color: #25D366; }
.cf-success svg { stroke: #25D366; }
.cf-error { background: rgba(220,60,60,0.08); border: 1px solid rgba(220,60,60,0.25); color: #f87171; }
.cf-error svg { stroke: #f87171; }

/* CF7 setup note */
.cf7-setup-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-top: 16px;
  font-size: 11.5px;
  color: rgba(138,155,176,0.6);
  line-height: 1.5;
  padding: 10px 12px;
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 7px;
}
.cf7-setup-note svg { width: 13px; height: 13px; flex-shrink: 0; stroke: rgba(138,155,176,0.5); margin-top: 1px; }

/* ── Contact Form 7 overrides ──────────────────── */
.wpcf7-form { display: flex; flex-direction: column; gap: 16px; }
.wpcf7-form p { margin: 0; }
.wpcf7-form label { font-size: 12px; font-weight: 600; color: var(--cs-muted); letter-spacing: 0.5px; text-transform: uppercase; display: block; margin-bottom: 6px; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 8px !important;
  padding: 11px 14px !important;
  font-size: 14px !important;
  font-family: 'Barlow', sans-serif !important;
  color: var(--cs-white) !important;
  width: 100% !important;
  transition: border-color 0.2s !important;
  outline: none !important;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: rgba(41,171,226,0.5) !important;
  background: rgba(41,171,226,0.04) !important;
}
.wpcf7-form input[type="submit"] {
  background: var(--cs-blue) !important;
  color: var(--cs-black) !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 13px 24px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: all 0.2s !important;
}
.wpcf7-form input[type="submit"]:hover { background: var(--cs-blue-dark) !important; color: var(--cs-white) !important; }
.wpcf7-response-output { border-radius: 8px !important; padding: 12px 14px !important; font-size: 13px !important; border: 1px solid !important; margin-top: 8px !important; }
.wpcf7-mail-sent-ok { background: rgba(37,211,102,0.08) !important; border-color: rgba(37,211,102,0.3) !important; color: #25D366 !important; }
.wpcf7-validation-errors, .wpcf7-mail-sent-ng { background: rgba(220,60,60,0.08) !important; border-color: rgba(220,60,60,0.3) !important; color: #f87171 !important; }
.wpcf7-not-valid-tip { color: #f87171 !important; font-size: 11px !important; margin-top: 4px !important; }

/* ── Responsive contact ────────────────────────── */
@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .contact-intro { max-width: 100%; }
}
@media (max-width: 600px) {
  .cf-row-2 { flex-direction: column; }
  .contact-form-card { padding: 24px 20px; }
}
