/*
Theme Name: PRCT Trading Corp
Theme URI: https://prcttrading.com
Author: PRCT Trading Corp
Author URI: https://prcttrading.com
Description: Custom theme for PRCT Trading Corp â€” food wholesale and distribution company serving 1,900+ stores across the Northeast US.
Version: 1.2.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: prct-theme
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --navy: #0A2342;
  --navy-light: #0F2D54;
  --navy-dark: #071A33;
  --white: #FFFFFF;
  --off-white: #F8F9FB;
  --gold: #C9A84C;
  --gold-light: #D4B968;
  --gold-dark: #B8973E;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --text-primary: #1A1A2E;
  --text-secondary: #4A4A5A;
  --shadow-sm: 0 1px 2px rgba(10, 35, 66, 0.06);
  --shadow-md: 0 4px 12px rgba(10, 35, 66, 0.08);
  --shadow-lg: 0 8px 30px rgba(10, 35, 66, 0.12);
  --shadow-xl: 0 20px 50px rgba(10, 35, 66, 0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   HEADER — Two-row layout (Banana Republic style)
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

/* WordPress admin bar offset */
body.admin-bar .site-header {
  top: 32px;
}

body.admin-bar .hero,
body.admin-bar .page-hero,
body.admin-bar .about-hero,
body.admin-bar .single-product-layout {
  margin-top: 122px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
  body.admin-bar .hero,
  body.admin-bar .page-hero,
  body.admin-bar .about-hero,
  body.admin-bar .single-product-layout {
    margin-top: 136px;
  }
}

/* Top bar — brand name + search */
.header-top {
  border-bottom: 1px solid var(--gray-200);
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  text-decoration: none;
}

.site-logo img {
  height: 32px;
  width: auto;
}

.site-logo .brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.header-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.header-search-btn:hover {
  background: var(--gray-100);
}

/* Nav bar — centered links */
.header-nav {
  border-bottom: 1px solid var(--gray-200);
}

.header-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  display: block;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.main-nav a:hover,
.main-nav a.active,
.main-nav a.current-menu-item > a,
.main-nav .current-menu-item > a {
  color: var(--navy);
  background: var(--gray-100);
}

/* Search overlay */
.search-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 52px;
  background: var(--white);
  z-index: 1002;
  border-bottom: 1px solid var(--gray-200);
}

.search-overlay.active {
  display: flex;
}

.search-overlay-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
}

.search-overlay .search-form {
  flex: 1;
  display: flex;
  align-items: center;
}

.search-overlay .search-field {
  width: 100%;
  border: none;
  outline: none;
  font-size: 1rem;
  padding: 8px 0;
  background: transparent;
  font-family: inherit;
  color: var(--navy);
}

.search-overlay .search-submit {
  display: none;
}

.search-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-500);
  padding: 4px 8px;
  line-height: 1;
  transition: color var(--transition);
}

.search-close:hover {
  color: var(--navy);
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
  transition: all var(--transition);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  margin-top: 92px;
  overflow: hidden;
  padding: 32px 0 48px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero::after {
  content: '';
  position: absolute;
  right: -10%;
  top: -20%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 48px 0;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--gold-light);
  line-height: 1.5;
  margin-bottom: 12px;
  font-weight: 500;
}

.hero-body {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 500px;
}

.hero-authority {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero Abstract Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.hero-abstract {
  position: relative;
  width: 100%;
  min-height: 300px;
}

.abstract-shape {
  position: absolute;
  border-radius: 50%;
}

.abstract-shape-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  left: 15%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
  border: 1px solid rgba(201, 168, 76, 0.12);
}

.abstract-shape-2 {
  width: 140px;
  height: 140px;
  top: 10%;
  right: 10%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.abstract-shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 40%;
  background: var(--gold);
  opacity: 0.08;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 48px 0;
}

