/*
Theme Name: PEC PM Experts
Theme URI: https://www.pecpmexperts.com
Author: PEC PM Experts
Author URI: https://www.pecpmexperts.com
Description: Custom WordPress theme for PEC PM Experts - The Project Management Experts. Professional, international-grade design for PM coaching, training, consulting and outsourcing services.
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: pecpmexperts
Tags: business, consulting, training, education, professional-services
*/

/* ══════════════════════════════════════════════════════════════════════════
   PEC PM EXPERTS - WORDPRESS THEME STYLES
   ══════════════════════════════════════════════════════════════════════════ */

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

:root {
  --navy: #000000;
  --navy-mid: #0A0A0A;
  --navy-light: #1A1A1A;
  --gold: #F5A623;
  --gold-light: #FFA726;
  --gold-dim: rgba(245, 166, 35, 0.15);
  --white: #FFFFFF;
  --off-white: #F5F2EE;
  --grey: #FFFFFF;
  --text-body: #FFFFFF;
  --section-pad: 110px 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── TYPOGRAPHY ── */
.serif {
  font-family: 'Cormorant Garamond', serif;
}

h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.1;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  background: none !important;
}

h1 *,
h2 *,
h3 *,
h4 *,
h5 *,
h6 * {
  background: none !important;
}

p {
  font-size: clamp(1.25rem, 1.8vw, 1.4rem);
  line-height: 1.75;
  color: var(--text-body);
  font-weight: 300;
}

.gold {
  color: var(--gold);
}

.label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

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

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


/* ── NAVIGATION ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s, padding 0.4s;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.logo-text span:last-child {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Desktop Navigation Wrapper */
.nav-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  list-style: none;
  flex: 1;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* ACTIVE MENU ITEM STYLING - DESKTOP */
.nav-links .current-menu-item a,
.nav-links .current_page_item a {
  color: var(--gold);
  font-weight: 600;
}

.nav-links .current-menu-item a::after,
.nav-links .current_page_item a::after {
  transform: scaleX(1);
}

.btn-nav {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-nav:hover {
  background: var(--gold);
  color: var(--navy);
}


/* ── GALLERY SECTION ── */
.gallery-section {
  padding: 100px 0 80px;
  background: var(--navy);
  overflow: hidden;
}

.gallery-marquee {
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}

.gallery-marquee:first-of-type {
  margin-top: 60px;
}

.gallery-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  width: max-content;
}

/* Row 1: Scroll Left */
.gallery-left .gallery-track {
  animation: gallery-scroll-left 60s linear infinite;
}

/* Row 2: Scroll Right */
.gallery-right .gallery-track {
  animation: gallery-scroll-right 60s linear infinite;
}

/* Pause on hover */
.gallery-track:hover {
  animation-play-state: paused;
}

.gallery-item {
  flex-shrink: 0;
  width: 400px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(245, 166, 35, 0.2);
  transition: transform 0.3s, border-color 0.3s;
}

.gallery-item:hover {
  transform: scale(1.05);
  border-color: rgba(245, 166, 35, 0.6);
  z-index: 10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Animations */
@keyframes gallery-scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes gallery-scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .gallery-item {
    width: 240px;
    height: 180px;
  }

  .gallery-left .gallery-track {
    animation: gallery-scroll-left 30s linear infinite;
  }

  .gallery-right .gallery-track {
    animation: gallery-scroll-right 30s linear infinite;
  }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(0, 0, 0, 0.6) 0%, transparent 60%),
    linear-gradient(160deg, #000000 0%, #0A0A0A 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.5) 80%, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.hero-tagline {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
  margin-top: 16px;
  line-height: 1.4;
}

.hero p {
  font-size: 1.2rem;
  max-width: 480px;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, transform 0.3s;
  animation: fadeUp 0.8s ease both;
}

.hero-stat-card:nth-child(2) {
  animation-delay: 0.1s;
}

.hero-stat-card:nth-child(3) {
  animation-delay: 0.2s;
}

.hero-stat-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateX(-4px);
}

.stat-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: var(--grey);
  margin-top: 2px;
}

/* ── MARQUEE ── */
.marquee-section {
  padding: 20px 0;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.marquee-item::after {
  content: '◆';
  font-size: 0.5rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── PROMISE ── */
.promise-section {
  padding: var(--section-pad);
  background: var(--white);
}

.promise-section .label {
  color: var(--gold);
}

.promise-section h2 {
  color: var(--navy);
}

.promise-section h2 em {
  color: var(--gold);
}

.promise-section p {
  color: #4A5568;
}

.promise-section .point-text strong {
  color: var(--navy);
}

.promise-section .point-text span {
  color: #6B7280;
}

.promise-section .mini-card {
  background: var(--navy);
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s;
}

.promise-section .mini-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s;
}

.promise-section .mini-card:hover {
  transform: translateY(-4px);
}

.promise-section .mini-card:hover::before {
  transform: scaleX(1);
}

.promise-section .mini-card h4 {
  color: var(--white);
}

.promise-section .mini-card p {
  color: var(--white);
}

.promise-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.promise-left .label {
  margin-bottom: 16px;
}

.promise-left h2 {
  margin-bottom: 24px;
}

.promise-left p {
  margin-bottom: 32px;
}

.promise-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promise-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.point-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}

.point-text strong {
  display: block;
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.point-text span {
  font-size: 1.05rem;
  color: var(--grey);
}

.promise-left {
  flex: 1;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promise-left h3 {
  color: var(--navy);
}

.promise-left p {
  color: #4A5568;
}

.promise-right {
  flex: 1;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mini-card {
  background: var(--navy-mid);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s;
}

.mini-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
}

.mini-card:first-child {
  grid-column: span 2;
}

.mini-card:first-child:not(.expo-registration-grid-bottom > .mini-card) {
  grid-column: span 2;
  background: var(--navy-light);
}

.expo-registration-grid-bottom>.mini-card:first-child {
  grid-column: span 1;
}

.mini-card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.mini-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.mini-card p {
  font-size: 1.05rem;
  color: var(--white);
}

.mini-card h3 {
  color: var(--gold);
}

/* ── SERVICES ── */
.services-section {
  padding: var(--section-pad);
  background: var(--white);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.services-section .section-header .label {
  color: var(--gold);
}

.services-section .section-header h2 {
  color: var(--navy);
}

.services-section .section-header h2 em {
  color: var(--gold);
}

.services-section .section-header p {
  color: #4A5568;
}

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

.section-header .label {
  margin-bottom: 14px;
}

.section-header h2 {
  margin-bottom: 16px;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.section-header h2 * {
  background: none !important;
  display: inline;
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  padding: 48px 36px;
  background: var(--navy);
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s;
}

.service-card:hover {
  background: var(--navy);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(245, 166, 35, 0.08);
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
  transition: color 0.4s;
}

.service-card:hover .service-num {
  color: rgba(245, 166, 35, 0.15);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.5rem;
  color: var(--white);
}

.service-card p {
  font-size: 1.05rem;
  margin-bottom: 28px;
  color: var(--white);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 0.3s;
}

.service-link:hover {
  gap: 14px;
}

.service-link span {
  font-size: 1.1rem;
}

/* ── EXPERT GUIDANCE SECTION ── */
.expert-guidance-section {
  padding: var(--section-pad);
  background: var(--navy);
  position: relative;
}

.expert-guidance-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.expert-guidance-section .section-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.guidance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.guidance-card {
  background: var(--navy-mid);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  text-decoration: none;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.guidance-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(245, 166, 35, 0.15);
}

.guidance-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--navy-light);
}

.guidance-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.guidance-card:hover .guidance-image img {
  transform: scale(1.05);
}

.guidance-content {
  background: linear-gradient(135deg, #F5A623 0%, #FF8C00 100%);
  padding: 32px 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guidance-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.2;
}

.guidance-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 0;
}

.guidance-content p:last-child {
  margin-top: 8px;
}

/* ── STATS ── */
.stats-section {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.stats-section::before {
  content: 'PM EXPERTS';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-desc {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════════════════
   BLOG STYLES
   ══════════════════════════════════════════════════════════════════════════ */

/* ── FEATURED POST HERO ── */
.blog-featured-post {
  padding: 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
  border-radius: 20px;
  border: 1px solid rgba(245, 166, 35, 0.2);
}

.blog-hero-wrapper {
  position: relative;
  height: 550px;
  display: flex;
  align-items: flex-end;
  border-radius: 20px;
  overflow: hidden;
}

.blog-hero-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.blog-featured-post:hover .blog-hero-image img {
  transform: scale(1.08);
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px;
  max-width: 900px;
}

.post-category-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(245, 166, 35, 0.95);
  backdrop-filter: blur(8px);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 6px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.blog-hero-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.blog-hero-content .post-excerpt {
  font-size: 1.2rem;
  color: var(--grey);
  margin-bottom: 24px;
  line-height: 1.6;
}

.blog-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--grey);
  margin-bottom: 28px;
}

.blog-hero-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── BLOG POSTS GRID ── */
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.post-card {
  background: var(--navy-mid);
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(245, 166, 35, 0.25);
  background: var(--navy);
}

.post-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: rgba(0, 0, 0, 0.3);
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-card-image img {
  transform: scale(1.1);
}

.post-card-category {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  background: rgba(245, 166, 35, 0.95);
  backdrop-filter: blur(8px);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 6px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.post-card-content {
  padding: 32px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
  font-weight: 600;
}

.post-card h3 a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.post-card h3 a:hover {
  color: var(--gold);
}

.post-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.post-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.post-card-excerpt {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}

.post-card .service-link {
  margin-top: auto;
  font-weight: 600;
}

/* ── SINGLE POST ENHANCEMENTS ── */
.post-reading-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.9rem;
}

.post-reading-time::before {
  content: '📖';
  font-size: 1rem;
}

.post-share-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}

.post-share-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
}

.share-button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  transition: all 0.3s;
  text-decoration: none;
}

