/* ===============================
   Atlas Hero Section Styles
   =============================== */

.atlas-hero {
  padding: 60px 40px;
  color: #fff;
  background-color: #094785 !important; 
}

.atlas-hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: nowrap;
}

.atlas-hero-text {
   flex: 0 0 50%;
  max-width: 50%;
  padding-left: 0;     /* ✅ remove indent */
  margin-left: 0;      /* ✅ just in case */
}

.atlas-hero-text .section-label {
 font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
  opacity: 0.8;
  margin-left: 20px;     /* ✅ remove any shift */
  padding-left: 0;    /* ✅ ensures left-aligned */
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px; /* vertical gap between title, subtitle, buttons */
}

.hero-title {
  display: block;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}

.hero-subtitle {
font-size: 18px;
  color: #f0f0f0;
  line-height: 1.5;
  margin-bottom: 30px !important; 
  margin-top: 30px !important;/* 👈 Adjust value to match button spacing */
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
 
}

.hero-buttons a {
  opacity: 1 !important;
  transform: translateY(0px) !important;
  font-size: 16px;
  padding: 14px 24px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero-buttons a:hover {
  transform: scale(1.04); /* ✅ scale effect on hover */
}

.btn-red {
  background-color: #e60023;
  color: white;
}

.btn-red:hover {
  background-color: #b8001b;
}

.btn-secondary {
  background-color: #2a6f99;
  color: white;
}

.btn-secondary:hover {
  background-color: #3b8fc4;
}

.atlas-hero-image {
  flex: 0 0 45%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 0;
}

.atlas-hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}


/* ===============================
   Responsive Adjustments
   =============================== */

@media (max-width: 1024px) {
  .atlas-hero {
    padding: 40px 20px;
  }

  .atlas-hero-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .atlas-hero-text {
    flex: 1 1 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0;
  }

  .hero-title {
    font-size: 32px;
    text-align: left;
  }

  .hero-subtitle {
    font-size: 16px;
    text-align: left;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .hero-buttons a {
    width: 100%; /* makes buttons full-width */
    text-align: center;
  }

  .atlas-hero-image {
    display: none;
  }
}

/* ==========================================================
   SEAKER HERO CTA BUTTONS — SILVER PRIMARY STYLE
   ========================================================== */

/* ===============================
   ATLAS HERO BUTTON ALIGNMENT FIX (non-intrusive)
================================ */
.atlas-hero .hero-buttons {
  display: flex;
  justify-content: flex-start;   /* keep left alignment consistent with hero */
  align-items: center;
  gap: 16px;                     /* space between buttons */
  flex-wrap: wrap;
  margin-top: 24px;
}

@media (max-width: 992px) {
  .atlas-hero .hero-buttons {
    justify-content: center;     /* center on smaller screens */
  }
}

@media (max-width: 768px) {
  .atlas-hero .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .atlas-hero .hero-buttons a {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}


/* --- PRIMARY CTA (Silver) --- */
.atlas-hero .hero-buttons .btn-primary {
  background-color: #C0C0C0;  /* Classic silver */
  color: #0d0d0d;             /* Dark text for contrast */
  border: none;
  border-radius: 12px;
  padding: 14px 36px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(192, 192, 192, 0.35);
}

.atlas-hero .hero-buttons .btn-primary:hover {
  background-color: #A9A9A9;  /* Darker silver (hover) */
  box-shadow: 0 8px 22px rgba(169, 169, 169, 0.45);
  transform: translateY(-2px);
}

/* --- SECONDARY CTA (Keep Seaker Blue) --- */
.atlas-hero .hero-buttons .btn-secondary {
  background-color: #008BCB;   /* Medium blue */
  color: #ffffff;
  border: 2px solid #00AEEF;
  border-radius: 12px;
  padding: 14px 36px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 174, 239, 0.25);
}

.atlas-hero .hero-buttons .btn-secondary:hover {
  background-color: #00AEEF;   /* Lighter blue on hover */
  border-color: #00AEEF;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(0, 174, 239, 0.4);
  transform: translateY(-2px);
}

/* Common button settings */
.atlas-hero .hero-buttons .btn {
  text-align: center;
  min-width: 180px;
}
