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

:root {
  --font-manrop: "Manrope", sans-serif;
  --font-bh: "BBH Sans Bogle", sans-serif;
  --primary-color: #ff0d55;
}

body {
  scroll-behavior: smooth;
  font-family: var(--font-manrop);
}
/* navbar start */
.navbar {
  height: 70px;
  top: 0;
  position: fixed !important;
  width: 100%;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background: transparent;
  z-index: 1000;
}

.nav-logo img {
  height: 70px;
  transition: transform 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.nav-links-box ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 30px;
  list-style: none;
  gap: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(15, 15, 15, 0.12);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  background-clip: padding-box;
}

.nav-links-box ul li a {
  font-size: 16px;
  font-weight: 600;
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-family: var(--font-manrop);
  position: relative;
  transition: color 0.3s ease;
}

.nav-links-box ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links-box ul li a:hover {
  color: var(--primary-color);
}

.nav-links-box ul li a:hover::after {
  width: 100%;
}

.nav-button-box button {
  background-color: var(--primary-color);
  padding: 10px 25px;
  font-size: 16px;
  font-family: var(--font-manrop);
  color: rgb(255, 255, 255);
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.nav-button-box button:hover {
  background-color: #e00c4d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 13, 85, 0.3);
}

.nav-button-box button:active {
  transform: translateY(0);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: rgb(255, 255, 255);
  transition: all 0.3s ease;
  border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  transform-origin: center;
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  transform-origin: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .navbar {
    background-color: rgb(0, 0, 0);
  }
  .hamburger {
    display: flex;
  }

  .nav-links-box {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    visibility: hidden;
  }

  .nav-links-box.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links-box ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    height: 100%;
    padding: 50px 20px;
    gap: 0px;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .nav-links-box ul li {
    width: 100%;
    text-align: center;
    opacity: 0;
    color: rgb(248, 248, 248);
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
  }

  .nav-links-box.active ul li:nth-child(1) {
    animation-delay: 0.1s;
  }

  .nav-links-box.active ul li:nth-child(2) {
    animation-delay: 0.2s;
  }

  .nav-links-box.active ul li:nth-child(3) {
    animation-delay: 0.3s;
  }

  .nav-links-box ul li a {
    font-size: 24px;
    display: block;
    padding: 10px 0px;
    color: black;
  }

  .nav-button-box {
    position: fixed;
    bottom: 230px;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 999;
  }

  .nav-button-box.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
  }

  .nav-button-box button {
    padding: 15px 40px;
    font-size: 20px;
  }
}

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

@media (max-width: 480px) {
  .navbar {
    padding: 10px 15px;
  }

  .nav-logo img {
    height: 70px;
  }

  .nav-links-box ul li a {
    font-size: 20px;
  }

  .nav-button-box button {
    padding: 12px 35px;
    font-size: 18px;
  }
}

/* ✅ Extra Large Screens (1440px and above) */
@media (min-width: 1440px) {
  .navbar {
    padding: 20px 100px; /* more breathing room */
  }

  .nav-logo img {
    height: 90px; /* slightly larger logo */
  }

  .nav-links-box ul {
    gap: 50px;
    padding: 16px 36px;
  }

  .nav-links-box ul li a {
    font-size: 18px; /* slightly larger font */
  }

  .nav-button-box button {
    padding: 12px 35px;
    font-size: 18px;
  }
}

/* ✅ Ultra-Wide Screens (1920px and above) */
@media (min-width: 1920px) {
  .navbar {
    top: 10px;
    padding: 25px 180px;
  }

  .nav-logo img {
    height: 100px;
  }

  .nav-links-box ul {
    gap: 60px;
    padding: 18px 40px;
  }

  .nav-links-box ul li a {
    font-size: 20px;
  }

  .nav-button-box button {
    padding: 14px 40px;
    font-size: 20px;
  }
}

/* navbar-ends */
/* hero */
.hero {
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("imgs/background.webp");
  background-size: cover;
  background-position: center;
  padding: 120px 0px;
  margin-top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
}

.hero-content {
  text-align: center;
  padding: 0 20px;
}

.hero-title-wrapper,
.hero-subtitle-wrapper {
  overflow: hidden;
}

.hero-title {
  font-size: 90px;
  font-weight: 500;
  color: white;
  font-family: var(--font-bh);
  margin-bottom: 0;
}

.hero-subtitle {
  font-size: 80px;
  line-height: 70px;
  font-weight: 500;
  color: var(--primary-color);
  font-family: var(--font-bh);
}