.share-button:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

.share-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ── AUTHOR BIO ── */
.author-bio-section {
  margin: 60px 0;
  padding: 48px;
  background: var(--navy-mid);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-left: 4px solid var(--gold);
  border-radius: 16px;
}

.author-bio-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

.author-bio-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}

.author-bio-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.author-bio-content h4 {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.author-bio-role {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 16px;
}

.author-bio-text {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ── RELATED POSTS ── */
.related-posts-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 2px solid rgba(245, 166, 35, 0.2);
}

.related-posts-header {
  text-align: center;
  margin-bottom: 48px;
}

.related-posts-header .label {
  margin-bottom: 12px;
}

.related-posts-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ── PAGINATION ── */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 60px 0 40px;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 16px;
  background: var(--navy-mid);
  border: 2px solid rgba(245, 166, 35, 0.2);
  border-radius: 8px;
  color: #FFFFFF !important;
  font-size: 1rem !important;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-numbers:hover {
  background: var(--navy);
  border-color: var(--gold);
  color: #F5A623 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.2);
}

.page-numbers.current {
  background: var(--gold);
  border-color: var(--gold);
  color: #000000 !important;
  font-weight: 700;
  cursor: default;
  transform: none;
}

.page-numbers.current:hover {
  transform: none;
}

.page-numbers.dots {
  border: none;
  background: transparent;
  cursor: default;
  color: var(--grey);
}

.page-numbers.dots:hover {
  background: transparent;
  border: none;
  color: var(--grey);
  transform: none;
}

.page-numbers.prev,
.page-numbers.next {
  padding: 0 20px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* ── EXPO ── */
.expo-section {
  padding: var(--section-pad);
  background: var(--white);
}

.expo-section .label {
  color: var(--gold);
}

.expo-section h2 {
  color: var(--navy);
}

.expo-section h2 em {
  color: var(--gold);
}

.expo-section p {
  color: #4A5568;
}

.expo-section .expo-meta-item span {
  color: var(--white);
}

.expo-section .speaker-pill {
  background: #F9FAFB;
  border-color: rgba(0, 0, 0, 0.08);
  color: #4A5568;
}

.expo-section .speaker-pill strong {
  color: var(--navy);
}

.expo-section .speaker-pill:hover {
  border-color: rgba(245, 166, 35, 0.4);
}

.expo-inner {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.expo-left {
  padding: 64px 56px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.expo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
  width: fit-content;
}

.expo-badge span {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.expo-left h2 {
  margin-bottom: 20px;
  color: var(--white);
}

.expo-left h2 em {
  color: var(--gold);
}

.expo-left p {
  margin-bottom: 36px;
  color: var(--white);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.expo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 32px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.expo-meta-item {
  flex: 0 1 auto;
  min-width: 0;
}

.expo-meta-item strong {
  display: block;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
  white-space: nowrap;
}

.expo-meta-item span {
  font-size: 1rem;
  color: var(--white);
  display: block;
  line-height: 1.4;
}

.expo-right {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background: #FAFAFA;
}

.expo-right .label {
  color: var(--gold);
}

.expo-right p {
  margin-bottom: 24px;
  color: #4A5568;
}

.speaker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.speaker-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--text-body);
  transition: border-color 0.3s;
}

.speaker-pill:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.speaker-pill strong {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.expo-ctas {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: var(--section-pad);
  background: var(--navy-mid);
  position: relative;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

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

.testimonial-card {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border-color: rgba(201, 168, 76, 0.2);
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.25;
  line-height: 0.8;
  margin-bottom: 16px;
  display: block;
}

.stars {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 1.05rem;
  margin-bottom: 28px;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), rgba(201, 168, 76, 0.3));
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  color: var(--white);
  font-size: 1rem;
}

.author-role {
  font-size: 1rem;
  color: var(--grey);
}

/* ── TEAM ── */
.team-section {
  padding: var(--section-pad);
  background: #ffffff;
  color: #0b0b0b;
}

/* section header text on white */
.team-section .label {
  color: var(--gold);
  letter-spacing: 0.12em;
  font-weight: 700;
}

.team-section h2 {
  color: #0b0b0b !important;
  -webkit-text-fill-color: #0b0b0b !important;
  line-height: 1.3;
  display: block;
  background: none !important;
}

.team-section h2 em {
  color: var(--gold);
  background: none !important;
  font-style: italic;
  display: inline;
}

.team-section .section-header h2 {
  max-width: none;
}

.team-section p {
  color: rgba(0, 0, 0, 0.72);
}

/* grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Ensure team section headings display properly */
.team-section .section-header {
  margin-bottom: 60px;
}

.team-section .section-header h2 br {
  display: block;
}

/* card */
.team-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* image */
.team-img {
  height: 220px;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
}

/* placeholder (if no image) */
.team-img-placeholder {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.25);
}

/* subtle fade over image for text readability if you ever overlay */
.team-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
}

/* info */
.team-info {
  padding: 22px 22px 26px;
}

.team-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0b0b0b;
  margin-bottom: 4px;
}

.team-role {
  font-size: 1rem;
  color: #b88d20;
  /* gold tone that works on white */
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.team-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.72);
}

/* responsive */
@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-img {
    height: 260px;
  }
}


/* ── CTA BAND ── */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 60%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-inner .label {
  margin-bottom: 20px;
}

.cta-inner h2 {
  margin-bottom: 20px;
}

.cta-inner p {
  max-width: 540px;
  margin: 0 auto 44px;
  font-size: 1.2rem;
}

.cta-inner .hero-ctas {
  justify-content: center;
}

/* ── CONTACT STRIP ── */
.contact-strip {
  padding: 60px 0;
  background: var(--navy-mid);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.contact-item strong {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-item a,
.contact-item span {
  color: var(--white);
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--gold);
}

/* ── FOOTER ── */
.site-footer {
  background: #000000;
  padding: 60px 0 30px;
  border-top: 1px solid var(--gold);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 30px;
}

.footer-brand p {
  font-size: 0.95rem;
  margin: 16px 0 24px;
  max-width: 280px;
}

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

.social-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  /* icon color */
  transition: transform .2s, border-color .2s, background .2s, color .2s;
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

.social-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 168, 76, 0.35);
  background: rgba(201, 168, 76, 0.08);
  color: #c9a84c;
  /* gold icon on hover */
}

.footer-col h5 {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

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

.footer-col ul a {
  color: var(--grey);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--grey);
}

.footer-flag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--grey);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-left>* {
  animation: fadeUp 0.9s ease both;
}

.hero-left>*:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-left>*:nth-child(2) {
  animation-delay: 0.25s;
}

.hero-left>*:nth-child(3) {
  animation-delay: 0.4s;
}

.hero-left>*:nth-child(4) {
  animation-delay: 0.55s;
}

/* ── PAGE CONTENT (for inner pages) ── */
.page-header {
  padding: 180px 0 80px;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header .label {
  margin-bottom: 16px;
}

.page-header h1 {
  margin-bottom: 20px;
  color: var(--white);
  display: block;
  background: none !important;
  line-height: 1.2;
}

.page-header p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.25rem;
}

.page-content {
  padding: var(--section-pad);
  max-width: 900px;
  margin: 0 auto;
}

.page-content h2 {
  margin: 60px 0 24px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.3;
}

.page-content h3 {
  margin: 40px 0 16px;
  color: var(--gold);
  font-size: 1.5rem;
}

.page-content h4 {
  margin: 32px 0 12px;
  color: var(--white);
  font-size: 1.25rem;
}

.page-content p {
  margin-bottom: 24px;
  line-height: 1.8;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

.page-content ul,
.page-content ol {
  margin-bottom: 24px;
  padding-left: 32px;
}

.page-content li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 1.05rem;
}

.page-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.page-content a:hover {
  color: var(--gold-light);
}

.page-content blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  border-left: 4px solid var(--gold);
  background: var(--navy-mid);
  border-radius: 8px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 32px 0;
}

.page-content code {
  background: var(--navy-mid);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.95em;
  color: var(--gold);
}

.page-content pre {
  background: var(--navy-mid);
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid rgba(245, 166, 35, 0.1);
}

.page-content pre code {
  background: none;
  padding: 0;
}

/* ── ADDITIONAL TEAM SECTION ── */
.team-section-alt {
  padding: 100px 0;
  background: #FFFFFF;
}

.team-section-alt .section-header .label {
  color: #F5A623;
}

.team-section-alt .section-header h2 {
  color: #000000;
}

.team-alt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.team-alt-card {
  text-align: center;
}

.team-alt-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 8px;
}

