:root {
  --primary-color: #2e7d32; /* Organic Rich Green matching logo */
  --primary-dark: #1b5e20;
  --primary-light: #e8f5e9;
  --secondary-color: #fbc02d; /* Golden Harvest */
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-color: #fafafa;
  --white: #ffffff;
  --border-color: #e0e0e0;
  
  --font-main: 'Inter', sans-serif;
  
  --border-radius: 16px;
  --box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.03);
  --box-shadow-hover: 0 20px 50px -15px rgba(46,125,50,0.25), 0 5px 15px rgba(0,0,0,0.05);
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px) scale(0.98);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--primary-color);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.5);
}

.btn-outline {
  background-color: var(--white);
  color: var(--primary-dark);
  border: 2px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--primary-dark);
  color: var(--primary-dark);
}

/* --- Top Bar --- */
.top-bar {
  background: linear-gradient(90deg, #1b5e20, #0a2f10);
  color: #e8f5e9;
  padding: 10px 0;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.top-bar-left i {
  color: #ffca28;
  animation: floatElement 3s ease-in-out infinite;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.top-bar-right > a {
  transition: all 0.3s ease;
}

.top-bar-right > a:hover {
  color: #ffca28 !important;
  transform: translateY(-2px);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 28px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: #fff;
}

.social-icons a:hover {
  background-color: #ffca28;
  color: #1b5e20;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 202, 40, 0.4);
}

/* --- Header / Navbar --- */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 18px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.logo-container:hover {
  transform: scale(1.02);
}

.logo-img {
  height: 55px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.logo-text {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.logo-title {
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--primary-dark);
  line-height: 1;
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: #2e7d32;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 8px 12px;
  border-radius: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover {
  color: var(--primary-dark);
  background-color: #e8f5e9;
  transform: translateY(-2px);
}

.nav-link.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- Hero Section & Slider --- */
.hero {
  position: relative;
  overflow: hidden;
  background: none;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 55% 60%, rgba(255, 220, 150, 0.25) 0%, rgba(255, 255, 255, 0.75) 45%, rgba(255, 255, 255, 0.95) 100%);
  z-index: 2;
}

.slide-1 { background-image: url('../images/hero_bg.png'); animation: fade1 20s infinite; }
.slide-2 { background-image: url('../images/farmer_field_1_1787212402344.png'); animation: fade2 20s infinite; }
.slide-3 { background-image: url('../images/farmer_field_2_1787212417870.png'); animation: fade3 20s infinite; }
.slide-4 { background-image: url('../images/farmer_field_3_1787212432713.png'); animation: fade4 20s infinite; }

@keyframes fade1 {
  0%, 20% { opacity: 1; transform: scale(1.05); }
  25%, 95% { opacity: 0; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}
@keyframes fade2 {
  0%, 20% { opacity: 0; transform: scale(1); }
  25%, 45% { opacity: 1; transform: scale(1.05); }
  50%, 100% { opacity: 0; transform: scale(1); }
}
@keyframes fade3 {
  0%, 45% { opacity: 0; transform: scale(1); }
  50%, 70% { opacity: 1; transform: scale(1.05); }
  75%, 100% { opacity: 0; transform: scale(1); }
}
@keyframes fade4 {
  0%, 70% { opacity: 0; transform: scale(1); }
  75%, 95% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(1); }
}

.hero .container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 3.8rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.hero h1 span {
  color: var(--primary-color);
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image-right {
  position: absolute;
  right: 0;
  bottom: -100px;
  height: 650px;
  z-index: 25;
  filter: drop-shadow(0 0 15px rgba(255,255,255,0.8)) drop-shadow(0 15px 40px rgba(46, 125, 50, 0.4));
  transition: var(--transition);
}

.hero-image-right:hover {
  filter: drop-shadow(0 0 25px rgba(255,255,255,0.9)) drop-shadow(0 20px 50px rgba(46, 125, 50, 0.6));
  transform: translateY(-5px);
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Stats Bar --- */
.stats-bar {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: flex;
  justify-content: space-around;
  padding: 30px;
  margin-top: -60px;
  position: relative;
  z-index: 20;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* --- Sections Common --- */
.section {
  padding: 80px 0;
}

/* --- Features (Platform) --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: #f0f4f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: var(--transition);
}

.feature-icon-wrapper img {
  width: 40px;
  height: 40px;
}

.feature-item:hover .feature-icon-wrapper {
  background-color: var(--primary-light);
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.feature-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.feature-desc {
  font-size: 0.75rem;
  color: var(--text-light);
}

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

/* --- Marketplace --- */
.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.market-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

.market-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--box-shadow-hover);
  border-color: rgba(46, 125, 50, 0.3);
}

.market-card:hover div:first-child {
  animation: iconBounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.market-img {
  height: 120px;
  width: 100%;
  object-fit: cover;
  background-color: #eee;
}

.market-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.market-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -35px;
  border: 2px solid var(--white);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin-bottom: 10px;
}

.market-title {
  font-weight: 600;
  font-size: 0.9rem;
}

/* --- Two Column Section (Services & Calculators) --- */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.grid-4x2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.grid-icon {
  width: 60px;
  height: 60px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
  margin-bottom: 10px;
  transition: var(--transition);
}
.grid-item:hover .grid-icon {
  animation: iconBounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  box-shadow: 0 10px 20px rgba(46,125,50,0.2);
}

.grid-title {
  font-size: 0.85rem;
  font-weight: 500;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  justify-content: center;
}
.calc-grid.row-2 {
  grid-template-columns: repeat(2, 1fr);
  width: 50%;
  margin: 0 auto 30px;
}

/* --- Farming Intelligence --- */
.intelligence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.intel-card {
  background: #f1f8e9;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition);
  border: 1px solid rgba(46, 125, 50, 0.1);
}

.intel-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--box-shadow-hover);
  border-color: rgba(46, 125, 50, 0.3);
}

.intel-card:hover .intel-icon {
  animation: iconBounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.intel-icon {
  width: 45px;
  height: 45px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  font-size: 1.2rem;
}

.intel-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.intel-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.bg-image-card {
  background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  height: 350px;
  border-radius: 20px;
  grid-column: 1 / span 3;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}
.bg-image-card:hover {
  transform: scale(1.02);
  box-shadow: var(--box-shadow-hover);
}


/* --- Delivery Network --- */
.delivery-section {
  display: flex;
  align-items: center;
  gap: 50px;
}

.delivery-image {
  flex: 1;
}

.delivery-content {
  flex: 1;
}

.delivery-list {
  margin-bottom: 30px;
}

.delivery-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-weight: 500;
}

.delivery-list i {
  color: var(--primary-color);
  background: var(--primary-light);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- News & Community Layout --- */
.three-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.section-box {
  background: var(--white);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.hub-item {
  text-align: center;
}
.hub-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.news-item {
  display: flex;
  gap: 15px;
  align-items: center;
}
.news-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}
.news-info h4 {
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.news-date {
  font-size: 0.75rem;
  color: var(--text-light);
}

.community-post {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 15px;
}
.post-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.post-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.post-img {
  width: 100%;
  height: 150px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 15px;
}
.post-actions {
  display: flex;
  justify-content: space-between;
  color: var(--text-light);
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

/* --- CTA Banner --- */
.cta-banner {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 40px 0;
  margin-top: 40px;
}

.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-logo {
  height: 80px;
}

/* --- Footer --- */
.footer {
  background: linear-gradient(135deg, #1b5e20, #0a2f10);
  color: var(--white);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--secondary-color), #fff176, var(--secondary-color));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.footer-col:hover h4::after {
  width: 100%;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #c8e6c9;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
}

.footer-col a:hover {
  color: var(--secondary-color);
  transform: translateX(8px);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icons a:hover {
  background-color: var(--secondary-color);
  color: var(--primary-dark);
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 10px 15px rgba(248, 156, 30, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #a5d6a7;
}

/* --- About Us Section --- */
.team-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff0f5;
    color: #e1306c;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.team-social:hover {
    background: #e1306c;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

.about-card {
    background: white;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.hub-item:hover {
  transform: translateY(-5px);
}

.hub-item:hover .hub-icon {
  animation: iconBounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
}

/* Floating Play Store Badge */
.floating-play-badge {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 160px;
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: badgePulseBottom 2s infinite alternate;
}

.floating-play-badge img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
}

.floating-play-badge:hover {
  transform: scale(1.1) translateY(-10px);
  animation-play-state: paused;
}

@keyframes badgePulseBottom {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.05) translateY(-5px); }
}

@keyframes iconBounce {
  0% { transform: scale(1) translateY(0); }
  40% { transform: scale(1.15) translateY(-8px); }
  70% { transform: scale(1.05) translateY(2px); }
  100% { transform: scale(1.1) translateY(0); }
}

@keyframes floatElement {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero-image-right {
    height: 400px;
    right: -20px;
    bottom: -100px;
  }
  .two-col-layout {
    grid-template-columns: 1fr;
  }
  .three-col-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .header-actions .btn-primary {
    display: none; /* Hide large download app button on mobile */
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  .nav-menu.active {
    display: flex;
  }
  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
  }
  .hero-image-right {
    display: none;
  }
  .hero {
    text-align: center;
    padding: 60px 0 100px;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .stats-bar {
    flex-direction: column;
    gap: 20px;
  }
  .stat-item {
    width: 100%;
  }
  .delivery-section {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cta-banner .container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .cta-left {
    flex-direction: column;
  }
}