.section-alt {
  background: var(--gray-100);
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-header h2 {
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

/* ============================================
   DELIVER CARDS (Homepage)
   ============================================ */
.deliver-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.deliver-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.deliver-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.deliver-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.deliver-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.deliver-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.deliver-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ============================================
   PROCESS STEPS (Homepage)
   ============================================ */
.process-section {
  background: var(--white);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 280px;
}

.process-number {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  margin: 0 auto 16px;
  letter-spacing: -0.02em;
}

.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.process-connector {
  width: 48px;
  height: 2px;
  background: var(--gray-300);
  margin-top: 24px;
  flex-shrink: 0;
}

/* ============================================
   NETWORK SECTION (Homepage)
   ============================================ */
.network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.network-content .section-label {
  display: inline-block;
}

.network-content h2 {
  margin-bottom: 16px;
}

.network-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.network-content .btn {
  margin-top: 8px;
}

.network-points {
  display: grid;
  gap: 14px;
}

.network-point {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
}

.network-point:hover {
  border-color: var(--gold);
}

.network-point svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.network-point span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ============================================
   SERVE SECTION (Homepage)
   ============================================ */
.serve-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.serve-point {
  text-align: center;
  padding: 20px 12px;
}

.serve-point svg {
  width: 28px;
  height: 28px;
  color: var(--navy);
  margin: 0 auto 10px;
  display: block;
}

.serve-point span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 36px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  left: -10%;
  top: -50%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
}

.cta-banner h2 {
  color: var(--gold);
  margin-bottom: 10px;
  position: relative;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  position: relative;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.product-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-card-image {
  width: 100%;
  height: 220px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-image .no-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
}

.product-card-image .no-image svg {
  width: 40px;
  height: 40px;
}

.product-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card-body {
  padding: 24px;
}

.product-item-number {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-brand {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 10px;
}

.product-card-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Category filter */
.category-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.category-filter button {
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.category-filter button:hover,
.category-filter button.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

/* ============================================
   BRAND CARDS
   ============================================ */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.brand-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all var(--transition);
}

.brand-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.brand-logo-placeholder {
  width: 72px;
  height: 72px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.brand-logo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.brand-logo-placeholder .brand-initial {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}

.brand-info h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.brand-categories {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.brand-category-tag {
  padding: 2px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.brand-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  background: var(--navy);
  padding: 40px 0;
  margin-top: 92px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.about-hero h1 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
}

.about-hero p {
  display: none;
}

.about-content {
  padding: 40px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.about-text h2 {
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.about-highlights {
  display: grid;
  gap: 14px;
}

.highlight-item {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.highlight-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.highlight-item h4 {
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.highlight-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Philosophy section â€” distinct layout */
.philosophy-statement {
  max-width: 700px;
  margin: 0 auto 36px;
  text-align: center;
}

.philosophy-statement .lead-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.pillar-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pillar-card .highlight-icon {
  margin: 0 auto 14px;
}

.pillar-card h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.pillar-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Capabilities â€” card columns */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.capability-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
}

.capability-card .highlight-icon {
  margin: 0 auto 14px;
}

.capability-card h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.capability-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Why PRCT â€” 2x2 grid */
.advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Vision split */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.vision-grid .section-header {
  text-align: left;
  margin-bottom: 16px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-page-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-page-header h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-page-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
}

/* Contact hero */
.contact-hero {
  position: relative;
  background: linear-gradient(145deg, #050e1a 0%, var(--navy) 40%, #132f52 100%);
  padding: 100px 0 32px;
  margin-top: 92px;
  text-align: center;
  overflow: hidden;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
}

.contact-hero-badge {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contact-hero h1 {
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  line-height: 1.15;
}

.contact-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 48px;
  backdrop-filter: blur(8px);
}

.contact-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.contact-hero-stat .stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.5px;
}

.contact-hero-stat .stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-hero-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 120px 0 60px;
  }
  .contact-hero h1 {
    font-size: 2rem;
  }
  .contact-hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px 32px;
  }
  .contact-hero-divider {
    width: 60px;
    height: 1px;
  }
}

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

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form-wrap h2 {
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.wpcf7-form label,
.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition);
  margin-bottom: 20px;
  background: var(--white);
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 35, 66, 0.08);
}

.wpcf7-form textarea,
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.wpcf7-form input[type="submit"] {
  background: var(--navy);
  color: var(--white);
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.wpcf7-form input[type="submit"]:hover {
  background: var(--navy-light);
}

.contact-info {
  padding-top: 20px;
}

.contact-info h2 {
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--navy);
}

.contact-detail h4 {
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-detail p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.inquiry-box {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 40px;
}

.inquiry-box h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.inquiry-box p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Contact form success message */
.contact-success {
  text-align: center;
  padding: 48px 24px;
}

.contact-success-icon {
  width: 72px;
  height: 72px;
  background: #ecfdf5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.contact-success-icon svg {
  width: 36px;
  height: 36px;
  color: #059669;
}

.contact-success h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.contact-success p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   PAGE HERO (reusable)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 100px 0 36px;
  margin-top: 92px;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 8px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   SINGLE PRODUCT
   ============================================ */
.single-product-layout {
  padding: 120px 0 80px;
  margin-top: 92px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-image-main {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info .product-item-number {
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.product-detail-info h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.product-detail-info .product-brand {
  font-size: 1rem;
  margin-bottom: 20px;
}

.product-detail-info .product-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.product-meta {
  display: grid;
  gap: 16px;
}

.product-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
}

.product-meta-item strong {
  font-size: 0.85rem;
  color: var(--gray-500);
  min-width: 80px;
}

.product-meta-item span {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .deliver-grid { grid-template-columns: repeat(3, 1fr); }
  .network-grid { grid-template-columns: 1fr; }
  .serve-points { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .philosophy-pillars { grid-template-columns: 1fr; }
  .capabilities-grid { grid-template-columns: 1fr; }
  .advantage-grid { grid-template-columns: 1fr; }
  .vision-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .header-nav.mobile-open {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    padding: 80px 24px 40px;
    transition: right var(--transition);
    z-index: 999;
  }

  .main-nav.open { right: 0; }

  .main-nav ul {
    flex-direction: column;
    gap: 4px;
  }

  .main-nav a {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    text-transform: none;
    letter-spacing: 0;
  }

  .menu-toggle {
    display: block;
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 1001;
  }

  .hero {
    min-height: auto;
    padding: 20px 0 40px;
  }

  .hero { padding: 16px 0 32px; }
  .hero-content { padding: 32px 0 0; }

  .deliver-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; gap: 0; }
  .process-connector { width: 2px; height: 24px; margin: 0; }
  .serve-points { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .page-hero {
    padding: 90px 0 28px;
  }
  .about-hero {
    padding: 36px 0;
  }

  .category-filter {
    gap: 8px;
  }

  .category-filter button {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .product-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: 1fr; }
  .brand-card { flex-direction: column; align-items: center; text-align: center; }
  .serve-points { grid-template-columns: 1fr; }
}

/* ============================================
   MOBILE OVERLAY
   ============================================ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 35, 66, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   WORDPRESS OVERRIDES
   ============================================ */
.wp-block-image img { border-radius: var(--radius-md); }
.entry-content p { margin-bottom: 1.5em; }
.entry-content h2 { margin-top: 2em; margin-bottom: 0.75em; }
.entry-content ul, .entry-content ol { margin-bottom: 1.5em; padding-left: 1.5em; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