.hero-text-wrapper {
  overflow: hidden;
}

.hero-text {
  margin-top: 20px;
  font-size: 20px;
  width: 900px;
  color: white;
  font-family: var(--font-manrop);
  margin-left: auto;
  margin-right: auto;
}

.hero-button {
  font-size: 20px;
  font-family: var(--font-bh);
  color: white;
  background-color: var(--primary-color);
  border-radius: 30px;
  padding: 14px 32px;
  border: none;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-button a {
  text-decoration: none;
  color: white;
}

.hero-button:hover {
  background-color: #e00c4d;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 13, 85, 0.4);
}

/* Hero Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 70px;
  }

  .hero-subtitle {
    font-size: 60px;
  }

  .hero-text {
    width: 700px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero {
    margin-top: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)),
      url("imgs/background.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 300px;
    height: 91vh !important;
  }

  .hero-title {
    font-size: 50px;
  }

  .hero-subtitle {
    font-size: 45px;
    line-height: 45px;
  }

  .hero-text {
    width: 100%;
    max-width: 600px;
    font-size: 16px;
    margin-top: 15px;
  }

  .hero-button {
    font-size: 18px;
    padding: 12px 28px;
  }
}

@media (max-width: 480px) {
  .hero {
    margin-top: -70px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 32px;
    line-height: 36px;
  }

  .hero-text {
    width: 100%;
    font-size: 15px;
    margin-top: 15px;
  }

  .hero-button {
    font-size: 16px;
    padding: 12px 25px;
    margin-top: 25px;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 28px;
    line-height: 32px;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-button {
    font-size: 15px;
    padding: 10px 22px;
  }
}

/* ✅ Large Screens (1440px and above) */
@media (min-width: 1440px) {
  .hero {
    padding: 180px 120px; /* more breathing room */
  }

  .hero-title {
    font-size: 110px;
  }

  .hero-subtitle {
    font-size: 95px;
    line-height: 85px;
  }

  .hero-text {
    width: 1100px;
    font-size: 22px;
  }

  .hero-button {
    font-size: 22px;
    padding: 16px 38px;
  }
}

/* ✅ Ultra-Wide Screens (1920px and above) */
@media (min-width: 1920px) {
  .hero {
    padding: 200px 200px;
  }

  .hero-title {
    font-size: 130px;
  }

  .hero-subtitle {
    font-size: 110px;
    line-height: 100px;
  }

  .hero-text {
    width: 1300px;
    font-size: 24px;
  }

  .hero-button {
    font-size: 24px;
    padding: 18px 45px;
  }
}

/* =======================
   ✅ STATS SECTION BASE
======================= */
.stats-section {
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
  background-color: black;
}

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

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

.stats-title {
  font-family: var(--font-bh);
  font-size: 80px;
  color: white;
  letter-spacing: 1px;
}

.stats-title span {
  color: var(--primary-color);
}

.stats-para {
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: white;
}

.stats-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-card {
  background: #1a1a1a;
  border: 2px solid #2b2b2b;
  border-radius: 16px;
  padding: 40px 60px;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 rgba(255, 13, 85, 0);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(255, 13, 85, 0.3);
  border-color: var(--primary-color);
}

.stat-number {
  font-family: var(--font-bh);
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: white;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

/* =======================
   ✅ RESPONSIVE
======================= */
@media (max-width: 992px) {
  .stats-title {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .stats-title {
    font-size: 48px;
  }
  .stat-card {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .stats-title {
    font-size: 36px;
  }
  .stats-para {
    font-size: 1rem;
  }
}

/* =======================
   ✅ MARQUEE EFFECT
======================= */
.stats-marquee {
  width: 100%;
  overflow: hidden;
  background: #111;
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  margin-top: 60px;
  padding: 15px 0;
  position: relative;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: scrollLeft 10s linear infinite;
}

.marquee-content span {
  font-family: var(--font-bh);
  font-size: 1.5rem;
  color: white;
  letter-spacing: 2px;
  padding-right: 100px;
  text-transform: uppercase;
  opacity: 0.9;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .marquee-content span {
    font-size: 1rem;
    padding-right: 50px;
  }
}

/* =======================
   ✅ LARGE SCREENS
======================= */
@media (min-width: 1440px) {
  .stats-section {
    padding: 140px 100px;
  }

  .container {
    max-width: 1400px;
  }

  .stats-title {
    font-size: 100px;
  }

  .stats-para {
    font-size: 1.3rem;
    max-width: 900px;
  }

  .stat-card {
    width: 340px;
    padding: 50px 70px;
  }

  .stat-number {
    font-size: 3.5rem;
  }

  .stat-label {
    font-size: 1.3rem;
  }

  .marquee-content span {
    font-size: 1.8rem;
    padding-right: 120px;
  }
}

/* ✅ Ultra-Wide Screens (1920px+) */
@media (min-width: 1920px) {
  .stats-section {
    padding: 180px 160px;
  }

  .container {
    max-width: 1600px;
  }

  .stats-title {
    font-size: 120px;
    font-weight: 500;
  }

  .stats-para {
    font-size: 1.5rem;
    max-width: 1000px;
  }

  .stat-card {
    width: 380px;
    padding: 60px 80px;
  }

  .stat-number {
    font-size: 4rem;
  }

  .stat-label {
    font-size: 1.4rem;
  }

  .marquee-content span {
    font-size: 2rem;
    padding-right: 150px;
  }
}

/* about */
.about {
  height: 100%;
  background: #000000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px;
  overflow: hidden;
}

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

/* ===== Decorative Background Elements ===== */
.decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(70px);
}

.circle-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-color);
  top: -150px;
  right: -150px;
  animation: float 8s ease-in-out infinite;
}

.circle-2 {
  width: 400px;
  height: 400px;
  background: #7b61ff;
  bottom: -80px;
  left: -100px;
  animation: float 6s ease-in-out infinite reverse;
}

.circle-3 {
  width: 300px;
  height: 300px;
  background: #00d4ff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

/* ===== Title Styles ===== */
.about-title {
  font-family: var(--font-bh);
  font-size: clamp(3.5rem, 7vw, 10rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
  color: #f0eded;
  text-transform: uppercase;
  letter-spacing: -1px;
  position: relative;
}

/* ===== Paragraph Styles ===== */
.about-content {
  text-align: center;
  margin-bottom: 80px;
}

.about-paragraph {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  line-height: 1.8;
  max-width: 1000px;
  font-family: var(--font-manrop);
  margin: 0 auto;
  font-weight: 500;
  color: #e2e2e2;
}

.about-paragraph .word {
  display: inline-block;
  margin: 0 4px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.about-paragraph .word.active,
.about-paragraph .word.highlight {
  color: var(--primary-color);
  font-weight: 700;
}

/* ===== Large Screen Optimization ===== */
@media (min-width: 1440px) {
  .about {
    padding: 160px 80px;
  }
  .about-container {
    max-width: 1600px;
  }
  .circle-1 {
    width: 650px;
    height: 650px;
  }
  .circle-2 {
    width: 550px;
    height: 550px;
  }
  .circle-3 {
    width: 400px;
    height: 400px;
  }
  .about-paragraph {
    max-width: 1100px;
  }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .about {
    padding: 100px 30px;
  }
  .about-title {
    margin-bottom: 30px;
  }
  .circle {
    filter: blur(50px);
  }
}

@media (max-width: 768px) {
  .about {
    height: auto !important;
    padding: 80px 20px 40px;
  }
  .about-title {
    font-size: 3rem;
  }
  .about-paragraph {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 2.4rem;
    letter-spacing: 0;
  }
  .about-paragraph {
    font-size: 0.95rem;
  }
}
/* games */
.games-section {
  padding: 140px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #16161d 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 100px;
  padding: 0 20px;
}

.section-header h2 {
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: -2px;
  font-family: var(--font-bh);
}

.section-header p {
  font-size: clamp(1rem, 1.3vw, 1.4rem);
  color: #ffffff;
  font-weight: 400;
  max-width: 900px;
  margin: 20px auto 0;
  line-height: 1.6;
}

/* ===== Marquee ===== */
.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marqueeScroll 12s linear infinite;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== Cards ===== */
.game-card {
  position: relative;
  min-width: 380px;
  height: 320px;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
  border: 2px solid rgba(255, 13, 85, 0.2);
  flex-shrink: 0;
}

.game-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--primary-color);
  box-shadow: 0 25px 60px rgba(255, 13, 85, 0.4);
}

.game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Overlay */
.game-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.game-card:hover .game-overlay {
  transform: translateY(0);
  opacity: 1;
}

.game-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.game-genre {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 600;
}

/* Play icon */
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.4s ease;
  box-shadow: 0 0 30px rgba(255, 13, 85, 0.6);
}

.game-card:hover .play-icon {
  transform: translate(-50%, -50%) scale(1);
}

.play-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 15px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}

