/*
Theme Name:  ProCargo USA
Theme URI:   https://procargo-usa.com
Author:      ProCargo Team
Author URI:  https://procargo-usa.com
Description: A professional, fully responsive WordPress theme for cargo and freight logistics companies. Features a sticky top-bar, mega dropdown navigation, mobile sidebar, hero section, and collapsible footer — all built with a bold USA-patriotic color palette.
Version:     1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: procargo
Tags:        cargo, logistics, freight, business, one-column, two-columns, custom-menu, custom-logo, featured-images, footer-widgets, full-width-template, responsive-layout, sticky-post, theme-options, threaded-comments, translation-ready
*/

/* ========================================================
   TABLE OF CONTENTS
   1.  CSS Variables
   2.  Reset & Base
   3.  Typography
   4.  Top Bar
   5.  Header
   6.  Navigation
   7.  Dropdown
   8.  Mobile Sidebar
   9.  Hero / Banner
   10. Content Area
   11. Widgets & Sidebar
   12. Footer
   13. Buttons
   14. Forms
   15. Responsive
   ======================================================== */

/* ── 1. CSS VARIABLES ─────────────────────────────────── */
:root {
  --pc-navy:      #0B1B2B;
  --pc-navy2:     #0F2540;
  --pc-navy3:     #0D1E30;
  --pc-red:       #C8102E;
  --pc-red-h:     #A50D26;
  --pc-gold:      #D4A92A;
  --pc-white:     #FFFFFF;
  --pc-off:       #F4F4F2;
  --pc-light:     #EEF0F4;
  --pc-muted:     #A8B4C0;
  --pc-text:      #2E3D4F;
  --pc-border:    rgba(255,255,255,0.10);
  --pc-shadow:    0 4px 32px rgba(11,27,43,0.40);
  --pc-radius:    6px;
  --pc-font-head: 'Barlow Condensed', sans-serif;
  --pc-font-body: 'Barlow', sans-serif;
  --pc-topbar-h:  42px;
  --pc-header-h:  80px;
  --pc-trans:     0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── 2. RESET & BASE ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--pc-font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--pc-text);
  background: var(--pc-off);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── 3. TYPOGRAPHY ────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--pc-font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--pc-navy);
}
h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ── 4. TOP BAR ───────────────────────────────────────── */
.pc-topbar {
  background: var(--pc-navy);
  border-bottom: 2px solid var(--pc-red);
  position: relative;
  z-index: 1001;
}
.pc-topbar-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--pc-topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pc-topbar-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.pc-topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--pc-muted);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: color var(--pc-trans);
}
.pc-topbar-item a {
  color: inherit;
  transition: color var(--pc-trans);
}
.pc-topbar-item a:hover,
.pc-topbar-item:hover { color: var(--pc-gold); }
.pc-topbar-item svg { flex-shrink: 0; opacity: 0.7; }
.pc-topbar-divider { width: 1px; height: 16px; background: var(--pc-border); }
.pc-topbar-right { display: flex; align-items: center; gap: 8px; }
.pc-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  border: 1px solid var(--pc-border);
  color: var(--pc-muted);
  transition: background var(--pc-trans), color var(--pc-trans), border-color var(--pc-trans);
}
.pc-social-link:hover { background: var(--pc-red); border-color: var(--pc-red); color: var(--pc-white); }

