/*
Theme Name: Namami270
Theme URI: https://namami270.com
Author: Namami270
Author URI: https://namami270.com
Description: Custom WordPress theme for Namami270 - Digital Marketing, Branding & Website Development Company. Features a bold black and yellow design with News/Blog support.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: namami270
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

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

:root {
  --black:   #0a0a0a;
  --black2:  #111111;
  --card:    #161616;
  --yellow:  #f5c800;
  --yellow2: #ffd700;
  --white:   #f2f0eb;
  --gray:    #888880;
  --border:  rgba(245,200,0,0.15);
  --border2: rgba(255,255,255,0.07);
  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Barlow Condensed', sans-serif;
  --font-serif: 'Crimson Pro', serif;
  --font-deva: 'Noto Sans Devanagari', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}

p { color: var(--gray); line-height: 1.75; margin-bottom: 1rem; }
a { color: var(--yellow); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.8; }

img { max-width: 100%; height: auto; display: block; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

.site-main { padding-top: 72px; } /* offset for fixed nav */

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 72px;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 5%;
}

.site-branding { display: flex; align-items: center; gap: 14px; }
.site-branding a { text-decoration: none; display: flex; align-items: center; gap: 14px; }
.custom-logo { height: 44px; width: auto; }
.site-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}
.site-title span { color: var(--yellow); }

/* Primary Navigation */
#primary-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

#primary-menu a {
  color: var(--gray);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

#primary-menu a:hover,
#primary-menu .current-menu-item > a {
  color: var(--yellow);
  opacity: 1;
}

#primary-menu .menu-cta > a {
  background: var(--yellow);
  color: var(--black) !important;
  padding: 9px 22px;
  font-weight: 700;
  letter-spacing: 1px;
}

#primary-menu .menu-cta > a:hover {
  background: var(--yellow2);
  opacity: 1;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border2);
  color: var(--white);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 18px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-yellow {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-yellow:hover { background: var(--yellow2); transform: translateY(-2px); opacity: 1; color: var(--black); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); opacity: 1; }

/* =============================================
   SECTION SHARED
   ============================================= */
.site-section { padding: 100px 0; }
.site-section--dark { background: var(--black2); }
.site-section--black { background: var(--black); }

.sec-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.sec-tag::before { content: ''; width: 28px; height: 1px; background: var(--yellow); }

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(36px,5vw,64px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 16px;
}

.sec-sub {
  font-family: var(--font-serif);
  font-size: clamp(16px,1.8vw,20px);
  color: var(--gray);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 60px;
  font-weight: 300;
}

/* Reveal animation */
.rv { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.rv.on { opacity: 1; transform: none; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-num {
  position: absolute;
  right: -2%; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 32vw;
  font-weight: 800;
  color: rgba(245,200,0,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -10px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--yellow); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px,8vw,110px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -2px;
  color: var(--white);
  max-width: 900px;
  margin-bottom: 30px;
}
.hero-title .accent { color: var(--yellow); }
.hero-title .outline {
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
  color: transparent;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px,2.5vw,28px);
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 44px;
  line-height: 1.6;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 60px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border2);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

.hero-float-logo {
  position: absolute;
  right: 5%; top: 50%;
  transform: translateY(-50%);
  width: min(400px,38vw);
  opacity: 0.10;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes float {
  0%,100%  { transform: translateY(-50%) rotate(-2deg); }
  50%      { transform: translateY(-55%) rotate(2deg); }
}

/* =============================================
   TICKER / MARQUEE
   ============================================= */
.ticker-wrap {
  background: var(--yellow);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 22s linear infinite;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 32px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 32px;
}
.ticker-item::after { content: '✦'; font-size: 10px; opacity: 0.5; }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-logo-box {
  position: relative;
  background: linear-gradient(135deg,rgba(245,200,0,0.05),transparent);
  border: 1px solid var(--border);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo-box img { width: 80%; max-width: 340px; }

.about-quote {
  border-left: 3px solid var(--yellow);
  padding-left: 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--white);
  margin: 32px 0;
  line-height: 1.6;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border2);
  border: 1px solid var(--border2);
}

.service-card {
  background: var(--black);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--card); }
.service-card:hover::before { transform: scaleX(1); }

.svc-number {
  font-family: var(--font-body);
  font-size: 64px;
  font-weight: 800;
  color: rgba(245,200,0,0.07);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}
