/* ===== GLOBAL ===== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f5f7;
  color: #222;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #111827, #374151);
  color: white;
  padding: 70px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 20px;
  max-width: 760px;
  margin: 10px auto;
  line-height: 1.5;
}

/* ===== HERO BUTTON ===== */
.button {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 24px;
  background: #22c55e;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

.button:hover {
  background: #16a34a;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 24px;
}

/* ===== GRID ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

/* ===== CARD ===== */
.card {
  background: white;
  padding: 26px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.card h3 {
  margin-top: 0;
  font-size: 24px;
}

.card p {
  line-height: 1.6;
  font-size: 16px;
  color: #444;
}

/* FORCE card links to ignore browser purple */
.card h3 a:link,
.card h3 a:visited {
  color: #111827;
  text-decoration: none;
  font-weight: bold;
}

.card h3 a:hover {
  color: #f28c28;
}

/* ===== HIGHLIGHT ===== */
.highlight {
  background: #fff;
  border-left: 6px solid #111827;
  padding: 28px;
  border-radius: 12px;
  margin-top: 30px;
}

/* ===== CONTACT ===== */
.contact-section {
  text-align: center;
  padding: 70px 20px;
  background: #111827;
  color: #fff;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.contact-btn {
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

.whatsapp-btn {
  background: #25D366;
  color: white;
}

.email-btn {
  background: #f28c28;
  color: #111;
}

/* ===== SOCIAL ===== */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  max-width: 400px;
  margin: 0 auto;
}

.social-links img {
  width: 28px;
  opacity: 0.6;
}

.social-links img:hover {
  opacity: 1;
}

/* ===== FOOTER ===== */
.footer {
  background: #111827;
  color: white;
  text-align: center;
  padding: 28px;
}

/* ===== NAV CONTAINER ===== */
.nav {
  background: #111827;
  color: white;
  padding: 16px 20px;

  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 20px;
  font-weight: bold;
  color: white;
}

.menu-toggle {
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  color: white;
}

.nav-links {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}

.nav-links a,
.nav-links a:link,
.nav-links a:visited {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f28c28;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .menu-toggle {
    display: block;
    color: white;
  }

  .product-card {
    min-width: calc(100vw - 60px);
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    border-radius: 8px;
    padding: 10px;
    margin-top: 12px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a,
  .nav-links a:link,
  .nav-links a:visited {
    color: #111;
    padding: 10px;
    border-radius: 6px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: #f4f5f7;
    color: #f28c28;
  }
  
   /* ✅ ADD HERE */
  .application-scroll-wrapper .product-card img {
    height: 260px;
  }

  .story-card img {
  height: 200px;
  }
}

/* ===== DESKTOP ===== */
@media (min-width: 900px) {
  .product-scroll {
    max-width: 1100px;
    margin: 0 auto;
    
    padding-left: 60px;
    padding-right: 60px;
  }
  
  .scroll-btn.left {
    left: calc(50% - 550px);   /* align with content edge */
  }

  .scroll-btn.right {
    right: calc(50% - 550px);
  }

  .scroll-btn {
    font-size: 34px;
    padding: 8px 14px;
  }
}

.product-scroll-wrapper {
  position: relative;
  padding: 20px;
  background: #111827;
  display: flex;
  justify-content: center;   /* ADD THIS */
}

.product-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  max-width: 1100px;         /* ADD THIS */
  width: 100%;
}

.product-scroll::-webkit-scrollbar {
  display: none;
}

.product-card {
  min-width: 220px;
  flex: 0 0 auto;
  background: #1f2937;
  border-radius: 12px;
  padding: 16px;
  color: white;
  scroll-snap-align: start;
}

.product-card img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.product-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.product-card p {
  font-size: 14px;
  color: #d1d5db;
}

/* Arrow button */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  background: rgba(0,0,0,0.6);
  border: none;
  color: white;
  font-size: 28px;
  padding: 6px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s ease;  /* ADD THIS */
}

.scroll-btn.left {
  left: 10px;
  right: auto;
}

.scroll-btn.right {
  right: 10px;
}


.story-still {
  background: #f3efe2;
}

.story-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.story-text {
  padding: 34px 24px 44px;
  max-width: 760px;
}

.story-kicker {
  font-size: 16px;
  margin-bottom: 12px;
}

.story-text h2 {
  font-size: 42px;
  line-height: 1.05;
  margin: 0 0 16px;
  color: #111;
}

.story-text p {
  font-size: 18px;
  line-height: 1.5;
  color: #222;
}

.story-btn {
  display: inline-block;
  margin-top: 18px;
  background: #111;
  color: white;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
}

.story-scroll-wrapper {
  position: relative;
  padding: 20px;
  background: #111827;
}

.story-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.story-scroll::-webkit-scrollbar {
  display: none;
}

.story-card {
  min-width: 220px;
  flex: 0 0 auto;
  background: #1f2937;
  border-radius: 12px;
  padding: 16px;
  color: white;
  scroll-snap-align: start;
}

.story-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.story-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.story-card p {
  font-size: 14px;
  color: #d1d5db;
}
