/*
Theme Name: Neon Productions
Theme URI: https://neonproductions.in
Author: Neon Productions
Author URI: https://neonproductions.in
Description: Official Neon Productions WordPress Theme — Creative & Content Production Agency, Mumbai. Fully compatible with Elementor page builder.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: neon-productions
Tags: dark, photography, portfolio, elementor, full-width-template, custom-colors, custom-menu
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --neon-orange: #FF4500;
  --neon-orange-glow: rgba(255, 69, 0, 0.4);
  --bg-primary: #0D0D0D;
  --bg-secondary: #111118;
  --bg-card: #141420;
  --bg-purple: #1A1A2E;
  --text-white: #FFFFFF;
  --text-grey: #888888;
  --text-light-grey: #AAAAAA;
  --border-color: rgba(255, 69, 0, 0.2);
  --font-display: 'Barlow Condensed', 'Impact', sans-serif;
  --font-body: 'Space Mono', 'Courier New', monospace;
  --font-sans: 'Barlow', 'Arial', sans-serif;
  --transition: all 0.3s ease;
  --nav-height: 70px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  color: var(--neon-orange);
}

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

ul, ol {
  list-style: none;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.section-title span,
.section-title .accent {
  color: var(--neon-orange);
  text-shadow: 0 0 30px var(--neon-orange-glow), 0 0 60px rgba(255, 69, 0, 0.2);
}

.overline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-orange);
}

/* =============================================
   NAVIGATION
   ============================================= */
#site-navigation-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

#site-navigation-wrapper.scrolled {
  background: rgba(13, 13, 13, 0.99);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.site-logo .logo-neon {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--neon-orange);
  text-shadow: 0 0 20px var(--neon-orange-glow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.site-logo .logo-productions {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 6px;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.primary-menu li a {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light-grey);
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.primary-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--neon-orange);
  transition: width 0.3s ease;
}

.primary-menu li a:hover,
.primary-menu li.current-menu-item a {
  color: var(--text-white);
}

.primary-menu li a:hover::after,
.primary-menu li.current-menu-item a::after {
  width: 100%;
}

.nav-cta {
  background: var(--neon-orange);
  color: var(--text-white) !important;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 0.65rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: #ff5500 !important;
  box-shadow: 0 0 20px var(--neon-orange-glow) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

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

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

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

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

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

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(20px);
  padding: 30px 40px;
  z-index: 999;
  border-bottom: 1px solid var(--border-color);
}

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

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu ul li a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light-grey);
}

/* =============================================
   MAIN CONTENT
   ============================================= */
#page {
  padding-top: var(--nav-height);
}

.site-main {
  min-height: 100vh;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  padding: 100px 40px 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-grey);
  margin-bottom: 30px;
  display: block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.hero-title .line-neon {
  display: block;
  color: var(--neon-orange);
  text-shadow: 0 0 40px var(--neon-orange-glow), 0 0 80px rgba(255, 69, 0, 0.15);
}

.hero-title .line-productions {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--text-white);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 900;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-grey);
  margin-top: 50px;
  margin-bottom: 50px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--neon-orange);
  color: var(--text-white);
  padding: 18px 40px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: var(--transition);
}

.hero-cta:hover {
  background: #ff5500;
  box-shadow: 0 0 30px var(--neon-orange-glow);
  color: var(--text-white);
  transform: translateY(-2px);
}

.hero-cta .arrow {
  font-size: 1rem;
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
  padding: 100px 40px;
  background: var(--bg-secondary);
  position: relative;
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.stat-item {
  position: relative;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  color: var(--neon-orange);
  text-shadow: 0 0 40px var(--neon-orange-glow), 0 0 80px rgba(255, 69, 0, 0.2);
  line-height: 1;
  display: flex;
  align-items: center;
}

.stat-number .infinity-icon {
  font-size: clamp(4rem, 8vw, 7rem);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-grey);
  margin-top: 15px;
}

/* Section number watermark */
.section-number {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* =============================================
   ABOUT / FOUNDER SECTION
   ============================================= */
.founder-section {
  padding: 120px 40px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.founder-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.founder-portrait {
  position: relative;
}

.portrait-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
}

.portrait-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,69,0,0.05) 0%, transparent 60%);
}

.portrait-initials {
  width: 80px;
  height: 80px;
  border: 1px solid var(--neon-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neon-orange);
}

.portrait-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-grey);
}

.portrait-caption {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.portrait-caption .name {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-grey);
}

.portrait-caption .divider {
  width: 30px;
  height: 1px;
  background: var(--neon-orange);
}

.portrait-caption .role {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-grey);
}

.founder-content .overline {
  display: block;
  margin-bottom: 30px;
}

.founder-quote {
  font-family: var(--font-sans);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-white);
  margin-bottom: 30px;
}

.founder-quote .quote-accent {
  font-style: italic;
  color: var(--neon-orange);
  font-weight: 700;
}

.founder-bio {
  font-family: var(--font-body);
  font-size: 0.7rem;
  line-height: 1.8;
  color: var(--text-grey);
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}

.founder-points {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.founder-point {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 20px;
  border-left: 2px solid var(--neon-orange);
  background: rgba(255, 69, 0, 0.03);
}

.founder-point span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-white);
}

/* =============================================
   SERVICES SECTION - WHAT WE SHOOT
   ============================================= */
.services-section {
  padding: 120px 40px;
  background: var(--bg-primary);
  position: relative;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
}

