/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/
Description: A lightweight child theme for Hello Elementor theme, customized strictly for Single Blog Post pages with block components (Callouts, Process Grids, Checklists, Content Waterfalls, CTA Boxes).
Author: Elementor Team & Custom Dev
Author URI: https://elementor.com/
Template: hello-elementor
Version: 4.0.5
License: GNU General Public License v3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: hello-elementor-child
*/



/* ==========================================================================
   HEADER ALIGNMENT & HERO BG FIXES (v4.0.0)
   ========================================================================== */

/* Align Hello Elementor Header to 1280px Container Width */
body.home #site-header,
body.front-page #site-header,
body.home .site-header,
body.front-page .site-header {
    background: rgba(6, 9, 15, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 12px 0;
}

body.home #site-header .header-inner,
body.front-page #site-header .header-inner,
body.home .site-header .header-inner,
body.front-page .site-header .header-inner,
body.home .header-inner,
body.front-page .header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

body.home #site-header .custom-logo,
body.front-page #site-header .custom-logo,
body.home .site-header img {
    max-height: 42px;
    width: auto;
}

body.home .site-navigation ul.menu,
body.front-page .site-navigation ul.menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

body.home .site-navigation ul.menu > li > a,
body.front-page .site-navigation ul.menu > li > a {
    color: #9CA3AF;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

body.home .site-navigation ul.menu > li > a:hover,
body.front-page .site-navigation ul.menu > li > a:hover,
body.home .site-navigation ul.menu > li.current-menu-item > a {
    color: #d60b00;
}

/* Hero Section Fallback Background Image */
body.home .hero,
body.front-page .hero {
    background: #06090F url('assets/images/5.jpg') center/cover no-repeat;
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
}

/* FULL HOMEPAGE STYLES */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Cinematic Dark Theme Palette */
  --bg-primary: #06090F;
  --bg-secondary: #0B0F17;
  --bg-card: rgba(20, 27, 45, 0.6);
  --border-color: #2A364F;
  --text-primary: #F3F4F6;
  --text-secondary: #9CA3AF;
  
  /* Brand Accents */
  --accent-red: #d60b00;
  --accent-red-hover: #E02B40;
  --accent-cyan: #00E5FF;
  --accent-green: #00E676;
  
  /* Utilities */
  --glass-bg: rgba(6, 9, 15, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --container-width: 1280px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; }

p { margin-bottom: 1.5rem; color: var(--text-secondary); }

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover { color: #fff; }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Layout Utilities */
.section { padding: 100px 0; }
.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }

/* Components: Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  gap: 8px;
}

.btn-primary {
  background: var(--accent-red);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 51, 75, 0.3);
}

.btn-primary:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 51, 75, 0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--glass-border);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* Header & Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6, 9, 15, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  padding: 16px 0;
}

.site-header.scrolled {
  padding: 8px 0;
  background: rgba(6, 9, 15, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 1px rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
}

/* Brand Logo Text */
.brand-logo-text {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--accent-red);
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(255, 51, 75, 0.4);
  transition: transform 0.3s ease, text-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.brand-logo-text:hover {
  transform: scale(1.04);
  text-shadow: 0 0 28px rgba(255, 51, 75, 0.7);
}

.brand-logo-text .logo-dot {
  color: #FFFFFF;
}

.site-navigation ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-navigation a {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.site-navigation a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  transform: none;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  transition: var(--transition-smooth);
}

.site-navigation a:hover::after,
.site-navigation a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta {
  padding: 10px 22px;
  font-size: 0.9rem;
  border-radius: 30px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-toggle .bar {
  width: 100%;
  height: 2.5px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease, background-color 0.35s ease;
}

.mobile-toggle.active .bar:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
  background-color: var(--accent-red);
}

.mobile-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
  background-color: var(--accent-red);
}

/* Mobile Nav Drawer Responsive */
@media (max-width: 900px) {
  .mobile-toggle {
    display: flex;
  }

  .site-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(11, 15, 23, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border);
    padding: 100px 30px 40px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
  }

  .site-navigation.active {
    right: 0;
  }

  .site-navigation ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .site-navigation a {
    font-size: 1.15rem;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
  background-color: #06090F;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: grayscale(100%) contrast(1.2);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(6, 9, 15, 0.92) 0%, rgba(6, 9, 15, 0.65) 60%, rgba(6, 9, 15, 0.4) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  z-index: 3;
  opacity: 1;
  transform: none;
}

.hero-title {
  margin-bottom: 1.25rem;
  max-width: 950px;
}

.hero-brand {
  display: block;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: var(--accent-red);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  display: block;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 229, 255, 0.1);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

/* Video Presentation (About Snapshot) Section - Cinematic Split Screen */
.about-snapshot {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(135deg, rgba(11, 15, 23, 0.95) 0%, rgba(6, 9, 15, 1) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
}

/* Background Subtle Glow */
.about-snapshot::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.about-snapshot-grid {
  display: grid;
  grid-template-columns: 38% 58%;
  gap: 4%;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left Content Column */
.about-snapshot-content {
  text-align: left;
}

.stat-accent-number-wrapper {
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.stat-accent-number {
  color: var(--accent-red);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-accent-suffix {
  color: var(--accent-red);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.about-snapshot-heading {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.25;
}

.about-snapshot-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

.about-snapshot-cta {
  display: inline-flex;
  border-color: var(--accent-red);
  color: var(--accent-red);
  transition: all 0.3s var(--transition-smooth);
}

.about-snapshot-cta:hover {
  background: var(--accent-red);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 9, 20, 0.35);
}

/* Right Video Column */
.about-snapshot-video-wrapper {
  position: relative;
  width: 100%;
}

.video-card-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(229, 9, 20, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.97);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.fade-up.visible .video-card-container {
  transform: scale(1);
}

.video-card-container:hover {
  transform: scale(1.015);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(229, 9, 20, 0.25);
  border-color: rgba(229, 9, 20, 0.4);
}

.video-thumbnail-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.video-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card-container:hover .video-thumbnail-img {
  transform: scale(1.02);
}

.video-overlay-tint {
  position: absolute;
  inset: 0;
  background: rgba(6, 9, 15, 0.2);
  transition: background 0.3s ease;
}

.video-card-container:hover .video-overlay-tint {
  background: rgba(6, 9, 15, 0.4);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(229, 9, 20, 0.85);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--transition-smooth), background 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
  box-shadow: 0 6px 25px rgba(229, 9, 20, 0.4);
  z-index: 2;
}

.video-card-container:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--accent-red);
  box-shadow: 0 8px 32px rgba(229, 9, 20, 0.6);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .about-snapshot {
    padding: 60px 0;
  }
  
  .about-snapshot-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .about-snapshot-content {
    text-align: center;
  }
  
  .about-snapshot-desc {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Services Section */
/* Our Expertise (Services Section) */
#services {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.services-header h2 {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-header p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.services-container.visible .services-header h2,
.services-container.visible .services-header p {
  opacity: 1;
  transform: translateY(0);
}

/* Strict 4x2 Desktop Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Service Card Container & Stagger Reveal */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  
  opacity: 0;
  transform: translateY(30px);
  transition: 
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--card-index, 0) * 0.08s + 0.15s),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--card-index, 0) * 0.08s + 0.15s),
    border-color 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.services-container.visible .service-card {
  opacity: 1;
  transform: translateY(0);
}