.team-alt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-alt-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.team-alt-role {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 20px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team-social a {
  color: #000000;
  transition: color 0.3s;
}

.team-social a:hover {
  color: #F5A623;
}

/* Responsive */
@media (max-width: 1024px) {
  .team-alt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-alt-grid {
    grid-template-columns: 1fr;
  }
}

/* ── EVENT YEAR NAVIGATION ── */
.event-year-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.year-tab {
  padding: 12px 32px;
  background: transparent;
  border: 2px solid rgba(245, 166, 35, 0.3);
  border-radius: 6px;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.year-tab:hover {
  border-color: var(--gold);
  background: rgba(245, 166, 35, 0.1);
  transform: translateY(-2px);
}

.year-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-color: var(--gold);
}

.event-content {
  display: none;
}

.event-content.active {
  display: block;
}

@media (max-width: 768px) {
  .event-year-nav {
    gap: 12px;
  }

  .year-tab {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}


/* ── YOUTUBE VIDEOS GRID (PM EXPO) ── */
.expo-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  background: var(--navy-light);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(245, 166, 35, 0.2);
  transition: border-color 0.3s, transform 0.3s;
}

.video-wrapper:hover {
  border-color: rgba(245, 166, 35, 0.6);
  transform: translateY(-4px);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-right {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-stat-card {
    flex: 1;
    min-width: 200px;
  }

  .hero-stat-card:nth-child(2) {
    margin-left: 0;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .guidance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expo-inner {
    grid-template-columns: 1fr;
  }

  /* Expo Meta - Better wrapping on tablet */
  .expo-left,
  .expo-right {
    padding: 48px 40px;
  }

  .expo-meta {
    gap: 20px 24px;
  }

  .expo-meta-item strong {
    font-size: 0.9rem;
  }

  .expo-meta-item span {
    font-size: 0.95rem;
  }

  .promise-grid {
    grid-template-columns: 1fr;
  }

  .pme-contact-form {
    height: auto;
  }

  .promise-left {
    height: auto;
  }

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

/* Tablet Navigation Adjustments */
@media (max-width: 900px) {
  .nav-links {
    gap: 24px;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  .nav-inner {
    gap: 24px;
  }
}

/* Mobile Menu Toggle - Add these styles if not already present */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  :root {
    --section-pad: 80px 0;
  }

  /* Container padding */
  .container {
    padding: 0 24px;
  }

  /* Mobile Header Layout */
  .site-header .container {
    padding: 0 24px !important;
  }

  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 0;
  }

  /* Smaller logo for mobile - align with content */
  .logo {
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    order: -1;
  }

  .logo-mark {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .logo-text span:first-child {
    font-size: 0.95rem;
  }

  .logo-text span:last-child {
    font-size: 0.48rem;
  }

  /* Mobile Menu Toggle Button */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px 0;
    margin-right: 0;
    z-index: 101;
    position: relative;
  }

  .mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s;
    display: block;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* Mobile Navigation Wrapper */
  .nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: linear-gradient(180deg, var(--navy) 0%, #000000 100%);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 2px solid var(--gold);
    z-index: 100;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    flex: initial;
    margin: 0;
    gap: 0;
    padding-bottom: 40px;
  }

  .nav-wrapper.active {
    right: 0;
  }

  /* Mobile Navigation */
  .nav-links {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    max-width: none;
    height: auto;
    background: transparent;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 0 0;
    gap: 0;
    transition: none;
    border: none;
    z-index: auto;
    box-shadow: none;
    overflow-y: visible;
    flex: initial;
    justify-content: flex-start;
    order: 1;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(245, 166, 35, 0.1);
  }

  .nav-links a {
    display: block;
    padding: 18px 32px;
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    position: relative;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
  }

  .nav-links a:hover,
  .nav-links a.active,
  .nav-links .current-menu-item a,
  .nav-links .current_page_item a {
    color: var(--gold);
    padding-left: 42px;
  }

  .nav-links a:hover::before,
  .nav-links a.active::before,
  .nav-links .current-menu-item a::before,
  .nav-links .current_page_item a::before {
    width: 24px;
  }

  /* Book Free Call Button - Inside Mobile Nav after Contact */
  .nav-wrapper .btn-nav {
    display: block !important;
    width: 100%;
    margin: 0;
    padding: 18px 32px;
    background: transparent;
    color: var(--gold);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    text-align: left;
    border-radius: 0;
    border-top: 1px solid rgba(245, 166, 35, 0.1);
    border-bottom: 1px solid rgba(245, 166, 35, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    order: 2;
  }

  .nav-wrapper .btn-nav::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
  }

  .nav-wrapper .btn-nav:hover {
    color: var(--gold);
    padding-left: 42px;
  }

  .nav-wrapper .btn-nav:hover::before {
    width: 24px;
  }

  /* Mobile Menu Overlay */
  .nav-wrapper.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(2px);
    z-index: -1;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  /* Hide desktop Book Free Call button on mobile */
  header>.container>.btn-nav {
    display: none;
  }

  /* Gallery - Faster on mobile */
  .gallery-section {
    padding: 60px 0 50px;
  }

  .gallery-item {
    width: 280px;
    height: 200px;
  }

  .gallery-left .gallery-track {
    animation: gallery-scroll-left 25s linear infinite;
  }

  .gallery-right .gallery-track {
    animation: gallery-scroll-right 25s linear infinite;
  }

  /* Promise Section - Stack vertically */
  .promise-grid {
    flex-direction: column !important;
    flex-wrap: wrap !important;
    gap: 40px;
  }

  .pme-contact-form {
    height: auto;
  }

  .promise-left {
    height: auto;
  }

  .promise-right {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
  }

  .mini-card:first-child {
    grid-column: span 1;
  }

  /* Prevent text overflow */
  .promise-left,
  .promise-right,
  .mini-card,
  .service-card,
  .expo-left,
  .expo-right,
  p,
  h1,
  h2,
  h3,
  h4 {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
  }

  /* Mini cards full width on mobile */
  .mini-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 24px 20px !important;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials Grid */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Team Grid - Single column */
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-img {
    height: 280px;
  }

  /* Team Alt Grid - Single column */
  .team-alt-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Contact Grid */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
  }

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

  /* Stats Grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  /* Expo Section */
  .expo-inner {
    grid-template-columns: 1fr;
  }

  .expo-left,
  .expo-right {
    padding: 32px 24px;
  }

  /* Expo Meta - Stack vertically on mobile */
  .expo-meta {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
  }

  .expo-meta-item strong {
    font-size: 0.85rem;
    margin-bottom: 3px;
  }

  .expo-meta-item span {
    font-size: 0.95rem;
  }

  /* Expo CTA buttons - Stack vertically on mobile */
  .expo-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .expo-ctas .btn-primary,
  .expo-ctas .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  /* Speaker Grid - Single column */
  .speaker-grid {
    grid-template-columns: 1fr;
  }

  /* Blog Grids - Mobile */
  .blog-posts-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  .related-posts-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  /* Blog Featured Post - Stack on Mobile */
  .blog-hero-wrapper {
    height: auto !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .blog-hero-image {
    position: relative !important;
    inset: auto !important;
    height: 300px !important;
    flex-shrink: 0;
  }

  .blog-hero-overlay {
    display: none !important;
  }

  .blog-hero-content {
    position: relative !important;
    padding: 32px 28px !important;
    background: var(--navy-mid) !important;
  }

  .blog-hero-content h2 {
    font-size: 2rem !important;
    color: var(--white) !important;
  }

  .blog-hero-content .post-excerpt {
    color: rgba(255, 255, 255, 0.7) !important;
  }

  .post-card-content {
    padding: 24px 20px;
  }

  .post-card h3 {
    font-size: 1.3rem !important;
  }

  .author-bio-section {
    padding: 32px 24px;
  }

  .author-bio-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .author-bio-avatar {
    margin: 0 auto;
  }

  /* Pagination - Mobile */
  .page-numbers {
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .page-numbers.prev,
  .page-numbers.next {
    padding: 0 16px;
    font-size: 0.85rem;
  }

  /* Hero adjustments */
  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right {
    flex-direction: column;
    gap: 16px;
  }

  .hero-stat-card {
    padding: 20px;
  }

  .hero-stat-card:nth-child(2) {
    margin-left: 0;
  }

  /* Section padding */
  .promise-section,
  .services-section,
  .team-section,
  .testimonials-section,
  .cta-section {
    padding: 60px 0;
  }

  /* Section headers */
  .section-header h2 {
    font-size: 2rem;
  }

  /* Page header */
  .page-header {
    padding: 120px 0 60px;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  /* Better button spacing */
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .hero-ctas a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Service cards padding */
  .service-card {
    padding: 32px 24px;
  }

  /* CTA section */
  .cta-inner {
    padding: 40px 0;
  }

  /* Marquee slower on mobile */
  .marquee-track {
    animation-duration: 40s;
  }
}

/* Smaller mobile devices */
@media (max-width: 480px) {
  .mobile-menu-toggle {
    padding: 8px;
  }

  .nav-links {
    width: 90%;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
  }

  /* Hero - Smaller Mobile */
  .hero-tagline {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  /* Blog - Smaller Mobile */
  .blog-hero-image {
    height: 250px !important;
  }

  .blog-hero-content {
    padding: 28px 20px !important;
  }

  .blog-hero-content h2 {
    font-size: 1.6rem !important;
  }

  .blog-hero-meta {
    font-size: 0.8rem;
    gap: 12px;
  }

  .post-card h3 {
    font-size: 1.2rem !important;
  }

  .post-card-excerpt {
    font-size: 0.95rem !important;
  }

  .page-content h2 {
    font-size: 1.6rem !important;
  }

  .page-content h3 {
    font-size: 1.3rem !important;
  }

  .page-content p,
  .page-content li {
    font-size: 1rem !important;
  }

  /* Pagination - Smaller Mobile */
  .page-numbers {
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    font-size: 0.85rem;
  }

  .page-numbers.prev,
  .page-numbers.next {
    padding: 0 14px;
    font-size: 0.8rem;
  }
}

/* ── ADDITIONAL MOBILE RESPONSIVE HELPERS ── */

/* Registration Grid (PM EXPO) - 3 columns */
.expo-registration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Registration Bottom Grid - 3 columns for all cards */
.expo-registration-grid-bottom {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 24px !important;
  max-width: 1400px;
  margin: 0 auto;
}

/* Force grid items to respect columns */
.expo-registration-grid-bottom>.mini-card {
  width: 100%;
  min-width: 0;
}

/* Registration Cards Hover Effects */
.expo-registration-grid .mini-card:hover,
.expo-registration-grid-bottom .mini-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(245, 166, 35, 0.2) !important;
  border-color: var(--gold);
}

/* Speakers Grid (PM EXPO) */
.expo-speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Social Links Grid (Contact) */
.social-links-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  text-decoration: none;
  min-width: 200px;
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.social-link-card:hover {
  border-color: rgba(245, 166, 35, 0.3) !important;
  transform: translateY(-4px);
}

.social-link-card strong {
  color: var(--navy) !important;
}

.social-link-card span {
  color: #6B7280 !important;
}

/* Responsive grid utility for inline-styled grids */
@media (max-width: 768px) {

  /* Reduce container padding on mobile for more content space */
  .container {
    padding: 0 20px;
  }

  /* YouTube Videos Grid - single column on mobile */
  .expo-videos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Registration grid - single column on mobile */
  .expo-registration-grid,
  .expo-registration-grid-bottom {
    grid-template-columns: 1fr !important;
    gap: 20px;
    flex-direction: column !important;
    flex-wrap: wrap !important;
  }

  .expo-registration-grid-bottom[style*="display: grid"] {
    grid-template-columns: 1fr !important;
  }

  .expo-registration-grid-bottom[style*="display: flex"] {
    flex-direction: column !important;
  }

  /* Registration cards full width on mobile */
  .expo-registration-grid .mini-card,
  .expo-registration-grid-bottom .mini-card {
    width: 100%;
    max-width: 100%;
    padding: 32px 24px !important;
  }

  /* Speakers grid - single column on mobile */
  .expo-speakers-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Expert Guidance Grid - single column on mobile */
  .guidance-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .guidance-content {
    min-height: auto;
    padding: 28px 24px;
  }

  .guidance-image {
    height: 200px;
  }

  /* Social links - full width cards on mobile */
  .social-links-grid {
    flex-direction: column;
    gap: 16px;
  }

  .social-link-card {
    width: 100%;
    min-width: 100%;
    padding: 20px 24px;
    justify-content: flex-start;
  }

  /* PM EXPO Registration Cards - Force single column on mobile */
  .promise-section [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* PM EXPO Speakers Grid - 2 columns on mobile */
  .team-section [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Services/EXPO Testimonials with 2 columns - Force single column */
  .testimonials-section .testimonials-grid[style*="grid-template-columns: repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Contact page social media cards */
  .promise-section [style*="display: flex"][style*="gap: 20px"] {
    flex-direction: column !important;
    gap: 16px !important;
  }

  /* Inline-styled mini cards with heavy padding - reduce on mobile */
  .mini-card[style*="padding: 64px"],
  .mini-card[style*="padding: 60px"],
  .mini-card[style*="padding: 56px"] {
    padding: 32px 24px !important;
  }

  .mini-card[style*="padding: 48px"] {
    padding: 28px 20px !important;
  }

  /* Speaker pills with center text */
  .speaker-pill[style*="padding: 24px"] {
    padding: 20px 16px !important;
  }

  /* Form inputs - ensure good touch targets */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    font-size: 16px !important;
    /* Prevents zoom on iOS */
  }

  /* Contact page social links */
  .promise-section>.container>[style*="display: flex"] a.mini-card {
    width: 100%;
    justify-content: flex-start;
  }

  /* Page header text alignment on mobile */
  .page-header h1 {
    font-size: 2.2rem;
  }

  .page-header p {
    font-size: 1rem;
  }
}

/* Tablet breakpoint for speakers grid */
@media (max-width: 900px) and (min-width: 769px) {
  .expo-videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expo-speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expo-registration-grid-bottom {
    grid-template-columns: 1fr !important;
    gap: 20px;
    max-width: 600px;
  }

  .guidance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-section [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   CONTACT FORM 7 - PME CUSTOM STYLING
   ══════════════════════════════════════════════════════════════════════════ */

.pme-contact-form {
  background: #000000;
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 16px;
  padding: 32px 36px;
  max-width: 500px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pme-contact-form br {
  display: none;
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 24px 0;
  line-height: 1.2;
}

/* Force Contact Form title to white even inside .promise-section */
.promise-section .pme-contact-form .form-title{
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
}


.form-row {
  margin-bottom: 16px;
}

.form-row:last-child {
  margin-bottom: 0;
  margin-top: 20px;
}

.pme-contact-form label {
  display: block;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 5px;
}

/* Input Fields */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 1.05rem;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

/* Dropdown */
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px;
  padding-right: 50px;
  cursor: pointer;
  color: #FFFFFF;
}

.form-select option {
  background: #000000;
  color: #FFFFFF;
  padding: 12px;
}

.form-select option:first-child {
  color: rgba(255, 255, 255, 0.5);
}

/* When dropdown is open, show blue highlight */
.form-select option:checked {
  background: #0066FF;
  color: #FFFFFF;
}

/* Textarea */
.form-textarea {
  min-height: 100px;
  height: 100px;
  resize: vertical;
  line-height: 1.6;
}

/* Radio Buttons */
.radio-group {
  display: flex;
  gap: 24px;
  margin-top: 0;
}

.radio-group .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.radio-group input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #FFFFFF;
  cursor: pointer;
  margin: 0;
  filter: brightness(1);
}

.radio-group .wpcf7-list-item-label {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 400;
  cursor: pointer;
}

/* Submit Button */
.form-submit {
  width: 100%;
  padding: 14px 36px;
  background: var(--gold);
  color: #000000;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.4);
}

.form-submit:active {
  transform: translateY(0);
}

/* Loading State */
.wpcf7 form.submitting .form-submit {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Success/Error Messages */
.wpcf7-response-output {
  margin: 24px 0 0;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 1rem;
  border: none;
}

.wpcf7-mail-sent-ok {
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.4);
  color: #000000;
}

.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
  background: rgba(244, 67, 54, 0.15);
  border: 1px solid rgba(244, 67, 54, 0.4);
  color: #F44336;
}

/* Field Validation Errors */
.wpcf7-not-valid-tip {
  color: #F44336;
  font-size: 0.9rem;
  margin-top: 8px;
  display: block;
}

span.wpcf7-not-valid {
  border-color: #F44336 !important;
}

/* Hide Spinner */
.wpcf7-spinner {
  display: none;
}

/* Mobile Responsive for Contact Form */
@media (max-width: 768px) {
  .pme-contact-form {
    padding: 40px 30px;
    max-width: 100%;
  }

  .form-title {
    font-size: 1.75rem;
    margin-bottom: 32px;
  }

  .form-row {
    margin-bottom: 20px;
  }

  .radio-group {
    gap: 24px;
  }

  .form-submit {
    padding: 16px 32px;
  }
}

@media (max-width: 480px) {
  .pme-contact-form {
    padding: 32px 24px;
    border-radius: 12px;
  }

  .radio-group {
    flex-direction: column;
    gap: 12px;
  }
}


/* ══════════════════════════════════════════════════════════════════════════
   PMP CERTIFICATION PAGE
   ══════════════════════════════════════════════════════════════════════════ */

/* ── PMP Hero Section ── */
.pmp-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 180px 0 120px;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
}

.pmp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pmp-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.pmp-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.pmp-hero-content h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* ── PMP Content Box ── */
.pmp-content-box {
  flex: 1;
  background: var(--navy);
  border: 2px solid rgba(245, 166, 35, 0.3);
  border-radius: 12px;
  padding: 48px 40px;
}

.pmp-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pmp-benefits-list li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--white);
  padding-left: 32px;
  margin-bottom: 14px;
  position: relative;
}

.pmp-benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
}

.pmp-testimonial-box {
  background: rgba(245, 166, 35, 0.1);
  border-left: 3px solid var(--gold);
  padding: 24px;
  border-radius: 8px;
  margin-top: 32px;
}

.pmp-testimonial-box p {
  color: rgba(255, 255, 255, 0.9);
}

/* ── PMP Image Box ── */
.pmp-image-box {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(245, 166, 35, 0.2);
  height: 100%;
  min-height: 450px;
}

/* ── Mobile Responsive ── */
@media (max-width: 768px) {
  .pmp-hero {
    min-height: 50vh;
    padding: 100px 0 60px;
  }

  .pmp-hero-content {
    padding: 0 20px;
  }

  .pmp-hero-content h1 {
    font-size: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
  }

  .pmp-hero-content .label {
    font-size: 0.8rem;
    margin-bottom: 16px !important;
  }

  /* Content Box */
  .pmp-content-box {
    padding: 28px 20px;
  }

  .pmp-content-box h2 {
    font-size: 1.4rem !important;
    line-height: 1.3;
  }

  .pmp-content-box h3 {
    font-size: 1.1rem !important;
    margin-bottom: 24px !important;
  }

  .pmp-content-box h4 {
    font-size: 1.15rem !important;
    margin-bottom: 24px !important;
  }

  .pmp-content-box p {
    font-size: 0.95rem !important;
  }

  /* Image Box */
  .pmp-image-box {
    min-height: auto;
    margin-top: 24px;
    order: -1;
    height: auto;
    /* Show image first on mobile */
  }

  .pmp-image-box img {
    width: 100% !important;
    height: auto !important;
    min-height: 350px;
    object-fit: cover;
  }

  /* Benefits List */
  .pmp-benefits-list li {
    font-size: 0.9rem;
    padding-left: 28px;
    margin-bottom: 12px;
  }

  .pmp-benefits-list li::before {
    font-size: 1.1rem;
  }

  /* Testimonial Box */
  .pmp-testimonial-box {
    padding: 20px;
    margin-top: 24px;
  }

  .pmp-testimonial-box p {
    font-size: 0.9rem !important;
    line-height: 1.6;
  }

  /* Grid Layouts - Force single column */
  .promise-grid[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .promise-grid {
    gap: 32px;
  }

  /* Mini Cards */
  .mini-card {
    padding: 24px 20px !important;
  }

  .mini-card h3,
  .mini-card h4 {
    font-size: 1.2rem !important;
    margin-bottom: 12px !important;
  }

  .mini-card p,
  .mini-card span {
    font-size: 0.9rem !important;
  }

  .mini-card ul li {
    font-size: 0.9rem !important;
    margin-bottom: 12px !important;
  }

  /* Course Includes Gold Box */
  .mini-card[style*="linear-gradient"] {
    padding: 32px 24px !important;
  }
}

/* Smaller Mobile - 480px */
@media (max-width: 480px) {
  .pmp-hero {
    padding: 90px 0 50px;
  }

  .pmp-hero-content h1 {
    font-size: 1.3rem;
  }

  .pmp-content-box {
    padding: 24px 16px;
  }

  .pmp-content-box h2 {
    font-size: 1.2rem !important;
  }

  .pmp-content-box h3 {
    font-size: 1rem !important;
  }

  .pmp-content-box h4 {
    font-size: 1.05rem !important;
  }

  .pmp-image-box {
    min-height: auto;
    height: auto;
  }

  .pmp-image-box img {
    width: 100% !important;
    height: auto !important;
    min-height: 300px;
    object-fit: cover;
  }

  .mini-card {
    padding: 20px 16px !important;
  }

  .testimonial-box {
    padding: 16px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   PME ACADEMY PAGE STYLES
   ══════════════════════════════════════════════════════════════════════════ */

/* ── PME ACADEMY MODAL ── */
.pme-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pme-modal.active {
  opacity: 1;
  visibility: visible;
}

.pme-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.pme-modal-content {
  position: relative;
  background: #000000;
  max-width: 650px;
  width: 90%;
  max-height: 90vh;
  border: 2px solid var(--gold);
  z-index: 10000;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.pme-modal.active .pme-modal-content {
  transform: scale(1);
}

.pme-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid var(--gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gold);
  z-index: 10001;
  transition: all 0.3s ease;
}

.pme-modal-close:hover {
  background: var(--gold);
  color: #000000;
  transform: rotate(90deg);
}

.pme-modal-scroll {
  overflow-y: auto;
  max-height: 90vh;
  padding: 40px;
}

/* Custom scrollbar for modal */
.pme-modal-scroll::-webkit-scrollbar {
  width: 8px;
}

.pme-modal-scroll::-webkit-scrollbar-track {
  background: #1A1A1A;
}

.pme-modal-scroll::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

.pme-modal-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

.pme-academy-page {
  min-height: 100vh;
  background: #000000;
  padding: 120px 0 80px;
}

.pme-academy-content {
  max-width: 600px;
  margin: 0 auto;
}

/* ── PME Academy Header (for both modal and page) ── */
.pme-modal .pme-academy-header,
.pme-academy-header {
  text-align: center;
  margin-bottom: 30px;
}

.pme-modal .pme-logo-section,
.pme-logo-section {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.pme-modal .pme-logo-mark,
.pme-logo-mark {
  background: white;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  position: relative;
}

.pme-modal .pme-logo-p,
.pme-logo-p {
  color: #2C2C2C;
  position: relative;
  z-index: 2;
}

.pme-modal .pme-logo-m,
.pme-logo-m {
  color: var(--gold);
  position: relative;
  margin-left: -8px;
  z-index: 1;
}

.pme-modal .pme-academy-title,
.pme-academy-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: white;
  margin: 0;
}

/* ── Upcoming Cohorts Section ── */
.pme-cohorts-section {
  background: #0A0A0A;
  border: 2px solid var(--gold);
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 50px;
}

.pme-section-title {
  background: #000000;
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-align: center;
  padding: 30px 20px;
  margin: 0;
  border-bottom: 2px solid var(--gold);
  line-height: 1.3;
}

.pme-cohorts-list {
  padding: 0;
  margin: 0;
}

.pme-cohort-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 40px;
  background: var(--gold);
  color: white;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  border-bottom: 3px solid #000000;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pme-cohort-item:last-child {
  border-bottom: none;
}

.pme-cohort-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: white;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.pme-cohort-item:hover {
  padding-left: 50px;
  background: linear-gradient(90deg, #FF8C00 0%, var(--gold) 100%);
}

.pme-cohort-item:hover::before {
  transform: scaleX(1);
}

.cohort-check {
  font-size: 2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.cohort-text {
  line-height: 1.3;
  font-weight: 400;
}

/* ── Action Buttons ── */
.pme-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 40px;
  background: #000000;
  align-items: center;
}

.pme-btn-pay,
.pme-btn-register {
  display: block;
  text-align: center;
  padding: 18px 60px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease;
  min-width: 320px;
}

.pme-btn-pay {
  background: #2C3E50;
  color: white;
  margin-bottom: 20px;
  border: 2px solid #2C3E50;
}

.pme-btn-pay:hover {
  background: #34495e;
  border-color: #34495e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
}

.pme-btn-register {
  background: #2C3E50;
  color: white;
  border: 2px solid #2C3E50;
}

.pme-btn-register:hover {
  background: #34495e;
  border-color: #34495e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
}

/* ── Program Description ── */
.pme-program-description {
  background: white;
  color: #2C2C2C;
  padding: 50px 40px;
  border-radius: 0;
}

.pme-program-description h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #2C2C2C;
  margin-bottom: 25px;
  line-height: 1.2;
}

.pme-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4A4A4A;
  margin-bottom: 35px;
}

.pme-features h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2C2C2C;
  margin-bottom: 20px;
}

.pme-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pme-features-list li {
  font-size: 1rem;
  line-height: 1.7;
  color: #4A4A4A;
  padding-left: 30px;
  margin-bottom: 12px;
  position: relative;
}

.pme-features-list li::before {
  content: '•';
  position: absolute;
  left: 10px;
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1.4;
}

/* ── Mobile Responsive ── */
@media (max-width: 768px) {
  .pme-modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .pme-modal-scroll {
    padding: 30px 20px;
  }

  .pme-modal-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
  }

  .pme-academy-page {
    padding: 100px 0 60px;
  }

  .pme-academy-content {
    padding: 0 20px;
  }

  .pme-modal .pme-logo-mark,
  .pme-logo-mark {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }

  .pme-modal .pme-academy-title,
  .pme-academy-title {
    font-size: 1.8rem;

    .pme-section-title {
      font-size: 1.5rem;
      padding: 25px 15px;
    }

    .pme-cohort-item {
      padding: 22px 25px;
      font-size: 1.3rem;
    }

    .pme-cohort-item:hover {
      padding-left: 35px;
    }

    .pme-action-buttons {
      padding: 30px 20px;
    }

    .pme-btn-pay,
    .pme-btn-register {
      min-width: 100%;
      padding: 16px 40px;
      font-size: 1rem;
    }

    .pme-program-description {
      padding: 35px 25px;
    }

    .pme-program-description h2 {
      font-size: 1.8rem;
    }
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   404 ERROR PAGE STYLES
   ══════════════════════════════════════════════════════════════════════════ */

.error-404-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
  background: var(--navy);
}

.error-404-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.error-404-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(8rem, 20vw, 16rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.2;
  animation: fadeIn 0.8s ease;
}

.error-404-section h1 {
  margin-bottom: 24px;
  color: var(--white);
}

.error-404-section h1 em {
  color: var(--gold);
  font-style: italic;
}

.error-404-text {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 48px;
  color: var(--grey);
}

/* Search Form */
.error-404-search {
  max-width: 500px;
  margin: 0 auto 60px;
}

.search-form {
  display: flex;
  gap: 12px;
}

.search-field {
  flex: 1;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--white);
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s;
}

.search-field:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.search-field::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.search-submit {
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Outfit', sans-serif;
}

.search-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.4);
}

