:root {
  --primary-dark: #111112;
  --secondary-dark: #1a1f1a;
  --accent-red: #E31C24;
  --accent-red-dark: #B8181E;
  --light-bg: #f5f1e8;
  --text-dark: #000000;
  --text-light: #ffffff;
  --font-oswald: "Oswald", sans-serif;
  --font-baskerville: "Libre Baskerville", serif;
  --font-roboto: "Roboto", sans-serif;
  --gradient-dark: linear-gradient(135deg, #111112 0%, #1a1f1a 100%);
  --gradient-red: linear-gradient(135deg, #E31C24 0%, #B8181E 100%);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-roboto);
  background-color: var(--light-bg);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-oswald);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 100px 0;
  position: relative;
}

/* ============================================
   BUTTONS - RED THEME
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  background: var(--gradient-red);
  color: white;
  font-family: var(--font-oswald);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(227, 28, 36, 0.3);
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(227, 28, 36, 0.4);
  letter-spacing: 0.12em;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #B8181E 0%, #E31C24 100%);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  border-radius: 8px;
}

.btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-red);
  color: var(--accent-red);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--gradient-red);
  color: var(--text-dark);
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient-red);
  border-radius: 2px;
}

.accent-text {
  color: var(--accent-red);
  font-family: var(--font-baskerville);
  font-style: italic;
  text-transform: none;
  font-weight: 400;
  position: relative;
}

.accent-text-green {
  color: #E31C24;
  font-family: var(--font-baskerville);
  font-style: normal;
  text-transform: none;
  font-weight: 400;
  position: relative;
}

/* ============================================
   PRELOADER - RED THEME
   ============================================ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--accent-red);
  transition: opacity 0.8s ease, visibility 0.8s ease;
  padding: 20px;
}

.preloader-logo {
  position: relative;
  display: flex;
  align-items: baseline;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  overflow: hidden;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.preloader-logo span:first-child {
  font-family: var(--font-oswald);
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.preloader-logo span:last-child {
  font-family: var(--font-baskerville);
  margin-left: clamp(5px, 2vw, 10px);
  color: var(--text-light);
  line-height: 1.1;
}

.preloader-progress {
  width: min(300px, 90%);
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 30px;
}

.preloader-progress-bar {
  width: 0;
  height: 100%;
  background: var(--gradient-red);
  transition: width 1.5s ease;
}

.preloader-subtitle {
  font-family: var(--font-oswald);
  font-size: clamp(0.8rem, 3vw, 1.2rem);
  font-weight: 700;
  letter-spacing: clamp(0.1em, 2vw, 0.2em);
  color: var(--text-light);
  text-align: center;
  padding: 0 20px;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .preloader-logo {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .preloader-logo span:last-child {
    margin-left: 0;
    margin-top: 5px;
  }
  .preloader-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    line-height: 1.5;
  }
  .preloader-progress {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .preloader-logo {
    font-size: 3.5rem;
  }
  .preloader-subtitle {
    font-size: 1rem;
    letter-spacing: 0.15em;
  }
}
/* ============================================
   MODERN GLASS NAVIGATION - PREMIUM RED THEME
   ============================================ */
.modern-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(227, 28, 36, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.03);
}

/* Navbar glow effect */
.modern-nav::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--accent-red) 20%, 
    var(--accent-red) 80%, 
    transparent
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.modern-nav.scrolled::before {
  opacity: 1;
}

/* Scrolled state */
.modern-nav.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(227, 28, 36, 0.12);
}

/* Navbar background gradient accent */
.modern-nav::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at 20% 50%,
    rgba(227, 28, 36, 0.03) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

/* Logo Container */
.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  flex-shrink: 0;
}

/* Logo glow ring */
.logo-container::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 12px;
  background: radial-gradient(
    circle at center,
    rgba(227, 28, 36, 0.08) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.logo-container:hover::after {
  opacity: 1;
}

.logo-img {
  height: 65px;
  width: auto;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.06));
  position: relative;
  z-index: 1;
}

.logo-img:hover {
  filter: drop-shadow(0 4px 16px rgba(227, 28, 36, 0.15));
  transform: scale(1.02);
}

.modern-nav.scrolled .logo-img {
  height: 48px;
}

/* Mobile Toggle Button - Premium */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
  flex-shrink: 0;
}

.nav-toggle .bar {
  width: 100%;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.nav-toggle .bar:nth-child(2) {
  width: 70%;
  align-self: flex-end;
}

.nav-toggle:hover .bar:nth-child(2) {
  width: 100%;
}

.nav-toggle.active .bar {
  background: var(--accent-red);
}

.nav-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
  width: 100%;
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  width: 100%;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  flex-wrap: nowrap;
}

.nav-list > li > a {
  color: var(--text-dark);
  text-decoration: none;
  font-family: var(--font-oswald);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.72rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 14px;
  position: relative;
  display: inline-block;
  border-radius: 30px;
  opacity: 0.7;
  white-space: nowrap;
}

.nav-list > li > a:hover {
  color: var(--accent-red);
  opacity: 1;
  background: rgba(227, 28, 36, 0.06);
  transform: translateY(-1px);
}

.nav-list > li > a.active {
  color: var(--text-light) !important;
  opacity: 1 !important;
  background: var(--gradient-red);
  box-shadow: 0 4px 20px rgba(227, 28, 36, 0.25);
}

.nav-list > li > a.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(227, 28, 36, 0.35);
}

/* Desktop Actions */
.header-actions-desktop {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.talk-btn,
.brochure-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font-oswald);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.7rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Call Now Button - Premium */
.talk-btn {
  background: var(--gradient-red);
  color: white;
  box-shadow: 0 4px 20px rgba(227, 28, 36, 0.25);
}

.talk-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 50%);
  pointer-events: none;
}

.talk-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 35px rgba(227, 28, 36, 0.35);
}

.talk-btn:active {
  transform: scale(0.97);
}

/* Brochure Button - Premium */
.brochure-btn {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.brochure-btn i {
  color: var(--accent-red);
  transition: color 0.3s ease;
}

.brochure-btn:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(227, 28, 36, 0.1);
  background: rgba(227, 28, 36, 0.03);
}

.brochure-btn:hover i {
  color: var(--accent-red);
}

/* ============================================
   RESPONSIVE - TABLET & MOBILE
   ============================================ */
@media (max-width: 1200px) {
  .nav-list {
    gap: 2px;
    padding: 4px 8px;
  }
  .nav-list > li > a {
    padding: 6px 12px;
    font-size: 0.65rem;
    letter-spacing: 0.03em;
  }
  .talk-btn,
  .brochure-btn {
    padding: 8px 16px;
    font-size: 0.65rem;
  }
  .header-actions-desktop {
    gap: 8px;
  }
  .nav-menu {
    gap: 20px;
  }
}

@media (max-width: 1100px) {
  .nav-list > li > a {
    padding: 6px 10px;
    font-size: 0.6rem;
    letter-spacing: 0.02em;
  }
  .talk-btn,
  .brochure-btn {
    padding: 8px 14px;
    font-size: 0.6rem;
  }
  .talk-btn i,
  .brochure-btn i {
    display: none;
  }
  .talk-btn,
  .brochure-btn {
    gap: 0;
  }
}