/* Hover State on Card */
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-red);
  background: rgba(22, 29, 44, 0.95);
  box-shadow: 0 12px 30px rgba(229, 9, 20, 0.18), 0 0 1px rgba(229, 9, 20, 0.5);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.service-card:hover h3 {
  color: #FFFFFF;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* 3D Visual Icon Wrapper */
.service-icon-wrapper {
  width: 68px;
  height: 68px;
  background: radial-gradient(circle at 35% 35%, rgba(229, 9, 20, 0.22) 0%, rgba(229, 9, 20, 0.04) 100%);
  border: 1px solid rgba(229, 9, 20, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  
  opacity: 0;
  transform: scale(0.9) translateY(var(--scroll-shift, 0px));
  transition: 
    opacity 0.5s ease calc(var(--card-index, 0) * 0.08s + 0.3s),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--card-index, 0) * 0.08s + 0.3s),
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.services-container.visible .service-icon-wrapper {
  opacity: 1;
  transform: scale(1) translateY(var(--scroll-shift, 0px));
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.08) translateY(-4px);
  border-color: rgba(229, 9, 20, 0.6);
  background: radial-gradient(circle at 35% 35%, rgba(229, 9, 20, 0.35) 0%, rgba(229, 9, 20, 0.1) 100%);
  box-shadow: 0 10px 22px rgba(229, 9, 20, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.service-svg {
  width: 38px;
  height: 38px;
  transition: transform 0.4s ease;
}

/* Stats Section */
.stats-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 60px 0;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-red);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

/* Redesigned Why Climax Section (38% Left Text + 62% Right 4-Photo Showcase) */
.why-climax-section {
  position: relative;
}

.why-climax-grid {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 36px;
  align-items: center;
}

/* Left Side Content & Entrance Reveal */
.why-climax-left {
  opacity: 0;
  transform: translateX(-45px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-climax-section.visible .why-climax-left {
  opacity: 1;
  transform: translateX(0);
}

.why-climax-left h2 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  text-align: left;
  color: #FFFFFF;
}

.why-climax-left p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
  text-align: left;
}

/* Right Side 4-Photo Showcase & Entrance Reveal */
.why-climax-right {
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateX(45px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-climax-section.visible .why-climax-right {
  opacity: 1;
  transform: translateX(0);
}

.why-photos-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.why-photos-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: continuousPhotoSlide 28s linear infinite;
}

.why-photos-track:hover {
  animation-play-state: paused;
}

.why-photo-item {
  width: 260px;
  height: 155px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0d111a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.why-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.92);
}

.why-photo-item:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--accent-red);
  box-shadow: 0 12px 30px rgba(229, 9, 20, 0.28), 0 0 1px rgba(229, 9, 20, 0.6);
}

