/* ===== TRINOWA - GLOBAL STYLES ===== */
:root {
  --navy: #0D1B2A;
  --navy-light: #1B2D45;
  --blue-primary: #1E6FBA;
  --blue-bright: #3EA8DE;
  --blue-accent: #5CC8FF;
  --teal: #00C9A7;
  --purple: #7B61FF;
  --orange: #FF6B35;
  --pink: #FF4593;
  --yellow: #FFCF56;
  --white: #FFFFFF;
  --gray-100: #F5F7FA;
  --gray-200: #E4E7EB;
  --gray-300: #B0B8C4;
  --gray-800: #2D3748;
  --gradient-hero: linear-gradient(135deg, #0D1B2A 0%, #1B2D45 40%, #1E3A5F 100%);
  --gradient-card: linear-gradient(145deg, rgba(30, 111, 186, 0.08), rgba(62, 168, 222, 0.04));
  --gradient-accent: linear-gradient(135deg, #3EA8DE, #7B61FF);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
  --shadow-glow: 0 0 30px rgba(62, 168, 222, 0.2);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--blue-primary);
  border-radius: 4px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue-bright);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.section-title {
  margin-bottom: 16px;
  color: var(--navy);
}

.section-desc {
  max-width: 680px;
  margin: 0 auto 48px;
  color: var(--gray-300);
  font-size: 1.05rem;
}

.highlight {
  color: var(--blue-bright);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gradient-accent);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #7B61FF, #3EA8DE);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(62, 168, 222, 0.4);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--blue-bright);
  transform: translateY(-3px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-brand img {
  height: 44px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.brand-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--gradient-accent);
  border-radius: 50px;
  color: var(--white) !important;
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(62, 168, 222, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(62, 168, 222, 0.15), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(123, 97, 255, 0.1), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 201, 167, 0.05), transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  color: var(--white);
}

.hero-text .section-label {
  margin-bottom: 16px;
}

.hero-text h1 {
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 40%, var(--blue-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
}

.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(62, 168, 222, 0.3), transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: pulse 4s ease-in-out infinite;
}

/* Floating particles */
.particle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
  width: 8px;
  height: 8px;
  background: var(--blue-accent);
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  width: 6px;
  height: 6px;
  background: var(--teal);
  top: 70%;
  left: 15%;
  animation-delay: 1s;
}

.particle:nth-child(3) {
  width: 10px;
  height: 10px;
  background: var(--purple);
  top: 25%;
  right: 5%;
  animation-delay: 2s;
}

.particle:nth-child(4) {
  width: 5px;
  height: 5px;
  background: var(--orange);
  top: 80%;
  right: 10%;
  animation-delay: 3s;
}

.particle:nth-child(5) {
  width: 7px;
  height: 7px;
  background: var(--yellow);
  top: 45%;
  left: 5%;
  animation-delay: 1.5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-25px) rotate(180deg);
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}

/* ===== STATS ===== */
.stats {
  position: relative;
  z-index: 10;
  margin-top: -60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 4px 4px 0 0;
}

.stat-card:nth-child(1)::before {
  background: var(--blue-bright);
}

.stat-card:nth-child(2)::before {
  background: var(--teal);
}

.stat-card:nth-child(3)::before {
  background: var(--purple);
}

.stat-card:nth-child(4)::before {
  background: var(--orange);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.stat-card:nth-child(1) .stat-number {
  color: var(--blue-bright);
}

.stat-card:nth-child(2) .stat-number {
  color: var(--teal);
}

.stat-card:nth-child(3) .stat-number {
  color: var(--purple);
}

.stat-card:nth-child(4) .stat-number {
  color: var(--orange);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-300);
  font-weight: 500;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--gray-100);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card-main {
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-card-main::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(62, 168, 222, 0.2), transparent 70%);
  border-radius: 50%;
}

.about-card-main i {
  font-size: 3rem;
  margin-bottom: 20px;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-card-main h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.about-card-main p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.about-floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}

.about-floating-badge .badge-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #00E5BF);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
}

.about-floating-badge .badge-text span {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
}

