/* ===== ANIMATIONS CSS ===== */

/* ===== DRIVING ANIMATION BACKGROUND ===== */
.driving-animation-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.road {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(90deg, #333 0%, #666 50%, #333 100%);
  background-size: 50px 100%;
  animation: roadMove 20s linear infinite;
}

.road::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    #fff 0px,
    #fff 30px,
    transparent 30px,
    transparent 60px
  );
  transform: translateY(-50%);
}

.car {
  position: absolute;
  width: 60px;
  height: 30px;
  background: var(--primary-color);
  border-radius: 8px 20px 8px 20px;
  bottom: 90px;
  animation: carDrive 15s linear infinite;
}

.car::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 8px;
  width: 12px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
}

.car::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 8px;
  width: 12px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
}

.car-1 {
  left: -100px;
  animation-delay: 0s;
  background: var(--primary-color);
}

.car-2 {
  left: -100px;
  animation-delay: 5s;
  background: var(--secondary-color);
}

.car-3 {
  left: -100px;
  animation-delay: 10s;
  background: #28a745;
}

.traffic-light {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 20px;
  height: 60px;
  background: #333;
  border-radius: 10px;
  border: 2px solid #666;
}

.traffic-light::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #dc3545;
  border-radius: 50%;
  animation: trafficLight 3s ease-in-out infinite;
}

.traffic-light::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #28a745;
  border-radius: 50%;
  opacity: 0.3;
}

.road-signs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.sign {
  position: absolute;
  width: 30px;
  height: 40px;
  background: #ffc107;
  border: 2px solid #333;
  border-radius: 5px;
  animation: signFloat 8s ease-in-out infinite;
}

.sign::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: #333;
  border-radius: 50%;
}

.sign-1 {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.sign-2 {
  top: 40%;
  right: 20%;
  animation-delay: 2s;
}

.sign-3 {
  top: 60%;
  left: 25%;
  animation-delay: 4s;
}

@keyframes roadMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -50px 0;
  }
}

@keyframes carDrive {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(calc(100vw + 100px));
  }
}

@keyframes trafficLight {
  0%,
  50% {
    background: #dc3545;
    box-shadow: 0 0 10px #dc3545;
  }
  51%,
  100% {
    background: #ffc107;
    box-shadow: 0 0 10px #ffc107;
  }
}

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

/* ===== FADE IN ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* ===== SLIDE ANIMATIONS ===== */
@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* ===== SCALE ANIMATIONS ===== */
@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

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

/* ===== ROTATE ANIMATIONS ===== */
@keyframes rotateIn {
  from {
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    transform: rotate(45deg);
    transform-origin: left bottom;
    opacity: 0;
  }
  to {
    transform: rotate(0);
    transform-origin: left bottom;
    opacity: 1;
  }
}

/* ===== BOUNCE ANIMATIONS ===== */
@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes bounceInUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  60% {
    transform: translateY(-10px);
  }
  80% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== FLIP ANIMATIONS ===== */
@keyframes flipInX {
  from {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px) rotateX(0);
    opacity: 1;
  }
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px) rotateY(0);
    opacity: 1;
  }
}

/* ===== PULSE ANIMATIONS ===== */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.8);
  }
  100% {
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  }
}

/* ===== SHIMMER ANIMATION ===== */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* ===== TYPING ANIMATION ===== */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  0%,
  50% {
    border-color: transparent;
  }
  51%,
  100% {
    border-color: #007bff;
  }
}

/* ===== FLOATING ANIMATION ===== */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ===== WAVE ANIMATION ===== */
@keyframes wave {
  0%,
  40%,
  100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-10px);
  }
}

/* ===== ANIMATION CLASSES ===== */
.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-fade-in-up {
  animation: fadeInUp 1s ease-out;
}

.animate-fade-in-down {
  animation: fadeInDown 1s ease-out;
}

.animate-fade-in-left {
  animation: fadeInLeft 1s ease-out;
}

.animate-fade-in-right {
  animation: fadeInRight 1s ease-out;
}

.animate-fade-in-up-delay {
  animation: fadeInUp 1s ease-out 0.2s both;
}

