/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary-color: #dc2626;
  --primary-dark: #b91c1c;
  --secondary-color: #f59e0b;
  --dark-bg: #0a0a0a;
  --dark-surface: #1a1a1a;
  --dark-card: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #808080;
  --border-color: #333333;
  --gradient-primary: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  --shadow-light: 0 4px 20px rgba(220, 38, 38, 0.1);
  --shadow-dark: 0 8px 40px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Text elements - Open Sans */
p,
li,
ul,
ol,
span,
div,
a,
label,
input,
textarea,
select {
  font-family: "Open Sans", sans-serif;
}

/* Override Bootstrap form controls */
.form-control {
  color: var(--text-primary) !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
  border-color: var(--border-color) !important;
}

.form-control:focus {
  color: var(--text-primary) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

.form-control::placeholder {
  color: var(--text-muted) !important;
}

h1 {
  font-size: 4rem;
  font-weight: 800;
}
h2 {
  font-size: 3rem;
  font-weight: 700;
}
h3 {
  font-size: 2rem;
  font-weight: 600;
}
h4 {
  font-size: 1.5rem;
  font-weight: 600;
}
h5 {
  font-size: 1.25rem;
  font-weight: 500;
}
h6 {
  font-size: 1rem;
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

/* ===== BUTTONS ===== */
.btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.5px;
  font-family: "Raleway", sans-serif;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-light);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
  color: white;
}

.btn-outline-light {
  border: 2px solid var(--text-primary);
  color: var(--text-primary);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--text-primary);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
.navbar {
  background: rgba(10, 10, 10, 0.1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand img {
  transition: var(--transition);
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  margin: 0 0.25rem;
  border-radius: 8px;
  transition: var(--transition);
  font-size: 0.95rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
  background: rgba(0, 212, 255, 0.1);
}

/* ===== HERO SECTION - REGALIA LAUNCH ===== */
.hero-section {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.hero-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(220, 38, 38, 0.1) 100%
  );
  z-index: 2;
}

.launch-animation-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  visibility: hidden;
}

.launch-animation-container.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.launch-content {
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.launch-content:hover {
  transform: scale(1.02);
}

.launch-content .hero-title {
  font-size: 6rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: scale(0.8) translateY(50px);
  transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
  filter: blur(10px);
}

.launch-content.show .hero-title {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0px);
}

.launch-content .hero-subtitle {
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1s;
  filter: blur(5px);
}

.launch-content.show .hero-subtitle {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

.launch-content .hero-features {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 1.3s cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
  filter: blur(3px);
}

.launch-content.show .hero-features {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

.launch-content .hero-buttons {
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  transition: all 1.4s cubic-bezier(0.4, 0, 0.2, 1) 2s;
  filter: blur(2px);
}

.launch-content.show .hero-buttons {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

/* ===== SIDE ANIMATIONS ===== */
.side-animations {
  position: absolute;
  top: 0;
  height: 100%;
  width: 300px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
}

.right-animations {
  right: 0;
  transform: translateX(50px);
}

.launch-animation-container.show .side-animations {
  opacity: 1;
  transform: translateX(0);
}

.left-animations {
  left: 0;
}

.right-animations {
  right: 0;
}

.floating-particle {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(220, 38, 38, 0.1);
  border: 2px solid rgba(220, 38, 38, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  animation: particleFloat 8s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.2);
}

.floating-particle:hover {
  transform: scale(1.3) rotate(15deg);
  background: rgba(220, 38, 38, 0.2);
  border-color: var(--primary-color);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
}

/* Left side particle positions */
.left-animations .floating-particle:nth-child(1) {
  top: 15%;
  left: 20%;
  animation-delay: 0s;
}

.left-animations .floating-particle:nth-child(2) {
  top: 35%;
  left: 60%;
  animation-delay: 1.5s;
}

.left-animations .floating-particle:nth-child(3) {
  top: 55%;
  left: 30%;
  animation-delay: 3s;
}

.left-animations .floating-particle:nth-child(4) {
  top: 75%;
  left: 70%;
  animation-delay: 4.5s;
}

.left-animations .floating-particle:nth-child(5) {
  top: 25%;
  left: 80%;
  animation-delay: 6s;
}

.left-animations .floating-particle:nth-child(6) {
  top: 65%;
  left: 10%;
  animation-delay: 7.5s;
}

/* Right side particle positions */
.right-animations .floating-particle:nth-child(1) {
  top: 20%;
  right: 30%;
  animation-delay: 0.5s;
}

.right-animations .floating-particle:nth-child(2) {
  top: 40%;
  right: 70%;
  animation-delay: 2s;
}

.right-animations .floating-particle:nth-child(3) {
  top: 60%;
  right: 20%;
  animation-delay: 3.5s;
}

.right-animations .floating-particle:nth-child(4) {
  top: 80%;
  right: 60%;
  animation-delay: 5s;
}

.right-animations .floating-particle:nth-child(5) {
  top: 30%;
  right: 10%;
  animation-delay: 6.5s;
}

.right-animations .floating-particle:nth-child(6) {
  top: 70%;
  right: 80%;
  animation-delay: 8s;
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-30px) translateX(10px) rotate(5deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-15px) translateX(-5px) rotate(-3deg);
    opacity: 0.9;
  }
  75% {
    transform: translateY(-40px) translateX(15px) rotate(8deg);
    opacity: 1;
  }
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #b0b0b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.8) translateY(-20px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  filter: blur(5px);
}

.launch-content.show .launch-badge {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0px);
}

.badge-text {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  position: relative;
}

.badge-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.3) 0%,
    transparent 70%
  );
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
  }
}

.hero-features {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 0.5rem 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.feature-tag:hover {
  background: rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.3);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.feature-tag i {
  color: var(--primary-color);
  font-size: 0.8rem;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.product-preview {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.1);
  border: 2px solid rgba(220, 38, 38, 0.3);
  overflow: hidden;
  transition: var(--transition);
}

.product-preview:hover {
  transform: scale(1.1);
  border-color: var(--primary-color);
  box-shadow: 0 0 50px rgba(220, 38, 38, 0.3);
}

.preview-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.2) 0%,
    transparent 70%
  );
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.preview-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 2;
  position: relative;
}

.preview-content i {
  font-size: 3rem;
  color: var(--primary-color);
  animation: crownGlow 2s ease-in-out infinite alternate;
}

@keyframes crownGlow {
  from {
    filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.5));
  }
  to {
    filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.8));
  }
}

.preview-content span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-stats {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 3rem;
  z-index: 3;
}

.hero-stats .stat-item {
  text-align: center;
  color: var(--text-primary);
}

.hero-stats .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.floating-elements {
  position: relative;
  width: 500px;
  height: 500px;
}

.floating-element {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(220, 38, 38, 0.1);
  border: 2px solid rgba(220, 38, 38, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  transition: var(--transition);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.2);
}

.floating-element:hover {
  transform: scale(1.2) rotate(10deg);
  background: rgba(220, 38, 38, 0.2);
  border-color: var(--primary-color);
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.4);
}

.floating-element:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  top: 70%;
  right: 10%;
  animation-delay: 1s;
}

.floating-element:nth-child(3) {
  bottom: 10%;
  left: 20%;
  animation-delay: 2s;
}

.floating-element:nth-child(4) {
  top: 30%;
  right: 30%;
  animation-delay: 3s;
}

.floating-element:nth-child(5) {
  top: 50%;
  left: 50%;
  animation-delay: 4s;
}

.floating-element:nth-child(6) {
  bottom: 30%;
  right: 20%;
  animation-delay: 5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-arrow {
  width: 2px;
  height: 40px;
  background: var(--primary-color);
  position: relative;
  animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--primary-color);
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* ===== HERO SECTION RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-section {
    min-height: 60vh;
    height: 60vh;
    max-height: 60vh;
    padding: 0;
    margin: 0;
  }
  
  .hero-video-background {
    height: 100%;
  }
  
  .hero-video-background video {
    object-fit: contain;
    object-position: center;
    height: 100%;
  }

  .launch-animation-container {
    height: 100%;
  }

  .scroll-indicator {
    bottom: 20px;
  }

  .about-section {
    padding: 2.5rem 0 5rem 0;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 50vh;
    height: 50vh;
    max-height: 50vh;
    padding: 0;
    margin: 0;
  }
  
  .hero-video-background {
    height: 100%;
  }
  
  .hero-video-background video {
    object-fit: contain;
    object-position: center;
    height: 100%;
  }

  .launch-animation-container {
    height: 100%;
  }

  .scroll-indicator {
    bottom: 15px;
  }

  .about-section {
    padding: 2rem 0 4rem 0;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 45vh;
    height: 45vh;
    max-height: 45vh;
    padding: 0;
    margin: 0;
  }
  
  .hero-video-background {
    height: 100%;
  }
  
  .hero-video-background video {
    object-fit: contain;
    object-position: center;
    height: 100%;
  }

  .launch-animation-container {
    height: 100%;
  }

  .scroll-indicator {
    bottom: 10px;
  }

  .about-section {
    padding: 1.5rem 0 3rem 0;
  }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--dark-bg);
  padding: 3rem 0 6rem 0;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.about-section .container-fluid {
  padding-right: 0;
}