.services-title {
  margin-bottom: 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-item {
  padding: 40px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: var(--transition);
  cursor: default;
}

.service-item:nth-child(4n) {
  border-right: none;
}

.service-item:hover {
  background: rgba(255, 69, 0, 0.04);
}

.service-item:hover .service-number {
  color: rgba(255, 69, 0, 0.3);
}

.service-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-name {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0;
}

.service-desc {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon-orange);
  line-height: 1.5;
}

/* =============================================
   PORTFOLIO SECTION - SHOW >>> TELL
   ============================================= */
.portfolio-section {
  padding: 120px 40px;
  background: var(--bg-secondary);
  position: relative;
}

.portfolio-container {
  max-width: 1400px;
  margin: 0 auto;
}

.portfolio-header {
  margin-bottom: 60px;
}

.portfolio-title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.portfolio-title .arrows {
  color: var(--neon-orange);
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.05em;
  text-shadow: 0 0 20px var(--neon-orange-glow);
}

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

.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--bg-card);
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, transparent 60%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-item-overlay {
  opacity: 1;
}

.portfolio-item-content {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
}

.portfolio-client {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-orange);
  margin-bottom: 6px;
}

.portfolio-type {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-grey);
}

/* Placeholder for portfolio items */
.portfolio-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
  padding: 120px 40px;
  background: var(--bg-secondary);
  position: relative;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.testimonial-card {
  background: var(--bg-purple);
  padding: 45px 40px;
  position: relative;
  border-left: 3px solid var(--neon-orange);
  transition: var(--transition);
}

.testimonial-card:hover {
  background: #1e1e35;
  transform: translateY(-4px);
}

.testimonial-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-white);
  margin-bottom: 30px;
  font-style: normal;
}

.testimonial-author-name {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-orange);
  margin-bottom: 6px;
}

.testimonial-author-role {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-light-grey);
}

/* =============================================
   CREW SECTION
   ============================================= */
.crew-section {
  padding: 120px 40px;
  background: var(--bg-primary);
}

.crew-container {
  max-width: 1400px;
  margin: 0 auto;
}

.crew-title {
  margin-bottom: 80px;
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.crew-card {
  background: var(--bg-card);
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.crew-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--neon-orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.crew-card:hover {
  background: #161622;
  transform: translateY(-4px);
}

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

.crew-initials {
  width: 60px;
  height: 60px;
  border: 1px solid var(--neon-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neon-orange);
  margin-bottom: 30px;
}

.crew-name {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 10px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.3;
}

.crew-role {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-grey);
}

/* =============================================
   FOOTER / FIN SECTION
   ============================================= */
.footer-section {
  background: var(--bg-primary);
  padding: 100px 40px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-fin {
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 13rem);
  font-weight: 900;
  color: var(--neon-orange);
  text-shadow: 0 0 60px var(--neon-orange-glow), 0 0 120px rgba(255, 69, 0, 0.1);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.footer-fin .dot {
  color: var(--neon-orange);
}

.footer-tagline {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-grey);
  margin-top: 20px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 35px;
  text-align: right;
  padding-top: 20px;
}

.footer-contact-item .contact-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-grey);
  margin-bottom: 8px;
}

.footer-contact-item .contact-value {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-white);
}

.footer-bottom {
  max-width: 1400px;
  margin: 60px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--text-grey);
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-grey);
}

.footer-links a:hover {
  color: var(--neon-orange);
}

/* =============================================
   ELEMENTOR COMPATIBILITY
   ============================================= */
.elementor-section {
  position: relative;
}

.elementor-widget-wrap {
  position: relative;
}

/* Override Elementor default styles for our theme */
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--font-display);
  text-transform: uppercase;
}

.elementor-widget-text-editor p {
  font-family: var(--font-sans);
}

.elementor-button {
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%) !important;
}

/* Elementor Orange Button */
.elementor-button.btn-neon-orange,
.elementor-element .elementor-button-wrapper .elementor-button.elementor-size-md {
  background: var(--neon-orange);
  border: none;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}

/* Dark card style for Elementor */
.elementor-widget-image-box.neon-card .elementor-image-box-wrapper {
  background: var(--bg-card);
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-padding {
  padding: 120px 40px;
}

.text-orange {
  color: var(--neon-orange);
  text-shadow: 0 0 20px var(--neon-orange-glow);
}

.text-grey {
  color: var(--text-grey);
}

.bg-dark {
  background: var(--bg-primary);
}

.bg-darker {
  background: var(--bg-secondary);
}

.bg-card {
  background: var(--bg-card);
}

.bg-purple {
  background: var(--bg-purple);
}

.orange-divider {
  width: 40px;
  height: 2px;
  background: var(--neon-orange);
  margin: 20px 0;
}

.neon-border-left {
  border-left: 3px solid var(--neon-orange);
  padding-left: 20px;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* =============================================
   PAGE TEMPLATES
   ============================================= */
.page-template-full-width #page {
  padding-top: var(--nav-height);
}

.page-template-full-width .site-content {
  max-width: 100%;
  padding: 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-item:nth-child(4n) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

  .service-item:nth-child(3n) {
    border-right: none;
  }
}

@media (max-width: 1024px) {
  .crew-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .founder-portrait {
    max-width: 400px;
  }

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

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .primary-menu {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

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

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

  .service-item:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

  .service-item:nth-child(2n) {
    border-right: none;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .footer-container {
    flex-direction: column;
    gap: 60px;
  }

  .footer-contact {
    text-align: left;
  }

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

  .container,
  .hero-section,
  .stats-section,
  .founder-section,
  .services-section,
  .portfolio-section,
  .testimonials-section,
  .crew-section,
  .footer-section {
    padding-left: 20px;
    padding-right: 20px;
  }
}

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

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

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