/* index.css — Homepage specific styles (ACTUAL design from original site) */

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  min-height: 500px;
}

.hero-slide.active {
  display: flex;
  opacity: 1;
}

.hero-container {
  max-width: 900px;
  text-align: center;
  color: white;
  padding: 60px 20px;
  animation: slideUp 0.8s ease-in-out;
}

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

.hero-title {
  font-size: clamp(28px, 8vw, 48px);
  font-weight: 700;
  font-family: var(--font-family-heading);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 400;
  font-family: var(--font-family-base);
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.hero-dot.active {
  background-color: white;
  width: 30px;
  border-radius: 6px;
}

/* VISION SECTION */
.vision-section {
  padding: 60px 20px;
  background-color: var(--color-bg-light);
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.vision-item {
  text-align: center;
  padding: 20px;
  background: rgb(255, 0, 0);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.vision-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.vision-icon {
  width: 40px;
  height: 40px;
  margin: auto;
  margin-bottom: 15px;
  align-items: center;
}

.vision-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fefefe;
  margin: 0;
}

/* ABOUT HERO SECTION */
.about-hero-section {
  padding: 60px 20px;
  background-color: white;
  text-align: center;
}

.about-hero-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 15px;
}

.about-hero-header .about-highlight {
  color: var(--color-primary);
  font-size: 16px;
  margin-bottom: 20px;
}

.about-hero-header p {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

/* =========================================================
   ABOUT US HEADER
   ========================================================= */

.about-hero-section {
  padding: 40px 20px 20px;
  background: #ffffff;
}

.about-hero-header {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-hero-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #102f56;
  margin-bottom: 10px;
}

.about-highlight {
  color: #c1272d;
  font-size: 13px;
  margin-bottom: 15px;
}

.about-hero-header > p:last-child {
  font-size: 13px;
  line-height: 1.7;
  color: #667085;
  margin: 0 auto;
  max-width: 850px;
}


/* =========================================================
   ABOUT CAROUSEL SECTION
   ========================================================= */

.about-carousel-section {
  padding: 20px 20px 40px;
  background: #ffffff;
}

.about-carousel-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}


/* =========================================================
   CAROUSEL
   ========================================================= */

.about-carousel {
  position: relative;
  width: 100%;
  height: 420px;

  display: flex;

  overflow: hidden;

  border-radius: 10px;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);

  background: #f5f5f5;
}


/* =========================================================
   IMAGE BLOCKS
   ========================================================= */

.about-carousel-slide {
  position: relative;

  width: 50%;
  height: 100%;

  flex: 0 0 50%;

  overflow: hidden;

  transition: transform 0.7s ease-in-out;
}


/* Left image */
.about-slide-left {
  transform: translateX(0);
}


/* Right image */
.about-slide-right {
  transform: translateX(0);
}


/* =========================================================
   IMAGE
   ========================================================= */

.carousel-img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}


/* =========================================================
   ANIMATION STATES
   ========================================================= */

/*
   During animation:

   LEFT IMAGE
   moves completely out to the left.

   RIGHT IMAGE
   moves from right block to left block.
*/

.about-slide-left.slide-out {
  transform: translateX(-100%);
}

.about-slide-right.slide-to-left {
  transform: translateX(-100%);
}


/* =========================================================
   DOT NAVIGATION
   ========================================================= */

.carousel-nav-dots {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 8px;

  margin-top: 14px;
}

.carousel-dot {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background-color: #bdbdbd;

  cursor: pointer;

  transition: all 0.3s ease;
}

.carousel-dot:hover {
  background-color: #c1272d;
}

.carousel-dot.active {
  width: 30px;
  border-radius: 10px;

  background-color: #c1272d;
}


/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 992px) {

  .about-carousel {
    height: 350px;
  }

  .about-hero-header h2 {
    font-size: 32px;
  }

}


/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 768px) {

  .about-hero-section {
    padding: 35px 20px 15px;
  }

  .about-hero-header h2 {
    font-size: 28px;
  }

  .about-hero-header > p:last-child {
    font-size: 12px;
  }

  .about-carousel-section {
    padding: 15px 15px 30px;
  }

  .about-carousel {
    height: 280px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 576px) {

  .about-hero-header h2 {
    font-size: 25px;
  }

  .about-highlight {
    font-size: 12px;
  }

  .about-carousel {
    height: 220px;
    border-radius: 8px;
  }

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

  .carousel-dot.active {
    width: 25px;
  }

}
/* NAICON SERVICES SECTION */
.naicon-services-section {
  padding: 80px 20px;
  background-color: white;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.naicon-services-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 30px;
}

.naicon-services-section p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  max-width: 1000px;
  margin: 0 auto;
}