/* ── 5. HEADER ────────────────────────────────────────── */
.pc-header {
  background: var(--pc-navy2);
  box-shadow: var(--pc-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.pc-header.scrolled { box-shadow: 0 6px 40px rgba(0,0,0,0.55); }
.pc-header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--pc-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.pc-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.pc-logo-icon {
  width: 48px;
  height: 48px;
  background: var(--pc-red);
  border-radius: var(--pc-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  transition: background var(--pc-trans);
}
.pc-logo-icon::after {
  content: '';
  position: absolute;
  top: -8px; right: -8px;
  width: 24px; height: 24px;
  background: rgba(255,255,255,0.10);
  border-radius: 50%;
}
.pc-logo:hover .pc-logo-icon { background: var(--pc-red-h); }
.pc-logo img { height: 48px; width: auto; object-fit: contain; }
.pc-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.pc-logo-name {
  font-family: var(--pc-font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--pc-white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.pc-logo-name em { color: var(--pc-red); font-style: normal; }
.pc-logo-tagline {
  font-size: 10px;
  font-weight: 500;
  color: var(--pc-gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* CTA Button */
.pc-btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--pc-red);
  color: var(--pc-white);
  font-family: var(--pc-font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: var(--pc-radius);
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  transition: background var(--pc-trans), transform 0.15s, box-shadow var(--pc-trans);
  box-shadow: 0 4px 18px rgba(200,16,46,0.35);
}
.pc-btn-quote::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s;
}
.pc-btn-quote:hover {
  background: var(--pc-red-h);
  transform: translateY(-1px);
  box-shadow: 0 7px 24px rgba(200,16,46,0.45);
  color: var(--pc-white);
}
.pc-btn-quote:hover::before { transform: translateX(100%); }

/* Hamburger */
.pc-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 9px;
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  background: transparent;
  flex-shrink: 0;
  transition: background var(--pc-trans);
}
.pc-hamburger:hover { background: rgba(255,255,255,0.06); }
.pc-hamburger span {
  display: block;
  height: 2px;
  background: var(--pc-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.pc-hamburger span:nth-child(2) { width: 70%; }
.pc-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pc-hamburger.open span:nth-child(2) { opacity: 0; }
.pc-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 6. NAVIGATION ────────────────────────────────────── */
.pc-nav { display: flex; align-items: center; gap: 2px; }
.pc-nav ul { display: flex; align-items: center; gap: 2px; list-style: none; }
.pc-nav > ul > li { position: relative; }
.pc-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-family: var(--pc-font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--pc-muted);
  border-radius: 4px;
  white-space: nowrap;
  position: relative;
  transition: color var(--pc-trans);
}
.pc-nav > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--pc-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--pc-trans);
  border-radius: 2px;
}
.pc-nav > ul > li > a:hover { color: var(--pc-white); }
.pc-nav > ul > li > a:hover::after { transform: scaleX(1); }
.pc-nav > ul > li.current-menu-item > a,
.pc-nav > ul > li.current-menu-ancestor > a { color: var(--pc-white); }
.pc-nav > ul > li.current-menu-item > a::after,
.pc-nav > ul > li.current-menu-ancestor > a::after { transform: scaleX(1); background: var(--pc-red); }

/* Sub-menu arrow */
.pc-nav > ul > li.menu-item-has-children > a::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
  margin-left: 4px;
  order: 1;
}
.pc-nav > ul > li.menu-item-has-children:hover > a::before {
  transform: rotate(225deg) translateY(-2px);
}

/* ── 7. DROPDOWN ──────────────────────────────────────── */
.pc-nav ul ul {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  background: var(--pc-navy);
  border: 1px solid var(--pc-border);
  border-top: 3px solid var(--pc-red);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--pc-trans), visibility var(--pc-trans), transform var(--pc-trans);
  z-index: 100;
  list-style: none;
}
.pc-nav ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.pc-nav ul ul li { position: relative; }
.pc-nav ul ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--pc-muted);
  border-bottom: 1px solid var(--pc-border);
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
  position: relative;
}
.pc-nav ul ul li:last-child a { border-bottom: none; border-radius: 0 0 8px 8px; }
.pc-nav ul ul li a::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--pc-red);
  transform: scaleY(0);
  transition: transform 0.18s;
}
.pc-nav ul ul li a:hover { background: rgba(200,16,46,0.10); color: var(--pc-white); padding-left: 28px; }
.pc-nav ul ul li a:hover::before { transform: scaleY(1); }

/* ── 8. MOBILE SIDEBAR ────────────────────────────────── */
.pc-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s;
}
.pc-overlay.active { display: block; opacity: 1; }

.pc-sidebar {
  position: fixed;
  top: 0; right: -340px;
  width: 310px;
  height: 100%;
  background: var(--pc-navy2);
  z-index: 1200;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
}
.pc-sidebar.open { right: 0; }

