/* ============================================
   IGAMINGSPORT - MODERN PROFESSIONAL WEBSITE
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0d1128;
  --secondary-color: #3b82f6;
  --accent-color: #0ea5e9;
  --light-bg: #151a3a;
  --dark-text: #ffffff;
  --light-text: #94a3b8;
  --border-color: rgba(255, 255, 255, 0.08);
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --bg-light: #151a3a;
  --bg-white: #1e264f;
  --text-light: #94a3b8;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --shadow-sm: 0 10px 30px rgba(0,0,0,0.3);
  --shadow-md: 0 20px 40px rgba(0,0,0,0.4);
  --transition: all 0.3s ease;
}

/* ============================================
   GENERAL STYLES
   ============================================ */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--light-text);
  line-height: 1.6;
  background-color: var(--primary-color);
  padding-bottom: 72px; /* Prevent sticky banner from hiding footer contents */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-text);
  font-weight: 700;
}

p {
  color: var(--light-text);
}

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: color 0.3s;
}

a:hover {
  color: var(--accent-color);
}

button {
  cursor: pointer;
  border: none;
  font-size: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
  text-align: center;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color), #1f5fa8);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(45, 125, 210, 0.3);
}

.btn-secondary {
  background: var(--accent-color);
  color: #ffffff;
}

.btn-secondary:hover {
  background: #e55a2b;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  background: transparent;
}

.btn-outline:hover {
  background: var(--secondary-color);
  color: #ffffff;
}

/* ============================================
   NAVBAR / HEADER
   ============================================ */

