/* ===============================
   GLOBAL RESET & BASE
================================ */
/* RESET */

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ROOT */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden; /* VERY IMPORTANT */
}

/* CONTAINER SYSTEM */
.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}


a {
  text-decoration: none;
  color: inherit;
}

/* ===============================
   HEADER
================================ */
/* HEADER LOGO */
.logo img {
  height: 40px;
  width: auto;
  display: block;
}




.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 72px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 26, 26, 0.15);
}

.logo {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ff2b2b;
  letter-spacing: 0.5px;
  text-shadow: 0 0 12px rgba(255, 43, 43, 0.8);
}

/* ===============================
   DESKTOP NAV
================================ */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  font-size: 0.95rem;
  color: #ffffff;
  transition: color 0.3s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff2b2b, #ff6a6a);
  box-shadow: 0 0 14px #ff2b2b;
  transition: width 0.3s ease;
}

.desktop-nav a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 9px 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff2b2b, #ff0000);
  color: #ffffff;
  font-weight: 500;
  box-shadow:
    0 0 25px rgba(255, 43, 43, 0.9),
    0 0 50px rgba(255, 43, 43, 0.6);
}

/* ===============================
   BURGER MENU BUTTON
================================ */
.menu-btn {
  display: none;
  font-size: 1.9rem;
  cursor: pointer;
  color: #ff2b2b;
  text-shadow: 0 0 12px rgba(255, 43, 43, 0.9);
}

/* ===============================
   MOBILE MENU
================================ */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #1a0000, #000);
  transform: translateX(100%);
  transition: transform 0.45s ease;
  z-index: 2000;
  display: flex;
  flex-direction: column;
}

.menu-overlay.active {
  transform: translateX(0);
}

.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
}

.menu-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff2b2b;
  text-shadow: 0 0 12px rgba(255, 43, 43, 0.9);
}

.close-btn {
  font-size: 2rem;
  cursor: pointer;
  color: #ff2b2b;
}

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 45px 22px;
}

.menu-links a {
  font-size: 1.35rem;
  color: #ffffff;
}

.menu-links a:hover {
  color: #ff2b2b;
  text-shadow: 0 0 12px rgba(255, 43, 43, 0.9);
}

.menu-cta {
  margin-top: auto;
  padding: 22px;
}

.menu-cta a {
  display: block;
  text-align: center;
  padding: 15px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff2b2b, #ff0000);
  box-shadow:
    0 0 30px rgba(255, 43, 43, 1),
    0 0 60px rgba(255, 43, 43, 0.6);
}

/* ===============================
   HERO SECTION
================================ */
.hero {
  min-height: 100vh;
  padding-top: 130px;
  background:
    radial-gradient(circle at top, rgba(255, 43, 43, 0.45), transparent 60%),
    linear-gradient(to bottom, #140000, #000000);
  display: flex;
  align-items: center;
}

.hero-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 43, 43, 0.8);
  background: rgba(255, 43, 43, 0.18);
  font-size: 0.75rem;
  margin-bottom: 20px;
  color: #ffffff;
  box-shadow: 0 0 16px rgba(255, 43, 43, 0.8);
}

.hero-badge .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff2b2b;
  box-shadow: 0 0 12px #ff2b2b;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.12;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-title span {
  color: #ffffff;
  background: linear-gradient(90deg, #ff2b2b, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(255, 43, 43, 0.9);
}

.hero-text {
  max-width: 540px;
  font-size: 1.05rem;
  color: #f5f5f5;
  opacity: 0.95;
  margin-bottom: 34px;
}

/* ===============================
   HERO BUTTONS
================================ */
.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 15px 30px;
  border-radius: 32px;
  background: linear-gradient(135deg, #ff2b2b, #ff0000);
  color: #ffffff;
  font-weight: 500;
  box-shadow:
    0 0 30px rgba(255, 43, 43, 1),
    0 0 60px rgba(255, 43, 43, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 40px rgba(255, 43, 43, 1),
    0 0 80px rgba(255, 43, 43, 0.8);
}

.btn-secondary {
  padding: 15px 30px;
  border-radius: 32px;
  border: 1.5px solid #ffffff;
  color: #ffffff;
  transition: all 0.3s ease;
}

/* WhatsApp green hover */
.btn-secondary:hover {
  background: #25d366;
  border-color: #25d366;
  color: #000;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.9);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero-title {
    font-size: 2.3rem;
  }
}

