:root {
  --color-black: #050505;
  --color-dark: #121212;
  --color-darker: #0a0a0a;
  --color-white: #fdfdfd;
  --color-gray: #a0a0a0;
  --color-red: #E63946; /* Vibrant Red */
  --color-yellow: #F4A261; /* Vibrant Yellow */
  --color-red-glow: rgba(230, 57, 70, 0.6);
  --color-yellow-glow: rgba(244, 162, 97, 0.6);
  --font-main: 'Outfit', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-black);
  color: var(--color-white);
  line-height: 1.6;
}

/* Typography Utilities */
.highlight-red { color: var(--color-red); }
.highlight-yellow { color: var(--color-yellow); }
.text-center { text-align: center; }

h1, h2, h3, h4 {
  line-height: 1.2;
}

p {
  color: var(--color-gray);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.bg-darker {
  background-color: var(--color-darker);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--color-red), var(--color-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-red);
  transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.nav-links a:not(.btn):hover {
  color: var(--color-red);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background-color: var(--color-white);
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-cta {
  display: none !important;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--color-red);
  color: var(--color-white);
  border: 2px solid var(--color-red);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-red);
  box-shadow: 0 0 20px var(--color-red-glow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-secondary:hover {
  border-color: var(--color-yellow);
  color: var(--color-yellow);
  box-shadow: 0 0 20px var(--color-yellow-glow);
}

.btn-large {
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
}

.glow-btn {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 var(--color-red-glow); }
  70% { box-shadow: 0 0 0 15px rgba(230,57,70, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230,57,70, 0); }
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100vw;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* REPLACE_IMAGE: Hero Background Image Here */
  background-image: url('https://images.unsplash.com/photo-1574717024653-61fd2cf4d44d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  z-index: -2;
  filter: grayscale(80%) contrast(120%);
  transform: scale(1.05);
  animation: hero-zoom 20s ease-out infinite alternate;
}

@keyframes hero-zoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.8) 100%);
  z-index: -1;
}

/* Hero Grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 10;
  width: 100%;
}

.text-left {
  text-align: left;
}

.hero-content h2 {
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-yellow);
  margin-bottom: 0.5rem;
}

.hero-content h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  position: relative;
  line-height: 1.1;
}

.subtitle {
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
}

.hero-profile-pic {
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 4 / 5; /* Enforced 4:5 aspect ratio */
  border-radius: 20px;
  overflow: hidden;
}

.hero-profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Glitch Effect */
.glitch {
  position: relative;
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.glitch::before {
  color: var(--color-red);
  z-index: -1;
  animation: glitch-anim 3s infinite linear alternate-reverse;
}
.glitch::after {
  color: var(--color-yellow);
  z-index: -2;
  animation: glitch-anim 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% { transform: translate(0) }
  20% { transform: translate(-2px, 2px) }
  40% { transform: translate(-2px, -2px) }
  60% { transform: translate(2px, 2px) }
  80% { transform: translate(2px, -2px) }
  100% { transform: translate(0) }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--color-white);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--color-red);
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% { top: 10px; opacity: 1; }
  100% { top: 30px; opacity: 0; }
}

/* Marquee */
.marquee-container {
  width: 100%;
  background: var(--color-red);
  color: var(--color-white);
  padding: 1.5rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  transform: rotate(-2deg) scale(1.05);
  margin: 4rem 0;
  box-shadow: 0 10px 30px rgba(230,57,70, 0.2);
  z-index: 10;
}

.marquee-content {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: marquee 20s linear infinite;
}

.marquee-content span {
  margin: 0 2rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Sections */
.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

/* Video Section */
.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.video-container {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--color-yellow);
}

.image-wrapper {
  position: relative;
}

.image-wrapper img {
  width: 100%;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  filter: grayscale(50%);
  transition: var(--transition);
  aspect-ratio: 4 / 5; /* Enforced 4:5 */
  object-fit: cover;
}

.image-wrapper:hover img {
  filter: grayscale(0%);
}

.glow-box {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-red);
  border-radius: 8px;
  z-index: 1;
  transition: var(--transition);
}