.why-photo-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.08);
}

@keyframes continuousPhotoSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 8px)); }
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .why-climax-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-climax-left {
    text-align: center;
  }

  .why-climax-left h2 {
    font-size: 2.2rem;
    text-align: center;
  }

  .why-climax-left p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }

  .why-photo-item {
    min-width: 180px;
  }
}

@media (max-width: 600px) {
  .why-photos-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    animation: none;
  }
  .why-photos-wrapper {
    mask-image: none;
    -webkit-mask-image: none;
  }
  .why-photo-item {
    width: 100%;
    min-width: 0;
  }
  .why-photo-item img {
    height: 130px;
  }
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 32px;
  border-radius: var(--radius-md);
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-red);
}

.author-info h4 {
  font-size: 1rem;
  margin: 0;
}

.author-info p {
  font-size: 0.85rem;
  margin: 0;
  color: var(--accent-cyan);
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 22px 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  font-style: normal;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: normal;
}

.faq-item.active {
  border-color: rgba(229, 9, 20, 0.4);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-red);
}

.faq-item.active .faq-answer {
  max-height: 500px; /* arbitrary max-height for animation */
  padding-bottom: 24px;
}

/* Footer */
.site-footer,
.dynamic-footer {
  background: #020407;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 30px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}

.dynamic-footer .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 24px;
}

.footer-desc {
  color: var(--text-secondary);
  max-width: 300px;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: #fff;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--accent-red);
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact i {
  color: var(--accent-red);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: var(--transition-fast);
}

.social-links a:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  transform: translateY(-3px);
}

/* Floating WhatsApp CTA */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  z-index: 99999;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #FFFFFF;
  box-shadow: 0 6px 25px rgba(0,0,0,0.6);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
}

.whatsapp-icon path {
  fill: #FFFFFF;
}

/* Animation Utilities & Scroll Reveals */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-up {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-up.visible {
  opacity: 1;
  transform: scale(1);
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-navigation {
    display: none; /* simple mobile handling */
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }
}

/* New Sections Layouts */

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: var(--transition-smooth);
}
.gallery-grid img:hover {
  transform: scale(1.05);
  z-index: 2;
  position: relative;
}

/* YouTube Grid */
.youtube-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.youtube-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.youtube-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.youtube-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.youtube-info {
  padding: 20px;
}
.youtube-info h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.youtube-info p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Content Pride & Why Climax */
.text-content-section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Brands Grid & Marquee */
.brands-marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.brands-marquee-track {
  display: flex;
  gap: 36px;
  width: max-content;
  align-items: center;
  animation: brandsMarqueeSlide 24s linear infinite;
}