/* TRUSTED LEGACY SECTION */
.trusted-legacy-section {
  padding: 80px 20px;
  background-color: var(--color-bg-light);
}

.trusted-legacy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.trusted-legacy-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted-legacy-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.trusted-legacy-text h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.trusted-legacy-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 20px;
}

.about-left h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-highlight {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.about-right h3 {
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: 0;
}

.about-right h4 {
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.about-right p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
}

/* CTA BANNER */
.cta-banner {
  padding: 60px 20px;
  text-align: center;
  margin: 60px 0;
}

.cta-banner h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: rgb(255, 254, 254);
}

.cta-banner .btn-light {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
}

/* SERVICES SECTION */
.services-section {
  padding: 80px 20px;
  background-color: white;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--color-text-dark);
}

.section-title .highlight {
  color: var(--color-primary);
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--color-text);
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 48px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-text-dark);
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 12px;
}

.service-link {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  margin-top: 15px;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: var(--color-primary-dark);
}

/* INDUSTRIES SECTION */
.industries-section {
  padding: 80px 20px;
  background-color: var(--color-bg-light);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-item {
  text-align: center;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.industry-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.industry-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--color-bg-light);
  position: relative;
}

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

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

.industry-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin: 0;
  padding: 15px 10px;
  background: linear-gradient(135deg, rgba(193, 39, 45, 0.9), rgba(193, 39, 45, 0.8));
  position: relative;
}

