/* ========================================
   Added Fonts: Montserrat & Lora from Google Fonts
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:wght@300;400;500;600;700&display=swap');


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #212529;
}

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

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

ul {
    list-style: none;
}

button, input, textarea {
    font: inherit;
}
.lts-card video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* Style the native controls to blend better (limited browser support) */
.lts-card video::-webkit-media-controls-panel {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}
/* ========================================
   FEATURES SECTION - Horizontal Cards
======================================== */
.features-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 1rem 0;
}

.features-headline {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 4.5vw, 2.7rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  margin-top: 4rem;
  margin-bottom: 4rem;
  max-width: 1200px;
}

.features-headline span {
  color: #fff;
}

.features-cards {
  display: flex;
  gap: 1rem;
  padding-bottom: 4rem;
}

.feature-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-decoration: none;
  flex-direction: column;
}

.feature-icon {
  width: 60px;
  height: 60px;
  min-width: 40px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.feature-card-content {
  flex: 1;
}

.feature-card h3 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.feature-card p {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #fff;
  margin: 0;
}

/* Mobile */
@media (max-width: 900px) {
  .features-section {
    padding: 2rem 1rem;
  }

  .features-headline {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
  }

  .features-cards {
    flex-direction: column;
  }

  .feature-card {
    padding: 1.25rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
}


/* ========================================
   CONTAINER & GRID HELPERS
======================================== */
.container {
    width: min(100%, 1300px);
    margin-inline: auto;
    padding-inline: 1rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -0.5rem;
}

.col-md-6 {
    flex: 0 0 50%;
    padding-inline: 0.5rem;
}

@media (max-width: 768px) {
    .col-md-6 {
        flex: 0 0 100%;
    }
}


/* ========================================
   NAVBAR
======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  padding: 0.75rem 0;
  z-index: 9999;
  border-bottom: 1px solid #e0e0e0;
  transition: transform 0.3s ease;
}

.navbar.hidden {
  transform: translateY(-100%);
}

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

.logo-img {
  height: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-text {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #84B082;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: #555;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}

.nav-links li a:hover {
  color: #84B082;
}

.signup-link {
  padding: 0.5rem 1.25rem;
  background-color: #84B082;
  border: none;
  border-radius: 6px;
  color: #fff !important;
  font-weight: 600;
}

.signup-link:hover {
  background: #6a9a68;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: transform 0.3s;
}

/* Mobile Menu */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
    border-radius: 0;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
  }
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}


/* ========================================
   HERO
======================================== */
.hero-content {
  position: relative;
  z-index: 2;
  justify-content: center;
  text-align: left;
}

.hero-content h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 400;
  color: #000;
}

.hero-content p {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.7;
  max-width: 100%;

  
}

/* ========================================
   HERO + FEATURES WRAPPER (Dark Background)
======================================== */
.hero-features-wrapper {
  background: #212529;
  padding: 70px 10px 0;
}

/* ========================================
   HERO LAYOUT - Text Left / Carousel Right
======================================== */
.lts-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 3rem 4rem;
  min-height: 800px;
  background: url('website_files/herogradient.png') center/cover no-repeat;
  border-radius: 20px;
  position: relative;
}

.lts-hero-layout::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
}

.lts-hero-layout > * {
  position: relative;
  z-index: 1;
}

.lts-hero-layout .hero-content h1 {
  color: #fff;
}

.lts-hero-layout .hero-content p {
  color: rgba(255, 255, 255, 0.9);
}

/* Mobile stacks carousel UNDER text */
@media (max-width: 900px) {
  .lts-hero-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.5rem;
  }
  
  .lts-hero-layout .hero-content {
    text-align: center;
  }
  
  .lts-hero-layout .hero-content h1::after {
    margin-left: auto;
    margin-right: auto;
  }
  
  .lts-hero-layout .hero-content p {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .lts-hero-layout {
    padding: 1rem;
    margin-top: 4rem;
  }
}

/* Hero Content Accent Line - Removed */
.lts-hero-layout .hero-content h1::after {
  display: none;
}