@media (max-width: 992px) {
  .header-container {
    padding: 0 25px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-list {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 140px 40px 60px;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
    border-left: 1px solid rgba(227, 28, 36, 0.08);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.08);
    gap: 0;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
    margin-bottom: 50px;
  }

  .nav-list > li {
    width: 100%;
    text-align: center;
  }

  .nav-list > li > a {
    display: block;
    width: 100%;
    padding: 16px 20px;
    font-size: 1.1rem;
    color: var(--text-dark);
    letter-spacing: 0.1em;
    font-weight: 600;
    border-radius: 12px;
    background: transparent;
    opacity: 0.8;
    white-space: normal;
  }

  .nav-list > li > a:hover {
    color: var(--accent-red);
    background: rgba(227, 28, 36, 0.06);
    opacity: 1;
  }

  .nav-list > li > a.active {
    background: var(--gradient-red);
    color: var(--text-light) !important;
    box-shadow: 0 4px 20px rgba(227, 28, 36, 0.25);
    opacity: 1 !important;
  }

  .nav-list > li > a.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(227, 28, 36, 0.35);
  }

  .nav-social-mobile {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
  }

  .social-icon:hover {
    background: var(--gradient-red);
    color: var(--text-dark);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(227, 28, 36, 0.25);
    border-color: transparent;
  }

  .nav-actions-mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .nav-actions-mobile .talk-btn,
  .nav-actions-mobile .brochure-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 25px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 14px;
  }

  .nav-actions-mobile .talk-btn i,
  .nav-actions-mobile .brochure-btn i {
    display: inline-block;
  }

  .nav-actions-mobile .talk-btn {
    box-shadow: 0 4px 25px rgba(227, 28, 36, 0.3);
  }

  .nav-actions-mobile .brochure-btn {
    border-width: 2px;
  }

  .header-actions-desktop {
    display: none;
  }

  .logo-img {
    height: 55px;
  }

  .modern-nav.scrolled .logo-img {
    height: 42px;
  }

  .modern-nav {
    padding: 16px 0;
  }

  .modern-nav.scrolled {
    padding: 10px 0;
  }
}

@media (min-width: 993px) {
  .nav-social-mobile,
  .nav-actions-mobile {
    display: none !important;
  }
  .header-actions-desktop {
    display: flex;
  }
}

@media (max-width: 576px) {
  .header-container {
    padding: 0 18px;
  }

  .nav-menu {
    max-width: 100%;
    padding: 120px 24px 40px;
  }

  .logo-img {
    height: 48px;
  }

  .modern-nav.scrolled .logo-img {
    height: 38px;
  }

  .nav-list > li > a {
    padding: 14px 16px;
    font-size: 1rem;
  }

  .social-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .nav-actions-mobile .talk-btn,
  .nav-actions-mobile .brochure-btn {
    padding: 14px 20px;
    font-size: 0.9rem;
    border-radius: 12px;
  }

  .modern-nav {
    padding: 12px 0;
  }

  .modern-nav.scrolled {
    padding: 8px 0;
  }

  .nav-social-mobile {
    gap: 16px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}

@media (max-width: 400px) {
  .nav-menu {
    padding: 100px 16px 30px;
  }

  .logo-img {
    height: 42px;
  }

  .modern-nav.scrolled .logo-img {
    height: 34px;
  }

  .nav-list > li > a {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .social-icon {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  .nav-actions-mobile .talk-btn,
  .nav-actions-mobile .brochure-btn {
    padding: 12px 16px;
    font-size: 0.85rem;
  }

  .nav-social-mobile {
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
}

/* ============================================
   ANIMATIONS - Logo Shrink/Grow
   ============================================ */
@keyframes logoShrink {
  from {
    height: 65px;
  }
  to {
    height: 48px;
  }
}

@keyframes logoGrow {
  from {
    height: 48px;
  }
  to {
    height: 65px;
  }
}

/* Smooth scroll indicator */
.modern-nav.scrolled .nav-list > li > a {
  opacity: 0.85;
}

.modern-nav.scrolled .nav-list > li > a.active {
  opacity: 1 !important;
}

/* Mobile menu overlay background */
.nav-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(227, 28, 36, 0.02) 0%,
    transparent 50%
  );
  pointer-events: none;
}
/* ============================================
   HERO SECTION - WITH SVG BACKGROUND
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-dark);
  color: var(--text-light);
  padding-top: 180px;
  padding-bottom: 70px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* SVG Background Layer */
.hero-svg-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.7;
  pointer-events: none;
}

.hero-svg-bg svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.white-nav + .hero {
  padding-top: 190px;
}

.white-nav.scrolled + .hero {
  padding-top: 170px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(var(--accent-red) 1px, transparent 1px);
  background-size: 46px 46px;
  animation: patternMove 24s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -220px;
  right: -160px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(227, 28, 36, 0.22) 0%, rgba(227, 28, 36, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

@keyframes patternMove {
  0% { background-position: 0 0; }
  100% { background-position: 46px 46px; }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 90px;
}

/* ---------- Left: content ---------- */
.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(227, 28, 36, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(227, 28, 36, 0.35);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.badge-icon {
  color: var(--accent-red);
  font-size: 1rem;
}

.badge-text {
  font-family: var(--font-oswald);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-red);
  font-weight: 600;
}

.hero-title {
  font-size: 3.6rem;
  line-height: 1.12;
  margin-bottom: 22px;
  color: var(--text-light);
  animation: fadeInUp 0.8s ease-out 0.25s both;
}

.hero-title span {
  color: var(--accent-red);
  font-style: italic;
  font-family: var(--font-baskerville);
  text-transform: none;
  letter-spacing: 0;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-family: var(--font-baskerville);
  font-style: italic;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  max-width: 520px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease-out 0.55s both;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-oswald);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.85);
}

.hero-trust-item i {
  color: var(--accent-red);
  font-size: 0.95rem;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

.hero-buttons .btn-outline {
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-buttons .btn-outline:hover {
  background: var(--gradient-red);
  border-color: transparent;
  color: var(--text-dark);
}

/* ---------- Right: visual ---------- */
.hero-visual {
  position: relative;
  animation: fadeInUp 0.9s ease-out 0.35s both;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.hero-visual-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  width: 100%;
  height: auto;
}

.hero-visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 18, 0.85) 0%, rgba(17, 17, 18, 0) 45%);
  z-index: 1;
  pointer-events: none;
}

.hero-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-visual-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroCarouselFade 16s infinite;
}

.hero-visual-slide:nth-child(1) { animation-delay: 0s; }
.hero-visual-slide:nth-child(2) { animation-delay: 4s; }
.hero-visual-slide:nth-child(3) { animation-delay: 8s; }
.hero-visual-slide:nth-child(4) { animation-delay: 12s; }

@keyframes heroCarouselFade {
  0%, 100% { opacity: 0; }
  3% { opacity: 1; }
  22% { opacity: 1; }
  27% { opacity: 0; }
}

.hero-visual-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 90px;
  height: 90px;
  border-top: 3px solid var(--accent-red);
  border-left: 3px solid var(--accent-red);
  border-radius: 20px 0 0 0;
  z-index: 0;
}

.hero-cert-chip {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(17, 17, 18, 0.75);
  border: 1px solid rgba(227, 28, 36, 0.4);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 50px;
}

.hero-cert-chip i {
  color: var(--accent-red);
  font-size: 1rem;
}

.hero-cert-chip span {
  font-family: var(--font-oswald);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.hero-exp-card {
  position: absolute;
  left: -28px;
  bottom: 34px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gradient-red);
  padding: 20px 26px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(227, 28, 36, 0.35);
}