/* Quick Links */
.error-404-links {
  margin-top: 60px;
}

.error-404-links-header {
  margin-bottom: 32px;
}

.error-404-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.error-404-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px 24px;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.error-404-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.error-404-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.error-404-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.error-404-card p {
  font-size: 0.95rem;
  color: var(--grey);
  margin: 0;
}

/* Help Section */
.error-404-help {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.error-404-help p {
  color: var(--grey);
  font-size: 1rem;
}

.help-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.help-link:hover {
  color: var(--gold-light);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 0.2;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .error-404-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .error-404-section {
    padding: 100px 0 80px;
  }

  .error-404-number {
    font-size: 8rem;
    margin-bottom: 16px;
  }

  .error-404-text {
    font-size: 1rem;
    margin-bottom: 36px;
  }

  .search-form {
    flex-direction: column;
  }

  .search-submit {
    width: 100%;
  }

  .error-404-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .error-404-card {
    padding: 24px 20px;
  }

  .error-404-help {
    margin-top: 40px;
    padding-top: 32px;
  }
}

@media (max-width: 480px) {
  .error-404-number {
    font-size: 6rem;
  }

  .search-field {
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .search-submit {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}

/* ── LARGE SCREENS - 3 COLUMN BLOG GRID ── */
@media (min-width: 1400px) {
  .blog-posts-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   PMP COACHING PAGE TEMPLATE STYLES
   ══════════════════════════════════════════════════════════════════════════ */

/* ── PME ACADEMY HERO SECTION ── */
.pme-academy-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.pme-academy-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(245, 166, 35, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(245, 166, 35, 0.05) 0%, transparent 40%);
  z-index: 0;
}

.pme-academy-hero-bg::after {
  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%3Cpath d='M30 30L30 0M30 30L60 30' stroke='rgba(245,166,35,0.03)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.pme-academy-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.pme-academy-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.15;
  margin: 0;
  background: linear-gradient(135deg, var(--white) 0%, rgba(245, 166, 35, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ── PME ACADEMY BENEFITS SECTION ── */
.pme-academy-benefits {
  padding: 100px 0;
  background: var(--navy);
}

.pme-pain-points {
  text-align: center;
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pain-intro {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.6;
  color: var(--grey);
  margin-bottom: 40px;
  font-weight: 400;
}

.what-if {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
}

.dream-role {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  margin-bottom: 30px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.keep-reading {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--white);
  font-weight: 400;
}

/* ── PROBLEMS LIST ── */
.pme-problems-list {
  background: var(--navy-mid);
  border: 2px solid rgba(245, 166, 35, 0.2);
  border-radius: 20px;
  padding: 60px 50px;
  margin-bottom: 80px;
}

.pme-problems-list p {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--white);
  position: relative;
  padding-left: 30px;
}

.pme-problems-list p:last-child {
  margin-bottom: 0;
}

.pme-problems-list p::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.5em;
  font-weight: 700;
}

.highlight-gold {
  color: var(--gold);
  font-weight: 600;
  font-style: italic;
}

/* ── ANSWER SECTION ── */
.pme-answer {
  text-align: center;
  margin-bottom: 80px;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.05) 0%, transparent 100%);
  border-radius: 20px;
}

.answer-text {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--white);
  margin-bottom: 25px;
  line-height: 1.6;
}

.yes-text {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.3em;
  font-family: 'Cormorant Garamond', serif;
}

.deserve-text {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.attend-text {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--white);
  line-height: 1.7;
}

.dream-text {
  color: var(--gold);
  font-weight: 700;
  font-style: italic;
  font-size: 1.2em;
}

/* ── OFFERINGS SECTION ── */
.pme-offerings {
  background: var(--navy-mid);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 60px 50px;
  margin-bottom: 60px;
}

.pme-offerings h3 {
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
}

.offerings-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offerings-list li {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: var(--white);
  padding: 20px 0;
  padding-left: 50px;
  position: relative;
  border-bottom: 1px solid rgba(245, 166, 35, 0.1);
  line-height: 1.6;
}

.offerings-list li:last-child {
  border-bottom: none;
}

.offerings-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

/* ── CTA BUTTONS ── */
.pme-cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.pme-cta-buttons .btn-primary,
.pme-cta-buttons .btn-secondary {
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  min-width: 240px;
}

.pme-cta-buttons .btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}

.pme-cta-buttons .btn-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3);
}