.about-section .row {
  margin-right: 0;
}

.about-content {
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
}

.section-badge .badge-text {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.about-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.about-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.about-features .feature-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* ===== ABOUT VISUAL ===== */
.about-content-wrapper {
  padding: 2rem 0;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 576px) {
  .about-content-wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 768px) {
  .about-content-wrapper {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media (min-width: 992px) {
  .about-content-wrapper {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 1200px) {
  .about-content-wrapper {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.about-content-wrapper .container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  object-fit: contain;
  object-position: right center;
}

.about-section .col-lg-6:last-child {
  padding-right: 0;
  padding-left: 0;
  display: flex;
  align-items: stretch;
}

.about-section .col-lg-6:first-child {
  display: flex;
  align-items: stretch;
}

.floating-image-container {
  position: relative;
  width: 400px;
  height: 400px;
}

.main-image {
  position: relative;
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.1) 0%,
    rgba(185, 28, 28, 0.1) 100%
  );
  border: 2px solid rgba(220, 38, 38, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
  transition: all 0.5s ease;
}

.main-image:hover {
  transform: scale(1.05);
  border-color: var(--primary-color);
  box-shadow: 0 0 50px rgba(220, 38, 38, 0.3);
}

.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.2) 0%,
    transparent 70%
  );
  animation: rotate 15s linear infinite;
}

.image-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 2;
  position: relative;
}

.image-content i {
  font-size: 3rem;
  color: var(--primary-color);
  animation: pulse 2s ease-in-out infinite;
}

.image-content span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.floating-image-container .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-image-container .floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(220, 38, 38, 0.1);
  border: 2px solid rgba(220, 38, 38, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  animation: float 6s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.floating-image-container .floating-icon:hover {
  transform: scale(1.2) rotate(10deg);
  background: rgba(220, 38, 38, 0.2);
  border-color: var(--primary-color);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
}

.floating-image-container .floating-icon:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-image-container .floating-icon:nth-child(2) {
  top: 70%;
  right: 10%;
  animation-delay: 1s;
}

.floating-image-container .floating-icon:nth-child(3) {
  bottom: 10%;
  left: 20%;
  animation-delay: 2s;
}

.floating-image-container .floating-icon:nth-child(4) {
  top: 30%;
  right: 30%;
  animation-delay: 3s;
}

.floating-image-container .floating-icon:nth-child(5) {
  top: 50%;
  left: 50%;
  animation-delay: 4s;
}

.floating-image-container .floating-icon:nth-child(6) {
  bottom: 30%;
  right: 20%;
  animation-delay: 5s;
}

/* ===== INTERACTIVE STORY SECTION ===== */
.story-section {
  background: var(--dark-surface);
  padding: 6rem 0;
}

.story-content-full {
  margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
}

.story-header {
  margin-bottom: 4rem;
}

.story-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.story-text-content {
  position: relative;
  min-height: clamp(240px, 35vw, 200px);
}

.story-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.story-text.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.story-text h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.story-highlights {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(220, 38, 38, 0.2);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.highlight-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

/* ===== INTERACTIVE TIMELINE ===== */
.story-timeline-full {
  margin-top: clamp(0.5rem, 1.5vw, 1.25rem);
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(0.5rem, 1.5vw, 1.25rem) 0;
}

.timeline-track::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--border-color) 0%,
    var(--primary-color) 50%,
    var(--border-color) 100%
  );
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-point {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.timeline-point:hover {
  transform: translateY(-5px);
}

.point-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.timeline-point.active .point-glow,
.timeline-point:hover .point-glow {
  opacity: 1;
  animation: pulse 2s infinite;
}

.point {
  width: 30px;
  height: 30px;
  background: var(--dark-card);
  border: 3px solid var(--border-color);
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
}

.timeline-point.active .point,
.timeline-point:hover .point {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.timeline-point .year {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  white-space: nowrap;
}

.timeline-point .title {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
  max-width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Prevent overlap for many points (7 years) */
.story-timeline-full .timeline-track {
  gap: 0;
}

.story-timeline-full .timeline-point {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 6px;
}

/* Hide titles for non-active points to avoid collisions */
.story-timeline-full .timeline-point .title {
  display: none;
}

.story-timeline-full .timeline-point.active .title {
  display: block;
}

.timeline-point.active .year,
.timeline-point.active .title {
  color: var(--primary-color);
}

.story-content {
  padding-right: 3rem;
}

.story-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.story-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.timeline-visual {
  position: relative;
  width: 100%;
  height: 200px;
}

.timeline-visual::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-color);
  transform: translateY(-50%);
}

.timeline-visual .timeline-point {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.timeline-visual .timeline-point:nth-child(1) {
  left: 10%;
}
.timeline-visual .timeline-point:nth-child(2) {
  left: 35%;
}
.timeline-visual .timeline-point:nth-child(3) {
  left: 60%;
}
.timeline-visual .timeline-point:nth-child(4) {
  left: 85%;
}

.timeline-visual .point {
  width: 20px;
  height: 20px;
  background: var(--dark-card);
  border: 3px solid var(--border-color);
  border-radius: 50%;
  transition: var(--transition);
}

.timeline-visual .timeline-point.active .point,
.timeline-visual .timeline-point:hover .point {
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.timeline-visual .timeline-point span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
}

/* ===== WHY US SECTION ===== */
.why-us-section {
  padding: 120px 0;
  background: var(--dark-bg);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.why-us-card {
  background: var(--dark-card);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-us-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.why-us-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-dark);
  border-color: var(--primary-color);
}

.why-us-card:hover::before {
  transform: scaleX(1);
}

.why-us-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: white;
  transition: var(--transition);
}

.why-us-card:hover .why-us-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-us-card h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.why-us-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== CORPORATE VIDEO SECTION ===== */
.corporate-video-section {
  padding: 6rem 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

/* AMARE Plates Video */
.amare-video-section {
  padding: 3rem 0 2rem;
  background: var(--dark-bg);
  position: relative;
}

.amare-video-wrapper {
  position: relative;
}

.amare-video-poster {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.amare-poster-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9) saturate(1.05);
}

.amare-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.45) 0%,
    rgba(10, 10, 10, 0.2) 100%
  );
  z-index: 2;
  transition: opacity 0.3s ease;
}

.amare-play-button {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amare-play-button:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 40px rgba(220, 38, 38, 0.55);
}

.amare-video-title {
  text-align: center;
  margin-top: 1.25rem;
}

.amare-video-title .section-title {
  margin-bottom: 0.25rem;
}

@media (max-width: 992px) {
  .amare-poster-img {
    height: 340px;
  }
  .amare-play-button {
    width: 80px;
    height: 80px;
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .amare-poster-img {
    height: 220px;
  }
  .amare-play-button {
    width: 68px;
    height: 68px;
    font-size: 1.4rem;
  }
}

/* Modal */
.amare-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.amare-modal.show {
  display: flex;
}
.amare-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.amare-modal.show .amare-modal-backdrop {
  opacity: 1;
}
.amare-modal-dialog {
  position: relative;
  width: min(900px, 92vw);
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.amare-modal.show .amare-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.amare-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease;
}
.amare-modal-close:hover {
  transform: rotate(90deg) scale(1.05);
}
.amare-modal-body {
  position: relative;
  background: #000;
}
.amare-modal-body video {
  width: 100%;
  height: 70vh;
  max-height: 680px;
  object-fit: contain;
  background: #000;
}

.corporate-video-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.05) 0%,
    rgba(185, 28, 28, 0.05) 100%
  );
  z-index: 1;
}

.video-header {
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
}