.about-floating-badge .badge-text small {
  color: var(--gray-300);
  font-size: 0.82rem;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text>p {
  color: var(--gray-300);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-feature .feature-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.about-feature:nth-child(1) .feature-icon {
  background: rgba(62, 168, 222, 0.12);
  color: var(--blue-bright);
}

.about-feature:nth-child(2) .feature-icon {
  background: rgba(0, 201, 167, 0.12);
  color: var(--teal);
}

.about-feature:nth-child(3) .feature-icon {
  background: rgba(123, 97, 255, 0.12);
  color: var(--purple);
}

.about-feature:nth-child(4) .feature-icon {
  background: rgba(255, 107, 53, 0.12);
  color: var(--orange);
}

.about-feature:nth-child(5) .feature-icon {
  background: rgba(255, 69, 147, 0.12);
  color: var(--pink);
}

.about-feature h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--navy);
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--gray-300);
}

/* ===== TRAINING PROGRAMS ===== */
.training {
  padding: 100px 0;
  background: var(--white);
}

.training-header {
  text-align: center;
  margin-bottom: 56px;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
  gap: 28px;
}

.training-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}

.training-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card-accent {
  height: 5px;
  width: 100%;
}

.training-card:nth-child(1) .card-accent {
  background: linear-gradient(90deg, var(--blue-bright), var(--blue-accent));
}

