html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: #f4f4f4;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

/* === HERO TEXT STYLE UPGRADE === */
.hero-caption {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 3;
  max-width: 90%;
  padding: 20px 30px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
  animation: slideUp 1s ease-out, textPulse 3s ease-in-out infinite;
}

.hero-caption h1 {
  font-size: 25px;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}

.hero-caption .hero-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #b90000;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.hero-caption .hero-btn:hover {
  background-color: #900000;
}

/* Animasi */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes textPulse {
  0%, 100% {
    text-shadow: 0 0 10px rgba(255,255,255,0.7);
  }
  50% {
    text-shadow: 0 0 15px rgba(255,255,255,1);
  }
}

/* Responsif */
@media (max-width: 768px) {
  .hero-caption h1 {
    font-size: 22px;
  }

  .hero-caption p {
    font-size: 14px;
  }

  .hero-caption .hero-btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}


.hero-title {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(to right, #ffffff, #b90000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-subtext {
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
}

/* === FADE-UP ANIMATION === */
.fade-up {
  animation: fadeUp 1s ease-out both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.announcement-bar marquee span {
  text-shadow: 1px 1px 6px rgba(255, 255, 255, 0.5);
}


/* === HERO / SWIPER SECTION === */
.swiper,
.hero-banner {
  width: 100%;
  height: 100vh !important;
}

.swiper-slide,
.hero-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 80px;
  box-sizing: border-box;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: none;
  width: 80%;
  text-align: left;
  padding: 0 60px;
  margin-top: 160px;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 20px;
  color:#ec1b22!important; /* biru korporat */
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.9);
}

.hero-content p {
  font-size: 20px;
  line-height: 1.6;
  color: #ddd;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.btn-primary {
  background-color: #b90000;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #900000;
}

.swiper-pagination {
  bottom: 20px !important;
}
.hero-welcome {
  background: linear-gradient(to bottom, rgba(185, 0, 0, 0.4), rgba(185, 0, 0, 0.6)), url('../images/traffic.png') center/cover no-repeat;
  color: #fff;
  padding: 120px 20px 140px;
  text-align: center;
}
.hero-inner {
  max-width: 800px;
  margin: auto;
  animation: fadeInUp 1s ease;
}
.hero-inner h3 {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 10px;
  color: #ffffff;
}

.hero-inner h1 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-inner p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #ddd;
}

.hero-btn {
  padding: 12px 30px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #fff;
  color: #b90000;
}

/* Simple fade animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* === OUR CORE EXPERTISE === */
.services-section {
  position: relative;
  background-size: cover;
  padding: 40px 20px 100px;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.8));
  z-index: 0;
}

.services-section > * {
  position: relative;
  z-index: 1;
}

/* Tajuk utama */
.services-section h2 {
  font-size: 40px;
  font-weight: 800;
  color: #e53935; /* atau cuba #ff4d4d */
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
}

/* Ikon */
.service-card i {
  color: #f44336; /* Tomato merah lembut */
  font-size: 36px;
  margin-bottom: 15px;
}


/* Perenggan pembuka */
.services-section p.intro {
  font-size: 18px;
  color: #e0e0e0;
  margin: 0 auto 40px;
  max-width: 700px;
  line-height: 1.6;
}

/* Kad servis */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card i {
  color: #b90000;
  font-size: 36px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.service-card p {
  color: #d5d5d5;
  font-size: 15px;
  line-height: 1.5;
}

  .service-card.with-bg {
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5), 0 0 5px rgba(185, 0, 0, 0.2);
  }

  .service-card.with-bg .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* mask hitam separa transparent */
    border-radius: 12px;
    z-index: 2;
  }

  .service-card.with-bg i,
  .service-card.with-bg h3,
  .service-card.with-bg p {
    position: relative;
    z-index: 3;
  }

/* === WHY CHOOSE US === */
.why-choose-section {
  background: linear-gradient(to bottom, #fafafa, #f0f0f0); /* 🌤 gradient soft */
  padding: 80px 20px;
  text-align: center;
}


.why-choose-section h2 {
  color: #b90000;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: bold;
}

.why-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.why-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  max-width: 320px;
  flex: 1 1 280px;
  transition: transform 0.3s ease;
}

.why-card i {
  font-size: 40px;
  color: #b90000;
  margin-bottom: 15px;
}

.why-card h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.why-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Optional hover effect */
.why-card:hover {
  transform: translateY(-5px);
}



