/*
Theme Name: PCDM Industrial Pro
Theme URI: https://pcdm.in
Author: Patli Component Design & Manufacturing
Author URI: https://pcdm.in
Description: Premium industrial WordPress theme for Patli Component Design & Manufacturing (PCDM). Fully Elementor-compatible, automotive engineering corporate theme with modern UI, smooth animations, and responsive design.
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: pcdm-industrial-pro
Tags: elementor, one-page, custom-colors, custom-menu, featured-images, footer-widgets, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready, blog, portfolio, corporate
*/

/* ========================================
   PCDM INDUSTRIAL PRO - GLOBAL STYLES
   ======================================== */

:root {
  --pcdm-red: #D60000;
  --pcdm-red-dark: #A80000;
  --pcdm-red-light: rgba(214, 0, 0, 0.1);
  --pcdm-black: #111111;
  --pcdm-dark: #0a0a0a;
  --pcdm-white: #FFFFFF;
  --pcdm-gray-light: #F5F5F5;
  --pcdm-gray-mid: #E0E0E0;
  --pcdm-gray-text: #555555;
  --pcdm-gray-dark: #333333;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 50px rgba(0,0,0,0.18);
  --shadow-red: 0 8px 30px rgba(214,0,0,0.3);
  --radius: 8px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--pcdm-black);
  background-color: var(--pcdm-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar { padding-top: 32px; }

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

a {
  color: var(--pcdm-red);
  text-decoration: none;
  transition: var(--transition);
}

a:hover { color: var(--pcdm-red-dark); }

ul, ol { list-style: none; }

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--pcdm-black);
}

h1 { font-size: clamp(32px, 5vw, 60px); font-weight: 900; }
h2 { font-size: clamp(26px, 3.5vw, 44px); font-weight: 800; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

p { margin-bottom: 1rem; }

/* ========================================
   LAYOUT
   ======================================== */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

.section-padding { padding: 90px 0; }
.section-padding-sm { padding: 60px 0; }

/* ========================================
   SECTION LABELS / TAGS
   ======================================== */

.pcdm-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pcdm-red);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pcdm-section-tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--pcdm-red);
  display: block;
}

.pcdm-section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.pcdm-section-title .highlight { color: var(--pcdm-red); }

/* ========================================
   BUTTONS
   ======================================== */

.pcdm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.pcdm-btn-primary {
  background: var(--pcdm-red);
  color: var(--pcdm-white);
  box-shadow: var(--shadow-red);
}

.pcdm-btn-primary:hover {
  background: var(--pcdm-red-dark);
  color: var(--pcdm-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(214,0,0,0.4);
}

.pcdm-btn-outline {
  background: transparent;
  color: var(--pcdm-white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.pcdm-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--pcdm-white);
  color: var(--pcdm-white);
  transform: translateY(-2px);
}

.pcdm-btn-outline-dark {
  background: transparent;
  color: var(--pcdm-black);
  border: 1.5px solid var(--pcdm-gray-mid);
}

.pcdm-btn-outline-dark:hover {
  border-color: var(--pcdm-red);
  color: var(--pcdm-red);
  transform: translateY(-2px);
}

.pcdm-btn-white {
  background: var(--pcdm-white);
  color: var(--pcdm-red);
}

.pcdm-btn-white:hover {
  background: var(--pcdm-gray-light);
  color: var(--pcdm-red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ========================================
   HEADER
   ======================================== */

#pcdm-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--pcdm-red);
  transition: box-shadow 0.3s ease;
  height: 75px;
  display: flex;
  align-items: center;
}

#pcdm-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--pcdm-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--pcdm-white);
  font-size: 15px;
  line-height: 1.2;
}

.logo-text span { color: var(--pcdm-red); font-size: 11px; display: block; font-weight: 600; letter-spacing: 0.5px; }

/* Nav Menu */
.main-navigation {
  display: flex;
  align-items: center;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation ul li a {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 4px;
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a,
.main-navigation ul li.current-page-ancestor > a {
  color: var(--pcdm-red);
  background: rgba(214,0,0,0.1);
}

/* Header CTA */
.header-cta {
  background: var(--pcdm-red);
  color: white;
  padding: 10px 22px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--pcdm-red-dark);
  color: white;
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  display: block;
  transition: var(--transition);
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 75px;
  left: 0;
  right: 0;
  background: #0f0f0f;
  border-top: 1px solid #222;
  z-index: 9998;
  flex-direction: column;
  padding: 20px;
  gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 16px;
  border-bottom: 1px solid #1a1a1a;
  display: block;
  transition: var(--transition);
  text-decoration: none;
}

.mobile-menu a:hover { color: var(--pcdm-red); padding-left: 22px; }

/* ========================================
   HERO SECTION
   ======================================== */

.pcdm-hero {
  min-height: 100vh;
  background: var(--pcdm-black);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 75px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(214,0,0,0.08) 0%, transparent 50%),
              linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,0.8) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero-red-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 50%, rgba(214,0,0,0.05) 100%);
  z-index: 1;
}