/* VALUE PROPOSITION SECTION */
.value-section {
  padding: 80px 20px;
  background: white;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-item {
  text-align: center;
  padding: 40px 30px;
  background: var(--color-bg-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.value-item:hover {
  background: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.value-item i {
  font-size: 48px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.value-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-text-dark);
}

.value-item p {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.6;
}

/* STATS SECTION */
.stats-section {
  padding: 80px 20px;
}

.stats-section .section-title {
  color: white;
  margin-bottom: 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  font-family: var(--font-family-heading);
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

/* CLIENTS SECTION */
.clients-section {
  padding: 80px 20px;
  background: white;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 50px auto 0;
}

.client-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: white;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  min-height: 160px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.client-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 6px 20px rgba(193, 39, 45, 0.15);
  transform: translateY(-5px);
}

.client-card img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

/* CELEBRATION SECTION */
.celebration-section {
  padding: 80px 20px;
  background: var(--color-bg-light);
}

.celebration-carousel-wrapper {
  max-width: 1200px;
  margin: 50px auto 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.celebration-carousel-container {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.celebration-carousel {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: white;
  align-items: center;
  min-height: 300px;
  transition: transform 0.6s ease-in-out;
}

.celebration-carousel-slide {
  position: relative;
  width: 31%;
  height: 260px;
  flex: 0 0 31%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.celebration-carousel-slide:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.celebration-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Arrow Navigation */
.celebration-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.celebration-arrow:hover {
  background: var(--color-primary-dark);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.celebration-arrow:active {
  transform: scale(0.95);
}

.celebration-arrow-left {
  order: -1;
}

.celebration-arrow-right {
  order: 3;
}

/* Responsive for 3 visible slides */
@media (max-width: 1024px) {
  .celebration-carousel-wrapper {
    gap: 15px;
  }

  .celebration-carousel {
    gap: 15px;
    padding: 15px;
  }

  .celebration-carousel-slide {
    width: 32%;
    height: 240px;
  }

  .celebration-arrow {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .celebration-carousel-wrapper {
    gap: 12px;
    flex-wrap: wrap;
  }

  .celebration-carousel-container {
    width: 100%;
    order: 2;
  }

  .celebration-carousel {
    min-height: 250px;
    gap: 12px;
    padding: 12px;
  }

  .celebration-carousel-slide {
    width: 48%;
    height: 200px;
  }

  .celebration-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .celebration-arrow-left {
    order: 1;
  }

  .celebration-arrow-right {
    order: 3;
  }
}

@media (max-width: 576px) {
  .celebration-carousel-wrapper {
    gap: 10px;
  }

  .celebration-carousel {
    min-height: 220px;
    gap: 10px;
    padding: 10px;
  }

  .celebration-carousel-slide {
    width: 100%;
    height: 180px;
  }

  .celebration-arrow {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .section-title {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .industries-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .about-carousel {
    min-height: 300px;
  }

  .celebration-carousel {
    min-height: 350px;
  }

  .trusted-legacy-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .client-card {
    min-height: 140px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .hero-slide {
    min-height: 350px;
  }

  .hero-container {
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .vision-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
  }

  .vision-item {
    padding: 15px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .industry-image-wrapper {
    height: 150px;
  }

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

  .stat-number {
    font-size: 36px;
  }

  .about-carousel {
    min-height: 250px;
  }

  .celebration-carousel {
    min-height: 300px;
  }

  .carousel-nav-dots,
  .celebration-carousel-dots {
    gap: 8px;
  }

  .carousel-dot,
  .celebration-dot {
    width: 10px;
    height: 10px;
  }

  .carousel-dot.active,
  .celebration-dot.active {
    width: 24px;
  }

  .about-hero-section {
    padding: 40px 20px;
  }

  .about-hero-header h2 {
    font-size: 28px;
  }

  .naicon-services-section {
    padding: 40px 20px;
  }

  .naicon-services-section h2 {
    font-size: 24px;
  }

  .trusted-legacy-section {
    padding: 40px 20px;
  }

  .trusted-legacy-text h3 {
    font-size: 24px;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .client-card {
    min-height: 120px;
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .hero-slide {
    min-height: 300px;
  }

  .hero-title {
    font-size: 20px;
  }

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

  .section-title {
    font-size: 22px;
  }

  .cta-banner h2 {
    font-size: 20px;
  }

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

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12px;
  }

  .service-card {
    padding: 20px;
  }

  .about-hero-header h2 {
    font-size: 22px;
  }

  .naicon-services-section h2 {
    font-size: 20px;
  }

  .naicon-services-section p {
    font-size: 14px;
  }

  .trusted-legacy-content {
    gap: 20px;
  }

  .trusted-legacy-text h3 {
    font-size: 20px;
  }

  .trusted-legacy-text p {
    font-size: 13px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .client-card {
    min-height: 100px;
    padding: 10px;
    border: 1px solid #e5e5e5;
  }

  .about-carousel {
    min-height: 200px;
  }

  .celebration-carousel {
    min-height: 250px;
  }
}


/* =========================================
   HERO SECTION
   ========================================= */

.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}


/* =========================================
   HERO SLIDER
   ========================================= */

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
}


/* =========================================
   INDIVIDUAL SLIDES
   ========================================= */

.hero-slide {
  position: relative;

  width: 100%;
  min-height: 600px;

  display: none;
  opacity: 0;

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  transition: opacity 0.6s ease-in-out;
}


/* Active slide */

.hero-slide.active {
  display: flex;
  opacity: 1;
}


/* =========================================
   SLIDE 1
   CLEANING IMAGE
   ========================================= */

.hero-slide-1 {
  background-image: url("images/hero-section/hero-1.png");
}


/* =========================================
   SLIDE 2
   SECURITY IMAGE
   ========================================= */

.hero-slide-2 {
  background-image: url("images/hero-section/hero-2.png");
}


/* =========================================
   SLIDE 3
   PROPERTY MANAGEMENT IMAGE
   ========================================= */

.hero-slide-3 {
  background-image: url("images/hero-section/hero-2.png");
}


/* =========================================
   IMAGE OVERLAY
   ========================================= */

.hero-overlay {
  position: absolute;

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  z-index: 1;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.15) 75%,
    rgba(0, 0, 0, 0.05) 100%
  );
}


/* =========================================
   CONTENT WRAPPER
   ========================================= */

.hero-content-wrapper {
  position: relative;

  z-index: 2;

  width: 100%;
  min-height: 600px;

  display: flex;
  align-items: center;

  /* padding: 60px 7%; */
}


/* =========================================
   HERO TEXT CONTAINER
   ========================================= */

.hero-container {
  width: 50%;
  max-width: 650px;

  color: #ffffff;

  position: relative;
  z-index: 3;
}


/* =========================================
   HERO TITLE
   ========================================= */

.hero-title {
  margin: 0 0 25px 0;

  font-family: var(--font-family-heading);

  font-size: 48px;
  font-weight: 700;

  line-height: 1.2;

  color: #ffffff;
}


/* =========================================
   HERO DESCRIPTION
   ========================================= */

.hero-subtitle {
  margin: 0 0 35px 0;

  font-size: 16px;
  line-height: 1.7;

  color: rgba(255, 255, 255, 0.95);

  max-width: 600px;
}


/* =========================================
   BUTTON
   ========================================= */

.hero-container .btn {
  padding: 12px 30px;

  font-size: 15px;
  font-weight: 600;

  border-radius: 6px;

  border: none;

  transition: all 0.3s ease;
}


/* Dark button */

.hero-container .btn-dark {
  background-color: #212529;
  color: #ffffff;
}

.hero-container .btn-dark:hover {
  background-color: #000000;
  transform: translateY(-2px);
}


/* Light button */

.hero-container .btn-light {
  background-color: #ffffff;
  color: #212529;
}

.hero-container .btn-light:hover {
  background-color: #f1f1f1;
  transform: translateY(-2px);
}


/* =========================================
   SLIDE 2 - RED OVERLAY
   ========================================= */

.hero-slide-2 .hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(193, 39, 45, 0.90) 0%,
    rgba(193, 39, 45, 0.72) 40%,
    rgba(193, 39, 45, 0.30) 75%,
    rgba(193, 39, 45, 0.10) 100%
  );
}


/* =========================================
   SLIDE 3 OVERLAY
   ========================================= */

.hero-slide-3 .hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.42) 40%,
    rgba(0, 0, 0, 0.12) 75%,
    rgba(0, 0, 0, 0.05) 100%
  );
}


/* =========================================
   SLIDER DOTS
   ========================================= */

.hero-controls {
  position: absolute;

  left: 50%;
  bottom: 25px;

  transform: translateX(-50%);

  display: flex;
  align-items: center;

  gap: 12px;

  z-index: 20;
}


/* Dot */

.hero-dot {
  display: block;

  width: 11px;
  height: 11px;

  border-radius: 50%;

  background-color: rgba(255, 255, 255, 0.65);

  border: 1px solid rgba(0, 0, 0, 0.2);

  cursor: pointer;

  transition: all 0.3s ease;
}


/* Active dot */

.hero-dot.active {
  width: 30px;

  border-radius: 20px;

  background-color: var(--color-primary);

  border-color: var(--color-primary);
}


/* Hover */

.hero-dot:hover {
  background-color: var(--color-primary);
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 992px) {

  .hero-slider {
    min-height: 550px;
  }

  .hero-slide {
    min-height: 550px;
  }

  .hero-content-wrapper {
    min-height: 550px;

    padding: 50px 6%;
  }

  .hero-container {
    width: 65%;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {

  .hero-slider {
    min-height: 500px;
  }

  .hero-slide {
    min-height: 500px;

    background-position: center center;
  }

  .hero-content-wrapper {
    min-height: 500px;

    padding: 40px 25px;

    justify-content: center;

    text-align: center;
  }

  .hero-container {
    width: 100%;
    max-width: 600px;
  }

  .hero-title {
    font-size: 30px;

    margin-bottom: 18px;
  }

  .hero-subtitle {
    font-size: 14px;

    line-height: 1.6;

    margin-bottom: 25px;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.55);
  }

  .hero-slide-2 .hero-overlay {
    background: rgba(193, 39, 45, 0.65);
  }

}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 576px) {

  .hero-slider {
    min-height: 450px;
  }

  .hero-slide {
    min-height: 450px;
  }

  .hero-content-wrapper {
    min-height: 450px;

    padding: 35px 20px;
  }

  .hero-title {
    font-size: 24px;

    line-height: 1.25;

    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 13px;

    line-height: 1.6;

    margin-bottom: 20px;
  }

  .hero-container .btn {
    padding: 10px 25px;

    font-size: 13px;
  }

  .hero-controls {
    bottom: 15px;

    gap: 8px;
  }

  .hero-dot {
    width: 9px;
    height: 9px;
  }

  .hero-dot.active {
    width: 25px;
  }

}