.pme-cta-buttons .btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.pme-cta-buttons .btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* ── PM EXPO SECTION ── */
.pme-expo-section {
  padding: 100px 0;
  background: var(--navy-light);
}

.pme-expo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pme-expo-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(245, 166, 35, 0.2);
}

.pme-expo-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.pme-expo-image:hover img {
  transform: scale(1.05);
}

.pme-expo-content p {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.8;
  color: var(--white);
  margin-bottom: 25px;
}

.pme-expo-content p:last-of-type {
  margin-bottom: 0;
}

.pme-expo-content .btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
  margin-top: 24px;
}

.pme-expo-content .btn-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 166, 35, 0.3);
}

/* ── TESTIMONIAL SECTION ── */
.pme-testimonial-section {
  padding: 100px 0;
  background: var(--navy-mid);
}

.pme-testimonial-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

.pme-testimonial-content {
  background: var(--navy);
  border-left: 6px solid var(--gold);
  padding: 50px 60px;
  border-radius: 0 16px 16px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-quote p {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.85;
  color: var(--white);
  margin-bottom: 30px;
  font-style: italic;
  font-weight: 300;
}

.testimonial-quote p:last-child {
  margin-bottom: 0;
}

.testimonial-author {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: var(--gold);
  font-weight: 600;
  font-style: normal !important;
  margin-top: 25px;
}

.pme-testimonial-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(245, 166, 35, 0.15);
}