.svc-icon { font-size: 28px; margin-bottom: 16px; display: block; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p { font-size: 15px; color: var(--gray); line-height: 1.7; }

/* =============================================
   WHY US SECTION
   ============================================= */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border2);
}
.why-point {
  background: var(--black2);
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background 0.2s;
}
.why-point:hover { background: #1a1a1a; }
.why-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: rgba(245,200,0,0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.why-point h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.why-point p { font-size: 14px; color: var(--gray); line-height: 1.6; }

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border2);
  border: 1px solid var(--border2);
  margin-bottom: 1px;
}
.metric-box { background: var(--black2); padding: 40px 32px; }
.metric-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
}
.metric-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); }

/* =============================================
   SLOGAN BANNER
   ============================================= */
.slogan-banner {
  background: var(--black2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.slogan-banner::before {
  content: '270';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-body);
  font-size: 30vw;
  font-weight: 800;
  color: rgba(245,200,0,0.025);
  line-height: 1;
  pointer-events: none;
}
.slogan-text {
  font-family: var(--font-display);
  font-size: clamp(28px,5vw,72px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}
.slogan-text .accent { color: var(--yellow); }
.slogan-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(16px,2vw,22px);
  color: var(--gray);
  margin-top: 16px;
  position: relative;
  z-index: 1;
}
.devanagari {
  font-family: var(--font-deva);
  font-size: clamp(14px,1.8vw,20px);
  color: rgba(245,200,0,0.6);
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

/* =============================================
   VISION & MISSION
   ============================================= */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border2);
  border: 1px solid var(--border2);
}
.vm-card {
  background: var(--black);
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
}
.vm-card.featured {
  background: var(--yellow);
}
.vm-card.featured h3,
.vm-card.featured p,
.vm-card.featured li { color: var(--black) !important; }
.vm-card.featured .vm-tag { color: rgba(0,0,0,0.5) !important; }

.vm-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
  display: block;
}
.vm-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.vm-card p { font-size: 15px; color: var(--gray); line-height: 1.75; }
.vm-card ul { list-style: none; }
.vm-card ul li {
  font-size: 15px;
  color: var(--gray);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}
.vm-card.featured ul li { border-bottom: 1px solid rgba(0,0,0,0.08); }
.vm-card ul li::before { content: '→'; font-size: 13px; flex-shrink: 0; opacity: 0.6; }
.vm-bg-char {
  position: absolute;
  bottom: -20px; right: -10px;
  font-family: var(--font-body);
  font-size: 150px;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}
.vm-card.featured .vm-bg-char { color: rgba(0,0,0,0.06); }

/* =============================================
   NEWS / BLOG SECTION & ARCHIVE
   ============================================= */
.news-section { padding: 100px 0; background: var(--black); }
.news-header { margin-bottom: 60px; }

/* News Grid - Home page (3 columns) */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

/* News Grid - Archive page (2 columns) */
.news-archive-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 28px;
}

/* Single News Card */
.news-card {
  background: var(--card);
  border: 1px solid var(--border2);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.news-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.news-card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--black2);
}
.news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card:hover .news-card-thumb img { transform: scale(1.05); }

.news-card-no-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--card), var(--black2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  opacity: 0.3;
}

.news-card-body { padding: 28px; }

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
}
.news-card-cat {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
}
.news-card-cat:hover { opacity: 0.8; }

.news-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.news-card-title a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.news-card-title a:hover { color: var(--yellow); opacity: 1; }

.news-card-excerpt {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border2);
}
.news-read-more {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--yellow);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.news-read-more:hover { gap: 10px; opacity: 1; }
.news-read-more::after { content: '→'; }

/* Featured post (large card spanning full width) */
.news-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--card);
  border: 1px solid var(--border2);
  overflow: hidden;
  transition: border-color 0.3s;
}
.news-featured:hover { border-color: var(--border); }
.news-featured .news-card-thumb { aspect-ratio: auto; min-height: 300px; }
.news-featured .news-card-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-featured .news-card-title { font-size: 28px; }
.news-featured .news-card-excerpt { -webkit-line-clamp: 5; }

/* Single Post */
.single-post-hero {
  padding: 80px 0 60px;
  background: var(--black2);
  border-bottom: 1px solid var(--border2);
}
.single-post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
}
.single-post-cat {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 2px;
}
.single-post-title {
  font-family: var(--font-display);
  font-size: clamp(36px,5vw,72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 900px;
}
.single-post-featured-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  margin: 48px 0;
}