.hero-exp-card .num {
  font-family: var(--font-oswald);
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.hero-exp-card .label {
  font-family: var(--font-oswald);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: white;
  max-width: 90px;
  line-height: 1.3;
  font-weight: 600;
}

/* ---------- Stats strip ---------- */
.hero-stats-wrap {
  position: relative;
  z-index: 2;
  margin-top: 20px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.8s ease-out 0.85s both;
}

.hero-stat-item {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.hero-stat-item + .hero-stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-stat-number {
  font-family: var(--font-oswald);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.hero-stat-number span {
  color: var(--accent-red);
}

.hero-stat-text {
  font-family: var(--font-oswald);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
}

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

/* ============================================
   RESPONSIVE STYLES - HERO
   ============================================ */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .hero-visual {
    max-width: 450px;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-bottom: 60px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-subtitle,
  .hero-trust,
  .hero-buttons {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .hero-subtitle {
    max-width: 600px;
  }

  .hero-visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-exp-card {
    left: 16px;
    bottom: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 150px;
    padding-bottom: 50px;
    min-height: auto;
  }

  .white-nav + .hero {
    padding-top: 140px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    max-width: 100%;
  }

  .hero-badge {
    padding: 8px 16px;
  }

  .badge-text {
    font-size: 0.7rem;
  }

  .hero-visual {
    max-width: 350px;
  }

  .hero-visual-frame {
    aspect-ratio: 3 / 4;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }

  .hero-stat-item + .hero-stat-item::before {
    display: none;
  }

  .hero-stat-item + .hero-stat-item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-stat-item {
    padding: 20px;
  }

  .hero-exp-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    padding: 14px 20px;
    gap: 12px;
  }

  .hero-exp-card .num {
    font-size: 1.8rem;
  }

  .hero-exp-card .label {
    font-size: 0.65rem;
    max-width: 70px;
  }

  .hero-cert-chip {
    top: 12px;
    right: 12px;
    padding: 6px 12px;
  }

  .hero-cert-chip span {
    font-size: 0.65rem;
  }

  .hero-svg-bg {
    opacity: 0.4;
  }

  .hero-glow {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-top: 130px;
    padding-bottom: 40px;
  }

  .white-nav + .hero {
    padding-top: 120px;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
  }

  .hero-trust-item {
    font-size: 0.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-buttons .btn {
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    font-size: 0.85rem;
  }

  .hero-visual {
    max-width: 280px;
  }

  .hero-visual-frame {
    aspect-ratio: 4 / 5;
    border-radius: 14px;
  }

  .hero-exp-card {
    padding: 10px 16px;
    gap: 10px;
    bottom: -12px;
  }

  .hero-exp-card .num {
    font-size: 1.5rem;
  }

  .hero-exp-card .label {
    font-size: 0.55rem;
    max-width: 60px;
  }

  .hero-cert-chip {
    top: 10px;
    right: 10px;
    padding: 5px 10px;
  }

  .hero-cert-chip i {
    font-size: 0.8rem;
  }

  .hero-cert-chip span {
    font-size: 0.55rem;
  }

  .hero-visual-accent {
    width: 50px;
    height: 50px;
    top: -10px;
    left: -10px;
    border-width: 2px;
  }

  .hero-stats-wrap {
    margin-top: 30px;
  }

  .hero-stat-number {
    font-size: 2rem;
  }

  .hero-stat-text {
    font-size: 0.7rem;
  }

  .hero-svg-bg {
    opacity: 0.25;
  }

  .hero-glow {
    width: 250px;
    height: 250px;
    top: -80px;
    right: -60px;
  }

  .hero-badge {
    padding: 6px 14px;
    margin-bottom: 20px;
  }

  .badge-icon {
    font-size: 0.8rem;
  }

  .badge-text {
    font-size: 0.6rem;
  }
}

@media (max-width: 400px) {
  .hero {
    padding-top: 110px;
    padding-bottom: 30px;
  }

  .white-nav + .hero {
    padding-top: 100px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-visual {
    max-width: 240px;
  }

  .hero-visual-frame {
    aspect-ratio: 4 / 5;
  }

  .hero-exp-card {
    padding: 8px 14px;
    gap: 8px;
    bottom: -10px;
  }

  .hero-exp-card .num {
    font-size: 1.3rem;
  }

  .hero-exp-card .label {
    font-size: 0.5rem;
    max-width: 50px;
  }

  .hero-stat-number {
    font-size: 1.7rem;
  }

  .hero-buttons .btn {
    font-size: 0.8rem;
    padding: 12px 16px;
  }

  .hero-svg-bg {
    opacity: 0.2;
  }
}

/* Fix for very small screens to prevent overflow */
@media (max-width: 360px) {
  .hero-visual {
    max-width: 200px;
  }

  .hero-exp-card {
    display: none;
  }

  .hero-cert-chip {
    top: 8px;
    right: 8px;
    padding: 4px 8px;
  }

  .hero-cert-chip span {
    font-size: 0.5rem;
  }

  .hero-cert-chip i {
    font-size: 0.6rem;
  }
}

/* ============================================
   COLLABORATIONS MARQUEE - WITH SVG BACKGROUND
   ============================================ */
.collab-marquee {
  background: var(--light-bg);
  padding: 80px 0 70px;
  overflow: hidden;
  position: relative;
}

/* SVG Background - Darker */
.collab-svg-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.25;
  pointer-events: none;
}

.collab-svg-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Optional: Add a dark overlay on the SVG */
.collab-svg-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

.collab-marquee-header {
  text-align: center;
  margin-bottom: 46px;
  position: relative;
  z-index: 1;
}

.collab-marquee-eyebrow {
  display: inline-block;
  font-family: var(--font-oswald);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-red);
  font-weight: 600;
  margin-bottom: 12px;
}

.collab-marquee-title {
  font-size: 2.4rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.collab-marquee-track-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.collab-marquee-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: collabMarqueeScroll 45s linear infinite;
}

.collab-marquee-track-wrap:hover .collab-marquee-track {
  animation-play-state: paused;
}

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

/* Client Logo Styles - Full Color */
.collab-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 16px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 160px;
  height: 80px;
}

.collab-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(227, 28, 36, 0.15);
}

.collab-logo img {
  max-width: 130px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 0.9;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collab-logo:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .collab-logo {
    min-width: 130px;
    height: 70px;
    padding: 14px 24px;
  }
  .collab-logo img {
    max-width: 100px;
    max-height: 40px;
  }
  .collab-marquee-track {
    gap: 24px;
    animation-duration: 38s;
  }
  .collab-svg-bg {
    opacity: 0.2;
  }
}

@media (max-width: 768px) {
  .collab-marquee {
    padding: 60px 0 50px;
  }
  .collab-marquee-title {
    font-size: 1.8rem;
  }
  .collab-logo {
    min-width: 110px;
    height: 60px;
    padding: 12px 18px;
    border-radius: 12px;
  }
  .collab-logo img {
    max-width: 80px;
    max-height: 34px;
  }
  .collab-marquee-track {
    gap: 18px;
    animation-duration: 32s;
  }
  .collab-svg-bg {
    opacity: 0.15;
  }
}

@media (max-width: 576px) {
  .collab-marquee {
    padding: 50px 0 40px;
  }
  .collab-marquee-title {
    font-size: 1.5rem;
  }
  .collab-logo {
    min-width: 90px;
    height: 50px;
    padding: 10px 14px;
    border-radius: 10px;
  }
  .collab-logo img {
    max-width: 65px;
    max-height: 28px;
  }
  .collab-marquee-track {
    gap: 14px;
    animation-duration: 28s;
  }
  .collab-marquee-eyebrow {
    font-size: 0.75rem;
  }
  .collab-svg-bg {
    opacity: 0.1;
  }
}

@media (max-width: 400px) {
  .collab-logo {
    min-width: 75px;
    height: 44px;
    padding: 8px 10px;
    border-radius: 8px;
  }
  .collab-logo img {
    max-width: 55px;
    max-height: 24px;
  }
  .collab-marquee-track {
    gap: 10px;
    animation-duration: 24s;
  }
  .collab-svg-bg {
    opacity: 0.08;
  }
}

/* ============================================
   QUOTE SECTION - RED THEME
   ============================================ */
.quote-section {
  background: var(--gradient-dark);
  color: var(--text-light);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 50% 50%, rgba(227, 28, 36, 0.1) 0%, transparent 60%);
}

