/*
Theme Name: NField One
Theme URI: https://nfieldone.com
Author: NField One
Author URI: https://nfieldone.com
Description: Professional call center business theme for NField One - Laredo, TX. Features Home, About Us, Services, Careers, and Contact Us pages with a modern navy and blue design.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary
License URI: https://nfieldone.com
Text Domain: nfieldone
Tags: business, call-center, professional, custom-colors, custom-logo, full-width-template, threaded-comments, translation-ready
*/

/* ===================================================
   NFIELD ONE WORDPRESS THEME
   17409 College Port Dr, Laredo, TX 78045
   (956) 723-8149
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --navy: #0A1628;
  --navy-mid: #132040;
  --blue: #1A4DCC;
  --blue-bright: #2E6EFF;
  --cyan: #00C4FF;
  --white: #FFFFFF;
  --off-white: #F4F7FF;
  --gray: #8A96B0;
  --gray-light: #E8EDF7;
  --gold: #F0A500;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --shadow: 0 8px 40px rgba(10,22,40,0.15);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ── NAVBAR ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(46,110,255,0.2);
  transition: var(--transition);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue-bright), var(--cyan));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; color: white; font-size: 18px;
  letter-spacing: -1px; flex-shrink: 0; position: relative; overflow: hidden;
}
.logo-icon::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15)); }
.logo-text { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: white; letter-spacing: -0.3px; }
.logo-text span { color: var(--cyan); }

/* WordPress nav menu */
.main-navigation { display: flex; align-items: center; }
.main-navigation ul { display: flex; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0; }
.main-navigation ul li a {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none; padding: 8px 16px; border-radius: 8px;
  transition: var(--transition); letter-spacing: 0.2px; display: block;
}
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a,
.main-navigation ul li.current-page-ancestor > a { color: white; background: rgba(46,110,255,0.2); }
.main-navigation ul li.menu-item-cta > a,
.main-navigation ul li:last-child > a {
  background: var(--blue-bright) !important; color: white !important; font-weight: 600 !important; padding: 10px 22px !important;
}
.main-navigation ul li.menu-item-cta > a:hover,
.main-navigation ul li:last-child > a:hover { background: var(--cyan) !important; transform: translateY(-1px); }

.nav-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: white; display: block; transition: var(--transition); border-radius: 2px; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 140px 40px 80px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, #0D2255 100%);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(46,110,255,0.3) 0%, transparent 70%); }
.hero-grid { position: absolute; inset: 0; opacity: 0.04; background-image: linear-gradient(var(--blue-bright) 1px, transparent 1px), linear-gradient(90deg, var(--blue-bright) 1px, transparent 1px); background-size: 60px 60px; }
.page-hero-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.eyebrow { display: inline-block; font-family: var(--font-body); font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); background: rgba(0,196,255,0.12); border: 1px solid rgba(0,196,255,0.3); border-radius: 100px; padding: 6px 18px; margin-bottom: 20px; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(36px, 6vw, 64px); font-weight: 800; color: white; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 20px; }
.page-hero h1 .accent { color: var(--cyan); }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto; }

/* ── CONTENT SECTIONS ── */
.section { padding: 100px 40px; }
.section-alt { background: var(--off-white); }
.container { max-width: 1280px; margin: 0 auto; }
.section-label { font-family: var(--font-body); font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 16px; display: block; }
.section-title { font-family: var(--font-head); font-size: clamp(28px, 4vw, 46px); font-weight: 800; color: var(--navy); line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px; }
.section-desc { font-size: 17px; color: var(--gray); max-width: 560px; line-height: 1.75; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  text-decoration: none; border-radius: 10px;
  padding: 14px 28px; transition: var(--transition); border: none; cursor: pointer;
}
.btn-primary { background: var(--blue-bright); color: white; }
.btn-primary:hover { background: #1857e0; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(46,110,255,0.4); color: white; }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; color: white; }
.btn-dark { background: var(--navy); color: white; }
.btn-dark:hover { background: var(--navy-mid); color: white; }

/* ── CARDS ── */
.card { background: white; border-radius: var(--radius); border: 1px solid var(--gray-light); padding: 36px; box-shadow: var(--shadow); transition: var(--transition); }
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(10,22,40,0.15); border-color: rgba(46,110,255,0.3); }

/* ── STATS BAR ── */
.stats-bar { background: var(--navy); padding: 60px 40px; }
.stats-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 48px; font-weight: 800; color: var(--cyan); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; }

/* ── FORMS ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--gray-light); border-radius: 10px;
  font-family: var(--font-body); font-size: 15px; color: var(--navy);
  background: white; transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue-bright); box-shadow: 0 0 0 4px rgba(46,110,255,0.1); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ── FOOTER ── */
.site-footer { background: var(--navy); color: white; padding: 80px 40px 40px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 16px; line-height: 1.75; max-width: 280px; }
.footer-col h4 { font-family: var(--font-head); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--cyan); margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--cyan); }
.footer-contact p { font-size: 14px; color: rgba(255,255,255,0.55); display: flex; gap: 10px; margin-bottom: 14px; line-height: 1.5; }
.footer-contact a { color: rgba(255,255,255,0.55); text-decoration: none; transition: var(--transition); }
.footer-contact a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ── FADE-IN ANIMATION ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── WORDPRESS DEFAULTS ── */
.wp-caption { max-width: 100%; }
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin: 1em auto; }
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-navigation ul { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy); padding: 20px; gap: 4px; }
  .main-navigation ul.toggled { display: flex; }
  .nav-toggle { display: flex; }
  .section { padding: 70px 24px; }
  .page-hero { padding: 120px 24px 60px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .nav-inner { padding: 0 24px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
}