.pme-testimonial-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

/* ── UPCOMING COHORTS SHOWCASE ── */
.pme-cohorts-showcase {
  padding: 100px 0;
  background: var(--navy);
}

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

.section-header .label {
  display: block;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin: 0;
}

.section-header h2 em {
  color: var(--gold);
  font-style: italic;
}

/* ── COHORTS GRID ── */
.cohorts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.cohort-card {
  background: var(--navy-mid);
  border: 2px solid rgba(245, 166, 35, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cohort-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  right: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: all 0.6s ease;
}

.cohort-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(245, 166, 35, 0.2);
}

.cohort-card:hover::before {
  left: 100%;
  right: -100%;
}

.cohort-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.cohort-date {
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(245, 166, 35, 0.2);
}

.cohort-desc {
  font-size: 1.1rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 35px;
  min-height: 60px;
}

.cohort-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cohort-actions .btn-primary,
.cohort-actions .btn-secondary {
  width: 100%;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: inline-block;
}

.cohort-actions .btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}

.cohort-actions .btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: scale(1.05);
}

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

.cohort-actions .btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* ── FINAL CTA SECTION ── */
.pme-final-cta {
  position: relative;
  padding: 120px 0;
  background: var(--navy-light);
  overflow: hidden;
}

.pme-final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(245, 166, 35, 0.1) 0%, transparent 60%);
  z-index: 0;
}

.pme-final-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.pme-final-content h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}

.tagline {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--gold);
  font-style: italic;
  margin-bottom: 40px;
  font-family: 'Cormorant Garamond', serif;
}

.achievement-text {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 40px;
}

.inquiry-text {
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  color: var(--grey);
  line-height: 1.9;
}

/* ══════════════════════════════════════════════════════════════════════════
   PMP COACHING PAGE - RESPONSIVE STYLES
   ══════════════════════════════════════════════════════════════════════════ */