.quote-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(227, 28, 36, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.quote-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.quote-icon {
  font-size: 3rem;
  color: var(--accent-red);
  margin-bottom: 30px;
  opacity: 0.7;
  position: relative;
}

.quote-icon::before,
.quote-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-red));
}

.quote-icon::before {
  right: calc(100% + 30px);
}

.quote-icon::after {
  left: calc(100% + 30px);
  background: linear-gradient(90deg, var(--accent-red), transparent);
}

.quote-text {
  font-size: 2.8rem;
  font-family: var(--font-baskerville);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: var(--text-light);
}

.quote-author {
  font-family: var(--font-oswald);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-red);
  position: relative;
  padding-top: 20px;
}

.quote-author::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--gradient-red);
  border-radius: 2px;
}

/* ============================================
   ABOUT SECTION - RED THEME
   ============================================ */
.about {
  background-color: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.about-bg-text {
  position: absolute;
  font-size: 20rem;
  font-family: var(--font-oswald);
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 0;
  letter-spacing: 0.1em;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-text {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-text.visible {
  opacity: 1;
  transform: translateX(0);
}

.about-text h2 {
  margin-bottom: 30px;
}

.about-text p {
  margin-bottom: 25px;
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.8;
  position: relative;
  padding-left: 20px;
}

.about-text p::before {
  content: "•";
  color: var(--accent-red);
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: 0;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 120px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-family: var(--font-oswald);
  font-size: 2.5rem;
  font-weight: 700;
  color: #E31C24;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: var(--font-oswald);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark);
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateX(80px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image.visible {
  opacity: 1;
  transform: translateX(0);
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--text-light);
  transform: translateY(100%);
  transition: transform 0.6s ease;
}

.about-image:hover .image-overlay {
  transform: translateY(0);
}

/* ============================================
   RSDI INFORMATION - RED THEME
   ============================================ */
.rsdi-info {
  background: rgba(227, 28, 36, 0.05);
  padding: 25px;
  border-radius: 15px;
  margin: 25px 0;
  border-left: 4px solid #E31C24;
}

.rsdi-info h3 {
  font-family: var(--font-oswald);
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--accent-red);
}

.btn-rsdi {
  background: var(--gradient-red);
  color: var(--text-dark);
  border: none;
  padding: 12px 25px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-rsdi:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(227, 28, 36, 0.3);
}

/* ============================================
   RSDI MODAL - RED THEME
   ============================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-container {
  background: var(--gradient-dark);
  border-radius: 20px;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(227, 28, 36, 0.2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid rgba(227, 28, 36, 0.1);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px 20px 0 0;
}

.modal-header h2 {
  font-family: var(--font-oswald);
  font-size: 1.8rem;
  color: var(--accent-red);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-close {
  background: rgba(227, 28, 36, 0.1);
  border: 1px solid var(--accent-red);
  color: var(--accent-red);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--gradient-red);
  color: var(--text-dark);
  transform: rotate(90deg);
}

.modal-content {
  padding: 30px;
}

.rsdi-logo-container {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.rsdi-logo-img {
  height: 80px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(227, 28, 36, 0.3);
}

.rsdi-logo-name {
  font-family: var(--font-oswald);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  text-shadow: 0 5px 15px rgba(227, 28, 36, 0.3);
}

.rsdi-subtitle {
  font-family: var(--font-baskerville);
  font-size: 1.3rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 8px;
  opacity: 0.9;
}

.rsdi-info-content {
  color: var(--text-light);
}

.rsdi-info-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
}

.rsdi-info-content strong {
  color: var(--accent-red);
  font-weight: 600;
}

.rsdi-services-section {
  margin: 40px 0;
  padding: 30px;
  background: rgba(227, 28, 36, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(227, 28, 36, 0.1);
}

.rsdi-services-section h3 {
  font-family: var(--font-oswald);
  font-size: 1.5rem;
  color: var(--accent-red);
  margin-bottom: 25px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.rsdi-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.rsdi-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  cursor: default;
}

.rsdi-service-item:hover {
  background: rgba(227, 28, 36, 0.1);
  transform: translateY(-3px);
  border-color: var(--accent-red);
}

.rsdi-service-item i {
  color: var(--accent-red);
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(227, 28, 36, 0.1);
  border-radius: 8px;
  flex-shrink: 0;
}

.rsdi-service-item span {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 500;
}

.rsdi-brochure {
  text-align: center;
  margin-top: 40px;
  padding: 35px;
  background: linear-gradient(135deg, rgba(227, 28, 36, 0.08) 0%, rgba(184, 24, 30, 0.05) 100%);
  border-radius: 15px;
  border: 2px solid rgba(227, 28, 36, 0.2);
}

.rsdi-brochure h3 {
  font-family: var(--font-oswald);
  font-size: 1.5rem;
  color: var(--accent-red);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.rsdi-brochure p {
  margin-bottom: 25px;
  font-size: 1.05rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.btn-download-brochure {
  background: var(--gradient-red);
  color: var(--text-dark);
  border: none;
  padding: 16px 35px;
  font-size: 1.1rem;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-download-brochure:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(227, 28, 36, 0.4);
}

.btn-download-brochure i {
  margin-right: 10px;
}

@media (max-width: 768px) {
  .modal-container {
    max-width: 95%;
    margin: 20px;
  }
  .modal-header {
    padding: 20px;
  }
  .modal-header h2 {
    font-size: 1.5rem;
  }
  .modal-content {
    padding: 20px;
  }
  .rsdi-logo-container {
    flex-direction: column;
    gap: 15px;
  }
  .rsdi-logo-img {
    height: 70px;
  }
  .rsdi-logo-name {
    font-size: 2.8rem;
  }
  .rsdi-services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .rsdi-service-item {
    padding: 12px;
  }
  .rsdi-service-item i {
    font-size: 1.1rem;
    width: 35px;
    height: 35px;
  }
  .rsdi-service-item span {
    font-size: 0.9rem;
  }
  .rsdi-services-section {
    padding: 20px;
  }
  .rsdi-services-section h3 {
    font-size: 1.3rem;
  }
  .rsdi-brochure {
    padding: 25px 20px;
  }
  .rsdi-brochure h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .modal-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .rsdi-info {
    padding: 20px 15px;
  }
  .btn-rsdi {
    width: 100%;
    justify-content: center;
  }
  .rsdi-logo-name {
    font-size: 2.5rem;
  }
  .rsdi-subtitle {
    font-size: 1.1rem;
  }
  .rsdi-services-section {
    padding: 15px;
  }
  .btn-download-brochure {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .modal-content {
    padding: 15px;
  }
  .rsdi-logo-name {
    font-size: 2.2rem;
  }
  .rsdi-logo-img {
    height: 60px;
  }
  .rsdi-services-section h3 {
    font-size: 1.2rem;
  }
  .rsdi-brochure h3 {
    font-size: 1.2rem;
  }
}

.download-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  min-width: 260px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #111, #1c1c1c);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.download-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.download-btn:hover::before {
  transform: translateX(100%);
}

.download-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.download-btn .icon {
  font-size: 22px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.download-btn .text strong {
  display: block;
  font-size: 15px;
  letter-spacing: 0.4px;
}

.download-btn .text small {
  font-size: 12px;
  opacity: 0.7;
}

.brochure-btn {
  background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
}

.brochure-btn .icon {
  background: rgba(227, 28, 36, 0.15);
  color: #E31C24;
}

.brochure-btn strong {
  color: #fff;
}

.brochure-btn small {
  color: #ddd;
}

.project-btn {
  background: linear-gradient(135deg, #0c1c2b, #132f45);
}

.project-btn .icon {
  background: rgba(227, 28, 36, 0.18);
  color: #E31C24;
}

.project-btn strong {
  color: #E31C24;
}

.project-btn small {
  color: #e6e6e6;
}

@media (max-width: 576px) {
  .download-btn {
    width: 100%;
  }
}

/* RSDI Download Wrapper - RED THEME */
.rsdi-download-wrapper {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.rsdi-download-wrapper .rsdi-btn {
  all: unset;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  border-radius: 50px;
  cursor: pointer;
  background: var(--gradient-dark);
  border: 2px solid transparent;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rsdi-download-wrapper .rsdi-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.rsdi-download-wrapper .brochure-btn {
  border-color: #E31C24;
}

.rsdi-download-wrapper .brochure-btn i {
  color: #E31C24;
}

.rsdi-download-wrapper .project-btn {
  border-color: var(--accent-red);
  color: var(--accent-red);
}

.rsdi-download-wrapper .project-btn i {
  color: var(--accent-red);
}

.rsdi-download-wrapper .rsdi-btn i {
  font-size: 16px;
}

@media (max-width: 576px) {
  .rsdi-download-wrapper .rsdi-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   SERVICES SECTION - RED THEME
   ============================================ */
.services {
  background: var(--gradient-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.services-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25vw;
  font-family: var(--font-oswald);
  font-weight: 900;
  color: rgba(227, 28, 36, 0.03);
  white-space: nowrap;
  z-index: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
  animation: floatText 30s linear infinite;
}

@keyframes floatText {
  0% {
    transform: translate(-50%, -50%) translateX(0);
  }
  100% {
    transform: translate(-50%, -50%) translateX(-50%);
  }
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%, rgba(227, 28, 36, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(227, 28, 36, 0.05) 0%, transparent 20%);
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(60px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-red);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.service-card:hover::before {
  opacity: 0.1;
}

.service-card:hover {
  transform: translateY(-20px);
  border-color: var(--accent-red);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--accent-red);
}

.service-card.visible:hover {
  transform: translateY(-20px);
}

.service-icon {
  font-size: 3rem;
  color: var(--accent-red);
  margin-bottom: 25px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(227, 28, 36, 0.1);
  border-radius: 50%;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(10deg);
  background: rgba(227, 28, 36, 0.2);
  box-shadow: 0 10px 30px rgba(227, 28, 36, 0.3);
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--text-light);
  position: relative;
  padding-bottom: 15px;
}

.service-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--gradient-red);
  border-radius: 2px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================
   VIDEO SHOWCASE - RED THEME
   ============================================ */
.video-showcase {
  position: relative;
  background-color: #ffffff;
  padding: 100px 0;
  overflow: hidden;
}

.video-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 15% 50%, rgba(227, 28, 36, 0.03) 0%, transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(227, 28, 36, 0.02) 0%, transparent 25%),
    linear-gradient(45deg, transparent 49.7%, rgba(0, 0, 0, 0.015) 49.8%, transparent 50.2%),
    linear-gradient(-45deg, transparent 49.7%, rgba(0, 0, 0, 0.015) 49.8%, transparent 50.2%);
  background-size: 100% 100%, 100% 100%, 30px 30px, 30px 30px;
  background-position: 0 0, 0 0, 0 0, 0 0;
  z-index: 0;
}

.video-showcase-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.video-showcase-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.video-showcase-subtitle {
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 1.3rem;
  color: #555;
  line-height: 1.7;
  font-family: var(--font-roboto);
  font-weight: 300;
}

.video-player-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 1;
}

.main-video-player {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-video-player:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(227, 28, 36, 0.1);
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  background: #000;
  overflow: hidden;
}

.main-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.video-wrapper.playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #E31C24;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.play-btn:hover {
  transform: scale(1.1);
  background: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.video-player-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.video-wrapper:hover .video-player-controls {
  opacity: 1;
}

.controls-left,
.controls-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.controls-center {
  flex: 1;
}

.control-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #E31C24;
  cursor: pointer;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: white;
  transform: scale(1.1);
  color: var(--accent-red);
}

.time-display {
  color: white;
  font-family: var(--font-oswald);
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 80px;
  text-align: center;
}

.progress-bar-container {
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  padding: 0 5px;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--gradient-red);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

.progress-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.progress-bar:hover .progress-thumb {
  opacity: 1;
}

.volume-slider {
  width: 80px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.controls-right:hover .volume-slider {
  opacity: 1;
}

.volume-range {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  outline: none;
}

.volume-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.volume-range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.video-info {
  padding: 35px;
  background: white;
}

.video-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.video-category,
.video-duration {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-oswald);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #E31C24;
}

.video-category i,
.video-duration i {
  font-size: 1rem;
}

.video-title {
  font-family: var(--font-oswald);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.2;
  text-transform: uppercase;
}

.video-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
  font-family: var(--font-roboto);
  font-weight: 300;
}