/* Glow */
.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  opacity: 0.15;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

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

/* ===== LARGE SCREEN OPTIMIZATION ===== */
@media (min-width: 1440px) {
  .games-section {
    padding: 180px 0;
  }
  .marquee-track {
    gap: 60px;
    animation-duration: 16s;
  }
  .game-card {
    min-width: 420px;
    height: 350px;
  }
  .section-header h2 {
    font-size: 7rem;
  }
}

/* ===== Tablets and below ===== */
@media (max-width: 1024px) {
  .section-header h2 {
    font-size: 60px;
  }
}

@media (max-width: 900px) {
  .games-section {
    padding: 60px 20px !important;
  }
  .game-card:hover,
  .game-card {
    transform: none !important;
  }
  .marquee-track {
    animation: none !important;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 10px;
  }
  .game-card {
    scroll-snap-align: center;
    min-width: 80%;
  }
  .marquee-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 600px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
  .game-card {
    min-width: 90%;
    height: 260px;
  }
  .play-icon {
    width: 50px;
    height: 50px;
  }
}

/* ========== CONTACT SECTION STYLES ========== */
.contact-section {
  position: relative;
  padding: 150px 20px;
  background: linear-gradient(180deg, #0a0a0a 0%, #16161d 50%, #0a0a0a 100%);
  overflow: hidden;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Contact Header */
.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-title {
  font-family: var(--font-bh);
  font-size: 4rem;
  font-weight: 500;
  background: linear-gradient(135deg, #fff 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: -2px;
  line-height: 1.1;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.6;
}

.contact-email {
  display: inline-block;
  font-size: 1rem;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.contact-email span {
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-email:hover span {
  text-decoration: underline;
  color: #ff3d75;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  font-family: var(--font-manrope);
  font-size: 1rem;
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
  border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
  font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.05);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-manrope);
}

.input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus ~ .input-line,
.form-group textarea:focus ~ .input-line {
  width: 100%;
}

/* Submit Button */
.submit-btn {
  position: relative;
  align-self: flex-start;
  padding: 18px 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff3d75 100%);
  border: none;
  border-radius: 50px;
  font-family: var(--font-manrope);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(255, 13, 85, 0.3);
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 13, 85, 0.5);
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:active {
  transform: translateY(-1px);
}

.btn-text {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-icon {
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-text {
  transform: translateX(-5px);
}

.submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

/* Decorative Elements */
.contact-circle-1,
.contact-circle-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

.contact-circle-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-color);
  top: -200px;
  left: -200px;
  z-index: 0;
}

.contact-circle-2 {
  width: 500px;
  height: 500px;
  background: #6b46ff;
  bottom: -250px;
  right: -250px;
  z-index: 0;
}

.contact-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      rgba(255, 13, 85, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 13, 85, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

/* Footer */
.footer {
  position: relative;
  padding: 40px 20px;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 13, 85, 0.2);
  overflow: visible;
}

.footer-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-text {
  font-family: var(--font-manrope);
  text-align: center;
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 40px !important;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-link {
  font-family: var(--font-manrope);
  font-size: 1rem;
  color: #f7f7f7;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.footer-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-color);
}

.footer-link:hover::after {
  width: 100%;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #888;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 13, 85, 0.3);
}

.footer-gradient {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 13, 85, 0.15) 0%,
    transparent 70%
  );
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 768px) {
  .contact-title {
    font-size: 2.5rem;
  }

  .contact-subtitle {
    font-size: 1rem;
  }

  .submit-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 100px 20px;
  }

  .contact-title {
    font-size: 2rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.95rem;
  }
}

/* ========== LARGE SCREEN OPTIMIZATION ========== */
@media (min-width: 1440px) {
  .contact-section {
    padding: 270px 0;
  }

  .contact-container {
    max-width: 1000px;
  }

  .contact-title {
    font-size: 5rem;
  }

  .contact-subtitle {
    font-size: 1.4rem;
  }

  .submit-btn {
    font-size: 1.2rem;
    padding: 20px 60px;
  }

  .footer {
    padding: 60px 0;
  }

  .footer-text {
    text-align: center;
    font-size: 1.1rem;
  }

  .footer-link {
    font-size: 1.05rem;
  }

  .social-icon {
    width: 45px;
    height: 45px;
  }
}