.submenu_list,
.header .menu_list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.header {
  height: 90px;
  background: rgba(13, 17, 40, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 40px;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .main_logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
}

.header .logo-icon {
  width: 45px;
  height: 45px;
  background: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.header .menu_list {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

.header .menu_list>li {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
}

.header .menu_list>li.opened>a {
  color: #00aaad;
}

.header .menu_list>li>a {
  display: block;
  color: #ffffff;
  line-height: 20px;
  margin-left: 40px;
  transition: all 0.3s;
}

.header .menu_list>li>a:hover {
  color: #00aaad;
}

.homepage_header {
  background: transparent;
}

.homepage_header:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 250px;
  background: rgba(13, 17, 40, 0.5);
  backdrop-filter: blur(10px);
}

.submenu_list {
  position: absolute;
  display: none;
  left: 20px;
  top: 55px;
  z-index: 100;
}

.submenu_list>li {
  background: var(--bg-white);
  position: relative;
}

.submenu_list>li:first-child {
  padding-top: 5px;
  margin-top: 12px;
}

.submenu_list>li:first-child:before {
  display: block;
  content: "";
  position: absolute;
  left: 40px;
  top: -10px;
  border-style: solid;
  border-width: 0 10px 10px;
  border-color: var(--bg-white) transparent;
}

.submenu_list>li:last-child {
  padding-bottom: 5px;
}

.submenu_list>li a {
  display: block;
  padding: 10px 20px;
  color: #ffffff;
  white-space: nowrap;
  transition: all 0.3s;
}

.submenu_list>li a:hover {
  color: #00aaad;
}

.header .menu_list>li.opened .submenu_list,
.header .menu_list>li:hover .submenu_list {
  display: block;
}

.header .main_logo a {
  transition: opacity 0.3s;
}

.header .main_logo a:hover {
  opacity: 0.7;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1001;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: all 0.3s;
}

@media (max-width: 1279px) {
  .header {
    padding: 0 20px;
  }

  .homepage_header:before {
    width: 210px;
  }
}

@media (max-width: 767px) {
  .header {
    height: 70px;
  }

  .hamburger {
    display: flex;
  }

  .header .menu_list {
    display: none;
  }

  .header .menu_list.active {
    display: flex;
    position: fixed;
    left: 0;
    top: 70px;
    background: var(--primary-color);
    width: 100%;
    flex-direction: column;
    padding: 20px;
    gap: 1.5rem;
    z-index: 999;
    align-items: flex-start;
  }

  .header .menu_list.active>li {
    width: 100%;
  }

  .header .menu_list>li>a {
    margin-left: 0;
  }

  .submenu_list {
    position: relative;
    top: 10px;
    left: 0;
    width: 100%;
    display: none;
  }

  .header .menu_list>li.opened .submenu_list,
  .header .menu_list>li:hover .submenu_list {
    display: block;
    position: relative;
    top: 10px;
  }
}

@media (max-width: 575px) {
  .header img {
    width: 140px;
  }

  .header .menu_list>li {
    font-size: 12px;
  }

  .header .menu_list>li>a {
    margin-left: 20px;
  }
}

@media (max-width: 479px) {
  .header {
    flex-direction: column;
    height: auto;
    padding: 15px 10px;
  }

  .header .main_logo {
    padding-bottom: 20px;
  }

  .header .menu_list>li>a {
    margin: 0 10px;
  }

  .submenu_list {
    top: 35px;
    left: -10px;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: url('../assets/hero-bg.png') no-repeat center center;
  background-size: cover;
  color: #ffffff;
  padding: 160px 0 180px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 15, 45, 0.8);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 0 25px rgba(45, 125, 210, 0.8), 0 4px 15px rgba(0, 0, 0, 0.8);
}

.hero p {
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 30px;
  color: #e2e8f0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
  background: var(--light-bg);
  padding: 60px 0;
  margin: -30px 0 0 0;
  position: relative;
  z-index: 2;
  border-radius: 15px 15px 0 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 30px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--dark-text);
  font-weight: 600;
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.section-title p {
  font-size: 1.1rem;
  color: var(--light-text);
  max-width: 600px;
  margin: 0 auto;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  margin: 20px auto 0;
}

/* ============================================
   WHAT WE OFFER SECTION
   ============================================ */

.what-we-offer {
  background-color: var(--primary-color);
  padding: 100px 0;
  color: #ffffff;
}

.section-title-offer {
  text-align: center;
  margin-bottom: 70px;
}

.section-title-offer h2 {
  font-size: 2.8rem;
  font-weight: 300;
  color: #ffffff;
  margin: 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.offer-card {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.offer-icon {
  width: 48px;
  height: 48px;
  color: #00bcd4;
  margin-bottom: 25px;
}

.offer-icon svg {
  width: 100%;
  height: 100%;
}

.offer-card h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 12px;
}

.offer-divider {
  width: 100%;
  max-width: 180px;
  height: 3px;
  background-color: #ffffff;
  margin-bottom: 25px;
}

.offer-card p {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

.learn-more {
  color: #00768c;
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
}

.learn-more:hover {
  color: #00bcd4;
}

@media (max-width: 1024px) {
  .offer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PLATFORMS SECTION
   ============================================ */

.platforms-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}



.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.platform-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 158, 11, 0.3);
}

.platform-header {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.01) 100%);
  padding: 0;
  display: flex;
  justify-content: center;
  height: 180px;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.platform-logo {
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.platform-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platform-logo i {
  font-size: 2.5rem;
  margin-right: var(--spacing-sm);
}

.platform-card h3 {
  padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-sm);
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 700;
}

.platform-card p {
  padding: 0 var(--spacing-lg);
  color: var(--text-light);
  font-size: 0.95rem;
  flex-grow: 1;
}

.platform-buttons {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  margin-top: auto;
}

.platform-buttons .btn {
  flex: 1;
  padding: 10px 15px;
  font-size: 0.9rem;
  border-radius: var(--border-radius-sm);
}

.btn-play {
  background: linear-gradient(135deg, var(--success-color), #059669);
  color: #ffffff;
}
.btn-play:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  color: #fff;
}

.btn-read {
  background: transparent;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}
.btn-read:hover {
  background: var(--secondary-color);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ============================================
   FEATURES / SERVICES SECTION
   ============================================ */

.services {
  background: var(--primary-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-card {
  background: var(--light-bg);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(45, 125, 210, 0.15);
  background: var(--bg-white);
  border-color: var(--secondary-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-color), #1f5fa8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: #ffffff;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card p {
  margin-bottom: 20px;
  line-height: 1.8;
}

/* ============================================
   FEATURES LIST
   ============================================ */

.features {
  background: var(--light-bg);
}

.features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.features-list {
  list-style: none;
}

.features-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.features-list li:last-child {
  border-bottom: none;
}

.feature-check {
  width: 30px;
  height: 30px;
  background: var(--success-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  flex-shrink: 0;
}

.features-list h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.features-list p {
  font-size: 0.95rem;
  color: var(--light-text);
}

.feature-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
  background: var(--primary-color);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
  background: linear-gradient(135deg, var(--secondary-color), #1f5fa8);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  border-radius: 10px;
  margin: 80px 0;
}

.cta h2 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
  background: var(--light-bg);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-item {
  display: flex;
  gap: 20px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.info-item p {
  font-size: 1rem;
}

.contact-form {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark-text);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(45, 125, 210, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group button {
  width: 100%;
}

/* ============================================
   MODERN FOOTER
   ============================================ */

.modern-footer {
  position: relative;
  background: linear-gradient(180deg, var(--light-bg) 0%, #151a3a 100%);
  color: #ffffff;
  padding: 180px 0 30px;
  overflow: hidden;
}

.footer-top-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-top-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

.footer-top-wave .shape-fill {
  fill: var(--bg-white);
}

.relative-z {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.modern-socials {
  display: flex;
  gap: 12px;
}

.modern-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-socials a svg {
  width: 18px;
  height: 18px;
}

.modern-socials a:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(45, 125, 210, 0.3);
}

.footer-links h4,
.footer-newsletter h4 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-links h4::after,
.footer-newsletter h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a::before {
  content: '→';
  margin-right: 8px;
  color: var(--secondary-color);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  margin-bottom: 25px;
  position: relative;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  color: #ffffff;
  font-family: inherit;
  outline: none;
  transition: all 0.3s;
}

.newsletter-form input:focus {
  border-color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form .btn {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  padding: 0 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--secondary-color);
}

.badge svg {
  color: var(--secondary-color);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: 30px 0;
}

.footer-bottomx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.bottom-links {
  display: flex;
  gap: 20px;
}

.bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.bottom-links a:hover {
  color: #ffffff;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.active {
    position: fixed;
    left: 0;
    top: 60px;
    background: var(--primary-color);
    width: 100%;
    flex-direction: column;
    padding: 20px;
    gap: 1rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .features-content,
  .about-content,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-header {
    padding: 0;
    height: 140px;
  }

  .platform-buttons {
    padding: var(--spacing-md);
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .cta {
    padding: 60px 20px;
  }

  .cta h2 {
    font-size: 2rem;
  }

  section {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .service-card {
    padding: 25px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .platforms-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease-out;
}

.animate-slide-in {
  animation: slideInRight 0.6s ease-out;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Smooth page transitions */
.fade-in {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
  padding: 80px 0;
  background: var(--light-bg);
}

.testimonials .section-title {
  margin-bottom: 50px;
}

.testimonials-slider-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  min-width: 100%;
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(45, 125, 210, 0.3);
}

.testimonial-content {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--dark-text);
  margin-bottom: 30px;
  line-height: 1.8;
  position: relative;
}

.testimonial-content::before {
  content: '"';
  font-size: 4rem;
  color: var(--secondary-color);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -20px;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 2px;
  color: var(--primary-color);
}

.author-info p {
  font-size: 0.9rem;
  color: var(--light-text);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 20px;
}

.slider-btn {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
  background: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--secondary-color);
  transform: scale(1.2);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
  padding: 80px 0;
  background: var(--bg-white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  margin-bottom: 20px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item.active {
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: var(--light-bg);
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-text);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  background: #edf2f7;
}

.faq-item.active .faq-question {
  background: var(--secondary-color);
  color: #ffffff;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: var(--bg-white);
}

.faq-answer p {
  padding: 20px 25px;
  color: var(--light-text);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px 20px;
  }

  .faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .faq-answer p {
    padding: 15px 20px;
    font-size: 0.95rem;
  }
}

/* ============================================
   STICKY BOTTOM BANNER
   ============================================ */

.sticky-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, rgba(13, 17, 40, 0.95), rgba(45, 125, 210, 0.95));
  backdrop-filter: blur(10px);
  color: #fff;
  z-index: 1000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.sticky-banner.show {
  transform: translateY(0);
}

.banner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.banner-icon {
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.banner-content p {
  color: #fff;
  margin: 0;
  font-weight: 600;
  font-size: 1.1rem;
}

.banner-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.banner-btn {
  padding: 10px 24px;
  font-size: 0.95rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .banner-container {
    justify-content: center;
    text-align: center;
    padding: 15px;
  }
  
  .banner-actions {
    width: 100%;
    justify-content: center;
    position: relative;
  }
  
  .banner-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}