.hero-animated-line {
  position: absolute;
  left: 0;
  top: 30%;
  width: 3px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--pcdm-red), transparent);
  animation: linePulse 3s ease-in-out infinite;
  z-index: 2;
}

@keyframes linePulse {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(30px); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(214,0,0,0.15);
  border: 1px solid rgba(214,0,0,0.4);
  color: #ff6b6b;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease both;
}

.hero-badge::before {
  content: '●';
  font-size: 8px;
  animation: blink 1.5s ease infinite;
}

@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 62px);
  color: var(--pcdm-white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-title .accent { color: var(--pcdm-red); }

.hero-subtitle {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 44px;
  font-weight: 300;
  max-width: 580px;
  animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.6s ease both;
}

/* Hero Stats Bar */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 2;
  animation: fadeInUp 0.8s 0.8s ease both;
}

.hero-stat {
  flex: 1;
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.hero-stat:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 36px;
  color: var(--pcdm-white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number .plus { color: var(--pcdm-red); }

.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(214,0,0,0.04) 20px, rgba(214,0,0,0.04) 21px);
}

.about-experience-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--pcdm-red);
  color: white;
  padding: 22px 26px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-red);
  font-family: var(--font-heading);
}

.badge-number { font-size: 38px; font-weight: 900; line-height: 1; }
.badge-text { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; opacity: 0.9; }

.about-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.point-icon {
  width: 38px;
  height: 38px;
  background: var(--pcdm-red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pcdm-red);
  font-size: 16px;
  flex-shrink: 0;
}

.point-text h4 { font-family: var(--font-heading); font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.point-text p { font-size: 13px; color: var(--pcdm-gray-text); line-height: 1.6; margin: 0; }

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--pcdm-white);
  border: 1px solid var(--pcdm-gray-mid);
  border-radius: var(--radius);
  padding: 34px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--pcdm-red);
  transition: height 0.35s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: transparent;
}

.service-card:hover::before { height: 100%; }

.service-card-icon {
  width: 58px;
  height: 58px;
  background: var(--pcdm-red-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  background: var(--pcdm-red);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 13px;
  color: var(--pcdm-gray-text);
  line-height: 1.75;
  margin: 0;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--pcdm-red);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: gap 0.2s ease;
  text-decoration: none;
}

.service-card-link:hover { gap: 10px; color: var(--pcdm-red); }

/* ========================================
   WHY CHOOSE US
   ======================================== */

.whyus-section { background: var(--pcdm-black); }

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 60px;
}

.whyus-item {
  background: var(--pcdm-black);
  padding: 44px 36px;
  border-top: 3px solid transparent;
  transition: var(--transition);
}

.whyus-item:hover {
  border-top-color: var(--pcdm-red);
  background: rgba(214,0,0,0.04);
}

.whyus-num {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 900;
  color: rgba(214,0,0,0.15);
  margin-bottom: 16px;
  line-height: 1;
}

.whyus-item h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: white;
  margin-bottom: 12px;
}

.whyus-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin: 0;
}

/* ========================================
   INDUSTRIES
   ======================================== */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
}

.industry-card {
  background: var(--pcdm-white);
  border: 1px solid var(--pcdm-gray-mid);
  border-radius: var(--radius);
  padding: 38px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.industry-card:hover {
  border-color: var(--pcdm-red);
  box-shadow: 0 8px 32px rgba(214,0,0,0.12);
  transform: translateY(-5px);
}

.industry-icon { font-size: 46px; margin-bottom: 18px; }
.industry-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.industry-card p { font-size: 12px; color: var(--pcdm-gray-text); line-height: 1.6; margin: 0; }

/* ========================================
   PORTFOLIO
   ======================================== */

.portfolio-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--pcdm-gray-mid);
  background: white;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--pcdm-black);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--pcdm-red);
  color: white;
  border-color: var(--pcdm-red);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
}

.portfolio-item {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--pcdm-gray-mid);
  transition: var(--transition);
  cursor: pointer;
}