.video-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-placeholder {
  position: relative;
  height: 400px;
  background: linear-gradient(
    135deg,
    var(--dark-card) 0%,
    var(--dark-surface) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-placeholder:hover {
  transform: scale(1.02);
}

.video-overlay-content {
  text-align: center;
  z-index: 3;
  position: relative;
}

.play-button {
  position: relative;
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
}

.play-button i {
  font-size: 2rem;
  color: white;
  margin-left: 5px;
}

.play-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 2px solid rgba(220, 38, 38, 0.3);
  border-radius: 50%;
  animation: ripple 2s infinite;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.video-overlay-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.video-overlay-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.video-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(220, 38, 38, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(185, 28, 28, 0.1) 0%,
      transparent 50%
    );
  animation: patternFloat 10s ease-in-out infinite;
}

@keyframes patternFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.video-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateX(10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-card:hover::before {
  transform: scaleY(1);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.stat-content h4 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-content p {
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== EXCLUSIVE SHOWROOM SECTION ===== */
.exclusive-showroom-section {
  padding: 6rem 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.exclusive-showroom-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(220, 38, 38, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(185, 28, 28, 0.08) 0%,
      transparent 50%
    );
  z-index: 1;
}

.showroom-header {
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
}

.showroom-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.showroom-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.showroom-stat-card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.showroom-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.showroom-stat-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.showroom-stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
}

.showroom-stat-card:hover::before {
  transform: scaleY(1);
}

.showroom-stat-card:hover::after {
  width: 200px;
  height: 200px;
}

.showroom-stats-left .showroom-stat-card:hover {
  transform: translateX(10px) translateY(-5px);
}

.showroom-stats-right .showroom-stat-card:hover {
  transform: translateX(-10px) translateY(-5px);
}

.stat-icon-wrapper {
  position: relative;
  flex-shrink: 0;
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.stat-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 18px;
  opacity: 0;
  filter: blur(15px);
  transition: all 0.4s ease;
  z-index: 1;
}

.showroom-stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.5);
}

.showroom-stat-card:hover .stat-glow {
  opacity: 0.6;
  transform: translate(-50%, -50%) scale(1.3);
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
  line-height: 1;
  font-family: "Raleway", sans-serif;
}

.stat-label {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 400;
}

/* Video Container */
.showroom-video-wrapper {
  position: relative;
  z-index: 2;
}

.showroom-video-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(220, 38, 38, 0.1);
  background: var(--dark-card);
  transition: all 0.4s ease;
}

.showroom-video-container:hover {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 2px rgba(220, 38, 38, 0.3);
  transform: scale(1.01);
}

.video-poster {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  cursor: pointer;
}

.poster-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.video-poster:hover .poster-image {
  transform: scale(1.1);
}

.video-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.6) 0%,
    rgba(220, 38, 38, 0.2) 100%
  );
  z-index: 2;
  transition: opacity 0.3s ease;
}

.video-poster:hover .video-overlay-gradient {
  opacity: 0.7;
}

.play-button-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}

.showroom-play-button {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.2rem;
  cursor: pointer;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
  margin: 0 auto 1.5rem;
}

.showroom-play-button i {
  margin-left: 5px;
  z-index: 2;
  position: relative;
}

.showroom-play-button:hover {
  transform: scale(1.15);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.6);
}

.showroom-play-button:active {
  transform: scale(1.05);
}

.play-ripple-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 2px solid rgba(220, 38, 38, 0.4);
  border-radius: 50%;
  animation: playRipple 2s ease-out infinite;
}

.play-ripple-ring:nth-child(2) {
  animation-delay: 0.5s;
}

.play-ripple-ring:nth-child(3) {
  animation-delay: 1s;
}

@keyframes playRipple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