.video-stats {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.stat i {
  color: #E31C24;
}

.video-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tag {
  background: rgba(227, 28, 36, 0.08);
  color: #E31C24;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(227, 28, 36, 0.1);
}

.tag:hover {
  background: rgba(227, 28, 36, 0.15);
  transform: translateY(-2px);
}

.video-actions {
  display: flex;
  gap: 15px;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-family: var(--font-oswald);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-btn i {
  font-size: 1.1rem;
}

.like-btn {
  background: rgba(255, 65, 105, 0.1);
  color: #ff4169;
  border: 1px solid rgba(255, 65, 105, 0.2);
}

.like-btn:hover {
  background: rgba(255, 65, 105, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 65, 105, 0.15);
}

.share-btn {
  background: rgba(227, 28, 36, 0.1);
  color: #E31C24;
  border: 1px solid rgba(227, 28, 36, 0.2);
}

.share-btn:hover {
  background: rgba(227, 28, 36, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(227, 28, 36, 0.15);
}

.instagram-btn {
  background: linear-gradient(45deg, #E1306C, #C13584);
  color: white;
  border: none;
}

.instagram-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
}

.youtube-btn {
  background: #ff0000;
  color: #fff;
}

.youtube-btn:hover {
  background: #e60000;
}

.video-thumbnails {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
  align-self: start;
}

.thumbnails-title {
  font-family: var(--font-oswald);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.thumbnails-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.thumbnail-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.thumbnail-item:hover {
  background: rgba(227, 28, 36, 0.03);
  border-color: rgba(227, 28, 36, 0.1);
  transform: translateX(5px);
}

.thumbnail-item.active {
  background: rgba(227, 28, 36, 0.08);
  border-color: rgba(227, 28, 36, 0.2);
  position: relative;
}

.thumbnail-item.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-red);
  border-radius: 0 2px 2px 0;
}

.thumbnail-image {
  width: 120px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.thumbnail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.thumbnail-item:hover .thumbnail-image img {
  transform: scale(1.1);
}

.thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.thumbnail-item:hover .thumbnail-overlay {
  opacity: 1;
}

.thumb-duration {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
}

.thumbnail-info {
  flex: 1;
}

.thumbnail-category {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #E31C24;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.thumbnail-info h5 {
  font-family: var(--font-oswald);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
  line-height: 1.3;
}

.thumbnail-info p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 1200px) {
  .video-player-container {
    grid-template-columns: 1fr 350px;
    gap: 30px;
  }
  .video-wrapper {
    height: 450px;
  }
}

@media (max-width: 992px) {
  .video-player-container {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 700px;
  }
  .video-wrapper {
    height: 400px;
  }
  .video-thumbnails {
    width: 100%;
  }
  .thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .thumbnail-item {
    flex-direction: column;
    padding: 20px;
  }
  .thumbnail-image {
    width: 100%;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .video-showcase {
    padding: 70px 0;
  }
  .video-player-container {
    gap: 30px;
  }
  .video-wrapper {
    height: 350px;
  }
  .video-info {
    padding: 25px;
  }
  .video-title {
    font-size: 1.8rem;
  }
  .video-description {
    font-size: 1.05rem;
  }
  .thumbnails-grid {
    grid-template-columns: 1fr;
  }
  .video-actions {
    flex-wrap: wrap;
  }
  .action-btn {
    flex: 1;
    justify-content: center;
  }
  .controls-left .play-pause-btn {
    display: none;
  }
  .play-btn {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  .video-wrapper:not(.playing) .video-overlay {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

@media (max-width: 576px) {
  .video-showcase-subtitle {
    font-size: 1.1rem;
    padding: 0 20px;
  }
  .video-wrapper {
    height: 300px;
  }
  .play-btn {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  .video-info {
    padding: 20px;
  }
  .video-title {
    font-size: 1.6rem;
  }
  .video-description {
    font-size: 1rem;
  }
  .video-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .video-actions {
    flex-direction: column;
  }
  .action-btn {
    width: 100%;
  }
  .video-thumbnails {
    padding: 20px;
  }
  .thumbnail-image {
    height: 100px;
  }
}

.video-wrapper:fullscreen {
  width: 100%;
  height: 100%;
  background: #000;
}

.video-wrapper:fullscreen .main-video {
  object-fit: contain;
}

.video-wrapper:fullscreen .video-player-controls {
  bottom: 20px;
  left: 20px;
  right: 20px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.7);
  padding: 15px 20px;
}

/* ============================================
   TESTIMONIALS SECTION - RED THEME
   ============================================ */
.testimonials {
  background: var(--gradient-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.08'%3E%3Crect x='15' y='20' width='20' height='60' fill='%23ffffff'/%3E%3Crect x='40' y='10' width='20' height='80' fill='%23ffffff' opacity='0.7'/%3E%3Crect x='65' y='30' width='20' height='50' fill='%23ffffff' opacity='0.5'/%3E%3Crect x='90' y='40' width='20' height='40' fill='%23ffffff' opacity='0.6'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at 10% 20%, rgba(227, 28, 36, 0.02) 0%, transparent 25%),
    radial-gradient(circle at 90% 80%, rgba(227, 28, 36, 0.02) 0%, transparent 25%);
  background-size: 120px 120px, 100% 100%, 100% 100%;
  background-position: 0 0, 0 0, 0 0;
  z-index: 0;
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(17, 17, 18, 0.8);
  padding: 12px 25px;
  border-radius: 50px;
  margin-bottom: 25px;
  border: 1px solid rgba(227, 28, 36, 0.2);
  backdrop-filter: blur(5px);
  position: relative;
  z-index: 1;
}

.google-rating-stars {
  color: #FFD700;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.rating-score {
  font-family: var(--font-oswald);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-red);
}

.rating-text {
  font-family: var(--font-oswald);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  opacity: 0.9;
}

.reviews-carousel {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.carousel-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  background: rgba(17, 17, 18, 0.9);
  border: 1px solid rgba(227, 28, 36, 0.15);
  position: relative;
}

.carousel-slides {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.3s ease-out;
  height: 400px;
}

.carousel-slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  user-select: none;
  flex-basis: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  display: block;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(17, 17, 18, 0.9);
  border: 1px solid rgba(227, 28, 36, 0.3);
  color: var(--accent-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-nav:hover {
  background: var(--gradient-red);
  color: var(--text-dark);
  transform: translateY(-50%) scale(1.05);
}

.carousel-nav.prev {
  left: -25px;
}

.carousel-nav.next {
  right: -25px;
}

.carousel-nav.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  z-index: 1;
  position: relative;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-indicator.active {
  background: var(--accent-red);
  transform: scale(1.2);
}

.view-all-reviews {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.view-all-reviews .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  font-size: 0.9rem;
  background: var(--gradient-red);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: var(--font-oswald);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
}

.view-all-reviews .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(227, 28, 36, 0.3);
}

@media (max-width: 1200px) {
  .carousel-slides {
    height: 380px;
  }
}

@media (max-width: 992px) {
  .testimonials {
    padding: 80px 0;
  }
  .carousel-slides {
    height: 340px;
  }
  .carousel-nav {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  .carousel-nav.prev {
    left: -20px;
  }
  .carousel-nav.next {
    right: -20px;
  }
}

@media (max-width: 768px) {
  .carousel-slides {
    height: 300px;
  }
  .google-rating-badge {
    padding: 10px 20px;
    gap: 10px;
  }
  .google-rating-stars {
    font-size: 1.1rem;
    letter-spacing: 1.5px;
  }
  .rating-score {
    font-size: 1.3rem;
  }
  .carousel-indicators {
    gap: 8px;
  }
  .carousel-indicator {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 576px) {
  .carousel-slides {
    height: 250px;
  }
  .google-rating-badge {
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px 16px;
    gap: 8px;
  }
  .view-all-reviews .btn {
    padding: 10px 25px;
    font-size: 0.85rem;
  }
  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  .carousel-nav.prev {
    left: -15px;
  }
  .carousel-nav.next {
    right: -15px;
  }
}

@media (max-width: 400px) {
  .carousel-nav {
    display: none;
  }
}

@media (max-width: 480px) {
  .carousel-slides {
    height: 220px;
  }
  .carousel-container {
    border-radius: 10px;
  }
  .carousel-slide img {
    border-radius: 6px;
  }
}

/* ============================================
   CTA SECTION - RED THEME
   ============================================ */
.cta {
  position: relative;
  padding: 150px 0;
  text-align: center;
  color: var(--text-light);
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/img/Transform.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}

.cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(17, 17, 18, 0.9), rgba(26, 31, 26, 0.9));
  z-index: -1;
}

.cta .accent-text {
  color: var(--accent-red);
}

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

.cta-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.btn i.fab.fa-whatsapp {
  font-size: 1.2rem;
}

/* ============================================
   FOOTER - RED THEME
   ============================================ */
footer {
  background: var(--gradient-dark);
  color: var(--text-light);
  padding: 100px 0 40px;
  position: relative;
  border-top: 1px solid rgba(227, 28, 36, 0.1);
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 80%, rgba(227, 28, 36, 0.05) 0%, transparent 40%);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.footer-column {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-column.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-column h3 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: var(--accent-red);
  position: relative;
  padding-bottom: 15px;
  font-family: var(--font-oswald);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-red);
}

.footer-column p {
  margin-bottom: 20px;
  opacity: 0.9;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 5px 0;
  position: relative;
  padding-left: 25px;
  font-family: var(--font-roboto);
  font-size: 1rem;
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-red);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-red);
  transform: translateX(10px);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-links a:hover {
  background: var(--gradient-red);
  color: var(--text-dark);
  transform: translateY(-10px) rotate(10deg);
  box-shadow: 0 15px 30px rgba(227, 28, 36, 0.3);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

.contact-item i {
  color: var(--accent-red);
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(227, 28, 36, 0.1);
  border-radius: 8px;
}

.contact-item div {
  flex: 1;
}

.contact-item strong {
  display: block;
  font-family: var(--font-oswald);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-red);
  margin-bottom: 5px;
}

.copyright {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1rem;
  opacity: 0.7;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

.copyright p {
  font-family: var(--font-baskerville);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* ============================================
   DIGITAL PARTNER SECTION - RED THEME
   ============================================ */
.digital-partner-section {
  margin: 40px 0 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(227, 28, 36, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.digital-partner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}

.digital-partner-divider {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.digital-partner-divider span {
  display: inline-block;
  padding: 0 20px;
  background: var(--gradient-dark);
  font-family: var(--font-oswald);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-red);
  position: relative;
  z-index: 2;
}

.digital-partner-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227, 28, 36, 0.3), transparent);
  z-index: 1;
}

.digital-partner-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(227, 28, 36, 0.15);
}

.partner-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(77, 171, 247, 0.2), rgba(77, 171, 247, 0.1));
  border-radius: 10px;
  font-size: 1.5rem;
  color: #4dabf7;
  border: 1px solid rgba(77, 171, 247, 0.3);
}

.partner-info h4 {
  font-family: var(--font-oswald);
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.partner-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

@media (max-width: 768px) {
  .digital-partner-section {
    padding: 20px;
    margin: 30px 0 25px;
  }
  .partner-logo-container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .digital-partner-divider span {
    font-size: 0.85rem;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .digital-partner-section {
    padding: 15px;
  }
  .partner-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .partner-info h4 {
    font-size: 1.1rem;
  }
}

/* ============================================
   ACHIEVEMENTS MARQUEE SLIDER - RED THEME
   PREMIUM LIGHT DESIGN - FULLY RESTORED
   ============================================ */

.achievements-slider-section {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.achievements-slider-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
  background-size: 60px 60px, 100% 100%;
  pointer-events: none;
  opacity: 0.8;
}

.achievements-slider-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 30% 40%, rgba(0, 0, 0, 0.01) 0%, transparent 30%),
                    radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.01) 0%, transparent 30%),
                    radial-gradient(circle at 90% 20%, rgba(0, 0, 0, 0.01) 0%, transparent 40%);
  pointer-events: none;
}