.animate-fade-in-up-delay-2 {
  animation: fadeInUp 1s ease-out 0.4s both;
}

.animate-fade-in-up-delay-3 {
  animation: fadeInUp 1s ease-out 0.6s both;
}

.animate-slide-in-up {
  animation: slideInUp 1s ease-out;
}

.animate-slide-in-down {
  animation: slideInDown 1s ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft 1s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 1s ease-out;
}

.animate-scale-in {
  animation: scaleIn 0.8s ease-out;
}

.animate-scale-in-up {
  animation: scaleInUp 0.8s ease-out;
}

.animate-rotate-in {
  animation: rotateIn 1s ease-out;
}

.animate-rotate-in-up-left {
  animation: rotateInUpLeft 1s ease-out;
}

.animate-bounce-in {
  animation: bounceIn 1s ease-out;
}

.animate-bounce-in-up {
  animation: bounceInUp 1s ease-out;
}

.animate-flip-in-x {
  animation: flipInX 1s ease-out;
}

.animate-flip-in-y {
  animation: flipInY 1s ease-out;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

.animate-pulse-glow {
  animation: pulseGlow 2s infinite;
}

.animate-shimmer {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

.animate-typing {
  overflow: hidden;
  border-right: 2px solid #007bff;
  white-space: nowrap;
  animation: typing 3s steps(40, end), blink 0.75s step-end infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-wave {
  animation: wave 1s ease-in-out infinite;
}

/* ===== SCROLL TRIGGERED ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-on-scroll-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll-right.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-on-scroll-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease-out;
}

.animate-on-scroll-scale.animated {
  opacity: 1;
  transform: scale(1);
}

/* ===== HOVER ANIMATIONS ===== */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hover-scale {
  transition: transform 0.3s ease;
}

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

.hover-rotate {
  transition: transform 0.3s ease;
}

.hover-rotate:hover {
  transform: rotate(5deg);
}

.hover-glow {
  transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
}

.hover-shine {
  position: relative;
  overflow: hidden;
}

.hover-shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.hover-shine:hover::before {
  left: 100%;
}

/* ===== LOADING ANIMATIONS ===== */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 123, 255, 0.3);
  border-top: 4px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.loading-dots {
  display: inline-block;
}

.loading-dots::after {
  content: "";
  animation: dots 1.5s steps(5, end) infinite;
}

@keyframes dots {
  0%,
  20% {
    content: "";
  }
  40% {
    content: ".";
  }
  60% {
    content: "..";
  }
  80%,
  100% {
    content: "...";
  }
}

/* ===== PARALLAX EFFECT ===== */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ===== TEXT ANIMATIONS ===== */
.text-reveal {
  overflow: hidden;
}

.text-reveal span {
  display: inline-block;
  animation: textReveal 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(100%);
}

@keyframes textReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== BUTTON ANIMATIONS ===== */
.btn-ripple {
  position: relative;
  overflow: hidden;
}

.btn-ripple::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-ripple:active::before {
  width: 300px;
  height: 300px;
}

/* ===== CARD FLIP ANIMATION ===== */
.card-flip {
  perspective: 1000px;
}

.card-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.card-flip:hover .card-flip-inner {
  transform: rotateY(180deg);
}

.card-flip-front,
.card-flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.card-flip-back {
  transform: rotateY(180deg);
}

/* ===== RESPONSIVE ANIMATIONS ===== */
@media (max-width: 768px) {
  .animate-on-scroll,
  .animate-on-scroll-left,
  .animate-on-scroll-right,
  .animate-on-scroll-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .parallax {
    background-attachment: scroll;
  }

  .car {
    width: 40px;
    height: 20px;
    bottom: 60px;
  }
  .road {
    height: 80px;
  }
  .traffic-light {
    width: 15px;
    height: 45px;
    top: 15%;
    right: 5%;
  }
  .sign {
    width: 20px;
    height: 25px;
  }
  .sign::before {
    width: 12px;
    height: 12px;
  }
}

/* ===== ANIMATION UTILITIES ===== */
.animation-delay-1 {
  animation-delay: 0.1s;
}

.animation-delay-2 {
  animation-delay: 0.2s;
}

.animation-delay-3 {
  animation-delay: 0.3s;
}

.animation-delay-4 {
  animation-delay: 0.4s;
}

.animation-delay-5 {
  animation-delay: 0.5s;
}

.animation-duration-fast {
  animation-duration: 0.3s;
}

.animation-duration-slow {
  animation-duration: 2s;
}

.animation-iteration-infinite {
  animation-iteration-count: infinite;
}

.animation-iteration-2 {
  animation-iteration-count: 2;
}

.animation-iteration-3 {
  animation-iteration-count: 3;
}

/* ===== MODERN ANIMATED GRADIENT BACKGROUND ===== */
.aurora-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(-45deg, #0a0a0a, #1a1a2e, #16213e, #0f3460);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

.aurora-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(0, 123, 255, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(220, 53, 69, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

.aurora-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(0, 123, 255, 0.1) 50%,
      transparent 70%
    ),
    linear-gradient(
      -45deg,
      transparent 30%,
      rgba(220, 53, 69, 0.1) 50%,
      transparent 70%
    );
  animation: shimmer 12s linear infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulseGlow {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }
  100% {
    transform: translateX(100%) translateY(100%);
  }
}

@media (max-width: 768px) {
  .aurora-bg {
    background-size: 300% 300%;
  }
}

/* ===== HERO SHIMMER EFFECTS ===== */
.hero-title {
  position: relative;
  overflow: hidden;
}

.hero-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: heroShimmer 3s ease-in-out infinite;
}

.hero-subtitle {
  position: relative;
  overflow: hidden;
}

.hero-subtitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 123, 255, 0.6),
    transparent
  );
  animation: heroShimmer 3s ease-in-out infinite 0.5s;
}