/* ===============================
   ABOUT SECTION
================================ */
.about-section {
  padding: 120px 0;
  background: linear-gradient(to bottom, #000, #0b0000);
  border-top: 1px solid rgba(255, 43, 43, 0.15);
}

.about-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left content */
.about-title {
  font-size: 2.6rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.about-title span {
  color: #ff2b2b;
  text-shadow: 0 0 20px rgba(255, 43, 43, 0.9);
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #f2f2f2;
  opacity: 0.95;
  margin-bottom: 18px;
}

.about-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 30px;
  border-radius: 32px;
  background: linear-gradient(135deg, #ff2b2b, #ff0000);
  color: #ffffff;
  font-weight: 500;
  box-shadow:
    0 0 30px rgba(255, 43, 43, 1),
    0 0 60px rgba(255, 43, 43, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 40px rgba(255, 43, 43, 1),
    0 0 80px rgba(255, 43, 43, 0.8);
}

/* Right cards */
.about-right {
  display: grid;
  gap: 22px;
}

.about-card {
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 43, 43, 0.25);
  box-shadow: 0 0 20px rgba(255, 43, 43, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.about-card p {
  font-size: 0.95rem;
  color: #eaeaea;
  opacity: 0.9;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 30px rgba(255, 43, 43, 0.6),
    0 0 60px rgba(255, 43, 43, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-title {
    font-size: 2.2rem;
  }
}












/* ===============================
   SERVICES SECTION
================================ */
.services-section {
  padding: 120px 0;
  background:
    radial-gradient(circle at top, rgba(255, 43, 43, 0.18), transparent 60%),
    linear-gradient(to bottom, #0b0000, #000);
  border-top: 1px solid rgba(255, 43, 43, 0.15);
}

.services-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.services-title {
  font-size: 2.6rem;
  margin-bottom: 14px;
  color: #ffffff;
}

.services-title span {
  color: #ff2b2b;
  text-shadow: 0 0 20px rgba(255, 43, 43, 0.9);
}

.services-subtitle {
  font-size: 1.05rem;
  color: #f2f2f2;
  opacity: 0.9;
  line-height: 1.6;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Card */
.service-card {
  padding: 34px 26px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 43, 43, 0.25);
  box-shadow: 0 0 25px rgba(255, 43, 43, 0.25);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(255, 43, 43, 0.7));
}


@media (max-width: 768px) {

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-brand p {
    margin: 0 auto;
  }

}


@media (max-width: 768px) {

  h1, h2 {
    line-height: 1.2;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .contact-intro h2 {
    font-size: 2.1rem;
  }

  .about-title,
  .services-title,
  .portfolio-title {
    font-size: 2rem;
  }

}
@media (max-width: 768px) {

  .contact-intro p,
  .services-header,
  .portfolio-header {
    max-width: 100%;
  }

}



.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.service-card p {
  font-size: 0.95rem;
  color: #eaeaea;
  opacity: 0.9;
  line-height: 1.6;
}

/* Hover */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 35px rgba(255, 43, 43, 0.6),
    0 0 70px rgba(255, 43, 43, 0.4);
}

/* CTA */
.services-cta {
  text-align: center;
  margin-top: 70px;
}

.services-cta a {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, #ff2b2b, #ff0000);
  color: #ffffff;
  font-weight: 500;
  box-shadow:
    0 0 35px rgba(255, 43, 43, 1),
    0 0 70px rgba(255, 43, 43, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-cta a:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 45px rgba(255, 43, 43, 1),
    0 0 90px rgba(255, 43, 43, 0.85);
}

/* Responsive */
@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-title {
    font-size: 2.2rem;
  }
}




/* ===============================
   PORTFOLIO / PROOF SECTION
================================ */
.portfolio-section {
  padding: 120px 0;
  background: linear-gradient(to bottom, #000, #0a0000);
  border-top: 1px solid rgba(255, 43, 43, 0.15);
}

.portfolio-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.portfolio-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.portfolio-title {
  font-size: 2.6rem;
  margin-bottom: 14px;
  color: #ffffff;
}

.portfolio-title span {
  color: #ff2b2b;
  text-shadow: 0 0 22px rgba(255, 43, 43, 0.9);
}

.portfolio-subtitle {
  font-size: 1.05rem;
  color: #f2f2f2;
  opacity: 0.9;
  line-height: 1.6;
}

/* Stats */
.portfolio-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 80px;
}

.stat-box {
  padding: 26px;
  text-align: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 43, 43, 0.25);
  box-shadow: 0 0 25px rgba(255, 43, 43, 0.25);
}

.stat-box h3 {
  font-size: 2.1rem;
  color: #ffffff;
  margin-bottom: 6px;
  text-shadow: 0 0 18px rgba(255, 43, 43, 0.8);
}

.stat-box p {
  font-size: 0.95rem;
  color: #eaeaea;
  opacity: 0.9;
}

/* Projects */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.project-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 43, 43, 0.25);
  box-shadow: 0 0 30px rgba(255, 43, 43, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-image {
  height: 190px;
  background:
    linear-gradient(135deg, #1a0000, #000),
    radial-gradient(circle at top, rgba(255, 43, 43, 0.3), transparent 60%);
}

.project-info {
  padding: 22px;
}

.project-info h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #ffffff;
}

.project-info p {
  font-size: 0.95rem;
  color: #eaeaea;
  opacity: 0.9;
}

/* Hover */
.project-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 40px rgba(255, 43, 43, 0.6),
    0 0 80px rgba(255, 43, 43, 0.4);
}

/* Responsive */
@media (max-width: 1000px) {
  .portfolio-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .portfolio-stats,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-title {
    font-size: 2.2rem;
  }
}




/* ===============================
   PORTFOLIO CARD ADVANCED EFFECTS
================================ */

/* Card base */
.project-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

/* Animated border line */
.project-card .border-anim {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #ff2b2b,
    transparent
  );
  background-size: 300% 300%;
  opacity: 0;
  pointer-events: none;
}

.project-card:hover .border-anim {
  opacity: 1;
  animation: borderRun 1.5s linear infinite;
}

@keyframes borderRun {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

/* Image container */
.project-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 43, 43, 0.2);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Soft red glow overlay */
.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 43, 43, 0.25),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Hover effects */
.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-card:hover .project-image::after {
  opacity: 1;
}

/* Lift effect refined */
.project-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 30px rgba(255, 43, 43, 0.5),
    0 0 70px rgba(255, 43, 43, 0.35),
    inset 0 0 0 rgba(255,255,255,0);
}