/* Post Content */
.post-content {
  padding: 60px 0 80px;
  max-width: 800px;
  margin: 0 auto;
}
.post-content h2, .post-content h3 {
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 16px;
  margin-top: 40px;
}
.post-content h2 { font-size: 36px; }
.post-content h3 { font-size: 26px; }
.post-content p { color: var(--gray); font-size: 17px; line-height: 1.8; margin-bottom: 24px; }
.post-content strong { color: var(--white); }
.post-content ul, .post-content ol {
  padding-left: 24px;
  margin-bottom: 24px;
  color: var(--gray);
}
.post-content li { margin-bottom: 8px; font-size: 16px; line-height: 1.75; }
.post-content blockquote {
  border-left: 3px solid var(--yellow);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--card);
}
.post-content blockquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--white);
  margin: 0;
}
.post-content img { border: 1px solid var(--border2); margin: 32px 0; }
.post-content a { color: var(--yellow); }

/* Post Tags */
.post-tags { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border2); }
.post-tags span { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-right: 8px; }
.post-tags a {
  display: inline-block;
  background: var(--card);
  border: 1px solid var(--border2);
  padding: 4px 14px;
  font-size: 12px;
  color: var(--gray);
  margin: 4px 4px 4px 0;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.post-tags a:hover { border-color: var(--yellow); color: var(--yellow); opacity: 1; }

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 60px 0;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--card);
  border: 1px solid var(--border2);
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}
.pagination a:hover { border-color: var(--yellow); color: var(--yellow); opacity: 1; }
.pagination .current { background: var(--yellow); border-color: var(--yellow); color: var(--black); }

/* Related Posts */
.related-posts {
  padding: 60px 0;
  border-top: 1px solid var(--border2);
  background: var(--black2);
}
.related-posts h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 36px;
}
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-info p { font-size: 16px; color: var(--gray); line-height: 1.75; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--gray);
}
.contact-detail em { font-style: normal; font-size: 18px; }
.contact-detail a { color: var(--gray); text-decoration: none; transition: color 0.2s; }
.contact-detail a:hover { color: var(--yellow); opacity: 1; }

/* Contact Form */
.wpcf7-form,
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}
.form-group input,
.form-group select,
.form-group textarea,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  -webkit-appearance: none;
}
.form-group input:focus,
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus { border-color: var(--yellow); }
.wpcf7-submit,
.form-submit-btn {
  background: var(--yellow) !important;
  color: var(--black) !important;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}
.wpcf7-submit:hover { background: var(--yellow2) !important; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border2);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 48px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--gray); line-height: 1.7; max-width: 260px; }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--gray); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--yellow); opacity: 1; }

/* Footer widgets from WP */
.footer-col .widget { margin-bottom: 0; }
.footer-col .widget ul { list-style: none; padding: 0; }
.footer-col .widget ul li { margin-bottom: 10px; }
.footer-col .widget ul a { color: var(--gray); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.footer-col .widget ul a:hover { color: var(--yellow); opacity: 1; }
.footer-col .widget-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 13px; color: var(--gray); }
.footer-bottom a { color: var(--yellow); }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--gray);
  font-size: 12px;
  font-weight: 700;
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--yellow); color: var(--yellow); opacity: 1; }

/* =============================================
   PAGE HERO (Inner Pages)
   ============================================= */
.page-hero {
  padding: 120px 0 60px;
  background: var(--black2);
  border-bottom: 1px solid var(--border2);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px,6vw,80px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--white);
}
.page-hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--gray);
  margin-top: 16px;
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumbs a { color: var(--gray); text-decoration: none; }
.breadcrumbs a:hover { color: var(--yellow); opacity: 1; }
.breadcrumbs .sep { color: var(--border); }

/* =============================================
   404 PAGE
   ============================================= */
.error-404 {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5%;
}
.error-404 .big-num {
  font-family: var(--font-body);
  font-size: 20vw;
  font-weight: 800;
  color: rgba(245,200,0,0.08);
  line-height: 1;
}

/* =============================================
   SEARCH RESULTS
   ============================================= */
.search-results-header {
  padding: 80px 0 40px;
  background: var(--black2);
  border-bottom: 1px solid var(--border2);
}
.search-form {
  display: flex;
  gap: 0;
  max-width: 600px;
}
.search-form input[type="search"] {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border2);
  border-right: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 20px;
  outline: none;
}
.search-form button {
  background: var(--yellow);
  border: none;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  letter-spacing: 1px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-grid,
  .why-layout,
  .contact-layout { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .vm-grid,
  .news-archive-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .news-featured { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  #primary-menu {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 20px 5%;
    gap: 0;
    border-bottom: 1px solid var(--border2);
  }
  #primary-menu.is-open { display: flex; }
  #primary-menu li { width: 100%; }
  #primary-menu a { display: block; padding: 14px 0; border-bottom: 1px solid var(--border2); }
  .site-header { position: relative; }
  .site-main { padding-top: 0; }
  .news-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
