/* ==========================================================================
   PXD PROJECT - Modern Gaming Portfolio & General Website Stylesheet
   Specializing in Photoshop Graphics, Video Editing & Web Development
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Orbitron:wght@600;700;800;900&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --bg-dark: #080808; /* Exact #080808 requested site background color */
  --bg-header: rgba(8, 8, 8, 0.95);
  --bg-card: #121217;
  --bg-card-hover: #181822;
  --bg-card-glass: rgba(18, 18, 23, 0.85);
  
  --primary-red: #FF003C; /* Exact #FF003C color used on PROJECT text */
  --primary-orange: #FF5500;
  --primary-gold: #FF9900;
  
  --text-main: #F0F2F5;
  --text-muted: #8E95A5;
  --text-dark: #586073;
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-red: rgba(255, 0, 60, 0.35);
  --border-glow: rgba(255, 0, 60, 0.75);
  
  --font-title: 'Orbitron', sans-serif;
  --font-sub: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset & Remove Outer Strokes/Outlines */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

*:focus, *:focus-visible, *:active {
  outline: none !important;
  box-shadow: none !important;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: #080808;
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #080808;
  background: #080808;
  min-height: 100vh;
  width: 100%;
}

body.menu-open {
  overflow: hidden;
}

.highlight-red {
  color: #FF003C !important;
  font-weight: 900;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #080808;
}
::-webkit-scrollbar-thumb {
  background: #22222a;
  border-radius: 5px;
  border: 2px solid #080808;
}
::-webkit-scrollbar-thumb:hover {
  background: #FF003C;
}

/* Scroll Reveal Animations - Slower & Ultra Smooth (1.15s duration) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.15s cubic-bezier(0.16, 1, 0.3, 1), transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-45px);
  transition: opacity 1.15s cubic-bezier(0.16, 1, 0.3, 1), transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(45px);
  transition: opacity 1.15s cubic-bezier(0.16, 1, 0.3, 1), transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active, .reveal-left.active, .reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* Flat Black Coming Soon Banner for Video Cards */
.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000; /* Flat black background */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 4;
  border-radius: inherit;
  pointer-events: none;
}

.coming-soon-text {
  font-family: var(--font-title); /* Website Orbitron title font */
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFFFFF; /* COMING in white */
  text-align: center;
  line-height: 1.2;
}

.coming-soon-text span {
  color: #FF003C; /* SOON in site primary red accent color */
}


/* Typography & Utilities */
h1, h2, h3, h4, .brand-text {
  font-family: var(--font-title);
  letter-spacing: 1px;
  text-transform: uppercase;
}

h2 {
  font-size: 2.25rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}

h2 span {
  color: #FF003C;
  background: linear-gradient(135deg, #FF003C 0%, #FF5500 60%, #FF9900 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* Buttons - NO GLOW & NO OUTER STROKE */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  outline: none !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: none !important;
}

.btn-primary {
  background: linear-gradient(135deg, #FF003C 0%, #FF5500 100%);
  color: #ffffff;
  box-shadow: none !important;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: none !important;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
  box-shadow: none !important;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: none !important;
}

.btn-discord {
  background: #5865F2;
  color: #ffffff;
  box-shadow: none !important;
}
.btn-discord:hover {
  background: #4752C4;
  transform: translateY(-2px);
  box-shadow: none !important;
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  box-shadow: none !important;
}
.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: none !important;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* User Custom Futuristic Polygon SOCIALS Button */
.btn-socials {
  --border-color: #FF003C;
  --border-width: 0.125em;
  --curve-size: 0.5em;
  --blur: 0px;
  --bg: #080808;
  --color: #ffffff;
  color: #ffffff !important;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  border: 0;
  outline: none !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: none !important;
  clip-path: polygon(
    0% var(--curve-size),
    var(--curve-size) 0,
    100% 0,
    100% calc(100% - var(--curve-size)),
    calc(100% - var(--curve-size)) 100%,
    0 100%
  );
  transition: color 250ms, transform 250ms;
}

.btn-socials i, .btn-socials span {
  color: #ffffff !important;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.btn-socials::after,
.btn-socials::before {
  content: "";
  position: absolute;
  inset: 0;
}

.btn-socials::before {
  background: var(--border-color);
  background-size: 300% 300%;
  z-index: -2;
}

.btn-socials::after {
  background: var(--bg);
  z-index: -1;
  clip-path: polygon(
    var(--border-width) calc(var(--curve-size) + var(--border-width) * 0.5),
    calc(var(--curve-size) + var(--border-width) * 0.5) var(--border-width),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width)) calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)) calc(100% - var(--border-width)),
    var(--border-width) calc(100% - var(--border-width))
  );
  transition: clip-path 500ms;
}

.btn-socials:where(:hover, :focus)::after {
  clip-path: polygon(
    calc(100% - var(--border-width)) calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width)) calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)) calc(100% - var(--border-width)),
    calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)) calc(100% - var(--border-width))
  );
  transition: 200ms;
}