.achievements-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.achievements-header h2 {
  font-size: 3.2rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-family: var(--font-oswald);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.achievements-header .accent-text {
  color: #E31C24;
  font-family: var(--font-baskerville);
  font-style: italic;
  text-transform: none;
  font-weight: 400;
  position: relative;
}

.achievements-header .accent-text::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(227, 28, 36, 0.15);
  z-index: -1;
  border-radius: 4px;
}

.achievements-subtitle {
  font-size: 1.25rem;
  color: #666666;
  font-family: var(--font-baskerville);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

.achievements-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  cursor: grab;
  transition: cursor 0.2s ease;
}

.achievements-marquee:active {
  cursor: grabbing;
}

@keyframes scrollAchievements {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 15px));
  }
}

.achievements-marquee-content {
  display: flex;
  gap: 30px;
  width: max-content;
  will-change: transform;
  transition: animation-play-state 0.2s ease;
  animation: scrollAchievements 45s linear infinite;
}

.achievements-marquee-content.playing {
  animation-play-state: running !important;
}

.achievements-marquee-content.paused {
  animation-play-state: paused !important;
}

@media (min-width: 769px) {
  .achievements-marquee:hover .achievements-marquee-content {
    animation-play-state: paused;
  }
}

.achievement-marquee-card {
  width: 380px;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.achievement-marquee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}