.portfolio-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.portfolio-img {
  height: 190px;
  background: linear-gradient(135deg, #0f0f1a, #1a1a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portfolio-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(214,0,0,0.04) 10px, rgba(214,0,0,0.04) 11px);
}

.portfolio-img-icon {
  font-size: 54px;
  opacity: 0.7;
  z-index: 1;
  position: relative;
}

.portfolio-info { padding: 18px 20px; }
.portfolio-info h4 { font-family: var(--font-heading); font-weight: 700; font-size: 13px; margin-bottom: 5px; }
.portfolio-info p { font-size: 12px; color: var(--pcdm-gray-text); margin: 0; }

.portfolio-tag {
  display: inline-block;
  background: var(--pcdm-red-light);
  color: var(--pcdm-red);
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 8px;
  text-transform: uppercase;
}

/* ========================================
   CUSTOMER LOGOS
   ======================================== */

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.client-logo-item {
  background: white;
  border: 1px solid var(--pcdm-gray-mid);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  transition: var(--transition);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  text-align: center;
  flex-direction: column;
  gap: 4px;
}

.client-logo-item:hover {
  border-color: var(--pcdm-red);
  box-shadow: 0 4px 20px rgba(214,0,0,0.1);
}

.client-logo-item small {
  font-size: 10px;
  font-weight: 400;
  color: var(--pcdm-gray-text);
  font-family: var(--font-body);
}

/* ========================================
   CTA BANNER
   ======================================== */

.cta-banner {
  background: var(--pcdm-red);
  padding: 80px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 36px);
  color: white;
  margin-bottom: 12px;
}

.cta-text p { color: rgba(255,255,255,0.8); font-size: 16px; margin: 0; }

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--pcdm-gray-mid);
  border-radius: var(--radius);
  padding: 34px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(214,0,0,0.07);
  line-height: 1;
}