.play-text {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-corner-decoration {
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 3;
}

.video-corner-decoration.top-left {
  top: 15px;
  left: 15px;
  border-top: 3px solid var(--primary-color);
  border-left: 3px solid var(--primary-color);
  border-top-left-radius: 8px;
}

.video-corner-decoration.top-right {
  top: 15px;
  right: 15px;
  border-top: 3px solid var(--primary-color);
  border-right: 3px solid var(--primary-color);
  border-top-right-radius: 8px;
}

.video-corner-decoration.bottom-left {
  bottom: 15px;
  left: 15px;
  border-bottom: 3px solid var(--primary-color);
  border-left: 3px solid var(--primary-color);
  border-bottom-left-radius: 8px;
}

.video-corner-decoration.bottom-right {
  bottom: 15px;
  right: 15px;
  border-bottom: 3px solid var(--primary-color);
  border-right: 3px solid var(--primary-color);
  border-bottom-right-radius: 8px;
}

.showroom-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.showroom-video-container.playing .video-poster {
  display: none;
}

.showroom-video-container.playing .showroom-video {
  display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .showroom-content {
    grid-template-columns: 1fr 1.8fr 1fr;
    gap: 2rem;
  }

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

@media (max-width: 992px) {
  .showroom-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .showroom-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .showroom-stat-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
  }

  .showroom-stats-left .showroom-stat-card:hover,
  .showroom-stats-right .showroom-stat-card:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .exclusive-showroom-section {
    padding: 4rem 0;
  }

  .showroom-stats {
    flex-direction: column;
    align-items: stretch;
  }

  .showroom-stat-card {
    max-width: 100%;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

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

  .showroom-play-button {
    width: 80px;
    height: 80px;
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .showroom-header {
    margin-bottom: 2.5rem;
  }

  .showroom-stat-card {
    padding: 1.5rem;
  }

  .stat-icon {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }

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

  .showroom-play-button {
    width: 70px;
    height: 70px;
    font-size: 1.6rem;
  }

  .play-text {
    font-size: 1rem;
  }
}

/* ===== UNIQUE TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 6rem 0;
  background: var(--dark-surface);
  position: relative;
}

.testimonials-header {
  margin-bottom: 4rem;
}

.testimonials-container {
  position: relative;
  width: 100%;
}

.testimonials-track {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-content {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.testimonial-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.quote-icon {
  position: absolute;
  top: -15px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.author-info {
  flex: 1;
}

.author-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-info span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.rating {
  display: flex;
  gap: 0.25rem;
}

.rating i {
  color: #fbbf24;
  font-size: 1rem;
}

.testimonials-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
}

.nav-dots {
  display: flex;
  gap: 1rem;
}

.nav-dot {
  width: 12px;
  height: 12px;
  background: var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

.nav-arrows {
  display: flex;
  gap: 1rem;
}

.nav-arrow {
  width: 50px;
  height: 50px;
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

/* ===== PRODUCT SHOWCASE SECTION ===== */
.product-showcase-section {
  padding: 6rem 0;
  background: var(--dark-bg);
}

.showcase-header {
  text-align: center;
  margin-bottom: 4rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.showcase-card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.showcase-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.card-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  order: 2;
  width: 100%;
}

.card-right {
  flex: 1;
  display: flex;
  align-items: center;
  order: 1;
  width: 100%;
}

/* Hide icon/sphere visual to remove animations */
.card-visual {
  display: none !important;
}

.product-sphere {
  position: relative;
  width: 120px;
  height: 120px;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.1) 0%,
    rgba(185, 28, 28, 0.1) 100%
  );
  border: 2px solid rgba(220, 38, 38, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: sphereRotate 20s linear infinite;
}

@keyframes sphereRotate {
  0% {
    transform: rotateY(0deg) rotateX(0deg);
  }
  100% {
    transform: rotateY(360deg) rotateX(360deg);
  }
}

.sphere-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.product-icon {
  font-size: 2rem;
  color: var(--primary-color);
  z-index: 2;
  position: relative;
}

.card-visual .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.card-visual .float-element {
  position: absolute;
  width: 30px;
  height: 30px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 0.8rem;
  animation: floatAround 8s ease-in-out infinite;
  backdrop-filter: blur(5px);
}

.card-visual .float-element:nth-child(1) {
  top: 15%;
  left: 15%;
  animation-delay: 0s;
}

.card-visual .float-element:nth-child(2) {
  top: 65%;
  right: 15%;
  animation-delay: 2s;
}

.card-visual .float-element:nth-child(3) {
  top: 40%;
  left: 55%;
  animation-delay: 4s;
}

@keyframes floatAround {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-15px) translateX(8px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-8px) translateX(-4px) rotate(180deg);
    opacity: 0.9;
  }
  75% {
    transform: translateY(-25px) translateX(12px) rotate(270deg);
    opacity: 1;
  }
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.card-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.product-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.image-carousel {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.image-container {
  background: var(--dark-surface);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.3s ease;
}

.card-content {
  text-align: center;
}
.card-content .btn {
  width: auto;
}

.carousel-slide.active .image-container img {
  transform: scale(1.05);
}

.product-info {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.product-info:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.95) 0%,
    rgba(185, 28, 28, 0.95) 100%
  );
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.product-badge i {
  font-size: 0.9rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.product-info h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.product-info p {
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.product-specs span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(220, 38, 38, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid rgba(220, 38, 38, 0.2);
  transition: all 0.3s ease;
}

.product-specs span:hover {
  background: rgba(220, 38, 38, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.product-specs i {
  color: var(--primary-color);
  font-size: 0.8rem;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.95) 0%,
    rgba(185, 28, 28, 0.95) 100%
  );
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease 0.2s;
}

.carousel-slide.active .product-badge {
  transform: translateY(0);
  opacity: 1;
}

.product-badge i {
  font-size: 0.9rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.image-overlay h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease 0.3s;
}

.carousel-slide.active .image-overlay h4 {
  transform: translateY(0);
  opacity: 1;
}

.image-overlay p {
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  opacity: 0.95;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease 0.4s;
}

.carousel-slide.active .image-overlay p {
  transform: translateY(0);
  opacity: 0.95;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease 0.5s;
  margin-bottom: 1rem;
}

.carousel-slide.active .product-specs {
  transform: translateY(0);
  opacity: 1;
}

.product-specs span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.product-specs span:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.product-specs i {
  color: var(--primary-color);
  font-size: 0.8rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.card-content .btn {
  width: 100%;
  justify-content: center;
  background: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.card-content .btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
  color: white;
  text-decoration: none;
}

.card-content .btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%
  );
  border-radius: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-content .btn:hover:before {
  opacity: 1;
}

.carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.carousel-dots {
  display: flex;
  gap: 0.4rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

.carousel-nav {
  display: flex;
  gap: 0.5rem;
}

.carousel-btn {
  background: rgba(220, 38, 38, 0.8);
  border: none;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.7rem;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ===== INTERACTIVE PRODUCT EXPLORER SECTION ===== */
.product-explorer-section {
  padding: 6rem 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.product-explorer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(220, 38, 38, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(185, 28, 28, 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
}

.explorer-header {
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
}

.explorer-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.explorer-controls {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  position: sticky;
  top: 2rem;
}

.control-group {
  margin-bottom: 2rem;
}

.control-group:last-child {
  margin-bottom: 0;
}

.control-group h4 {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.category-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.category-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.category-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateX(5px);
}

.category-btn.active {
  background: var(--gradient-primary);
  border-color: var(--primary-color);
  color: white;
  transform: translateX(5px);
}

.category-btn i {
  font-size: 1.2rem;
  width: 20px;
}

.feature-toggles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toggle-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.toggle-item span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 25px;
  background: var(--border-color);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-switch.active {
  background: var(--primary-color);
}

.toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 21px;
  height: 21px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.toggle-switch.active .toggle-slider {
  transform: translateX(25px);
}

.explorer-display {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  min-height: 600px;
  position: relative;
}

.product-showcase-3d {
  position: relative;
  height: 100%;
}

.product-model {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.8) rotateY(20deg);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.product-model.active {
  opacity: 1;
  transform: scale(1) rotateY(0deg);
  pointer-events: auto;
}

.model-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  margin-bottom: 2rem;
}

.product-sphere {
  position: relative;
  width: 150px;
  height: 150px;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.1) 0%,
    rgba(185, 28, 28, 0.1) 100%
  );
  border: 2px solid rgba(220, 38, 38, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: sphereRotate 20s linear infinite;
}

@keyframes sphereRotate {
  0% {
    transform: rotateY(0deg) rotateX(0deg);
  }
  100% {
    transform: rotateY(360deg) rotateX(360deg);
  }
}

.sphere-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.product-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  z-index: 2;
  position: relative;
}

.card-visual .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.card-visual .float-element {
  position: absolute;
  width: 35px;
  height: 35px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 0.9rem;
  animation: floatAround 8s ease-in-out infinite;
  backdrop-filter: blur(5px);
}

.card-visual .float-element:nth-child(1) {
  top: 15%;
  left: 15%;
  animation-delay: 0s;
}

.card-visual .float-element:nth-child(2) {
  top: 65%;
  right: 15%;
  animation-delay: 2s;
}

.card-visual .float-element:nth-child(3) {
  top: 40%;
  left: 55%;
  animation-delay: 4s;
}

@keyframes floatAround {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-15px) translateX(8px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-8px) translateX(-4px) rotate(180deg);
    opacity: 0.9;
  }
  75% {
    transform: translateY(-25px) translateX(12px) rotate(270deg);
    opacity: 1;
  }
}

.product-info {
  text-align: center;
}

.product-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.product-info p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.product-specs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.spec-item i {
  color: var(--primary-color);
  font-size: 1rem;
}

.experience-content {
  padding-right: 3rem;
}

.experience-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.experience-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--dark-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.feature-item:hover {
  border-color: var(--primary-color);
  transform: translateX(8px);
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.feature-item span {
  color: var(--text-secondary);
  font-weight: 500;
}

.experience-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.showroom-preview {
  position: relative;
  width: 300px;
  height: 300px;
}

.showroom-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  animation: float 4s ease-in-out infinite;
}

.showroom-element:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.showroom-element:nth-child(2) {
  top: 60%;
  right: 20%;
  animation-delay: 1.5s;
}

.showroom-element:nth-child(3) {
  bottom: 20%;
  left: 40%;
  animation-delay: 3s;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-surface);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
}

.footer-brand img {
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.footer h4 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 0.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.contact-item h5 {
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.contact-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.footer-divider {
  border-color: var(--border-color);
  margin: 2rem 0 1rem;
}

.copyright {
  color: var(--text-muted);
  margin-bottom: 0;
}

.footer-legal {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  margin-bottom: 0;
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

/* ===== CATEGORY BANNER STYLES ===== */
.category-banner-section {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.banner-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.category-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(220, 38, 38, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Banner Responsive Design */
@media (max-width: 768px) {
  .category-banner-section {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .category-banner-section {
    height: 250px;
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }

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

  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }

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

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .story-content,
  .story-visual {
    grid-column: 1 / -1;
  }

  .story-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-section .col-lg-6:last-child {
    padding-right: 0;
    padding-left: 0;
  }

  .about-visual {
    width: 100%;
  }

  .about-visual img {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    object-fit: contain;
  }

  .about-content-wrapper {
    padding: 2rem 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .about-section .col-lg-6:first-child {
    display: flex;
    align-items: stretch;
  }

  .about-section .col-lg-6:last-child {
    display: flex;
    align-items: stretch;
    padding-right: 0;
    padding-left: 0;
  }

  .showcase-card {
    flex-direction: column;
    gap: 1.5rem;
  }

  .card-left {
    order: 1;
  }

  .card-right {
    order: 2;
  }
}

@media (max-width: 768px) {
  .launch-content .hero-title {
    font-size: 2.5rem;
  }

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  section {
    padding: 4rem 0;
  }

  .hero-features {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .side-animations {
    display: none;
  }

  .floating-particle {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .about-section .col-lg-6:last-child {
    padding-right: 0;
    padding-left: 0;
  }

  .about-visual {
    order: -1;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .about-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    margin: 0;
    padding: 0;
  }

  .about-content-wrapper {
    padding: 2rem 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .about-section .col-lg-6:first-child {
    display: flex;
    align-items: stretch;
  }

  .about-section .col-lg-6:last-child {
    display: flex;
    align-items: stretch;
    padding-right: 0;
    padding-left: 0;
  }

  .floating-image-container {
    width: 200px;
    height: 200px;
  }

  .main-image {
    width: 150px;
    height: 150px;
  }

  .image-content i {
    font-size: 2rem;
  }

  .image-content span {
    font-size: 0.8rem;
  }

  .floating-image-container .floating-icon {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .story-text h3 {
    font-size: 1.5rem;
  }

  .story-highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .timeline-track {
    flex-direction: column;
    gap: 1rem;
  }

  .timeline-track::before {
    display: none;
  }

  .timeline-point {
    position: static;
    transform: none;
  }

  .video-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .video-placeholder {
    height: 300px;
  }

  .play-button {
    width: 80px;
    height: 80px;
  }

  .play-button i {
    font-size: 2rem;
  }

  .video-overlay-content h3 {
    font-size: 1.5rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-content h4 {
    font-size: 1.8rem;
  }

  .testimonial-content {
    padding: 2rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .testimonials-navigation {
    flex-direction: column;
    gap: 1rem;
  }

  .product-sphere {
    width: 100px;
    height: 100px;
  }

  .product-icon {
    font-size: 1.5rem;
  }

  .card-visual .float-element {
    width: 25px;
    height: 25px;
    font-size: 0.7rem;
  }

  .image-carousel {
    height: 180px;
  }

  .product-badge {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    border-radius: 20px;
  }

  .image-overlay h4 {
    font-size: 1.1rem;
  }

  .image-overlay p {
    font-size: 0.8rem;
  }

  .product-specs {
    gap: 0.5rem;
  }

  .product-specs span {
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    border-radius: 12px;
  }

  .carousel-btn {
    width: 24px;
    height: 24px;
    font-size: 0.6rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .about-section .col-lg-6:last-child {
    padding-right: 0;
    padding-left: 0;
    display: flex;
    align-items: stretch;
  }

  .about-visual {
    width: 100%;
  }

  .about-visual img {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    object-fit: contain;
  }

  .about-content-wrapper {
    padding: 1.5rem 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .about-section .col-lg-6:first-child {
    display: flex;
    align-items: stretch;
  }

  .about-section .col-lg-6:last-child {
    display: flex;
    align-items: stretch;
  }

  .why-us-card,
  .showcase-card {
    padding: 1.5rem;
  }

  .feature-item {
    padding: 1rem;
  }

  .contact-item {
    padding: 1rem;
  }

  .contact-item i {
    font-size: 1.2rem;
  }

  .product-sphere {
    width: 80px;
    height: 80px;
  }

  .product-icon {
    font-size: 1.2rem;
  }

  .card-visual .float-element {
    width: 20px;
    height: 20px;
    font-size: 0.6rem;
  }

  .image-overlay {
    padding: 0.75rem;
  }

  .image-overlay h4 {
    font-size: 0.9rem;
  }

  .image-overlay p {
    font-size: 0.7rem;
  }

  .image-carousel {
    height: 160px;
  }

  .image-overlay {
    padding: 1rem;
  }

  .product-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.6rem;
    margin-bottom: 0.75rem;
    border-radius: 18px;
  }

  .image-overlay h4 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .image-overlay p {
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
  }

  .product-specs {
    gap: 0.4rem;
  }

  .product-specs span {
    padding: 0.25rem 0.5rem;
    font-size: 0.6rem;
    border-radius: 10px;
  }

  .carousel-btn {
    width: 20px;
    height: 20px;
    font-size: 0.5rem;
  }

  .carousel-dot {
    width: 6px;
    height: 6px;
  }
}

/* ===== CAREER SECTION ===== */
.career-section {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  margin-top: 80px;
}

.career-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(220, 38, 38, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(185, 28, 28, 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
}

.career-header {
  position: relative;
  z-index: 2;
}

.career-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.career-badge i {
  font-size: 1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #b0b0b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Job Cards */
.job-card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.job-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.job-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-dark);
  border-color: var(--primary-color);
}

.job-card:hover::before {
  transform: scaleX(1);
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem 2rem 1rem 2rem;
  border-bottom: 1px solid var(--border-color);
}

.job-title-section {
  flex: 1;
}

.job-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.job-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.job-date,
.job-status {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.job-date i {
  color: var(--primary-color);
  font-size: 0.8rem;
}

.job-status i {
  color: #10b981;
  font-size: 0.6rem;
}

.apply-btn {
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
  color: white;
}

.apply-btn i {
  font-size: 0.8rem;
}

.job-card-body {
  padding: 1.5rem 2rem;
}

.job-requirements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.requirement-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(220, 38, 38, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.requirement-item:hover {
  background: rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.2);
  transform: translateX(5px);
}

.req-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.req-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.req-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.req-value {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}

.job-description {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.desc-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.desc-title i {
  color: var(--primary-color);
  font-size: 1rem;
}

.desc-content {
  color: var(--text-secondary);
  line-height: 1.6;
  white-space: pre-line;
}

.job-card-footer {
  padding: 1rem 2rem 2rem 2rem;
  border-top: 1px solid var(--border-color);
}

.job-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.job-tag {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 20px;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.job-tag:hover {
  background: rgba(220, 38, 38, 0.2);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* No Jobs Card */
.no-jobs-card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.no-jobs-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.no-jobs-icon {
  width: 80px;
  height: 80px;
  background: rgba(220, 38, 38, 0.1);
  border: 2px solid rgba(220, 38, 38, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--primary-color);
  font-size: 2rem;
}

.no-jobs-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.no-jobs-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .career-section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .job-card-header {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .apply-btn {
    width: 100%;
    justify-content: center;
  }
  
  .job-requirements {
    grid-template-columns: 1fr;
  }
  
  .job-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .job-card-body,
  .job-card-footer {
    padding: 1rem;
  }
  
  .job-card-header {
    padding: 1.5rem 1rem 1rem 1rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .job-title {
    font-size: 1.3rem;
  }
  
  .requirement-item {
    padding: 0.75rem;
  }
  
  .req-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .no-jobs-card {
    padding: 3rem 1.5rem;
  }
  
  .no-jobs-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* ===== CAREER MODAL ===== */
.career-modal-content {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.career-modal-header {
  background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-surface) 100%);
  border-bottom: 1px solid var(--border-color);
  padding: 2rem;
  position: relative;
}

.career-modal-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.modal-title-section {
  flex: 1;
}

.career-modal-header .modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.career-modal-header .modal-title i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.modal-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.career-modal-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.career-modal-close:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: rotate(90deg);
}

.career-modal-body {
  background: var(--dark-card);
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.form-label i {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.required {
  color: var(--primary-color);
  margin-left: 0.25rem;
}

.career-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  width: 100%;
}

.career-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
  outline: none;
}

.career-input::placeholder {
  color: var(--text-muted);
}

.file-upload-wrapper {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.file-upload-wrapper:hover {
  border-color: var(--primary-color);
  background: rgba(220, 38, 38, 0.05);
}

.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.file-upload-info i {
  font-size: 2rem;
  color: var(--primary-color);
}

.file-upload-info span {
  font-size: 0.9rem;
  font-weight: 500;
}

.form-help {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.form-submit-section {
  margin-top: 2rem;
  text-align: center;
}

.career-submit-btn {
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  min-width: 200px;
  justify-content: center;
}

.career-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
  color: white;
}

.career-submit-btn i {
  font-size: 0.9rem;
}

/* Success Message */
.career-modal-body .success-message {
  text-align: center;
  padding: 3rem 2rem;
}

.success-message i {
  font-size: 4rem;
  color: #10b981;
  margin-bottom: 1.5rem;
}

.success-message h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.success-message p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .career-modal-header {
    padding: 1.5rem;
  }
  
  .career-modal-body {
    padding: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .career-modal-header .modal-title {
    font-size: 1.3rem;
  }
  
  .modal-subtitle {
    font-size: 0.8rem;
  }
  
  .career-submit-btn {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 576px) {
  .career-modal-header {
    padding: 1rem;
  }
  
  .career-modal-body {
    padding: 1rem;
  }
  
  .career-modal-header .modal-title {
    font-size: 1.2rem;
  }
  
  .file-upload-wrapper {
    padding: 1rem;
  }
  
  .file-upload-info i {
    font-size: 1.5rem;
  }
  
  .file-upload-info span {
    font-size: 0.8rem;
  }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  margin-top: 80px;
}

.contact-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(220, 38, 38, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(185, 28, 28, 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
}

.contact-header {
  position: relative;
  z-index: 2;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-badge i {
  font-size: 1rem;
}

/* Contact Info Card */
.contact-info-card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-dark);
  border-color: var(--primary-color);
}

.contact-info-card:hover::before {
  transform: scaleX(1);
}

.contact-info-header {
  margin-bottom: 2rem;
  text-align: center;
}

.info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-title i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.info-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.contact-items {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(220, 38, 38, 0.05);
  border-color: rgba(220, 38, 38, 0.2);
  transform: translateX(5px);
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-content {
  flex: 1;
}

.contact-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-value {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.social-section {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
}

.social-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-title i {
  color: var(--primary-color);
  font-size: 1rem;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  color: var(--text-primary);
  transform: translateY(-2px);
  text-decoration: none;
}

.social-link.facebook:hover {
  background: rgba(24, 119, 242, 0.1);
  border-color: #1877f2;
  color: #1877f2;
}

.social-link.twitter:hover {
  background: rgba(29, 161, 242, 0.1);
  border-color: #1da1f2;
  color: #1da1f2;
}

.social-link.linkedin:hover {
  background: rgba(0, 119, 181, 0.1);
  border-color: #0077b5;
  color: #0077b5;
}

.social-link.instagram:hover {
  background: rgba(225, 48, 108, 0.1);
  border-color: #e1306c;
  color: #e1306c;
}

.social-link i {
  font-size: 1.1rem;
}

/* Contact Form Card */
.contact-form-card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-form-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-dark);
  border-color: var(--primary-color);
}

.contact-form-card:hover::before {
  transform: scaleX(1);
}

.form-header {
  margin-bottom: 2rem;
  text-align: center;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-title i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.form-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.contact-form {
  margin-top: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.form-label i {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.required {
  color: var(--primary-color);
  margin-left: 0.25rem;
}

.contact-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  color: var(--text-primary) !important;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
  outline: none;
  color: var(--text-primary) !important;
}

.contact-input::placeholder {
  color: var(--text-muted) !important;
}

.form-submit-section {
  margin-top: 2rem;
  text-align: center;
}

.contact-submit-btn {
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  min-width: 200px;
  justify-content: center;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
  color: white;
}

.contact-submit-btn i {
  font-size: 0.9rem;
}

/* Success and Error Messages */
.success-message,
.error-message {
  background: var(--dark-card);
  border-radius: 20px;
  padding: 3rem 2rem;
}

.success-icon i {
  font-size: 4rem;
  color: #10b981;
}

.error-icon i {
  font-size: 4rem;
  color: #ef4444;
}

.success-message h4,
.error-message h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.success-message p,
.error-message p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.success-message .btn,
.error-message .btn {
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.success-message .btn:hover,
.error-message .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-info-card,
  .contact-form-card {
    padding: 1.5rem;
  }
  
  .contact-item {
    padding: 1rem;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
  
  .contact-submit-btn {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .info-title,
  .form-title {
    font-size: 1.3rem;
  }
  
  .contact-info-card,
  .contact-form-card {
    padding: 1rem;
  }
  
  .contact-item {
    padding: 0.75rem;
  }
  
  .contact-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .social-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
}

/* ===== MEDIA SECTION ===== */
.media-section {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  margin-top: 80px;
}

.media-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(220, 38, 38, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(185, 28, 28, 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
}

.media-header {
  position: relative;
  z-index: 2;
}

.media-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.media-badge i {
  font-size: 1rem;
}

/* Media Cards */
.media-card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.media-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.media-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-dark);
  border-color: var(--primary-color);
}

.media-card:hover::before {
  transform: scaleX(1);
}

.media-card-header {
  position: relative;
  overflow: hidden;
}

.media-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

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

.media-card:hover .media-img {
  transform: scale(1.05);
}

.media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.media-card:hover .media-overlay {
  opacity: 1;
}

.media-actions {
  display: flex;
  gap: 1rem;
}

.media-action-btn {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.media-action-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.media-badge-date {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.media-badge-date i {
  font-size: 0.7rem;
}

.media-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}


.media-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.media-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.media-card-footer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.media-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.media-meta-item {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
}

.media-meta-item i {
  color: var(--primary-color);
  font-size: 0.7rem;
}


/* No Media Card */
.no-media-card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.no-media-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.no-media-icon {
  width: 80px;
  height: 80px;
  background: rgba(220, 38, 38, 0.1);
  border: 2px solid rgba(220, 38, 38, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--primary-color);
  font-size: 2rem;
}

.no-media-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.no-media-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Media Modal */
.media-modal-content {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.media-modal-header {
  background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-surface) 100%);
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem;
  position: relative;
}

.media-modal-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.media-modal-header .modal-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

.media-modal-header .modal-title i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.media-modal-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.media-modal-close:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: rotate(90deg);
}

.media-modal-body {
  background: var(--dark-card);
  padding: 0;
}

.media-modal-image {
  position: relative;
}

.media-modal-image img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
  .media-section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .media-card-body {
    padding: 1rem;
  }
  
  .media-card-footer {
    padding: 0 1rem 1rem 1rem;
  }
  
  .media-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .media-actions {
    gap: 0.75rem;
  }
  
  .media-action-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .media-title {
    font-size: 1.1rem;
  }
  
  .media-description {
    font-size: 0.85rem;
  }
  
  .no-media-card {
    padding: 3rem 1.5rem;
  }
  
  .no-media-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .media-modal-header {
    padding: 1rem;
  }
  
  .media-modal-header .modal-title {
    font-size: 1.1rem;
  }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  margin-top: 80px;
}

.testimonials-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(220, 38, 38, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(185, 28, 28, 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
}

.testimonials-header {
  position: relative;
  z-index: 2;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials-badge i {
  font-size: 1rem;
}

/* Testimonial Cards */
.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-dark);
  border-color: var(--primary-color);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-card-header {
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.quote-icon {
  width: 40px;
  height: 40px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1rem;
}

.rating {
  display: flex;
  gap: 0.25rem;
}

.rating i {
  color: #fbbf24;
  font-size: 0.9rem;
}

.testimonial-card-body {
  padding: 0 1.5rem;
  flex: 1;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-card-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.author-details {
  flex: 1;
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-title {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .testimonial-card-header {
    padding: 1rem 1rem 0.75rem 1rem;
  }
  
  .testimonial-card-body {
    padding: 0 1rem;
  }
  
  .testimonial-card-footer {
    padding: 1rem;
  }
  
  .author-info {
    gap: 0.75rem;
  }
  
  .author-avatar {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .testimonial-text {
    font-size: 0.9rem;
  }
  
  .author-name {
    font-size: 0.95rem;
  }
  
  .author-title {
    font-size: 0.8rem;
  }
  
  .quote-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .rating i {
    font-size: 0.8rem;
  }
}

/* ===== CATEGORY SECTION ===== */
.category-section {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  margin-top: 80px;
}

.category-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(220, 38, 38, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(185, 28, 28, 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
}

.category-header {
  position: relative;
  z-index: 2;
}

.category-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.category-badge i {
  font-size: 1rem;
}

/* Category Cards */
.category-card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-dark);
  border-color: var(--primary-color);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card-header {
  position: relative;
  overflow: hidden;
}

.category-image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

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

.category-card:hover .category-image {
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
  opacity: 1;
}

.category-actions {
  display: flex;
  gap: 1rem;
}

.category-action-btn {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-decoration: none;
}

.category-action-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.1);
  color: white;
  text-decoration: none;
}

.category-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1rem;
  backdrop-filter: blur(10px);
}

.category-card-body {
  padding: 1.5rem;
  flex: 1;
}

.category-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.category-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.category-card-footer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.category-view-btn {
  background: transparent;
  border: 1px solid var(--primary-color);
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
  text-decoration: none;
}

.category-view-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

.category-view-btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.category-view-btn:hover i {
  transform: translateX(3px);
}

/* No Category Card */
.no-category-card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.no-category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.no-category-icon {
  width: 80px;
  height: 80px;
  background: rgba(220, 38, 38, 0.1);
  border: 2px solid rgba(220, 38, 38, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--primary-color);
  font-size: 2rem;
}

.no-category-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.no-category-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .category-section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .category-card-body {
    padding: 1rem;
  }
  
  .category-card-footer {
    padding: 0 1rem 1rem 1rem;
  }
  
  .category-actions {
    gap: 0.75rem;
  }
  
  .category-action-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  
  .category-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .category-title {
    font-size: 1.2rem;
  }
  
  .category-description {
    font-size: 0.85rem;
  }
  
  .no-category-card {
    padding: 3rem 1.5rem;
  }
  
  .no-category-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* ===== SCROLL BEHAVIOR ===== */
html {
  scroll-behavior: smooth;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* merged into testimonials-section right column */
.testimonials-section .clients-logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  align-items: center;
  justify-items: center;
}

.clients-section .section-title {
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}

.clients-section .section-subtitle {
  color: #bbb;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.clients-logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2.5rem 1.5rem;
  align-items: center;
  justify-items: center;
  padding: 0 1rem;
}

.client-logo {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s, background 0.3s, transform 0.3s;
  min-height: 80px;
  min-width: 100px;
  max-width: 160px;
  position: relative;
  overflow: hidden;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.client-logo img {
  max-width: 100%;
  max-height: 60px;
  opacity: 0.85;
  transition: opacity 0.4s, transform 0.3s;
}

.client-logo:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.1), 0 2px 8px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px) scale(1.04);
}

.client-logo:hover img {
  filter: drop-shadow(0 2px 8px rgba(220, 38, 38, 0.1));
  opacity: 1;
  transform: scale(1.07);
}

@media (max-width: 1200px) {
  .testimonials-section .clients-logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-section .clients-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 0.5rem;
  }
  .client-logo {
    min-width: 80px;
    padding: 0.8rem 0.7rem;
  }
}

/* ===== PHILOSOPHY SECTION ===== */
.philosophy-section {
  background: var(--dark-surface);
  padding: 6rem 0;
}

.philosophy-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.philosophy-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: white;
}

.philosophy-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.philosophy-text p.lead {
  font-size: 1.3rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* ===== PRESENCE SECTION ===== */
.presence-section {
  background: var(--dark-bg);
  padding: 6rem 0;
}

.presence-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 15px;
  flex: 1;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.stat-content h4 {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-content p {
  color: var(--text-secondary);
  margin: 0;
}

/* Creative Presence Visual */
.presence-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.presence-map {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 600px;
}

.map-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
  border-radius: 20px;
  overflow: hidden;
}

.map-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(220, 38, 38, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 38, 38, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

.map-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
}

.state-cards {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.state-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  width: 280px;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
}

.state-card:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(220, 38, 38, 0.4);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.state-card.maharashtra {
  animation: floatUp 3s ease-in-out infinite;
}

.state-card.bihar {
  animation: floatUp 3s ease-in-out infinite 1s;
}

.state-card.jharkhand {
  animation: floatUp 3s ease-in-out infinite 2s;
}

.state-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.state-info h4 {
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-family: "Raleway", sans-serif;
}

.state-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.state-stats span {
  background: rgba(220, 38, 38, 0.2);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.state-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 22px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.state-card:hover .state-glow {
  opacity: 0.3;
}

.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.connection-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.3), transparent);
  height: 2px;
  animation: connectionFlow 4s ease-in-out infinite;
}

.line-1 {
  top: 25%;
  left: 20%;
  right: 20%;
  animation-delay: 0s;
}

.line-2 {
  top: 50%;
  left: 15%;
  right: 15%;
  animation-delay: 1.3s;
}

.line-3 {
  top: 75%;
  left: 25%;
  right: 25%;
  animation-delay: 2.6s;
}

.floating-presence-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.floating-presence-elements .float-element {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1rem;
}

.floating-presence-elements .float-element:nth-child(1) {
  top: 10%;
  left: 10%;
  animation: floatPresence 6s ease-in-out infinite;
}

.floating-presence-elements .float-element:nth-child(2) {
  top: 20%;
  right: 15%;
  animation: floatPresence 6s ease-in-out infinite 1.5s;
}

.floating-presence-elements .float-element:nth-child(3) {
  bottom: 30%;
  left: 15%;
  animation: floatPresence 6s ease-in-out infinite 3s;
}

.floating-presence-elements .float-element:nth-child(4) {
  bottom: 15%;
  right: 10%;
  animation: floatPresence 6s ease-in-out infinite 4.5s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

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

@keyframes floatUp {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes connectionFlow {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0;
    transform: scaleX(0);
  }
}

@keyframes floatPresence {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(5deg);
  }
  50% {
    transform: translateY(-10px) rotate(-3deg);
  }
  75% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@media (max-width: 768px) {
  .presence-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-item {
    flex-direction: column;
    text-align: center;
  }
  
  .presence-visual {
    height: 400px;
  }
  
  .state-card {
    width: 250px;
    padding: 1rem;
  }
  
  .state-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .state-info h4 {
    font-size: 1.1rem;
  }
  
  .floating-presence-elements .float-element {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}

/* ===== COULOMB CONNECT APP SECTION ===== */
.coulomb-connect-section {
  background: linear-gradient(
    135deg,
    rgba(20, 20, 25, 0.98) 0%,
    rgba(30, 30, 35, 0.95) 100%
  );
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.coulomb-connect-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(220, 38, 38, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(220, 38, 38, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.app-info {
  padding-right: 2rem;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.95) 0%,
    rgba(185, 28, 28, 0.95) 100%
  );
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.app-badge i {
  font-size: 1.1rem;
  animation: pulse 2s ease-in-out infinite;
}

.app-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff 0%, #ddd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.app-description {
  font-size: 1.1rem;
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.app-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.9) 0%,
    rgba(185, 28, 28, 0.9) 100%
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-text h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.feature-text p {
  color: #aaa;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

.download-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.download-btn.android:hover {
  background: rgba(76, 175, 80, 0.1);
  border-color: rgba(76, 175, 80, 0.3);
}

.download-btn.ios:hover {
  background: rgba(0, 122, 255, 0.1);
  border-color: rgba(0, 122, 255, 0.3);
}

.btn-icon {
  font-size: 1.5rem;
  color: #fff;
}

.btn-text {
  display: flex;
  flex-direction: column;
}

.btn-label {
  font-size: 0.7rem;
  color: #aaa;
  line-height: 1;
}

.btn-store {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

/* App Visual */
.app-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Floating Elements */

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .app-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .app-info {
    padding-right: 0;
    text-align: center;
  }

  .app-features {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 2.5rem auto;
  }

  .download-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .coulomb-connect-section {
    padding: 60px 0;
  }

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

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .download-btn {
    width: 200px;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .why-us-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .why-us-card {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .mega-dropdown {
    position: fixed !important;
    top: 60px !important; /* Adjust for navbar height */
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    background: #222 !important; /* Solid dark background */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 1101;
    display: none;
    padding: 1.5rem 1rem 1rem 1.5rem; /* Add padding for vertical menu */
    border-radius: 0 0 18px 18px;
  }
  .mega-dropdown.show {
    display: block;
  }

  .mega-dropdown ul,
  .mega-dropdown .dropdown-menu {
    display: block;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 0;
    margin: 0;
    background: none;
    box-shadow: none;
  }

  .mega-dropdown li,
  .mega-dropdown .dropdown-item {
    display: block;
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #fff;
    font-size: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
  }

  .mega-dropdown li:hover,
  .mega-dropdown .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--primary-color);
  }

  /* Indent sub-items */
  .mega-dropdown .dropdown-submenu {
    padding-left: 2.5rem;
    font-size: 0.95rem;
    color: #bbb;
  }

  /* Toggle icon for parent */
  .mega-dropdown .dropdown-toggle {
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding-right: 2rem;
  }
  .mega-dropdown .dropdown-toggle .toggle-icon {
    font-size: 1.2rem;
    margin-left: 0.5rem;
    transition: transform 0.2s;
  }
  .mega-dropdown .dropdown-toggle.open .toggle-icon {
    transform: rotate(180deg);
  }

  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #111 !important; /* Dark overlay */
    opacity: 0.9 !important;
    z-index: 1100;
    display: none;
  }
}
/* Mobile Dropdown Styles */
@media (max-width: 991px) {
  .navbar-nav .nav-item.dropdown {
    position: relative;
  }
  /* Fix dropdown arrow position - vertically center aligned */
  .navbar-nav .nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navbar-nav .nav-link.dropdown-toggle::after {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    vertical-align: middle;
  }
  .navbar-nav .dropdown-menu.d-lg-none {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100vw;
    background: #222;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 999;
    padding: 0.5rem 0;
    animation: dropdownFadeIn 0.3s;
  }
  .navbar-nav .dropdown-menu.d-lg-none.show {
    display: block;
  }
  .navbar-nav .dropdown-item {
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  .navbar-nav .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--primary-color);
  }
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 991px) {
  .navbar-collapse.show {
    background: #181818;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: background 0.3s;
  }
}
.contact-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  margin-top: 80px;
}
.testimonials-section {
  margin-top: 80px;
}
.media-section {
  margin-top: 80px;
}
#whatsapp-float-btn {
  position: fixed;
  left: 10px;
  bottom: 5px;
  z-index: 9999;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  padding: 12px 22px 12px 18px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 22px;
  transition: box-shadow 0.2s;
}

#whatsapp-float-btn:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  background: #20b358;
}

#whatsapp-float-btn .wa-label {
  margin-left: 10px;
  font-size: 16px;
  font-weight: 500;
}

#wa-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.35);
  z-index: 10000;
}

#wa-popup-form {
  display: none;
  position: fixed;
  left: 40px;
  bottom: 90px;
  width: 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  z-index: 10001;
  padding: 24px 20px 18px 20px;
}

#wa-popup-form h4 {
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 600;
  color: #25d366;
  text-align: center;
}

#wa-popup-close {
  position: absolute;
  top: 10px;
  left: 10px;
  background: transparent;
  border: none;
  font-size: 18px;
  color: #888;
  cursor: pointer;
}

/* ===== MISSION & VISION SECTION ===== */
.mission-vision-section {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.mission-vision-tabs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 100px;
  justify-content: center;
  align-items: stretch;
}

.mv-tab-btn {
  position: relative;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  overflow: hidden;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mv-tab-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(185, 28, 28, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mv-tab-btn:hover::before {
  opacity: 1;
}

.mv-tab-btn:hover {
  transform: translateX(5px);
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 5px 20px rgba(220, 38, 38, 0.2);
}

.mv-tab-btn.active {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(185, 28, 28, 0.15) 100%);
  border-color: var(--primary-color);
  box-shadow: 0 5px 25px rgba(220, 38, 38, 0.3);
  transform: translateX(5px);
}

.mv-tab-btn.active::before {
  opacity: 1;
}

.mv-tab-btn .tab-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(185, 28, 28, 0.2) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.mv-tab-btn.active .tab-icon {
  background: linear-gradient(135deg, var(--primary-color) 0%, rgba(185, 28, 28, 0.9) 100%);
  transform: scale(1.05);
  box-shadow: 0 3px 15px rgba(220, 38, 38, 0.4);
}

.mv-tab-btn .tab-icon i {
  font-size: 1.2rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.mv-tab-btn.active .tab-icon i {
  color: #fff;
}

.mv-tab-btn .tab-content {
  position: relative;
  z-index: 1;
  flex: 1;
}

.mv-tab-btn .tab-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
  transition: all 0.3s ease;
  line-height: 1.3;
}

.mv-tab-btn.active .tab-content h4 {
  color: var(--primary-color);
}

.mv-tab-btn .tab-content p {
  font-size: 0.8rem;
  color: #aaa;
  margin: 0;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.mv-tab-btn.active .tab-content p {
  color: #ddd;
}

.tab-indicator {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-color) 0%, rgba(185, 28, 28, 0.8) 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 2px 2px 0;
}

.mv-tab-btn.active .tab-indicator {
  transform: scaleY(1);
}

.mission-vision-content {
  position: relative;
  min-height: 400px;
  padding-left: 2rem;
}

.mv-content {
  display: none;
  animation: fadeInUp 0.6s ease;
}

.mv-content.active {
  display: block;
}

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

.content-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.content-card:hover {
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 25px 70px rgba(220, 38, 38, 0.2);
}

.content-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.vision-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mission-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.content-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  background: linear-gradient(135deg, #fff 0%, #ddd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-body {
  color: var(--text-secondary);
}

.content-body .lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 1.5rem;
}

.content-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: #bbb;
  margin-bottom: 1rem;
}

.content-body p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .mission-vision-tabs {
    position: static;
    margin-bottom: 2rem;
  }

  .mission-vision-content {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .mission-vision-tabs {
    flex-direction: row;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
  }

  .mission-vision-tabs::-webkit-scrollbar {
    height: 4px;
  }

  .mission-vision-tabs::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
  }

  .mission-vision-tabs::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
  }

  .mv-tab-btn {
    min-width: 200px;
    flex-shrink: 0;
    padding: 1rem;
  }

  .mv-tab-btn:hover,
  .mv-tab-btn.active {
    transform: translateY(-3px);
  }

  .content-card {
    padding: 2rem 1.5rem;
  }

  .content-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .content-header h2 {
    font-size: 2rem;
  }

  .content-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .mv-tab-btn {
    padding: 0.875rem;
    min-width: 180px;
  }

  .mv-tab-btn .tab-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .mv-tab-btn .tab-icon i {
    font-size: 1rem;
  }

  .mv-tab-btn .tab-content h4 {
    font-size: 1rem;
  }

  .mv-tab-btn .tab-content p {
    font-size: 0.75rem;
  }

  .content-card {
    padding: 1.5rem 1rem;
  }

  .content-header h2 {
    font-size: 1.75rem;
  }

  .content-body .lead {
    font-size: 1.1rem;
  }
}

/* ===== CERTIFICATIONS SECTION ===== */
.certifications-section {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.certifications-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(220, 38, 38, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(220, 38, 38, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.certifications-carousel-container {
  position: relative;
  padding: 2rem 0;
}

.certifications-carousel-wrapper {
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
}

.certifications-carousel {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.certification-slide {
  flex: 0 0 calc(33.333% - 1.33rem);
  min-width: 0;
}

.certification-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.certification-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.1) 0%,
    rgba(185, 28, 28, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.certification-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(220, 38, 38, 0.4);
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
}

.certification-card:hover::before {
  opacity: 1;
}

.certification-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 200px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.4s ease;
  padding: 1rem;
}

.certification-card:hover .certification-image {
  transform: scale(1.1);
}

.certification-image img {
  max-width: 100%;
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  transition: filter 0.4s ease;
}

.certification-card:hover .certification-image img {
  filter: brightness(0) invert(1) drop-shadow(0 15px 40px rgba(220, 38, 38, 0.4));
}

.certification-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

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

.certification-overlay h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.certification-overlay p {
  font-size: 0.9rem;
  color: #bbb;
  margin: 0;
  line-height: 1.5;
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(220, 38, 38, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
}

.carousel-nav-btn:hover {
  background: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5);
}

.carousel-nav-btn.prev-btn {
  left: -70px;
}

.carousel-nav-btn.next-btn {
  right: -70px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 5;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.carousel-dots .dot:hover {
  background: rgba(220, 38, 38, 0.5);
  transform: scale(1.2);
}

.carousel-dots .dot.active {
  background: var(--primary-color);
  width: 30px;
  border-radius: 6px;
  border-color: rgba(220, 38, 38, 0.5);
}

/* Responsive Design for Certifications */
@media (max-width: 992px) {
  .certification-slide {
    flex: 0 0 calc(50% - 1rem);
  }

  .carousel-nav-btn.prev-btn {
    left: -60px;
  }

  .carousel-nav-btn.next-btn {
    right: -60px;
  }
}

@media (max-width: 768px) {
  .certification-slide {
    flex: 0 0 100%;
  }

  .certifications-carousel {
    gap: 1.5rem;
  }

  .certification-card {
    padding: 2rem 1.5rem;
  }

  .certification-image {
    max-width: 150px;
    min-height: 150px;
    margin-bottom: 1rem;
  }

  .certification-image img {
    max-height: 130px;
  }

  .carousel-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .carousel-nav-btn.prev-btn {
    left: -50px;
  }

  .carousel-nav-btn.next-btn {
    right: -50px;
  }
}

@media (max-width: 576px) {
  .certifications-carousel-container {
    padding: 2rem 50px;
  }

  .certification-card {
    padding: 1.5rem 1rem;
  }

  .certification-image {
    max-width: 120px;
    min-height: 120px;
  }

  .certification-image img {
    max-height: 100px;
  }

  .certification-overlay h4 {
    font-size: 1.1rem;
  }

  .certification-overlay p {
    font-size: 0.85rem;
  }

  .carousel-nav-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .carousel-nav-btn.prev-btn {
    left: 5px;
  }

  .carousel-nav-btn.next-btn {
    right: 5px;
  }
}

/* ===== FRANCHISE SECTION ===== */
.franchise-section {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  margin-top: 80px;
}

.franchise-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(220, 38, 38, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(185, 28, 28, 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
}

.franchise-header {
  position: relative;
  z-index: 2;
}

.franchise-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.franchise-badge i {
  font-size: 1rem;
}

/* Franchise Info Card */
.franchise-info-card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.franchise-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.franchise-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-dark);
  border-color: var(--primary-color);
}

.franchise-info-card:hover::before {
  transform: scaleX(1);
}

.franchise-info-header {
  margin-bottom: 2rem;
  text-align: center;
}

.franchise-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(220, 38, 38, 0.1);
  transform: translateX(5px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(185, 28, 28, 0.2) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.benefit-content {
  flex: 1;
}

.benefit-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.benefit-value {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Franchise Form Card */
.franchise-form-card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.franchise-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.form-header {
  margin-bottom: 2rem;
  text-align: center;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-title i {
  color: var(--primary-color);
}

.form-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

.franchise-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.franchise-form .form-group {
  margin-bottom: 1.5rem;
}

.franchise-form .form-label {
  display: flex;
  align-items: center;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.franchise-form .form-label i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.franchise-form .required {
  color: var(--primary-color);
  margin-left: 0.25rem;
}

.franchise-form .contact-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.franchise-form .contact-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.franchise-form .contact-input::placeholder {
  color: var(--text-secondary);
}

.franchise-form select.contact-input {
  cursor: pointer;
}

.form-submit-section {
  margin-top: 2rem;
  text-align: center;
}

.contact-submit-btn {
  background: var(--gradient-primary);
  border: none;
  border-radius: 12px;
  padding: 1rem 2.5rem;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.contact-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.success-message {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem 2rem;
}

.success-icon {
  color: var(--primary-color);
}

/* Responsive Design for Franchise */
@media (max-width: 768px) {
  .franchise-form .form-row {
    grid-template-columns: 1fr;
  }

  .franchise-info-card,
  .franchise-form-card {
    padding: 1.5rem;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
  }

  .benefit-icon {
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .franchise-section {
    padding: 4rem 0;
  }

  .franchise-info-card,
  .franchise-form-card {
    padding: 1.25rem;
  }

  .form-title {
    font-size: 1.25rem;
  }

  .benefit-label {
    font-size: 1rem;
  }

  .benefit-value {
    font-size: 0.9rem;
  }
}

/* ===== PRODUCT DETAILS CAROUSEL ===== */
.product-details-section .card {
  position: relative;
  background-color: var(--dark-card);
  padding: 0;
}

.product-details-section .carousel {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.product-details-section .carousel-inner {
  border-radius: 8px;
}

.product-details-section .carousel-item {
  text-align: center;
}

.product-details-section .carousel-item img {
  max-height: 500px;
  width: 100%;
  object-fit: contain;
  background-color: var(--dark-card);
  padding: 10px;
}

.product-details-section .carousel-control-prev,
.product-details-section .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: var(--transition);
}

.product-details-section .carousel-control-prev {
  left: 15px;
}

.product-details-section .carousel-control-next {
  right: 15px;
}

.product-details-section .carousel-control-prev:hover,
.product-details-section .carousel-control-next:hover {
  opacity: 1;
  background-color: rgba(220, 38, 38, 0.8);
}

.product-details-section .carousel-indicators {
  margin-bottom: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 0;
  margin-left: 0;
  list-style: none;
}

.product-details-section .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  margin: 0 5px;
  transition: var(--transition);
  opacity: 1;
  flex: 0 1 auto;
  text-indent: 0;
}

.product-details-section .carousel-indicators button.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  opacity: 1;
}

.product-details-section .carousel-indicators button:hover {
  background-color: var(--primary-color);
  opacity: 0.8;
  border-color: var(--primary-color);
}

@media (max-width: 768px) {
  .product-details-section .carousel-item img {
    max-height: 400px;
  }

  .product-details-section .carousel-control-prev,
  .product-details-section .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .product-details-section .carousel-control-prev {
    left: 10px;
  }

  .product-details-section .carousel-control-next {
    right: 10px;
  }
}