.training-card:nth-child(2) .card-accent {
  background: linear-gradient(90deg, var(--teal), #00E5BF);
}

.training-card:nth-child(3) .card-accent {
  background: linear-gradient(90deg, var(--purple), #9B8AFF);
}

.training-card:nth-child(4) .card-accent {
  background: linear-gradient(90deg, var(--orange), #FF9060);
}

.training-card:nth-child(5) .card-accent {
  background: linear-gradient(90deg, var(--pink), #FF70B0);
}

.training-card:nth-child(6) .card-accent {
  background: linear-gradient(90deg, var(--yellow), #FFE066);
}

.training-card:nth-child(7) .card-accent {
  background: linear-gradient(90deg, #00BCD4, #26C6DA);
}

.card-body {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.training-card:nth-child(1) .card-icon {
  background: rgba(62, 168, 222, 0.12);
  color: var(--blue-bright);
}

.training-card:nth-child(2) .card-icon {
  background: rgba(0, 201, 167, 0.12);
  color: var(--teal);
}

.training-card:nth-child(3) .card-icon {
  background: rgba(123, 97, 255, 0.12);
  color: var(--purple);
}

.training-card:nth-child(4) .card-icon {
  background: rgba(255, 107, 53, 0.12);
  color: var(--orange);
}

.training-card:nth-child(5) .card-icon {
  background: rgba(255, 69, 147, 0.12);
  color: var(--pink);
}

.training-card:nth-child(6) .card-icon {
  background: rgba(255, 207, 86, 0.15);
  color: #E6A800;
}

.training-card:nth-child(7) .card-icon {
  background: rgba(0, 188, 212, 0.12);
  color: #00BCD4;
}

.card-number {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-300);
  margin-bottom: 8px;
}

.card-body h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.card-audience {
  font-size: 0.82rem;
  color: var(--blue-primary);
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-topics {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
}

.card-topics li {
  font-size: 0.88rem;
  color: var(--gray-800);
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.card-topics li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 0.8rem;
}

.training-card:nth-child(1) .card-topics li::before {
  color: var(--blue-bright);
}

.training-card:nth-child(2) .card-topics li::before {
  color: var(--teal);
}

.training-card:nth-child(3) .card-topics li::before {
  color: var(--purple);
}

.training-card:nth-child(4) .card-topics li::before {
  color: var(--orange);
}

.training-card:nth-child(5) .card-topics li::before {
  color: var(--pink);
}

.training-card:nth-child(6) .card-topics li::before {
  color: #E6A800;
}

.training-card:nth-child(7) .card-topics li::before {
  color: #00BCD4;
}

.card-outcome {
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: auto;
}

.card-outcome h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin-bottom: 6px;
}

.card-outcome p {
  font-size: 0.84rem;
  color: var(--gray-300);
  line-height: 1.6;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 90%, rgba(62, 168, 222, 0.08), transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(123, 97, 255, 0.08), transparent 40%);
}

.services .container {
  position: relative;
  z-index: 2;
}

.services-header {
  text-align: center;
  margin-bottom: 56px;
}

.services-header .section-title {
  color: var(--white);
}

.services-header .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
  border-color: rgba(62, 168, 222, 0.4);
  box-shadow: 0 10px 40px rgba(62, 168, 222, 0.15);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.service-card:nth-child(1) .service-icon {
  background: rgba(62, 168, 222, 0.2);
  color: var(--blue-accent);
}

.service-card:nth-child(2) .service-icon {
  background: rgba(0, 201, 167, 0.2);
  color: var(--teal);
}

.service-card:nth-child(3) .service-icon {
  background: rgba(123, 97, 255, 0.2);
  color: var(--purple);
}

.service-card:nth-child(4) .service-icon {
  background: rgba(255, 107, 53, 0.2);
  color: var(--orange);
}

.service-card:nth-child(5) .service-icon {
  background: rgba(255, 69, 147, 0.2);
  color: var(--pink);
}

.service-card:nth-child(6) .service-icon {
  background: rgba(255, 207, 86, 0.2);
  color: var(--yellow);
}

.service-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  padding: 100px 0;
  background: var(--gray-100);
}

.why-us-header {
  text-align: center;
  margin-bottom: 56px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  transform: scaleX(0);
  transition: var(--transition);
}

.why-card:nth-child(1)::after {
  background: var(--blue-bright);
}

.why-card:nth-child(2)::after {
  background: var(--teal);
}

.why-card:nth-child(3)::after {
  background: var(--purple);
}

.why-card:nth-child(4)::after {
  background: var(--orange);
}

.why-card:nth-child(5)::after {
  background: var(--pink);
}

.why-card:nth-child(6)::after {
  background: var(--yellow);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}

.why-card:nth-child(1) .why-icon {
  background: rgba(62, 168, 222, 0.12);
  color: var(--blue-bright);
}

.why-card:nth-child(2) .why-icon {
  background: rgba(0, 201, 167, 0.12);
  color: var(--teal);
}

.why-card:nth-child(3) .why-icon {
  background: rgba(123, 97, 255, 0.12);
  color: var(--purple);
}

.why-card:nth-child(4) .why-icon {
  background: rgba(255, 107, 53, 0.12);
  color: var(--orange);
}

.why-card:nth-child(5) .why-icon {
  background: rgba(255, 69, 147, 0.12);
  color: var(--pink);
}

.why-card:nth-child(6) .why-icon {
  background: rgba(255, 207, 86, 0.15);
  color: #E6A800;
}

.why-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-sm);
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-info-card:nth-child(1) .contact-info-icon {
  background: var(--gradient-accent);
  color: var(--white);
}

.contact-info-card:nth-child(2) .contact-info-icon {
  background: linear-gradient(135deg, var(--teal), #00E5BF);
  color: var(--white);
}

.contact-info-card:nth-child(3) .contact-info-icon {
  background: linear-gradient(135deg, var(--purple), #9B8AFF);
  color: var(--white);
}

.contact-info-card h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.92rem;
  color: var(--gray-300);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info-card a:hover {
  color: var(--blue-primary);
}

.contact-form {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.contact-form h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(62, 168, 222, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about .navbar-brand {
  margin-bottom: 16px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gradient-accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul a:hover {
  color: var(--blue-accent);
  padding-left: 6px;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-form input:focus {
  border-color: var(--blue-bright);
}

.newsletter-form button {
  padding: 12px 24px;
  background: var(--gradient-accent);
  border: none;
  border-radius: 50px;
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(62, 168, 222, 0.4);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(62, 168, 222, 0.5);
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 380px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .training-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 80px;
  }

  .hero-image img {
    max-width: 300px;
  }

  .stats {
    margin-top: -40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-card {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .about,
  .training,
  .services,
  .why-us,
  .contact {
    padding: 70px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .training-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-card {
    padding: 20px 12px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }

  .about-floating-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form {
    flex-direction: column;
  }
}