/* ── TABLET & BELOW (768px) ── */
@media (max-width: 768px) {
  .pme-academy-hero {
    min-height: 60vh;
    padding: 120px 0 60px;
  }

  .pme-academy-hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .pme-academy-benefits {
    padding: 50px 0;
  }

  .container {
    padding: 0 20px;
  }

  .pme-pain-points {
    margin-bottom: 50px;
  }

  .pain-intro {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .what-if {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .dream-role {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .keep-reading {
    font-size: 1.1rem;
  }

  .pme-problems-list {
    padding: 30px 20px;
    margin-bottom: 40px;
    border-radius: 12px;
  }

  .pme-problems-list p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    padding-left: 25px;
    line-height: 1.7;
  }

  .pme-problems-list p::before {
    font-size: 1.2em;
  }

  .pme-answer {
    padding: 35px 25px;
    margin-bottom: 40px;
  }

  .answer-text {
    font-size: 1.15rem;
    margin-bottom: 18px;
    line-height: 1.65;
  }

  .deserve-text {
    font-size: 1.35rem;
    margin-bottom: 22px;
    line-height: 1.4;
  }

  .attend-text {
    font-size: 1.05rem;
    line-height: 1.65;
  }

  .pme-offerings {
    padding: 35px 25px;
    margin-bottom: 35px;
  }

  .pme-offerings h3 {
    font-size: 1.75rem;
    margin-bottom: 28px;
  }

  .offerings-list li {
    font-size: 1.05rem;
    padding: 15px 0 15px 38px;
    line-height: 1.65;
  }

  .offerings-list li::before {
    font-size: 1.6rem;
  }

  .pme-cta-buttons {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .pme-cta-buttons .btn-primary,
  .pme-cta-buttons .btn-secondary {
    width: 100%;
    min-width: unset;
  }

  .pme-expo-section {
    padding: 60px 0;
  }

  .pme-expo-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pme-expo-image {
    order: -1;
    border-radius: 16px;
  }

  .pme-expo-image img {
    max-height: 350px;
    object-fit: cover;
  }

  .pme-expo-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
  }

  .pme-expo-content .btn-primary {
    width: 100%;
    text-align: center;
  }

  .pme-testimonial-section {
    padding: 60px 0;
  }

  .pme-testimonial-wrapper {
    gap: 30px;
    display: flex;
    flex-direction: column;
  }

  .pme-testimonial-image {
    order: -1;
    border-radius: 16px;
  }

  .pme-testimonial-image img {
    max-height: 300px;
  }

  .pme-testimonial-content {
    padding: 35px 30px;
    border-left-width: 5px;
    border-radius: 0 12px 12px 0;
  }

  .testimonial-quote p {
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 20px;
  }

  .testimonial-author {
    font-size: 1.15rem;
    margin-top: 20px;
  }

  .pme-cohorts-showcase {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .cohorts-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cohort-card {
    padding: 32px 24px;
  }

  .cohort-number {
    font-size: 2.2rem;
  }

  .cohort-date {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .cohort-desc {
    font-size: 1.05rem;
    margin-bottom: 30px;
    min-height: auto;
  }

  .pme-final-cta {
    padding: 80px 0;
  }

  .pme-final-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .tagline {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }

  .achievement-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .inquiry-text {
    font-size: 1.05rem;
  }
}

/* ── MOBILE (480px) ── */
@media (max-width: 480px) {
  .pme-academy-hero {
    padding: 100px 0 50px;
  }

  .pme-academy-hero-content {
    padding: 0 20px;
  }

  .pme-academy-benefits {
    padding: 50px 0;
  }

  .pme-problems-list {
    padding: 30px 20px;
    border-radius: 12px;
  }

  .pme-problems-list p {
    font-size: 1rem;
    padding-left: 22px;
  }

  .pme-answer {
    padding: 30px 20px;
    border-radius: 12px;
  }

  .pme-offerings {
    padding: 30px 20px;
    border-radius: 12px;
  }

  .offerings-list li {
    font-size: 1rem;
    padding-left: 35px;
  }

  .offerings-list li::before {
    font-size: 1.4rem;
  }

  .pme-cta-buttons .btn-primary,
  .pme-cta-buttons .btn-secondary {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .pme-expo-image {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .pme-expo-image img {
    max-height: 280px;
    object-fit: cover;
    border-radius: 12px;
  }

  .pme-expo-content p {
    font-size: 1.05rem;
    line-height: 1.65;
  }

  .pme-expo-content .btn-primary {
    width: 100%;
    padding: 15px 32px;
    font-size: 0.95rem;
  }

  .pme-testimonial-section {
    padding: 50px 0;
  }

  .pme-testimonial-image {
    border-radius: 12px;
  }

  .pme-testimonial-image img {
    max-height: 240px;
  }

  .pme-testimonial-content {
    padding: 28px 22px;
    border-left-width: 4px;
  }

  .testimonial-quote p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .testimonial-author {
    font-size: 1.1rem;
    margin-top: 18px;
  }

  .cohort-card {
    padding: 30px 20px;
    border-radius: 12px;
  }

  .cohort-number {
    font-size: 2rem;
  }

  .cohort-date {
    font-size: 1.1rem;
  }

  .cohort-desc {
    font-size: 1rem;
  }

  .cohort-actions .btn-primary,
  .cohort-actions .btn-secondary {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .pme-final-cta {
    padding: 60px 0;
  }

  .pme-final-content h2 {
    font-size: 1.8rem;
  }

  .tagline {
    font-size: 1.15rem;
  }

  .achievement-text {
    font-size: 1.05rem;
  }

  .inquiry-text {
    font-size: 1rem;
  }
}

/* ── LARGE DESKTOP (1200px+) ── */
@media (min-width: 1200px) {
  .cohorts-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pme-expo-grid {
    gap: 80px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   CORPORATE REGISTRATION PAGE
   ══════════════════════════════════════════════════════════════════════════ */

/* ── HERO SECTION ── */
.corp-reg-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 140px 0 80px;
  overflow: hidden;
}

.corp-reg-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(245, 166, 35, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(0, 0, 0, 0.6) 0%, transparent 60%),
    linear-gradient(160deg, #000000 0%, #0A0A0A 100%);
  z-index: 1;
}

.corp-reg-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.5) 80%, transparent);
}

.corp-reg-hero .container {
  position: relative;
  z-index: 2;
}

.corp-reg-hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.corp-reg-hero .label {
  display: inline-block;
  margin-bottom: 16px;
}

.corp-reg-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}

.corp-reg-hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.corp-reg-hero p {
  font-size: 1.25rem;
  color: var(--text-body);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ── REGISTRATION FORM SECTION ── */
.corp-reg-section {
  padding: var(--section-pad);
  background: var(--navy-mid);
  position: relative;
}

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

.corp-reg-form-container {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: 16px;
  padding: 44px 40px;
  backdrop-filter: blur(8px);
}

.corp-reg-form-header {
  margin-bottom: 32px;
}

.corp-reg-form-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.corp-reg-form-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.corp-reg-form {
  margin-top: 20px;
}

/* Contact Form 7 Styling */
.corp-reg-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Form Labels, Headings & Text */
.corp-reg-form label,
.corp-reg-form legend,
.corp-reg-form h2,
.corp-reg-form h3,
.corp-reg-form h4,
.corp-reg-form p,
.corp-reg-form span,
.corp-reg-form div {
  color: var(--white) !important;
}

.corp-reg-form label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9) !important;
}

.corp-reg-form fieldset {
  border: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.corp-reg-form legend {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(245, 166, 35, 0.2);
  width: 100%;
  color: var(--gold) !important;
}

.corp-reg-form input[type="text"],
.corp-reg-form input[type="email"],
.corp-reg-form input[type="tel"],
.corp-reg-form textarea,
.corp-reg-form select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 6px;
  color: var(--white);
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  transition: border-color 0.3s, background 0.3s;
}

/* Enhanced Select Dropdown Styling */
.corp-reg-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5A623' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 45px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9) !important;
}

.corp-reg-form input::placeholder,
.corp-reg-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.corp-reg-form input:focus,
.corp-reg-form textarea:focus,
.corp-reg-form select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.corp-reg-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Dropdown Options Styling */
.corp-reg-form select option {
  background: #0A0A0A !important;
  background-color: #0A0A0A !important;
  color: #ffffff !important;
  padding: 10px;
  font-weight: 500;
}

.corp-reg-form select option:hover,
.corp-reg-form select option:focus {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  background-color: var(--gold) !important;
  color: #000000 !important;
}

.corp-reg-form select option:checked,
.corp-reg-form select option[selected] {
  background: var(--gold) !important;
  background-color: var(--gold) !important;
  color: #000000 !important;
  font-weight: 600;
}

.corp-reg-form input[type="submit"] {
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
}

.corp-reg-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
}

/* ── BENEFITS CARDS ── */
.corp-reg-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: 12px;
  padding: 24px 26px;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}

.benefit-card:hover {
  border-color: rgba(245, 166, 35, 0.4);
  transform: translateX(4px);
}

.benefit-card.featured {
  background: rgba(245, 166, 35, 0.08);
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(245, 166, 35, 0.15);
}

.benefit-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}

.benefit-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

/* ── SERVICES OVERVIEW ── */
.corp-services-overview {
  padding: var(--section-pad);
  background: var(--navy);
  position: relative;
}

.corp-services-overview .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.corp-services-overview .section-header .label {
  display: inline-block;
  margin-bottom: 14px;
}

.corp-services-overview .section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.corp-services-overview .section-header h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.corp-services-overview .section-header p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
}

.corp-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.corp-service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: 12px;
  padding: 32px 28px;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}

.corp-service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.15);
}

.corp-service-card .service-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.corp-service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.corp-service-card p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin: 0;
}

/* ── WHY CHOOSE US SECTION ── */
.corp-why-choose {
  padding: var(--section-pad);
  background: var(--navy-mid);
}

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

.why-choose-left .label {
  display: inline-block;
  margin-bottom: 14px;
}

.why-choose-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.why-choose-left h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-choose-left > p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 32px;
}

.stats-mini {
  display: flex;
  gap: 40px;
  margin: 32px 0 40px;
  flex-wrap: wrap;
}

.stat-mini {
  text-align: center;
}

.stat-mini-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-mini-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.why-choose-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: 10px;
  padding: 24px 26px;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}

.feature-item:hover {
  border-color: rgba(245, 166, 35, 0.4);
  transform: translateX(4px);
}

.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.feature-content {
  flex: 1;
}

.feature-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.feature-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

/* ── RESPONSIVE STYLES ── */
@media (max-width: 992px) {
  .corp-reg-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .corp-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .corp-reg-hero {
    padding: 120px 0 60px;
  }

  .corp-reg-section,
  .corp-services-overview,
  .corp-why-choose {
    padding: 80px 0;
  }

  .corp-reg-form-container {
    padding: 32px 24px;
  }

  .corp-service-card {
    padding: 24px 20px;
  }

  .stats-mini {
    gap: 24px;
    justify-content: space-between;
  }

  .stat-mini-num {
    font-size: 2.2rem;
  }

  .feature-item {
    padding: 20px 18px;
  }

  .corp-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .corp-reg-hero {
    padding: 100px 0 50px;
  }

  .corp-reg-form-container {
    padding: 24px 18px;
  }

  .benefit-card {
    padding: 20px 18px;
  }

  .corp-service-card {
    padding: 20px 16px;
  }

  .feature-item {
    flex-direction: column;
    gap: 12px;
  }

  .feature-num {
    font-size: 1.5rem;
  }

  .stats-mini {
    flex-direction: column;
    gap: 20px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   EXHIBITOR REGISTRATION PAGE
   ══════════════════════════════════════════════════════════════════════════ */

/* ── HERO SECTION ── */
.exhibitor-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 140px 0 80px;
  overflow: hidden;
}

.exhibitor-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(245, 166, 35, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(0, 0, 0, 0.6) 0%, transparent 60%),
    linear-gradient(160deg, #000000 0%, #0A0A0A 100%);
  z-index: 1;
}

.exhibitor-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.5) 80%, transparent);
}

.exhibitor-hero .container {
  position: relative;
  z-index: 2;
}