/* Info polish */
.project-info {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.6)
  );
}





/* ===============================
   TRAINING – AUTHORITY STYLE
================================ */

.training {
  padding: 120px 6%;
  background: linear-gradient(
    to bottom,
    #0b0b0b,
    #000000
  );
}

.training-container {
  max-width: 1100px;
  margin: auto;
}

/* Header */
.training-header {
  max-width: 650px;
}

.training-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin: 20px 0;
}

.training-header h2 span {
  color: #ff2b2b;
}

.training-header p {
  color: #cfcfcf;
  line-height: 1.7;
}

/* Path layout */
.training-path {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

/* Vertical line */
.training-path::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    #ff2b2b,
    transparent
  );
  opacity: 0.4;
}

/* Item */
.path-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* Step number */
.path-step {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff2b2b;
  background: rgba(255, 43, 43, 0.15);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Content */
.path-content h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.path-content p {
  color: #cfcfcf;
  line-height: 1.7;
  max-width: 600px;
}

/* CTA */
.training-cta {
  margin-top: 70px;
}


/* ===== HEADER MOBILE ===== */
@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-btn { display: block; }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
  }
}


/* ===============================
   TRAINING – PREMIUM AUTHORITY
================================ */

.training {
  padding: 120px 6%;
  background: radial-gradient(
    circle at top,
    rgba(255, 43, 43, 0.08),
    transparent 40%
  ),
  linear-gradient(to bottom, #0b0b0b, #000);
}

.training-container {
  max-width: 1100px;
  margin: auto;
}

/* Header */
.training-header {
  max-width: 650px;
}

.training-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin: 20px 0;
}

.training-header h2 span {
  color: #ff2b2b;
}

.training-header p {
  color: #cfcfcf;
  line-height: 1.7;
}

/* Timeline */
.training-timeline {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
}

.training-timeline::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 43, 43, 0.5),
    transparent
  );
}

/* Item */
.timeline-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.timeline-item:nth-child(2) { animation-delay: 0.15s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.45s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Icon */
.timeline-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 43, 43, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff2b2b;
  font-size: 1.8rem;
  flex-shrink: 0;
  position: relative;
}