.achievement-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #f8f8f8;
}

.achievement-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.achievement-marquee-card:hover .achievement-card-image img {
  transform: scale(1.08);
}

.achievement-category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #333333;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}

.achievement-category-badge i {
  color: #E31C24;
  font-size: 0.8rem;
}

.achievement-date-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #666666;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}

.achievement-date-badge i {
  color: #777777;
  font-size: 0.7rem;
}

.achievement-card-content {
  padding: 28px 25px;
  background: #ffffff;
}

.achievement-title {
  font-family: var(--font-oswald);
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.achievement-issuer {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #777777;
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: 400;
}

.achievement-issuer i {
  color: #E31C24;
  font-size: 0.85rem;
}

.achievement-description {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 400;
}

.achievement-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.achievement-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #E31C24;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(227, 28, 36, 0.2);
}

.achievement-cta-button:hover {
  background: #B8181E;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(227, 28, 36, 0.3);
}

.achievement-cta-button i {
  font-size: 0.7rem;
  color: #ffffff;
}

.achievement-cta-button:active {
  transform: translateY(0);
}

.achievement-social-icons {
  display: flex;
  gap: 6px;
  align-items: center;
}

.achievement-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.achievement-social-icon[title="Instagram"] {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  border: none;
}

.achievement-social-icon[title="LinkedIn"] {
  background: #0077b5;
  color: white;
  border: none;
}

.achievement-social-icon[title="Facebook"] {
  background: #1877f2;
  color: white;
  border: none;
}

.achievement-social-icon:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.achievement-social-icon[title="Instagram"]:hover {
  box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4);
}

.achievement-social-icon[title="LinkedIn"]:hover {
  box-shadow: 0 10px 25px rgba(0, 119, 181, 0.4);
}

.achievement-social-icon[title="Facebook"]:hover {
  box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);
}

.achievements-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.achievements-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(0, 0, 0, 0.03);
  border-top-color: #E31C24;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 25px;
}

.achievements-loading p {
  color: #777777;
  font-size: 1.1rem;
  font-weight: 400;
}

.achievements-empty {
  text-align: center;
  padding: 80px 0;
  color: #777777;
}

.achievements-empty i {
  font-size: 4rem;
  color: rgba(227, 28, 36, 0.1);
  margin-bottom: 25px;
}

.achievements-empty h3 {
  font-family: var(--font-oswald);
  font-size: 2rem;
  color: #333333;
  margin-bottom: 15px;
  font-weight: 600;
}