.pc-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--pc-border);
  background: var(--pc-navy);
  flex-shrink: 0;
}
.pc-sidebar-logo {
  font-family: var(--pc-font-head);
  font-size: 19px;
  font-weight: 800;
  color: var(--pc-white);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pc-sidebar-logo span { color: var(--pc-red); }
.pc-sidebar-close {
  width: 34px; height: 34px;
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  color: var(--pc-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: background var(--pc-trans);
  background: transparent;
}
.pc-sidebar-close:hover { background: var(--pc-red); border-color: var(--pc-red); }

.pc-sidebar-nav { flex: 1; padding: 10px 0; }
/* Sidebar menu styles applied via JS classes */
.pc-sidebar-nav a,
.pc-sidebar-nav button.pc-sb-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 22px;
  color: var(--pc-muted);
  font-family: var(--pc-font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--pc-border);
  text-align: left;
  background: transparent;
  border-left: none; border-right: none; border-top: none;
  transition: color var(--pc-trans), background var(--pc-trans);
  position: relative;
  text-decoration: none;
}
.pc-sidebar-nav a::before,
.pc-sidebar-nav button.pc-sb-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--pc-red);
  transform: scaleY(0);
  transition: transform 0.2s;
}
.pc-sidebar-nav a:hover,
.pc-sidebar-nav button.pc-sb-item:hover,
.pc-sidebar-nav button.pc-sb-item.open {
  color: var(--pc-white);
  background: rgba(255,255,255,0.04);
}
.pc-sidebar-nav a:hover::before,
.pc-sidebar-nav button.pc-sb-item.open::before { transform: scaleY(1); }

.pc-sb-toggle {
  width: 22px; height: 22px;
  border: 1px solid var(--pc-border);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--pc-muted);
  transition: background var(--pc-trans), color var(--pc-trans);
  flex-shrink: 0;
  font-family: monospace;
  line-height: 1;
}
.pc-sidebar-nav button.pc-sb-item.open .pc-sb-toggle {
  background: var(--pc-red);
  color: var(--pc-white);
  border-color: var(--pc-red);
}

.pc-sb-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0,0,0,0.20);
  list-style: none;
}
.pc-sb-sub.open { max-height: 400px; }
.pc-sb-sub li a {
  padding: 11px 22px 11px 34px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--pc-font-body);
  text-transform: none;
  letter-spacing: 0.2px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  border-left: none; border-right: none; border-top: none;
}
.pc-sb-sub li a:hover { padding-left: 42px; }
.pc-sb-sub li:last-child a { border-bottom: none; }

.pc-sidebar-footer {
  padding: 18px 20px;
  border-top: 1px solid var(--pc-border);
  flex-shrink: 0;
}
.pc-sidebar-cta {
  display: block;
  text-align: center;
  padding: 13px;
  background: var(--pc-red);
  color: var(--pc-white);
  font-family: var(--pc-font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--pc-radius);
  transition: background var(--pc-trans);
  text-decoration: none;
}
.pc-sidebar-cta:hover { background: var(--pc-red-h); color: var(--pc-white); }

/* ── 9. HERO ──────────────────────────────────────────── */
.pc-hero {
  background: linear-gradient(135deg, var(--pc-navy) 0%, #1a3a5c 60%, #0d2035 100%);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.pc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 40px,
    rgba(255,255,255,0.012) 40px, rgba(255,255,255,0.012) 80px
  );
  pointer-events: none;
}
.pc-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--pc-off));
  pointer-events: none;
}
.pc-hero-content { position: relative; z-index: 1; max-width: 780px; }
.pc-hero-badge {
  display: inline-block;
  background: var(--pc-red);
  color: var(--pc-white);
  font-family: var(--pc-font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 3px;
  margin-bottom: 22px;
}
.pc-hero h1 {
  color: var(--pc-white);
  margin-bottom: 18px;
}
.pc-hero h1 em { color: var(--pc-gold); font-style: normal; }
.pc-hero p {
  color: var(--pc-muted);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.pc-hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.pc-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 34px;
  background: var(--pc-red);
  color: var(--pc-white);
  font-family: var(--pc-font-head);
  font-size: 15px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  border-radius: var(--pc-radius);
  transition: background var(--pc-trans), transform 0.15s;
  box-shadow: 0 5px 20px rgba(200,16,46,0.35);
}
.pc-btn-primary:hover { background: var(--pc-red-h); transform: translateY(-2px); color: var(--pc-white); }
.pc-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 34px;
  background: transparent;
  color: var(--pc-white);
  font-family: var(--pc-font-head);
  font-size: 15px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--pc-radius);
  transition: border-color var(--pc-trans), color var(--pc-trans), transform 0.15s;
}
.pc-btn-outline:hover { border-color: var(--pc-gold); color: var(--pc-gold); transform: translateY(-2px); }