/* ========================================
   CAROUSEL - Fixed Video Sizing
======================================== */
.lts-carousel {
  width: 100%;
}

.lts-carousel-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #1e2a38;
  box-shadow: 
    0 20px 50px -15px rgba(0, 0, 0, 0.3),
    0 10px 25px -10px rgba(0, 0, 0, 0.2);
}

.lts-track {
  display: flex;
  transition: transform 0.4s ease-out;
}

.lts-slide {
  min-width: 100%;
  flex-shrink: 0;
}

/* Video/Image Card - Proper 16:9 Aspect Ratio */
.lts-card {
  position: relative;
  width: 100%;
  padding-top: 60.25%;
  background: #1e2a38;
}

.lts-card iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.lts-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #1e2a38;
}

/* ========================================
   CAROUSEL NAVIGATION BAR
======================================== */
.lts-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: #1e2a38;
}

/* Dot Indicators */
.lts-dots {
  display: flex;
  gap: 8px;
}

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

.lts-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.lts-dot.active {
  background: #84B082;
  width: 24px;
  border-radius: 4px;
}

/* Arrow Buttons */
.lts-arrows {
  display: flex;
  gap: 0.5rem;
}

.lts-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lts-arrow:hover:not(:disabled) {
  background: #84B082;
  border-color: #84B082;
}

.lts-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.lts-arrow svg {
  width: 18px;
  height: 18px;
}