.image-wrapper:hover .glow-box {
  top: 10px;
  left: 10px;
  border-color: var(--color-yellow);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--color-dark);
  padding: 3rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-red), var(--color-yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  background: #1a1a1a;
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Success Stories */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.story-card {
  background: var(--color-dark);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.story-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-yellow);
  box-shadow: 0 10px 30px rgba(244, 162, 97, 0.1);
}

.story-image-portrait {
  width: 100%;
  aspect-ratio: 4 / 5; /* Changed to 4:5 ratio */
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 2px solid var(--color-darker);
  position: relative;
}

.story-image-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.story-card:hover .story-image-portrait img {
  transform: scale(1.05);
}

.story-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.story-content .quote {
  font-style: italic;
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.story-content .client-name {
  font-size: 1.2rem;
  color: var(--color-yellow);
  margin-bottom: 0.2rem;
}

.story-content .client-role {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin-bottom: 0;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--color-dark);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-red);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.15);
}

.pricing-image {
  width: 100%;
  aspect-ratio: 4 / 5; /* 4:5 Aspect Ratio */
  overflow: hidden;
}

.pricing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.pricing-card:hover .pricing-image img {
  transform: scale(1.05);
}

.pricing-content {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.pricing-content h3 {
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge {
  font-size: 0.8rem;
  background: var(--color-yellow);
  color: var(--color-black);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  text-transform: uppercase;
  font-weight: 800;
}

.price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-yellow);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 1rem;
  color: var(--color-gray);
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-red);
  font-weight: bold;
}

.pricing-content .btn {
  width: 100%;
  text-align: center;
}

/* Awards */
.awards-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.award-image-card {
  background: var(--color-dark);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1rem;
  border-radius: 8px;
  transition: var(--transition);
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 5; /* Enforced 4:5 Ratio */
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.award-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.award-image-card:hover {
  border-color: var(--color-yellow);
  box-shadow: 0 0 30px rgba(244, 162, 97, 0.1);
  transform: translateY(-5px);
}

/* CTA */
.cta-section {
  background: linear-gradient(0deg, var(--color-darker) 0%, var(--color-black) 100%);
  padding: 8rem 0;
}

.mega-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}

/* Footer */
footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 4rem 0 2rem;
  background: var(--color-black);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.socials {
  display: flex;
  gap: 1.5rem;
}

.socials a {
  color: var(--color-white);
  text-decoration: none;
  transition: var(--transition);
}

.socials a:hover {
  color: var(--color-red);
}

.copyright {
  color: var(--color-gray);
  font-size: 0.9rem;
}

/* Animations */
.animate-up, .fade-in-up, .fade-in-left, .fade-in-right {
  opacity: 0;
  will-change: transform, opacity;
}

.animate-up { transform: translateY(40px); }
.fade-in-up { transform: translateY(50px); }
.fade-in-left { transform: translateX(-50px); }
.fade-in-right { transform: translateX(50px); }

.in-view {
  opacity: 1;
  transform: translate(0) !important;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
  /* Prevent Overbleeding */
  .container {
    width: 90%;
    overflow: visible;
  }
  
  .marquee-container { 
    transform: rotate(0) scale(1); 
    margin: 2rem 0; 
    width: 100vw;
  }
  
  /* Navbar */
  .hamburger { display: flex; }
  .desktop-cta { display: none; }
  .mobile-cta { display: inline-block !important; margin-top: 1rem; width: 100%; }
  
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(5,5,5,0.98);
    flex-direction: column;
    padding: 2rem 5%;
    gap: 1.5rem;
    transform: translateY(-200%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  /* Hero */
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; padding-top: 4rem; }
  .text-left { text-align: center; }
  .hero-buttons { justify-content: center; flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; margin-bottom: 0.5rem; }
  .hero-content h1 { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .hero-profile-pic { max-width: 250px; }
  
  /* Sections */
  .about-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 2.5rem; }
  .stats { flex-direction: column; gap: 1rem; }
  
  .stories-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  
  .cta-section .btn { width: 100%; padding: 1rem; }
  
  .footer-content { flex-direction: column; text-align: center; }
}
