/* SEEDA Website - Custom Styles */
:root {
  --primary-green: #1B3D2A;
  --natural-green: #4CAF4F;
  --accent-green: #2E7D32;
  --gold: #D4AF37;
  --light-gold: #E8C547;
  --white: #FFFFFF;
  --off-white: #F8F9F5;
  --light-gray: #F2F0E6;
  --dark: #222222;
  --text-dark: #1A1A1A;
  --text-muted: #555555;
  --overlay: rgba(27, 61, 42, 0.55);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-green);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

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

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(27, 61, 42, 0.98);
  backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

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

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

.logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text .brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.logo-text .tagline {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--natural-green);
  color: var(--white);
  border-color: var(--natural-green);
}

.btn-primary:hover {
  background: var(--accent-green);
  border-color: var(--accent-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 79, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-green);
  border-color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--primary-green);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--light-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-dark {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
}

.btn-dark:hover {
  background: #143020;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 920px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f2a1c;
}

.hero-bg {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  background-size: cover;
  background-position: 68% center;
  background-repeat: no-repeat;
  will-change: transform;
  animation: heroKenBurns 20s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.09) translate(-2%, -1.2%);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Soft professional overlay – image stays visible, text remains readable */
  background: linear-gradient(
    105deg,
    rgba(15, 42, 28, 0.87) 0%,
    rgba(15, 42, 28, 0.65) 42%,
    rgba(15, 42, 28, 0.35) 72%,
    rgba(15, 42, 28, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  color: var(--white);
  padding-top: 70px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--gold);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.25rem);
  color: var(--white);
  margin-bottom: 18px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

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

.hero-sub {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
  max-width: 510px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2.2s infinite;
}

.hero-scroll i {
  font-size: 1.1rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* ========== SECTIONS COMMON ========== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header .subtitle {
  display: inline-block;
  color: var(--natural-green);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.bg-light {
  background: var(--off-white);
}

.bg-green {
  background: var(--primary-green);
  color: var(--white);
}

.bg-green h2,
.bg-green .section-header h2 {
  color: var(--white);
}

.bg-green .subtitle {
  color: var(--gold);
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  background: var(--gold);
  opacity: 0.15;
  border-radius: 50%;
  z-index: -1;
}

.about-content .subtitle {
  color: var(--natural-green);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: block;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--natural-green);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========== PRODUCTS ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.product-card .card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
  background: #e8f0e9;
}

.product-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  display: block;
}

.product-card:hover .card-img img {
  transform: scale(1.08);
}

.product-card .card-body {
  padding: 28px 24px;
}

.product-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.product-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.product-card .btn {
  width: 100%;
  padding: 12px;
  font-size: 0.85rem;
}

/* ========== WHY SEEDA ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(76, 175, 79, 0.3);
  box-shadow: var(--shadow-hover);
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(76, 175, 79, 0.12), rgba(212, 175, 55, 0.12));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--natural-green);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--natural-green);
  color: var(--white);
  transform: scale(1.1);
}

.why-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ========== EXPORT SOLUTIONS ========== */
.export-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.export-list {
  list-style: none;
  margin: 28px 0;
}

.export-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--text-muted);
}

.export-list li i {
  color: var(--natural-green);
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.export-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

/* ========== GLOBAL MARKETS ========== */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.market-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.market-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  border-color: var(--gold);
}

.market-card i {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.market-card h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.market-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.map-placeholder {
  margin-top: 50px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

/* ========== CTA / RFQ ========== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, #0f2a1c 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ========== CONTACT FORM ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-details li i {
  width: 44px;
  height: 44px;
  background: rgba(76, 175, 79, 0.12);
  color: var(--natural-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-green);
  margin-bottom: 2px;
}

.contact-details span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-card h3 {
  margin-bottom: 8px;
}

.form-card > p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--primary-green);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--natural-green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(76, 175, 79, 0.12);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ========== FOOTER ========== */
.footer {
  background: #0d2418;
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text .brand {
  color: var(--gold);
  font-size: 1.6rem;
}

.footer-brand p {
  margin: 18px 0 24px;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 280px;
}

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

.social-links a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--primary-green);
  transform: translateY(-3px);
}

.footer h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.newsletter-form button {
  padding: 12px 20px;
  background: var(--gold);
  color: var(--primary-green);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--light-gold);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--gold);
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  position: relative;
  padding: 150px 0 70px;
  background: #0f2a1c;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-asset.jpeg') center/cover no-repeat;
  opacity: 0.22;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,42,28,0.7) 0%, rgba(15,42,28,0.85) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ========== PRODUCT DETAIL ========== */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.product-gallery {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-gallery img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-info h2 {
  margin-bottom: 16px;
}

.product-info p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.product-features {
  list-style: none;
  margin: 24px 0;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.product-features li i {
  color: var(--natural-green);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

/* ========== ANIMATIONS ========== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .products-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .markets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid,
  .export-content,
  .contact-grid,
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image img {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .header-cta .btn-outline {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav.active .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-green);
    padding: 24px;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }
  .nav.active .nav-links a {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .hero {
    min-height: 100svh;
    height: auto;
    max-height: none;
    padding: 110px 0 70px;
  }
  .hero-bg {
    background-position: 55% center;
    animation-duration: 28s;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(15, 42, 28, 0.90) 0%,
      rgba(15, 42, 28, 0.75) 55%,
      rgba(15, 42, 28, 0.50) 100%
    );
  }
  .hero-content {
    padding-top: 20px;
    text-align: center;
    max-width: 100%;
  }
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-scroll {
    display: none;
  }
  .logo-text .tagline {
    display: none;
  }
  .products-grid,
  .why-grid,
  .markets-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .section {
    padding: 70px 0;
  }
  .form-card {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.9rem;
  }
  .btn {
    padding: 12px 22px;
    font-size: 0.85rem;
  }
  .logo img {
    height: 40px;
  }
}

/* RTL Support */
[dir="rtl"] .nav-links a::after {
  left: auto;
  right: 0;
}
[dir="rtl"] .footer h5::after {
  left: auto;
  right: 0;
}
[dir="rtl"] .footer-links a:hover {
  padding-left: 0;
  padding-right: 6px;
}
[dir="rtl"] .hero-overlay {
  background: linear-gradient(-105deg, rgba(27, 61, 42, 0.92) 0%, rgba(27, 61, 42, 0.65) 45%, rgba(27, 61, 42, 0.35) 100%);
}