/* === SAFETY SECTION === */
/* === SAFETY SECTION POLISHED === */
.safety-section {
  background: url('../images/ted14.jpg') center/cover no-repeat;
  position: relative;
  color: white;
  padding: 100px 20px;
  text-align: center;
  border-top: 6px solid #b90000;
  border-bottom: 1px solid #ddd;
  overflow: hidden;
}

/* Overlay gelap dengan gradient dan blur */
.safety-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.3));
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1;
}

/* Konten di atas imej */
.safety-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
}

/* Tajuk */
.safety-content h2 {
  font-size: 34px;
  color: #fff;
  margin-bottom: 25px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

/* Perenggan & senarai */
.safety-content p,
.safety-content ul li {
  font-size: 17px;
  color: #eaeaea;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Senarai bullet */
.safety-content ul {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.safety-content ul li {
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon dalam bullet */
.safety-content ul li i {
  color: #ff4444;
  margin-right: 10px;
  font-size: 16px;
}
.btn-learn-more {
  display: inline-block;
  margin-top: 25px;
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-learn-more:hover {
  background-color: #b90000;
  border-color: #b90000;
  color: #fff;
}


/* === CLIENTS SECTION === */
.clients-teaser {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.clients-teaser h2 {
  font-size: 32px;
  color: #222;
  margin-bottom: 15px;
  position: relative;
}

.clients-teaser h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #b90000;
  margin: 12px auto 0;
  border-radius: 2px;
}

.clients-teaser p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 25px;
}

.client-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.client-buttons a {
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-outline {
  border: 2px solid #b90000;
  color: #b90000;
  background: transparent;
}

.btn-outline:hover {
  background-color: #b90000;
  color: white;
}
.clients-teaser {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.clients-teaser h2 {
  font-size: 32px;
  color: #b90000;
  margin-bottom: 10px;
  font-weight: 700;
}

.clients-teaser .subtitle {
  font-size: 16px;
  color: #444;
  margin-bottom: 5px;
}

.clients-teaser p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.client-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.client-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 500;
}

.btn-primary {
  background-color: #b90000;
  color: white;
  border: none;
}

.btn-outline {
  border: 2px solid #b90000;
  color: #b90000;
  background: transparent;
}

.btn-primary:hover,
.btn-outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.btn-outline:hover {
  background-color: #b90000;
  color: white;
}

.client-buttons i {
  font-size: 16px;
}


/* === CONTACT SHORTCUT SECTION === */
.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 50px auto;
  max-width: 1100px;
  padding: 0 20px;
}

.stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.stat-card .icon {
  font-size: 36px;
  color: #b90000;
  margin-bottom: 12px;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #b90000;
}

.stat-label {
  font-size: 13px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

/* === FOOTER SECTION === */
.site-footer {
  background-color: #111d2d;
  color: #ccc;
  padding: 60px 20px 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  max-width: 140px;
  margin-bottom: 12px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-col p,
.footer-col a,
.footer-links a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
}

.footer-col a:hover,
.footer-links a:hover {
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a i {
  font-size: 18px;
  color: #ccc;
  transition: color 0.3s;
}

.social-icons a:hover i {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #2c3e50;
  margin-top: 40px;
  font-size: 13px;
  color: #888;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact-icons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* === Floating Social Buttons === */
/* === Floating Social Buttons === */
.floating-social {
  position: fixed;
  right: 20px;
  bottom: 290px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: fadeIn 1s ease-in-out;
}

.floating-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.floating-social a.fb { background-color: #3b5998; }
.floating-social a.yt { background-color: #FF0000; }
.floating-social a.tt { background-color: #000; }

.floating-social a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

/* === Hover Panels === */
.fb-popup,
.yt-popup,
.tiktok-popup {
  position: fixed;
  right: 60px;
  bottom: 80px;
  width: 360px;
  max-height: 500px; /* ✅ Kawal tinggi maksima */
  overflow-y: auto;   /* ✅ Scroll bila tinggi lebih */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}


.fb-popup.show,
.yt-popup.show,
.tiktok-popup.show {
  opacity: 1;
  visibility: visible;
}


/* === Mobile View === */
@media (max-width: 768px) {
  .floating-social {
    right: 10px;
    bottom: 120px; /* cukup jauh dari bawah, tak terlalu tinggi */
    gap: 6px;
  }

  .floating-social a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .floating-social a::after {
    font-size: 10px;
    right: 45px;
  }

.fb-popup,
.yt-popup,
.tiktok-popup {
  right: 60px;
  bottom: 80px; /* ✅ BUKAN top: -250px */
  width: 90vw;
  max-width: 320px;
  max-height: 400px;
  font-size: 14px;
  border-radius: 8px;
  overflow: hidden;
}


  .tiktok-popup blockquote.tiktok-embed {
    width: 100% !important;
    max-width: 100% !important;
    min-width: auto !important;
  }
}
   #back-to-top {
  position: fixed;
  bottom: 100px; /* dinaikkan dari 30px supaya tidak bertindih dengan butang WhatsApp */
  right: 30px;
  background-color: #b90000;
  color: #fff;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  font-size: 18px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}
    #back-to-top:hover {
      background-color: #880000;
      transform: translateY(-3px);
    }
	
	@media (max-width: 768px) {
  .hero-content {
    padding: 0 20px;
    text-align: center;
  }
}
/* PRELOADER WRAPPER */
 #preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000; /* kekalkan hitam malam */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s ease, background-color 1s ease;
}


.preloader-inner {
  text-align: center;
}

.preloader-logo-flip {
  width: 120px;
  max-width: 80%;
  height: auto;
  animation: flipX 1.2s infinite ease-in-out;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  margin-bottom: 20px;
}

@keyframes flipX {
  0% { transform: rotateY(0deg); }
  50% { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}

/* === TYPEWRITER EFFECT === */
.typewriter-text {
  font-family: 'Poppins', sans-serif;
  color: #b90000;
  font-size: 20px;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #b90000;
  width: 0;
  animation: typing 2s steps(24, end) forwards, blink 0.7s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 230px; } /* Adjust based on text length */
}

@keyframes blink {
  50% { border-color: transparent; }
}

/* === LOADING DOTS === */
.loading-dots {
  font-size: 16px;
  color: #333;
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
}

.loading-dots span {
  animation: blinkDot 1.4s infinite;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blinkDot {
  0%, 20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* DEFAULT: Siang */
#preloader.day {
  background-color: #fff;
  color: #b90000;
}

#preloader.night {
  background-color: #000;
  color: #ffffff;
}

#preloader.night .typewriter-text {
  border-right: 2px solid #fff;
  color: #fff;
}

#preloader.night .loading-dots {
  color: #ccc;
}
#preloader.hidden {
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.5s ease;
}




/* Animasi */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
@keyframes textPulse {
  0%, 100% {
    text-shadow: 0 0 10px rgba(255,255,255,0.7);
  }
  50% {
    text-shadow: 0 0 15px rgba(255,255,255,1);
  }
}

.hero-caption h1 {
  animation: textPulse 3s ease-in-out infinite;
}


/* Responsif */
@media (max-width: 768px) {
  .hero-caption h1 {
    font-size: 22px;
  }

  .hero-caption p {
    font-size: 14px;
  }

  .hero-caption .hero-btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}
.client-stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.client-stat-box {
  flex: 1 1 220px;
  border-radius: 10px;
  padding: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.client-stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.stat-number {
  font-size: 32px;
  color: #b90000;
  margin: 0;
}

.stat-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
  margin-top: 6px;
}

@media (max-width: 768px) {
  .client-stat-box {
    flex: 1 1 45%;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* === BASE === */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: #f4f4f4;
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

/* === HERO CAPTION FINAL - CLEAN VERSION === */
.hero-caption {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
  padding: 20px 30px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  max-width: 90%;
}

.main-line {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #ffffff, #ff5a5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sub-line {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  margin-top: 8px;
  text-shadow: 0 0 3px rgba(0,0,0,0.5);
}
@media screen and (max-width: 600px) {
  .main-line {
    font-size: 16px;
  }

  .sub-line {
    font-size: 13px;
  }

  .hero-caption {
    padding: 16px 20px;
  }
}



/* === ANIMATIONS === */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes textPulse {
  0%, 100% {
    text-shadow: 0 0 10px rgba(255,255,255,0.7);
  }
  50% {
    text-shadow: 0 0 15px rgba(255,255,255,1);
  }
}

/* === RESPONSIVE HERO === */
@media (max-width: 768px) {
  .hero-caption h1 {
    font-size: 22px;
  }
  .hero-caption p {
    font-size: 14px;
  }
  .hero-caption .hero-btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}