.hero-buttons .btn {
  position: relative;
  overflow: hidden;
}

.hero-buttons .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: buttonShimmer 4s ease-in-out infinite;
}

.hero-buttons .btn:nth-child(2)::before {
  animation-delay: 1s;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: imageShimmer 5s ease-in-out infinite 1s;
  z-index: 2;
  pointer-events: none;
}

.hero-image img {
  position: relative;
  z-index: 1;
}

@keyframes heroShimmer {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes buttonShimmer {
  0% {
    left: -100%;
  }
  25% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes imageShimmer {
  0% {
    left: -100%;
  }
  30% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* ===== ENHANCED HERO ANIMATIONS ===== */
.hero-content {
  position: relative;
}

.hero-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(0, 123, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(220, 53, 69, 0.1) 0%,
      transparent 50%
    );
  animation: contentGlow 6s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: -1;
}

@keyframes contentGlow {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

/* ===== FLOATING ANIMATION FOR HERO ELEMENTS ===== */
.hero-title,
.hero-subtitle,
.hero-description {
  animation: float 6s ease-in-out infinite;
}

.hero-subtitle {
  animation-delay: 0.5s;
}

.hero-description {
  animation-delay: 1s;
}

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

@media (max-width: 768px) {
  .hero-title::before,
  .hero-subtitle::before {
    animation-duration: 2s;
  }

  .hero-buttons .btn::before {
    animation-duration: 3s;
  }

  .hero-image::before {
    animation-duration: 4s;
  }
}

/* ===== FULL SCREEN HERO SLIDER ===== */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  min-height: 100vh;
}

.slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 2;
}

/* ===== SLIDER NAVIGATION ===== */
.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

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

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.slider-btn:active {
  transform: scale(0.95);
}

.slider-dots {
  display: flex;
  gap: 12px;
}

.slider-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;
}

.slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.slider-dots .dot.active {
  background: var(--primary-color);
  border-color: white;
  transform: scale(1.3);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  .slide {
    background-size: cover;
    background-position: center;
    min-height: 100vh;
  }

  .slider-nav {
    bottom: 20px;
    gap: 15px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .slider-dots .dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 576px) {
  .slide {
    background-size: cover;
    background-position: center;
    min-height: 100vh;
  }

  .slider-nav {
    bottom: 15px;
    gap: 10px;
  }

  .slider-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .slider-dots .dot {
    width: 8px;
    height: 8px;
  }
}