.brands-marquee-track:hover {
  animation-play-state: paused;
}

.brand-logo-item {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  border-radius: 4px;
  background: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.brand-logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  transition: transform 0.35s ease;
}

.brand-logo-item:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 28px rgba(229, 9, 20, 0.35);
}

.brand-logo-item:hover img {
  transform: scale(1.08);
}

@keyframes brandsMarqueeSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 18px)); }
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
.brand-item {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: var(--bg-card);
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
}
.brand-item:hover {
  color: var(--accent-red);
  border-color: var(--accent-red);
}

/* Contact Form */
.contact-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 80px 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: flex-start;
}

.contact-info {
  background: var(--bg-card);
  padding: 36px 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.contact-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-red);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-form-wrapper {
  background: var(--bg-card);
  padding: 36px 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  font-family: inherit;
  font-size: 1rem;
  box-sizing: border-box;
  transition: var(--transition-fast);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9CA3AF;
  opacity: 0.8;
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-red);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px rgba(229, 9, 20, 0.2);
}

.contact-form button[type="submit"],
.contact-form .btn-primary {
  width: 100%;
  padding: 14px 28px;
  background: var(--accent-red);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(229, 9, 20, 0.35);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.contact-form button[type="submit"]:hover,
.contact-form .btn-primary:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 9, 20, 0.5);
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Interactive Hover Cards with Video Teaser & Slide-Up Text */
.hover-expand-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  cursor: pointer;
}

.hover-expand-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 20px rgba(229, 9, 20, 0.25);
  border-color: rgba(229, 9, 20, 0.6);
}

.hover-expand-card .video-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.hover-expand-card:hover .video-thumbnail-img {
  transform: scale(1.06);
}

.card-preview-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.hover-expand-card.video-playing .card-preview-video {
  opacity: 1;
}

.youtube-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.magnetic-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: none;
  transition: transform 0.08s cubic-bezier(0.1, 1, 0.1, 1), background-color 0.2s ease;
  pointer-events: none;
}

.hover-expand-card:hover .magnetic-play-btn {
  background: #ff1f2d;
  box-shadow: none;
}

.play-pulse-ring {
  display: none;
}

/* Slide-Up Text Info styling */
.slide-up-info {
  padding: 20px;
  background: var(--bg-card);
  transition: background-color 0.3s ease;
}

.slide-up-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #FFFFFF;
  transition: color 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-up-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  transform: translateY(14px);
  opacity: 0.8;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, color 0.3s ease;
}

.hover-expand-card:hover .slide-up-info h4 {
  color: var(--accent-red);
  transform: translateY(-2px);
}

.hover-expand-card:hover .slide-up-info p {
  transform: translateY(0);
  opacity: 1;
  color: #F3F4F6;
}

.card-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(6, 9, 15, 0.98) 0%, rgba(6, 9, 15, 0.75) 60%, rgba(6, 9, 15, 0) 100%);
  z-index: 4;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  pointer-events: none;
  text-align: left;
}

.hover-expand-card:hover .card-slide-caption {
  transform: translateY(0);
  opacity: 1;
}

.card-slide-caption h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.card-slide-caption p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

/* Section 8: Edge-to-Edge Full Width Video Showcase */
.featured-works-section {
  width: 100%;
  max-width: 100%;
  padding-bottom: 0;
}

.edge-to-edge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  margin-top: 40px;
}

.edge-to-edge-grid .youtube-card {
  width: 100%;
  border: none;
  border-radius: 0;
  background: #000;
  box-shadow: none;
  margin: 0;
}

.edge-to-edge-grid .hover-expand-card:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

@media (max-width: 900px) {
  .edge-to-edge-grid {
    grid-template-columns: 1fr;
  }
}