.achievements-empty p {
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
  color: #888888;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVE STYLES - ACHIEVEMENTS SECTION
   ============================================ */
@media (max-width: 1400px) {
  .achievement-marquee-card {
    width: 360px;
  }
  .achievement-card-image {
    height: 220px;
  }
}

@media (max-width: 1200px) {
  .achievements-header h2 {
    font-size: 2.8rem;
  }
  .achievement-marquee-card {
    width: 340px;
  }
  .achievement-card-image {
    height: 200px;
  }
  .achievement-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 992px) {
  .achievements-slider-section {
    padding: 80px 0;
  }
  .achievements-header h2 {
    font-size: 2.5rem;
  }
  .achievements-subtitle {
    font-size: 1.1rem;
    padding: 0 30px;
  }
  .achievement-marquee-card {
    width: 320px;
  }
  .achievement-card-image {
    height: 190px;
  }
  .achievement-card-content {
    padding: 25px 20px;
  }
  .achievement-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .achievements-slider-section {
    padding: 70px 0;
  }
  .achievements-header {
    margin-bottom: 40px;
  }
  .achievements-header h2 {
    font-size: 2.2rem;
  }
  .achievements-subtitle {
    font-size: 1rem;
    padding: 0 25px;
    line-height: 1.5;
  }
  .achievements-marquee {
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  }
  .achievements-marquee-content {
    gap: 25px;
    animation-duration: 35s;
  }
  .achievement-marquee-card {
    width: 300px;
  }
  .achievement-card-image {
    height: 180px;
  }
  .achievement-category-badge {
    top: 15px;
    left: 15px;
    padding: 6px 16px;
    font-size: 0.7rem;
  }
  .achievement-date-badge {
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    font-size: 0.65rem;
  }
  .achievement-card-content {
    padding: 22px 18px;
  }
  .achievement-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .achievement-issuer {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  .achievement-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 18px;
  }
  .achievement-cta-button {
    padding: 7px 16px;
    font-size: 0.65rem;
    gap: 6px;
  }
  .achievement-cta-button i {
    font-size: 0.65rem;
  }
  .achievement-social-icons {
    gap: 5px;
  }
  .achievement-social-icon {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
    border-radius: 50%;
  }
}

@media (max-width: 576px) {
  .achievements-slider-section {
    padding: 60px 0;
  }
  .achievements-header h2 {
    font-size: 1.9rem;
    margin-bottom: 12px;
  }
  .achievements-subtitle {
    font-size: 0.95rem;
    padding: 0 20px;
  }
  .achievements-marquee-content {
    gap: 20px;
    animation-duration: 30s;
  }
  .achievement-marquee-card {
    width: 280px;
  }
  .achievement-card-image {
    height: 170px;
  }
  .achievement-category-badge {
    top: 12px;
    left: 12px;
    padding: 5px 14px;
    font-size: 0.65rem;
  }
  .achievement-date-badge {
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    font-size: 0.6rem;
  }
  .achievement-card-content {
    padding: 20px 16px;
  }
  .achievement-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .achievement-issuer {
    font-size: 0.8rem;
    gap: 6px;
    margin-bottom: 10px;
  }
  .achievement-description {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 16px;
    -webkit-line-clamp: 2;
  }
  .achievement-cta {
    padding-top: 16px;
  }
  .achievement-cta-button {
    padding: 6px 14px;
    font-size: 0.6rem;
    gap: 5px;
  }
  .achievement-cta-button i {
    font-size: 0.6rem;
  }
  .achievement-social-icons {
    gap: 4px;
  }
  .achievement-social-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
    border-radius: 50%;
  }
}

@media (max-width: 480px) {
  .achievements-slider-section {
    padding: 50px 0;
  }
  .achievements-header h2 {
    font-size: 1.7rem;
  }
  .achievements-subtitle {
    font-size: 0.9rem;
    padding: 0 15px;
  }
  .achievements-marquee {
    mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  }
  .achievements-marquee-content {
    gap: 18px;
    animation-duration: 25s;
  }
  .achievement-marquee-card {
    width: 260px;
  }
  .achievement-card-image {
    height: 160px;
  }
  .achievement-card-content {
    padding: 18px 15px;
  }
  .achievement-title {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
  }
  .achievement-issuer {
    font-size: 0.75rem;
  }
  .achievement-description {
    font-size: 0.8rem;
    -webkit-line-clamp: 2;
  }
  .achievement-cta-button {
    padding: 5px 12px;
    font-size: 0.55rem;
    gap: 4px;
  }
  .achievement-cta-button i {
    font-size: 0.55rem;
  }
  .achievement-social-icon {
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
    border-radius: 50%;
  }
}

@media (max-width: 360px) {
  .achievements-header h2 {
    font-size: 1.5rem;
  }
  .achievements-subtitle {
    font-size: 0.85rem;
  }
  .achievement-marquee-card {
    width: 240px;
  }
  .achievement-card-image {
    height: 150px;
  }
  .achievement-card-content {
    padding: 16px 14px;
  }
  .achievement-title {
    font-size: 0.9rem;
  }
  .achievement-cta-button {
    padding: 4px 10px;
    font-size: 0.5rem;
    gap: 3px;
  }
  .achievement-social-icon {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
    border-radius: 50%;
  }
}

@media (hover: none) and (pointer: coarse) {
  .achievement-marquee-card {
    cursor: default;
  }
  .achievement-cta-button {
    padding: 8px 18px;
    min-height: 40px;
    font-size: 0.7rem;
  }
  .achievement-social-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: 50%;
  }
  .achievements-marquee-content {
    animation-duration: 35s;
  }
}

@media print {
  .achievements-slider-section {
    background: white;
    border: 1px solid #eee;
  }
  .achievements-marquee-content {
    animation: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .achievement-marquee-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* ============================================
   RESPONSIVE STYLES - GLOBAL
   ============================================ */
@media (max-width: 1200px) {
  .section-title {
    font-size: 3rem;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .quote-text {
    font-size: 2.5rem;
  }
  .services-bg-text {
    font-size: 20vw;
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 2.8rem;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-content,
  .about-content,
  .visual-item {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 60px;
  }
  .visual-item:nth-child(even) {
    flex-direction: column;
  }
  .quote-text {
    font-size: 2.2rem;
  }
  .quote-icon::before,
  .quote-icon::after {
    width: 50px;
  }
  .header-actions-desktop {
    display: none;
  }
  .services-bg-text {
    font-size: 15vw;
  }
  .visual-image img {
    height: 400px;
  }
  .impact-stories {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 120px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.4rem;
  }
  .hero-stats {
    gap: 40px;
  }
  .hero-stat-number {
    font-size: 2.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .quote-text {
    font-size: 1.8rem;
    padding: 0 10px;
  }
  .quote-icon::before,
  .quote-icon::after {
    width: 30px;
  }
  .cta h2 {
    font-size: 3rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-bg-text {
    font-size: 12vw;
  }
  .training-highlights {
    grid-template-columns: 1fr;
  }
  .visual-image img {
    height: 300px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2.2rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }
  .cta h2 {
    font-size: 2.5rem;
  }
  .preloader-logo {
    font-size: 3.5rem;
  }
  .quote-text {
    font-size: 1.6rem;
  }
  .quote-icon::before,
  .quote-icon::after {
    display: none;
  }
  .quote-container {
    padding: 40px 20px;
  }
  .visual-image img,
  .about-image img {
    height: 300px;
  }
  .impact-quote {
    font-size: 1.5rem;
    padding: 0 10px;
  }
  .impact-quote::before,
  .impact-quote::after {
    font-size: 3rem;
  }
}