/* Responsive Carousel */
@media (max-width: 900px) {
  .lts-carousel {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .lts-carousel-wrapper {
    border-radius: 14px;
  }
  
  .lts-nav {
    padding: 0.75rem 1rem;
  }
  
  .lts-arrow {
    width: 36px;
    height: 36px;
  }
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.btn-primary {
    background: #94bfa8;
    color: #000000;
    font-weight: 600;
    font-size: 1rem
}

.btn-primary:hover {
    background: #019c5a;
    transform: scale(1.03);
}

/* ========================================
   SECTIONS (General)
======================================== */
.main-title {
    font-size: 3rem;
    color: #84B082;
    margin-bottom: 1rem;
    text-align: left;
    font-family: 'Lora', serif;
}

.subtitle-black {
    font-size: 2rem;
    max-width: 800px;
    margin-inline: auto;
    text-align: center;
    color: #757474;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.services-image {
    margin: 2rem auto;
    max-width: 600px;
    border-radius: 12px;
}

/* ========================================
   MEMORIES – FINAL LAYOUT
======================================== */
.memories-final {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 0;
    background: #212529;
}

main {
    margin: 0;
    padding: 0;
    background: #212529;
}

.mem-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    grid-auto-flow: dense;
    padding: 8rem;
}

.mem-block.reverse {
    direction: rtl;
}

.mem-block.reverse > * {
    direction: ltr;
}

.mem-block__text {
    padding-top: 5rem;
    padding-left: 2rem;
    position: relative;
    z-index: 2;
}

.mem-block.reverse .mem-block__text {
    padding-left: 0;
    padding-right: 5rem;
}

.mem-block__title {
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-family: 'Lora', serif;
    border-left: 10px solid #222529;
}

.mem-block__desc {
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.7;
}

.mem-block__image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.mem-block__image img,
.mem-block__image video {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.mem-block .mem-block__text,
.mem-block,
.mem-block.reverse,
.mem-block.reverse .mem-block__text {
    order: 1;
}

.mem-block .mem-block__image,
.mem-block.reverse .mem-block__image {
    order: 2;
}

/* Responsive for Memories */
@media (max-width: 992px) {
    .mem-block, .mem-block.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
        padding: 4rem;
    }
    .mem-block__image img,
    .mem-block__image video {
        height: 300px;
    }
}

@media (max-width: 768px) {
  .mem-block {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .mem-block {
    padding: 1rem;
  }
}


/* ========================================
   ABOUT
======================================== */
.about .img-fluid {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.main-p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
}

/* ========================================
   CONTACT
======================================== */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    background: #ffffff;
    color: #000000;
    font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.form-btn {
    width: 100%;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: #010606;
    color: #fafafa;
    padding: 3rem 0;
}

.footer .logo {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.footer-text {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
    color: #fff;
}

.footer ul li {
    margin-bottom: 0.4rem;
}

.footer a {
    color: #919191;
    transition: color 0.2s;
}

.footer a:hover {
    color: #fff;
}

/* ========================================
   GO TO TOP BUTTON
======================================== */
.gotop {
    position: fixed;
    bottom: 2rem;
    right: 1rem;
    background: #84b082;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
    transition: transform 0.2s;
    z-index: 100;
}

.gotop:hover {
    transform: scale(1.1);
}

/* ========================================
   Founders Section
======================================== */
.founders-section {
    padding: 6rem 0;
    background: #fff;
}

.founder-block {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 6rem;
    position: relative;
}

.founder-block__accent {
    display: none;
}

.founder-block__text {
    overflow: hidden;
}

.founder-block__title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #565656;
    margin-bottom: 1rem;
    line-height: 1.3;
    border-left: 8px solid #919090;
    padding-left: 1rem;
}

.founder-block__subtitle {
    font-size: 1.3rem;
    color: #01bf71;
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
}

.founder-block__desc {
    font-size: 1.1rem;
    color: #6b6a6a;
    line-height: 1.8;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.founder-block__image {
    float: right;
    width: 400px;
    margin: 0 0 1.5rem 1.5rem;
    shape-outside: margin-box;
}

.founder-block__image img {
    width: 100%;
    max-width: 400px;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(255, 255, 0, 0.12);
}

@media (max-width: 992px) {
    .founder-block, .founder-block.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .founder-block__image img {
        height: 300px;
    }
}

/* ========================================
   remembering-section 
======================================== */
.remembering-section {
  width: 100%;
  background: #222529;
  text-align: center;
  padding: 4rem 1rem;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #111;
}

.remembering-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.remembering-title {
  font-size: 2rem;
  font-weight: 200;
  margin-bottom: 1rem;
  font-family: 'Lora', serif;
}

@media (max-width: 768px) {
  .remembering-title {
    padding-top: 4rem;
  }
}

.sharing-title {
  font-size: clamp(1.2rem, 4.5vw, 2.5rem);
  font-weight: 400;
  padding-bottom: 40px;
  margin-bottom: 1rem;
  line-height: 1.4;
  font-family: 'Lora', serif;
  color: #efe8e3;
}

.remembering-subtext {
  max-width: 1000px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-bottom: 5rem;
}

.card {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 3rem;
  width: 400px;
  text-align: left;
}

@media (max-width: 768px) {
  .card {
    border: none;
    padding: 1rem;
    width: 100%;
  }
}

.card h3 {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1.4rem;
  color: #111;
  letter-spacing: 0.2px;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card li {
  margin-bottom: 0.6rem;
  color: #333;
  font-size: 1rem;
}

.card li::before {
  content: "✔";
  color: #01bf71;
  margin-right: 0.5rem;
}

@media (max-width: 600px) {
  .remembering-section {
    padding: 3rem 1rem !important;
  }

  .remembering-title {
    font-size: 1.6rem !important;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .cards {
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 2rem !important;
  }

  .card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.25rem !important;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e5e5e5;
  }

  .card h3 {
    font-size: 1.15rem !important;
    margin-bottom: 1rem !important;
  }

  .card li {
    font-size: 0.95rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.45 !important;
  }

  .card li::before {
    font-size: 1.1rem !important;
  }
}


/* ========================================
   sharing and book section 
======================================== */
.legacy-section {
  width: 100%;
  background: #efe8e3;
  padding: 4rem 1rem;
  margin-top: 6rem;
  text-align: center;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

.legacy-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.legacy-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #111;
  line-height: 1.3;
}

.legacy-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.legacy-card {
  background: #efe8e3;
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 680px;
  text-align: left;
  border: 2px solid #e0d8d0;
}

.legacy-card-right {
  background: #efe8e3;
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 480px;
  text-align: left;
  border: 2px solid #e0d8d0;
}

.legacy-card-right h3 {
    font-size: 2rem;
    font-weight: 400;
    color: #222529;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-family: 'Lora', serif;
}

.legacy-card h3 {
    font-size: 2rem;
    font-weight: 400;
    color: #222529;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-family: 'Lora', serif;
}

.legacy-card p {
    font-size: 1.2rem;
    color: #222529;
    line-height: 1.7;
}

.legacy-card-right p {
    font-size: 1.2rem;
    color: #222529;
    line-height: 1.7;
}

.legacy-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legacy-button {
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: left;
}

.legacy-button .plus {
  font-weight: bold;
  color: #aaa;
}

.legacy-button .icon {
  font-size: 1.2rem;
}

.legacy-illustration {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.legacy-illustration img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .legacy-cards {
    flex-direction: column;
    align-items: center;
  }

  .legacy-card {
    max-width: 90%;
  }
}

/* ========================================
   DOWNLOAD SECTION
======================================== */
.download-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  background: #212529;
}

.download-container {
  position: relative;
  width: 100%;
  max-width: 1800px;
  height: 600px;
  border-radius: 32px;
  overflow: hidden;
  background: #000;
}

.download-container video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  z-index: 1;
}

.download-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: #fff;
  padding-top: 4rem;
  background: rgba(0, 0, 0, 0.1);
}

.download-overlay h2 {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.3;
  color: #212529;
  margin-bottom: 4rem;
}

.download-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.store-btn {
  background: #fff;
  color: #000;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 230px;
  text-align: center;
}

.store-btn:hover {
  background: #84B082;
  transform: scale(1.03);
}

.appstore {
  background: #efe8e3;
  color: #fff;
}

.appstore:hover {
  background: #f0f6f0;
}

.googleplay {
  background: #efe8e3;
  color: #fff;
}

.googleplay:hover {
  background: #f0f6f0;
}

/* ========================================
   Download Badges
======================================== */
.download-badges {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.store-badge {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.8rem;
  text-decoration: none;
  color: #000;
  border: 1px solid #84B082;
  transition: transform 0.25s ease;
  width: 280px;
  height: 75px;
  justify-content: flex-start;
}

.store-badge:hover {
  transform: scale(1.05);
}

.store-icon {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
  margin-right: 1rem;
}

.store-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  text-align: left;
}

.store-text .small {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 0.15rem;
}

.store-text .large {
  font-size: 1.35rem;
  font-weight: 600;
  color: #000;
}

.appstore .store-text,
.googleplay .store-text {
  margin-left: -0.1rem;
}


/* ========================================
   CONTACT (Split Layout)
======================================== */
.contact-section {
  display: flex;
  min-height: 90vh;
  width: 100%;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: #f4f8f5;
  margin-bottom: 0;
  margin-top: 0;
}

.contact-left {
  flex: 1;
  background: #DAE7DA;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 5rem;
}

.contact-left .main-title {
  font-size: 3rem;
  font-family: 'Lora', serif;
  font-weight: 600;
  color: #84B082;
  margin: 0;
}

.contact-right {
  flex: 1;
  background: #84B082;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem;
}

.contact-form {
  width: 100%;
  max-width: 500px;
  background: #DAE7DA;
  border-radius: 12px;
  padding: 1rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

label {
  font-size: 0.9rem;
  color: #183e2c;
  font-weight: 500;
}

input, textarea {
  border: none;
  border-radius: 8px;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  background: #000000;
  color: #183e2c;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #ffffff;
}

textarea {
  min-height: 120px;
  resize: none;
}

.submit-btn {
  width: 100%;
  background: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #0b2e1d;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.submit-btn:hover {
  background: #222529;
  color: #ffffff;
}

@media (max-width: 992px) {
  .contact-section {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    width: 100%;
    padding: 3rem;
  }

  .contact-left {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .contact-right {
    border-left: none;
    border-top: 4px solid #94bfa8;
  }
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }

  .contact-form {
    padding: 2rem;
  }
}