.btn-socials:where(:hover, :focus) i,
.btn-socials:where(:hover, :focus) span {
  color: #ffffff !important;
}

/* Header & Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-header);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-main);
  flex-shrink: 0;
}

.brand-text {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  white-space: nowrap;
}
.brand-text span {
  color: #FF003C;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.mobile-socials {
  display: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #FF003C;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF003C;
  transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: var(--transition-fast);
}

.mobile-toggle:hover {
  color: #FF003C;
}

/* Hero Section */
.hero {
  padding: 9rem 1.5rem 6rem 1.5rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080808;
}

.hero-bg-glow {
  display: none !important;
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #FF003C 0%, #FF5500 50%, #FF9900 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 2.5rem auto;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Quick Stats Bar */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 1050px;
  margin: 0 auto;
  padding: 1.75rem 2rem;
  background: var(--bg-card-glass);
  border: 1px solid var(--border-red);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: none;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 0.5rem;
}

.stat-divider {
  width: 1px;
  height: 55px;
  background: linear-gradient(180deg, rgba(255, 0, 60, 0) 0%, rgba(255, 0, 60, 0.5) 50%, rgba(255, 0, 60, 0) 100%);
  flex-shrink: 0;
}

.stat-number {
  font-family: var(--font-title);
  font-size: 2.35rem;
  font-weight: 800;
  color: #FF003C;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-sub);
  font-weight: 600;
  white-space: nowrap;
}

/* General Layout Sections */
section {
  padding: 6rem 1.5rem;
  position: relative;
  background: #080808;
}

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

/* Portfolio Section */
.portfolio-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
  outline: none !important;
}

.filter-btn:hover, .filter-btn.active {
  background: #FF003C;
  color: #ffffff;
  border-color: #FF003C;
  box-shadow: none;
}

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

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden !important;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: #FF003C;
  box-shadow: none;
}

.portfolio-media {
  position: relative;
  width: 100%;
  background: #000000;
  overflow: hidden !important;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.ratio-16-9 {
  aspect-ratio: 16 / 9;
}
.ratio-poster {
  aspect-ratio: 4 / 5;
}
.ratio-square {
  aspect-ratio: 1 / 1;
}

.portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Prevents cropping, displaying 100% of full logo and poster artwork */
  background-color: #000000;
  display: block;
  transition: transform 0.5s ease;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}


.portfolio-card:hover .portfolio-media img {
  transform: scale(1.04);
}

.media-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(12, 12, 16, 0.94);
  border: 1px solid rgba(255, 0, 60, 0.6);
  color: #FF003C;
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  z-index: 10;
  letter-spacing: 0.5px;
}

.media-badge i {
  color: #FF003C;
  font-size: 0.85rem;
}

.dimension-tag {
  display: none !important;
}


.media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.portfolio-card:hover .media-overlay {
  opacity: 1;
}

.play-icon {
  width: 60px;
  height: 60px;
  background: #FF003C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  transform: scale(0.8);
  transition: var(--transition-fast);
  box-shadow: none;
}

.portfolio-card:hover .play-icon {
  transform: scale(1);
}

.portfolio-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-category {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.82rem;
  color: #FF003C;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.portfolio-title {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  font-family: var(--font-title);
  color: var(--text-main);
  line-height: 1.3;
}

.portfolio-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.portfolio-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 0.75rem;
}


/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #FF003C;
  box-shadow: none;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 0, 60, 0.1);
  border: 1px solid var(--border-red);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #FF003C;
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.service-list li i {
  color: #FF003C;
  font-size: 0.85rem;
}

/* About Grid Section Styling */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: #FF003C;
  background: rgba(255, 0, 60, 0.04);
}

.about-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 0, 60, 0.1);
  border: 1px solid var(--border-red);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #FF003C;
  margin-bottom: 1.5rem;
}

.about-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
  color: #ffffff;
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: none;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: #FF003C;
  box-shadow: none;
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-name {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 900;
  color: #FF003C;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin: 1.5rem 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pricing-features li i {
  color: #FF003C;
}

/* Contact Section & Card Buttons */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.contact-form-container {
  width: 100%;
}

.contact-channels-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: 1.5px;
}

/* Button Card Container */
.contact-card-btn {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #080808;
  border: 1.5px solid var(--border-red);
  border-radius: 18px;
  padding: 1.35rem 1.6rem;
  text-decoration: none;
  color: var(--text-main);
  cursor: pointer;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: none;
  width: 100%;
}

.contact-card-btn:hover {
  transform: translateX(8px);
  border-color: #FF003C;
  background: rgba(255, 0, 60, 0.06);
  box-shadow: none;
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 0, 60, 0.12);
  border: 1px solid var(--border-red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF003C;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-card-btn .contact-detail h4 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
  letter-spacing: 1px;
}