.timeline-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255, 43, 43, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.timeline-item:hover .timeline-icon::after {
  opacity: 1;
}

/* Content */
.timeline-content h4 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.timeline-content p {
  color: #cfcfcf;
  line-height: 1.7;
  max-width: 600px;
}

/* CTA */
.training-cta {
  margin-top: 80px;
}


/* ===============================
   TESTIMONIALS – TRUST & PROOF
================================ */

.testimonials {
  padding: 120px 6%;
  background: linear-gradient(
    to bottom,
    #000,
    #0b0b0b
  );
}

.testimonials-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.testimonials-header {
  max-width: 650px;
}

.testimonials-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin: 20px 0;
}

.testimonials-header h2 span {
  color: #ff2b2b;
}

.testimonials-header p {
  color: #cfcfcf;
  line-height: 1.7;
}

/* Grid */
.testimonials-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card */
.testimonial-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 43, 43, 0.5),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 30px rgba(255, 43, 43, 0.35),
    0 0 60px rgba(255, 43, 43, 0.2);
}

/* Quote mark */
.testimonial-quote {
  font-size: 4rem;
  color: rgba(255, 43, 43, 0.3);
  position: absolute;
  top: 20px;
  right: 25px;
}

/* Text */
.testimonial-text {
  color: #e0e0e0;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

/* User */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 43, 43, 0.2);
  color: #ff2b2b;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-user h4 {
  font-size: 1rem;
}

.testimonial-user span {
  font-size: 0.9rem;
  color: #aaa;
}





/* ===============================
   CONTACT SECTION
================================ */

.contact-section {
  padding: 120px 20px;
  background: linear-gradient(160deg, #0b0b0b, #000);
  color: #fff;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* INTRO */
.contact-intro .contact-tag {
  display: inline-block;
  padding: 10px 18px;
  background: rgba(255, 0, 0, 0.12);
  color: #ff2b2b;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-intro h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-intro h2 span {
  color: #ff2b2b;
}

.contact-intro p {
  color: #cfcfcf;
  font-size: 1.05rem;
  max-width: 480px;
}

/* FORM */
.contact-form {
  background: #0f0f0f;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 60px rgba(255, 0, 0, 0.12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: #aaa;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px;
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  color: #fff;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.form-group textarea {
  min-height: 120px;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ff2b2b;
  box-shadow: 0 0 10px rgba(255, 43, 43, 0.5);
  outline: none;
}

/* SUBMIT BUTTON */
.submit-btn {
  grid-column: 1 / -1;
  margin-top: 20px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff2b2b, #ff0000);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.submit-btn i {
  font-style: normal;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.submit-btn:hover {
  box-shadow: 0 0 35px rgba(255, 43, 43, 0.9);
  transform: translateY(-2px);
}

.submit-btn:hover::before {
  transform: translateX(100%);
}

.submit-btn:hover i {
  transform: translateX(6px);
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: #000;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.7);
  z-index: 9999;
  animation: whatsappPulse 2.5s infinite;
  transition: all 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
}

/* ANIMATION */
@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 rgba(37,211,102,0.7); }
  70% { box-shadow: 0 0 25px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 rgba(37,211,102,0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}



/* FLOATING WHATSAPP ICON */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.7);
  z-index: 9999;
  animation: floatUpDown 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

/* ONLINE DOT */
.online-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  background: #00ff66;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulseDot 1.5s infinite;
}

/* ANIMATIONS */
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 rgba(0,255,102,0.7); }
  70% { box-shadow: 0 0 10px rgba(0,255,102,0); }
  100% { box-shadow: 0 0 0 rgba(0,255,102,0); }
}


/* ===============================
   FOOTER
================================ */

.footer {
  background: #070707;
  color: #cfcfcf;
  padding: 80px 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
}

/* BRAND */
.footer-brand h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 420px;
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cfcfcf;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff2b2b;
}

/* CONTACT */
.footer-contact a {
  color: #ff2b2b;
  text-decoration: none;
  font-weight: 600;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* COPYRIGHT */
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .form-group.full {
    grid-column: 1 / -1;
  }

}


/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: auto;
  }
}


.footer-logo {
  margin-bottom: 18px;
}

.footer-logo img {
  height: 42px;
  width: auto;
}