/* ── 10. CONTENT AREA ─────────────────────────────────── */
.pc-main { padding: 60px 0; }
.pc-container { max-width: 1300px; margin: 0 auto; padding: 0 24px; }
.pc-content-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
.pc-content-wrap.no-sidebar { grid-template-columns: 1fr; }

/* Page / Post */
.pc-entry { background: var(--pc-white); border-radius: 10px; padding: 40px; box-shadow: 0 2px 16px rgba(11,27,43,0.07); }
.pc-entry-title { margin-bottom: 24px; color: var(--pc-navy); }
.pc-entry-content p { color: var(--pc-text); line-height: 1.8; margin-bottom: 1.2em; }
.pc-entry-content h2, .pc-entry-content h3 { margin: 1.5em 0 0.6em; }
.pc-entry-content ul, .pc-entry-content ol { margin: 0 0 1.2em 1.4em; }
.pc-entry-content ul { list-style: disc; }
.pc-entry-content ol { list-style: decimal; }
.pc-entry-content a { color: var(--pc-red); text-decoration: underline; }
.pc-entry-content a:hover { color: var(--pc-red-h); }
.pc-entry-content blockquote {
  border-left: 4px solid var(--pc-red);
  background: var(--pc-light);
  padding: 16px 20px;
  margin: 1.5em 0;
  border-radius: 0 var(--pc-radius) var(--pc-radius) 0;
  font-style: italic;
  color: var(--pc-navy);
}

/* ── 11. WIDGETS ──────────────────────────────────────── */
.pc-sidebar-widget-area { display: flex; flex-direction: column; gap: 28px; }
.widget {
  background: var(--pc-white);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(11,27,43,0.07);
}
.widget-title {
  font-family: var(--pc-font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pc-navy);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--pc-red);
  position: relative;
}

/* ── 12. FOOTER ───────────────────────────────────────── */
.pc-footer {
  background: var(--pc-navy);
  color: var(--pc-muted);
  border-top: 3px solid var(--pc-red);
  margin-top: 0;
}
.pc-footer-top {
  max-width: 1300px;
  margin: 0 auto;
  padding: 72px 24px 56px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 52px;
}
.pc-footer-brand .pc-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  text-decoration: none;
}
.pc-footer-brand .pc-footer-logo-icon {
  width: 44px; height: 44px;
  background: var(--pc-red);
  border-radius: var(--pc-radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pc-footer-brand .pc-footer-logo-name {
  font-family: var(--pc-font-head);
  font-size: 21px;
  font-weight: 800;
  color: var(--pc-white);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pc-footer-brand .pc-footer-logo-name em { color: var(--pc-gold); font-style: normal; }
.pc-footer-desc {
  font-size: 13.5px;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 300px;
}
.pc-footer-socials { display: flex; gap: 10px; }
.pc-footer-social {
  width: 36px; height: 36px;
  border-radius: var(--pc-radius);
  border: 1px solid var(--pc-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--pc-muted);
  transition: background var(--pc-trans), color var(--pc-trans), border-color var(--pc-trans);
}
.pc-footer-social:hover { background: var(--pc-red); border-color: var(--pc-red); color: var(--pc-white); }

.pc-footer-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pc-footer-col h4 {
  font-family: var(--pc-font-head);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pc-white);
  margin-bottom: 22px;
  padding-bottom: 10px;
  position: relative;
}
.pc-footer-col h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 2px;
  background: var(--pc-red);
  border-radius: 2px;
}

/* Footer accordion toggle (mobile only, hidden on desktop) */
.pc-footer-toggle { display: none; }

.pc-footer-col-body { /* always visible on desktop */ }

.pc-footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pc-footer-links li a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--pc-muted);
  transition: color var(--pc-trans), padding-left var(--pc-trans);
  position: relative;
}
.pc-footer-links li a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--pc-gold);
  transition: width var(--pc-trans);
}
.pc-footer-links li a:hover { color: var(--pc-white); padding-left: 6px; }
.pc-footer-links li a:hover::after { width: calc(100% - 6px); }
.pc-footer-links .fl-dot {
  width: 5px; height: 5px;
  background: var(--pc-red);
  border-radius: 50%;
  flex-shrink: 0;
}