.contact-card-btn .contact-link-text {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1rem;
  color: #FF003C;
}

/* Solid Red Arrow Circle Button */
.contact-arrow-wrapper {
  margin-left: auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #FF003C;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  box-shadow: none;
}

.contact-arrow {
  color: #ffffff;
  font-size: 1.25rem;
  transition: all 0.35s ease;
}

.contact-card-btn:hover .contact-arrow-wrapper {
  transform: scale(1.15) translateX(2px);
  background: #FF003C;
  box-shadow: none;
}

.contact-card-btn:hover .contact-arrow {
  transform: translateX(3px);
  color: #ffffff;
}

.contact-form-container h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.contact-form-container p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.form-group label {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-main);
}

.form-input, .form-textarea {
  background: #080808;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none !important;
  transition: var(--transition-fast);
  width: 100%;
}

/* Service Dropdown Select with Arrow Positioned Left */
select.form-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FF003C' stroke-width='2.5' 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 1.5rem center;
  padding-right: 3.2rem;
}

.form-input:focus, .form-textarea:focus {
  border-color: #FF003C;
  box-shadow: none !important;
  outline: none !important;
}

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

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2000;
}

.toast {
  background: var(--bg-card);
  border: 1px solid #FF003C;
  color: var(--text-main);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-sub);
  font-weight: 700;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast i {
  color: #FF003C;
  font-size: 1.25rem;
}

/* Expanded Lightbox & Modal Popups - NO CUT-OFF & CLEAN ROUNDED CORNERS */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  outline: none !important;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-body {
  background: var(--bg-card);
  border: 1px solid var(--border-light) !important;
  outline: none !important;
  border-radius: 20px !important;
  width: 100%;
  max-width: 920px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95) !important;
}

/* Floating Redesigned Close Button (Outside Content Frame) */
.modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 42px;
  height: 42px;
  background: #0D0D12;
  border: 2px solid #FF003C !important;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  box-shadow: 0 0 16px rgba(255, 0, 60, 0.6);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close:hover {
  background: #FF003C;
  color: #ffffff;
  transform: scale(1.12);
  box-shadow: 0 0 25px rgba(255, 0, 60, 0.9);
}


.modal-media-frame {
  width: 100%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none !important;
  outline: none !important;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  overflow: hidden !important;
  position: relative;
  max-height: 68vh;
  padding: 1rem;
}

.modal-media-frame img, .modal-media-frame video {
  width: 100%;
  height: 100%;
  max-height: 65vh;
  object-fit: contain;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  display: block;
  border-radius: 12px;
}

.modal-info {
  padding: 1.5rem 2rem;
  border-bottom-left-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
  background: var(--bg-card);
}

.modal-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-info p {
  color: var(--text-muted);
}

/* Footer */
footer {
  background: #080808;
  border-top: 1px solid var(--border-light);
  padding: 4rem 1.5rem 2rem 1.5rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 0.95rem;
  max-width: 300px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #FF003C;
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-dark);
  font-size: 0.85rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.75rem;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 1rem;
  }
  .desktop-only {
    display: none !important;
  }
  .mobile-toggle {
    display: block;
  }
  .navbar-container {
    padding: 0.75rem 1rem;
  }
  .brand-text {
    font-size: 1.15rem;
  }
  .nav-menu {
    position: fixed;
    top: 62px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 62px);
    background: #080808;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2.5rem 1.5rem;
    gap: 1.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-top: 1px solid var(--border-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.95);
    overflow-y: auto;
  }
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .mobile-socials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
  }
  .mobile-socials .btn, .mobile-socials .btn-socials {
    width: 100%;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn, .hero-buttons .btn-socials {
    width: 100%;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem 1rem;
  }
  .stat-divider {
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 0, 60, 0) 0%, rgba(255, 0, 60, 0.5) 50%, rgba(255, 0, 60, 0) 100%);
  }

  /* Contact Wrapper Mobile Optimization - Fix cut-off margins */
  .contact-wrapper {
    padding: 1.5rem 1rem !important;
    gap: 2rem;
    border-radius: 14px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .contact-info, .contact-form-container {
    width: 100%;
    max-width: 100%;
  }

  .contact-card-btn {
    padding: 1rem 1.15rem;
    gap: 0.85rem;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .contact-arrow-wrapper {
    width: 42px;
    height: 42px;
  }

  .contact-card-btn .contact-detail h4 {
    font-size: 1rem;
  }

  .form-input, .form-textarea {
    width: 100%;
    padding: 0.75rem 0.85rem;
    font-size: 0.9rem;
  }

  select.form-input {
    background-position: right 1rem center;
    padding-right: 2.5rem;
  }

  /* Adjust reveal side animations on mobile to prevent overflow */
  .reveal-left {
    transform: translateY(30px);
  }
  .reveal-right {
    transform: translateY(30px);
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}