.exhibitor-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.exhibitor-hero .label {
  display: inline-block;
  margin-bottom: 16px;
}

.exhibitor-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}

.exhibitor-hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.exhibitor-hero > div > div > p {
  font-size: 1.25rem;
  color: var(--text-body);
  margin-bottom: 32px;
  line-height: 1.6;
}

.expo-event-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.event-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 8px;
  padding: 12px 20px;
  backdrop-filter: blur(8px);
}

.detail-icon {
  font-size: 1.4rem;
}

.detail-text {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* ── REGISTRATION FORM SECTION ── */
.exhibitor-reg-section {
  padding: var(--section-pad);
  background: var(--navy-mid);
  position: relative;
}

.exhibitor-reg-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: start;
}

.exhibitor-reg-form-container {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: 16px;
  padding: 44px 40px;
  backdrop-filter: blur(8px);
}

.exhibitor-reg-form-header {
  margin-bottom: 32px;
}

.exhibitor-reg-form-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.exhibitor-reg-form-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.exhibitor-reg-form-header strong {
  color: var(--gold);
  font-weight: 600;
}

.exhibitor-reg-form {
  margin-top: 20px;
}

/* Contact Form 7 Styling for Exhibitor Form */
.exhibitor-reg-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Form Labels, Headings & Text */
.exhibitor-reg-form label,
.exhibitor-reg-form legend,
.exhibitor-reg-form h2,
.exhibitor-reg-form h3,
.exhibitor-reg-form h4,
.exhibitor-reg-form p,
.exhibitor-reg-form span,
.exhibitor-reg-form div {
  color: var(--white) !important;
}

.exhibitor-reg-form label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9) !important;
}

.exhibitor-reg-form fieldset {
  border: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.exhibitor-reg-form legend {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(245, 166, 35, 0.2);
  width: 100%;
  color: var(--gold) !important;
}

.exhibitor-reg-form input[type="text"],
.exhibitor-reg-form input[type="email"],
.exhibitor-reg-form input[type="tel"],
.exhibitor-reg-form input[type="url"],
.exhibitor-reg-form textarea,
.exhibitor-reg-form select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 6px;
  color: var(--white);
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  transition: border-color 0.3s, background 0.3s;
}

/* Enhanced Select Dropdown Styling */
.exhibitor-reg-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5A623' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 45px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9) !important;
}

.exhibitor-reg-form input::placeholder,
.exhibitor-reg-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.exhibitor-reg-form input:focus,
.exhibitor-reg-form textarea:focus,
.exhibitor-reg-form select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.exhibitor-reg-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Dropdown Options Styling */
.exhibitor-reg-form select option {
  background: #0A0A0A !important;
  background-color: #0A0A0A !important;
  color: #ffffff !important;
  padding: 10px;
  font-weight: 500;
}

.exhibitor-reg-form select option:hover,
.exhibitor-reg-form select option:focus {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  background-color: var(--gold) !important;
  color: #000000 !important;
}

.exhibitor-reg-form select option:checked,
.exhibitor-reg-form select option[selected] {
  background: var(--gold) !important;
  background-color: var(--gold) !important;
  color: #000000 !important;
  font-weight: 600;
}

.exhibitor-reg-form input[type="submit"] {
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
}

.exhibitor-reg-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
}

/* ── INFO SIDEBAR ── */
.exhibitor-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: 12px;
  padding: 28px 26px;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}

.info-card.featured {
  background: rgba(245, 166, 35, 0.08);
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(245, 166, 35, 0.15);
}

.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.info-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 12px;
}

.info-card p:last-child {
  margin-bottom: 0;
}

.info-card strong {
  color: var(--gold);
  font-weight: 600;
}

.info-card a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

.info-card a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* Included List */
.included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.included-list li {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.included-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Date Items */
.date-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(245, 166, 35, 0.1);
}

.date-item:last-child {
  border-bottom: none;
}

.date-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.date-value {
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 600;
  text-align: right;
}

/* Why List */
.why-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-list li {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.why-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

/* Contact Card */
.contact-card p {
  margin-bottom: 8px;
}

/* ── EXPO OVERVIEW SECTION ── */
.expo-overview-section {
  padding: var(--section-pad);
  background: var(--navy);
  position: relative;
}

.expo-overview-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.expo-overview-section .section-header .label {
  display: inline-block;
  margin-bottom: 14px;
}

.expo-overview-section .section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.expo-overview-section .section-header h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.expo-overview-section .section-header p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
}

.expo-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-bottom: 50px;
}

.expo-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}

.expo-stat-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.15);
}

.expo-stat-card .stat-icon {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 16px;
}

.expo-stat-card .stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.expo-stat-card .stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

.expo-cta-centered {
  text-align: center;
  margin-top: 40px;
}

/* ── RESPONSIVE STYLES ── */
@media (max-width: 992px) {
  .exhibitor-reg-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .expo-stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .exhibitor-hero {
    padding: 120px 0 60px;
  }

  .exhibitor-reg-section,
  .expo-overview-section {
    padding: 80px 0;
  }

  .exhibitor-reg-form-container {
    padding: 32px 24px;
  }

  .info-card {
    padding: 24px 20px;
  }

  .expo-event-details {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    width: 100%;
  }

  .event-detail-item {
    justify-content: flex-start;
    padding: 14px 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .detail-text {
    font-size: 0.95rem;
    flex: 1;
  }

  .detail-icon {
    flex-shrink: 0;
  }

  .expo-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .expo-stat-card {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .exhibitor-hero {
    padding: 100px 0 50px;
  }

  .exhibitor-reg-form-container {
    padding: 24px 18px;
  }

  .info-card {
    padding: 20px 16px;
  }

  .event-detail-item {
    padding: 12px 14px;
    flex-wrap: wrap;
  }

  .detail-text {
    font-size: 0.9rem;
  }

  .date-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .date-value {
    text-align: left;
  }

  .expo-stat-card .stat-number {
    font-size: 2.5rem;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   EXPO GALLERY PAGE
   ══════════════════════════════════════════════════════════════════════════ */

/* ── HERO SECTION ── */
.gallery-page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 140px 0 80px;
  overflow: hidden;
}

.gallery-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(245, 166, 35, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(0, 0, 0, 0.6) 0%, transparent 60%),
    linear-gradient(160deg, #000000 0%, #0A0A0A 100%);
  z-index: 1;
}

.gallery-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.5) 80%, transparent);
}

.gallery-page-hero .container {
  position: relative;
  z-index: 2;
}

.gallery-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.gallery-hero-content .label {
  display: inline-block;
  margin-bottom: 16px;
}

.gallery-hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}

.gallery-hero-content h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-hero-content > p {
  font-size: 1.25rem;
  color: var(--text-body);
  margin-bottom: 40px;
  line-height: 1.6;
}

.gallery-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 12px;
  padding: 20px 40px;
  backdrop-filter: blur(8px);
}

.gallery-stat .stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.gallery-stat .stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

/* ── GALLERY YEAR SECTIONS ── */
.gallery-year-section {
  padding: 80px 0;
  background: var(--navy-mid);
}

.gallery-year-section.alt {
  background: var(--navy);
}

.gallery-year-header {
  text-align: center;
  margin-bottom: 60px;
}

.year-badge {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 6px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.gallery-year-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.gallery-year-header h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-year-header p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
}

.gallery-year-header strong {
  color: var(--gold);
  font-weight: 600;
}

/* ── GALLERY GRID ── */
.expo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(245, 166, 35, 0.15);
  cursor: pointer;
  transition: all 0.3s;
  aspect-ratio: 4/3;
  background: rgba(0, 0, 0, 0.5);
}

.gallery-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.zoom-icon {
  font-size: 2.5rem;
  color: var(--gold);
}

.no-images {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
}

/* ── LIGHTBOX MODAL ── */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: opacity 0.15s;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.3);
  color: var(--white);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}

.lightbox-close:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.3);
  color: var(--white);
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
  z-index: 3;
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.lightbox-counter {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.3);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

/* ── RESPONSIVE STYLES ── */
@media (max-width: 1200px) {
  .lightbox-prev {
    left: 20px;
  }

  .lightbox-next {
    right: 20px;
  }
}

@media (max-width: 992px) {
  .expo-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .gallery-page-hero {
    padding: 120px 0 60px;
    min-height: 60vh;
  }

  .gallery-hero-content h1 {
    font-size: 2.5rem;
  }

  .gallery-stats {
    gap: 20px;
  }

  .gallery-stat {
    padding: 16px 30px;
  }

  .gallery-stat .stat-number {
    font-size: 2.5rem;
  }

  .gallery-year-section {
    padding: 60px 0;
  }

  .gallery-year-header {
    margin-bottom: 40px;
  }

  .expo-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-item {
    aspect-ratio: 16/10;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: -45px;
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
  }

  .lightbox-counter {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .gallery-page-hero {
    padding: 100px 0 50px;
  }

  .gallery-hero-content h1 {
    font-size: 2rem;
  }

  .gallery-hero-content > p {
    font-size: 1.1rem;
  }

  .gallery-stats {
    flex-direction: column;
    gap: 16px;
  }

  .gallery-stat {
    width: 100%;
    padding: 16px 24px;
  }

  .expo-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-item {
    border-radius: 8px;
    aspect-ratio: 16/10;
  }

  .lightbox-content {
    max-width: 95vw;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }

  .lightbox-counter {
    bottom: 10px;
    font-size: 0.85rem;
    padding: 8px 16px;
  }

  .gallery-year-section .container {
    padding: 0 20px;
  }
}