.pc-footer-contact-item {
  display: flex;
  gap: 11px;
  margin-bottom: 14px;
  font-size: 13.5px;
  align-items: flex-start;
}
.pc-footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--pc-red); }
.pc-footer-contact-item a { color: var(--pc-muted); transition: color var(--pc-trans); }
.pc-footer-contact-item a:hover { color: var(--pc-white); }

.pc-footer-bottom { border-top: 1px solid var(--pc-border); }
.pc-footer-bottom-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.pc-footer-copy { font-size: 12.5px; color: rgba(168,180,192,0.60); }
.pc-footer-copy a { color: var(--pc-red); font-weight: 600; transition: color var(--pc-trans); }
.pc-footer-copy a:hover { color: var(--pc-gold); }
.pc-footer-policy { display: flex; gap: 20px; }
.pc-footer-policy a { font-size: 12px; color: rgba(168,180,192,0.55); transition: color var(--pc-trans); }
.pc-footer-policy a:hover { color: var(--pc-white); }

/* ── 13. BUTTONS ──────────────────────────────────────── */
.button, input[type="submit"], button[type="submit"] {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 28px;
  background: var(--pc-red);
  color: var(--pc-white);
  font-family: var(--pc-font-head);
  font-size: 14px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  border: none; border-radius: var(--pc-radius);
  cursor: pointer;
  transition: background var(--pc-trans), transform 0.15s;
}
.button:hover, input[type="submit"]:hover, button[type="submit"]:hover {
  background: var(--pc-red-h);
  transform: translateY(-1px);
  color: var(--pc-white);
}

/* ── 14. FORMS ────────────────────────────────────────── */
input[type="text"], input[type="email"], input[type="tel"],
input[type="url"], textarea, select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #DDE3EC;
  border-radius: var(--pc-radius);
  font-size: 14px;
  color: var(--pc-text);
  background: var(--pc-white);
  transition: border-color var(--pc-trans), box-shadow var(--pc-trans);
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--pc-red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.12);
}
label { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 600; color: var(--pc-navy); letter-spacing: 0.5px; }

/* ── 15. RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1100px) {
  .pc-footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 1024px) {
  .pc-content-wrap { grid-template-columns: 1fr; }
  .pc-sidebar-widget-area { display: none; } /* hide sidebar on tablet */
}
@media (max-width: 900px) {
  .pc-nav, .pc-btn-quote { display: none; }
  .pc-hamburger { display: flex; }
  .pc-topbar-item:nth-child(3), .pc-topbar-divider:nth-child(4) { display: none; }
}
@media (max-width: 640px) {
  :root { --pc-topbar-h: 38px; --pc-header-h: 64px; }
  .pc-topbar-item:nth-child(5), .pc-topbar-divider { display: none; }
  .pc-topbar-left .pc-topbar-item:first-child { display: flex; }
  .pc-logo-tagline { display: none; }
  .pc-logo-name { font-size: 18px; }

  /* Footer mobile accordion */
  .pc-footer-top {
    grid-template-columns: 1fr;
    padding: 0; gap: 0;
  }
  .pc-footer-brand { padding: 28px 20px; border-bottom: 1px solid var(--pc-border); }
  .pc-footer-col { border-bottom: 1px solid var(--pc-border); }
  .pc-footer-col h4 { display: none; }
  .pc-footer-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%; padding: 16px 20px;
    background: transparent; border: none;
    color: var(--pc-white);
    font-family: var(--pc-font-head);
    font-size: 13px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    cursor: pointer;
  }
  .pc-footer-toggle-icon {
    width: 26px; height: 26px;
    border: 1px solid var(--pc-border);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; font-family: monospace; line-height: 1;
    color: var(--pc-muted);
    transition: background var(--pc-trans), color var(--pc-trans);
  }
  .pc-footer-toggle.open .pc-footer-toggle-icon { background: var(--pc-red); color: var(--pc-white); border-color: var(--pc-red); }
  .pc-footer-col-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease;
    padding: 0 20px;
  }
  .pc-footer-col-body.open { max-height: 500px; padding: 2px 20px 22px; }
  .pc-footer-bottom-inner { flex-direction: column; text-align: center; }
  .pc-hero { min-height: 480px; padding: 60px 20px; }
  .pc-entry { padding: 24px 18px; }
}

/* ── Utility ─────────────────────────────────────────── */
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0; }
.pc-clearfix::after { content:''; display:table; clear:both; }
