/* ============================================================
   OGUMY – Static Recreation of Divi Theme Styles
   Fonts: Lato (hero), Merriweather (feature headings), Poppins (body),
          Roboto (feature card headings)
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   HERO SECTION
   Background: green gradient 271deg #00844b → #1DC476
   Padding: 100px top, 60px bottom
   ============================================================ */
.hero {
  background: linear-gradient(271deg, #00844b 0%, #1dc476 100%);
  padding: 100px 0 60px;
  overflow: hidden;
  position: relative;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-col-left {
  flex: 1;
  max-width: 520px;
}

.hero-col-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero headings – Lato 900 48px white */
.hero-title {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.1;
  color: #ffffff;
  text-transform: none;
  letter-spacing: 0;
}

.hero-title + .hero-title {
  margin-top: 0;
}

/* Hero description */
.hero-description {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 24px;
  max-width: 460px;
}

/* Hero social icons – colored rounded squares */
.hero-social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.social-icon:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.social-icon svg {
  width: 22px;
  height: 22px;
}

.social-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-facebook {
  background: #3b5998;
}

.social-twitter {
  background: #1da1f2;
}

/* Hero button – green pill, white text, uppercase */
.hero-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 36px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid #ffffff;
  border-radius: 30px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.hero-btn:hover {
  background: #ffffff;
  color: #1dc476;
}

/* Store badges */
.hero-stores {
  margin-top: 28px;
}

.store-badge img {
  height: 50px;
  width: auto;
}

/* Hero truck image – transparent PNG */
.hero-truck-img {
  max-width: 480px;
  width: 100%;
  height: auto;
  animation: floatUp 0.8s ease-out;
}

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

/* ============================================================
   FEATURES SECTION
   Background: gradient 189deg #fcf6ee 19% → #ffffff 36%
   ============================================================ */
.features {
  background: linear-gradient(189deg, #fcf6ee 19%, #ffffff 36%);
  padding: 80px 0 40px;
}

/* Features intro – centered heading + green divider */
.features-intro {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: left;
}

.features-heading {
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
  color: #333;
}

.features-heading .text-green {
  color: #1dc476;
}

.green-divider {
  width: 90px;
  height: 3px;
  background: #5db778;
  margin-top: 15px;
}

.features-intro-text {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  line-height: 1.8;
  color: #666;
  margin-top: 30px;
}

/* Feature rows – alternating image + card */
.feature-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 0;
  padding-bottom: 100px;
}

.feature-row:first-of-type {
  margin-top: 60px;
}

.feature-row-reverse {
  flex-direction: row-reverse;
}

.feature-image {
  flex: 1;
  min-height: 400px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.feature-card {
  flex: 1;
  background: #f5f9fb;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-title {
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
  color: #4646c4;
}

.feature-text {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.9;
  color: #7e7f94;
  margin-top: 16px;
}

/* ============================================================
   BOTTOM SECTION
   ============================================================ */
.bottom-section {
  background: #ffffff;
  padding: 80px 0 60px;
  border-top: 1px solid #eee;
}

.bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.bottom-col {
  flex: 1;
  min-width: 220px;
}

.bottom-col-newsletter {
  flex: 1.5;
}

.bottom-heading {
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: #333;
  margin-bottom: 16px;
}

.bottom-heading-follow {
  margin-top: 36px;
}

.bottom-subtext {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #666;
  margin-bottom: 16px;
}

/* Subscribe form */
.subscribe-form {
  display: flex;
  gap: 0;
  max-width: 400px;
}

.subscribe-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 4px 0 0 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.subscribe-input:focus {
  border-color: #1dc476;
}

.subscribe-btn {
  padding: 12px 24px;
  background: #1dc476;
  color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.subscribe-btn:hover {
  background: #17a864;
}

/* Bottom social icons – circles */
.bottom-social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.bottom-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.bottom-social-icon:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.bottom-social-icon svg {
  width: 18px;
  height: 18px;
}

.bsi-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.bsi-facebook {
  background: #3b5998;
}

.bsi-twitter {
  background: #1da1f2;
}

.bsi-linkedin {
  background: #0077b5;
}

/* Bottom links */
.bottom-links li {
  margin-bottom: 10px;
}

.bottom-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #666;
  transition: color 0.2s;
}

.bottom-links a:hover {
  color: #1dc476;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #f8f8f8;
  padding: 24px 0;
  border-top: 1px solid #eee;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 32px;
  height: 32px;
}

.footer-copyright {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #999;
}

/* Language switcher */
.footer-lang {
  display: flex;
  gap: 8px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  border-color: #1dc476;
  color: #1dc476;
}

.lang-btn.lang-active {
  background: #1dc476;
  border-color: #1dc476;
  color: #fff;
}

.lang-flag {
  font-size: 16px;
  line-height: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-col-left {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-social {
    justify-content: center;
  }

  .hero-truck-img {
    max-width: 380px;
  }

  .features-intro {
    text-align: center;
  }

  .green-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .feature-row,
  .feature-row-reverse {
    flex-direction: column;
  }

  .feature-image {
    min-height: 300px;
  }

  .bottom-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 60px 0 40px;
  }

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

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

  .hero-truck-img {
    max-width: 280px;
  }

  .features-heading {
    font-size: 28px;
  }

  .features-intro-text {
    font-size: 16px;
  }

  .feature-card {
    padding: 40px 24px;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-text {
    font-size: 15px;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-input {
    border-right: 1px solid #ccc;
    border-radius: 4px;
  }

  .subscribe-btn {
    border-radius: 4px;
  }
}