/* Cinema Lightbox Modal */
.video-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 9, 15, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.lightbox-container {
  position: relative;
  width: 90%;
  max-width: 1050px;
  aspect-ratio: 16 / 9;
  z-index: 2;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(229, 9, 20, 0.3);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.video-lightbox-modal.active .lightbox-container {
  transform: scale(1);
}

.lightbox-video-frame {
  width: 100%;
  height: 100%;
  background: #000;
}

.lightbox-video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.lightbox-close-btn {
  position: absolute;
  top: -48px;
  right: 0;
  font-size: 2.2rem;
  line-height: 1;
  color: #ffffff;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 3;
  transition: color 0.2s ease, transform 0.2s ease;
}

.lightbox-close-btn:hover {
  color: var(--accent-red);
  transform: scale(1.15);
}



/* Robust WordPress Hello Header Integration */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: rgba(6, 9, 15, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
  transition: padding 0.35s ease, background 0.35s ease;
}

.site-header.scrolled {
  padding: 8px 0;
  background: rgba(6, 9, 15, 0.98);
}

.site-header .header-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.site-header .site-branding .custom-logo-link img,
.site-header .site-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.site-header .site-navigation ul,
.site-header .site-navigation .menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header .site-navigation a {
  color: var(--text-secondary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.site-header .site-navigation a:hover,
.site-header .site-navigation .current-menu-item a {
  color: #FFFFFF;
}

.site-header .site-navigation a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  transition: width 0.3s ease;
}

.site-header .site-navigation a:hover::after,
.site-header .site-navigation .current-menu-item a::after {
  width: 100%;
}

/* Fix inner page container spacing below fixed header */
.expertise-page-container {
  padding-top: 84px;
}

.expertise-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 50% 20%, rgba(214, 11, 0, 0.12) 0%, rgba(6, 9, 15, 0.98) 70%);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border-color);
}


/* ==========================================================================
   Standardized Unified Hero System (Option A)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 80px;
  overflow: hidden;
  background-color: #06090F;
}

.inner-page-hero {
  min-height: 540px;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(6, 9, 15, 0.92) 0%, rgba(6, 9, 15, 0.65) 60%, rgba(6, 9, 15, 0.4) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  z-index: 3;
}

.hero-badge-pill {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(214, 11, 0, 0.14);
  border: 1px solid var(--accent-red);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-title {
  margin-bottom: 1.25rem;
  max-width: 950px;
}

.hero-brand {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--accent-red);
  letter-spacing: -0.01em;
  line-height: 1.18;
  margin-bottom: 0.6rem;
}

.hero-subtitle {
  display: block;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 400;
  color: #A0AEC0;
  line-height: 1.6;
  max-width: 820px;
}

.hero-title-large .hero-subtitle {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

/* ==========================================================================
   SINGLE BLOG POST EDITORIAL TYPOGRAPHY & SPACING REFINEMENTS
   ========================================================================== */

/* 1. Remove harsh horizontal divider lines between sections */
.single-post .single-post-content hr,
.single-post .single-post-content .wp-block-separator,
.custom-single-post-container .single-post-content hr,
.custom-single-post-container .single-post-content .wp-block-separator {
  display: none !important;
}

/* 2. Refined, proportional H2 font size with generous vertical breathing room */
.single-post .single-post-content h2,
.custom-single-post-container .single-post-content h2,
.single-post-content h2.wp-block-heading {
  font-size: clamp(1.45rem, 2.5vw, 1.65rem) !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  color: #FFFFFF !important;
  margin-top: 48px !important;
  margin-bottom: 18px !important;
  letter-spacing: -0.01em !important;
}

/* 3. Proportional H3 subheadings */
.single-post .single-post-content h3,
.custom-single-post-container .single-post-content h3,
.single-post-content h3.wp-block-heading {
  font-size: clamp(1.2rem, 2vw, 1.32rem) !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  color: #F1F5F9 !important;
  margin-top: 32px !important;
  margin-bottom: 12px !important;
}

/* 4. Well-spaced body paragraphs and lists */
.single-post .single-post-content p,
.custom-single-post-container .single-post-content p {
  margin-bottom: 20px !important;
  line-height: 1.85 !important;
}

.single-post .single-post-content ul,
.single-post .single-post-content ol,
.custom-single-post-container .single-post-content ul,
.custom-single-post-container .single-post-content ol {
  margin-top: 14px !important;
  margin-bottom: 28px !important;
  padding-left: 24px !important;
}

.single-post .single-post-content li,
.custom-single-post-container .single-post-content li {
  margin-bottom: 10px !important;
  line-height: 1.7 !important;
}