.stars { color: #f5a623; font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }

.testimonial-text {
  font-size: 14px;
  color: var(--pcdm-gray-text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pcdm-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.author-name { font-family: var(--font-heading); font-weight: 700; font-size: 14px; }
.author-role { font-size: 12px; color: var(--pcdm-gray-text); }

/* ========================================
   BLOG SECTION
   ======================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--pcdm-gray-mid);
  background: white;
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.blog-card-img {
  height: 210px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  position: relative;
  overflow: hidden;
}

.blog-category-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--pcdm-red);
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.blog-card-content { padding: 24px; }
.blog-meta { font-size: 12px; color: var(--pcdm-gray-text); margin-bottom: 10px; }
.blog-card-content h3 { font-family: var(--font-heading); font-weight: 700; font-size: 16px; line-height: 1.4; margin-bottom: 12px; }
.blog-card-content p { font-size: 13px; color: var(--pcdm-gray-text); line-height: 1.7; margin: 0; }

/* ========================================
   PAGE HERO
   ======================================== */

.page-hero {
  background: var(--pcdm-black);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  margin-top: 75px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: linear-gradient(rgba(255,255,255,0.8) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(214,0,0,0.06));
}

.breadcrumb {
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.breadcrumb span { color: var(--pcdm-red); }

.page-hero h1 {
  color: white;
  position: relative;
  z-index: 1;
}

.page-hero .page-hero-desc {
  color: rgba(255,255,255,0.6);
  font-size: 17px;
  line-height: 1.7;
  max-width: 600px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

/* ========================================
   FOOTER
   ======================================== */

#pcdm-footer {
  background: #0a0a0a;
  border-top: 2px solid var(--pcdm-red);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-about p {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  line-height: 1.8;
  margin-top: 18px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  color: var(--pcdm-white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  text-decoration: none;
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--pcdm-red); padding-left: 4px; }

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

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  margin: 0;
}

.footer-bottom span { color: var(--pcdm-red); }

/* ========================================
   CONTACT FORM
   ======================================== */

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

.contact-info-items { display: flex; flex-direction: column; gap: 26px; margin-top: 36px; }

.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }

.contact-info-icon {
  width: 46px;
  height: 46px;
  background: var(--pcdm-red-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-item h4 { font-family: var(--font-heading); font-weight: 700; font-size: 14px; margin-bottom: 5px; }
.contact-info-item p { font-size: 13px; color: var(--pcdm-gray-text); margin: 0; }

.contact-form-wrap {
  background: var(--pcdm-gray-light);
  border-radius: var(--radius);
  padding: 44px;
}

.contact-form-wrap h3 { font-family: var(--font-heading); font-weight: 800; font-size: 22px; margin-bottom: 30px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--pcdm-gray-mid);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  background: white;
  color: var(--pcdm-black);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pcdm-red);
  box-shadow: 0 0 0 3px rgba(214,0,0,0.08);
}

.form-group textarea { height: 130px; resize: vertical; }

.form-submit {
  width: 100%;
  background: var(--pcdm-red);
  color: white;
  padding: 16px;
  border: none;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover { background: var(--pcdm-red-dark); }

/* ========================================
   MISSION / VALUES
   ======================================== */

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}

.mission-card {
  background: white;
  border: 1px solid var(--pcdm-gray-mid);
  border-radius: var(--radius);
  padding: 38px;
}

.mission-card.dark-card { background: var(--pcdm-black); border-color: #222; }
.mission-card.dark-card h3 { color: white; }
.mission-card.dark-card p { color: rgba(255,255,255,0.6); }

.mission-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pcdm-red);
  margin-bottom: 16px;
}

.mission-card h3 { font-family: var(--font-heading); font-weight: 800; font-size: 22px; margin-bottom: 14px; }
.mission-card p { font-size: 14px; line-height: 1.8; color: var(--pcdm-gray-text); margin: 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.value-card {
  border-left: 3px solid var(--pcdm-red);
  padding: 26px;
  background: var(--pcdm-gray-light);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.value-card h4 { font-family: var(--font-heading); font-weight: 700; font-size: 15px; margin-bottom: 10px; }
.value-card p { font-size: 13px; color: var(--pcdm-gray-text); line-height: 1.7; margin: 0; }

/* ========================================
   TIMELINE
   ======================================== */

.timeline {
  position: relative;
  padding-left: 60px;
  margin-top: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--pcdm-gray-mid);
}

.timeline-item {
  position: relative;
  margin-bottom: 44px;
}

.timeline-dot {
  position: absolute;
  left: -48px;
  top: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pcdm-red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 12px;
  box-shadow: var(--shadow-red);
}

.timeline-year { font-size: 12px; color: var(--pcdm-red); font-weight: 700; font-family: var(--font-heading); margin-bottom: 6px; }
.timeline-item h4 { font-family: var(--font-heading); font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.timeline-item p { font-size: 14px; color: var(--pcdm-gray-text); line-height: 1.7; margin: 0; }

/* ========================================
   CAREERS
   ======================================== */

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 22px;
}

.job-card {
  background: white;
  border: 1px solid var(--pcdm-gray-mid);
  border-radius: var(--radius);
  padding: 30px;
  transition: var(--transition);
}

.job-card:hover { border-color: var(--pcdm-red); box-shadow: 0 6px 24px rgba(214,0,0,0.1); }

.job-type-badge {
  display: inline-block;
  background: var(--pcdm-red-light);
  color: var(--pcdm-red);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.job-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 17px; margin-bottom: 10px; }
.job-card p { font-size: 13px; color: var(--pcdm-gray-text); line-height: 1.7; margin-bottom: 20px; }
.job-meta { display: flex; gap: 16px; font-size: 12px; color: var(--pcdm-gray-text); margin-bottom: 20px; flex-wrap: wrap; }

/* ========================================
   ANIMATIONS & AOS-LIKE EFFECTS
   ======================================== */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.pcdm-animate {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.pcdm-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   WORDPRESS NATIVE ELEMENTS
   ======================================== */

.site-content { padding-top: 75px; }
.entry-content img { margin: 2rem auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { text-align: center; font-size: 13px; color: var(--pcdm-gray-text); margin-top: 8px; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin: 60px 0; }
.pagination .page-numbers {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--pcdm-gray-mid); border-radius: 6px;
  font-family: var(--font-heading); font-weight: 700; font-size: 14px;
  color: var(--pcdm-black); transition: var(--transition); text-decoration: none;
}
.pagination .page-numbers:hover, .pagination .page-numbers.current {
  background: var(--pcdm-red); border-color: var(--pcdm-red); color: white;
}

/* Comments */
.comments-area { margin-top: 60px; }
.comment-form input, .comment-form textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--pcdm-gray-mid);
  border-radius: 6px; font-family: var(--font-body); font-size: 14px; outline: none;
  transition: var(--transition);
}
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--pcdm-red); }
.comment-form .submit {
  background: var(--pcdm-red); color: white; padding: 12px 28px;
  border: none; border-radius: 6px; font-family: var(--font-heading); font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.comment-form .submit:hover { background: var(--pcdm-red-dark); }

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-split { gap: 50px; }
}

@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .about-experience-badge { bottom: -10px; right: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats-bar { flex-wrap: wrap; }
  .hero-stat { min-width: 50%; }
}

@media (max-width: 768px) {
  section.section-padding { padding: 60px 0; }
  .main-navigation, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stat { min-width: 100%; }
  .timeline { padding-left: 50px; }
  .header-inner { padding: 0 20px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .pcdm-btn { text-align: center; justify-content: center; }
  .portfolio-filters { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 11px; }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  #pcdm-header, .mobile-menu, .hero-stats-bar { display: none; }
  body { padding-top: 0; }
  .site-content { padding-top: 0; }
}
