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

body {
  font-family: 'Inter', sans-serif;
  color: #1E293B;
  background-color: #FFFFFF;
  line-height: 1.7;
}

/* ===== COMMON ===== */
.container {
  width: 90%;
  max-width: 1120px;
  margin: auto;
}

section {
  padding: 90px 0;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
}

h3 {
  margin-bottom: 14px;
  color: #0F172A;
}

p {
  max-width: 680px;
  color: #334155;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  padding: 14px 34px;
  background: #F2C94C;
  color: #0F172A;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
}

/* ===== HEADER ===== */
.header {
  background: #FFFFFF;
  border-bottom: 1px solid #E5E7EB;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  color: #0F172A;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #1E293B;
  font-weight: 500;
}

nav a:hover {
  color: #F2C94C;
}

/* ===== HERO ===== */
.hero {
  background: #F8FAFC;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.hero-text h2 {
  font-size: 46px;
  color: #0F172A;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
}

/* ===== SECTIONS ===== */
.export-focus {
  background: #FFFFFF;
}

.coming-soon {
  background: #F8FAFC;
  text-align: center;
}

.contact-cta {
  background: #0F172A;
  text-align: center;
}

.contact-cta h3,
.contact-cta p {
  color: #FFFFFF;
}

/* ===== FOOTER ===== */
.footer {
  background: #020617;
  color: #CBD5E1;
  text-align: center;
  padding: 22px;
}

/* ===== CSS PINEAPPLE ===== */
.pineapple {
  width: 160px;
  margin: auto;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.pineapple:hover {
  transform: scale(1.08) rotate(3deg);
}

.leaves {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 60px solid #2E7D32;
  margin: auto;
}

.body {
  width: 120px;
  height: 160px;
  background: #F2C94C;
  border-radius: 34px;
  margin: auto;
  position: relative;
}

.body::before {
  content: "";
  position: absolute;
  inset: 16px;
  background-image: radial-gradient(#D6B03A 2px, transparent 2px);
  background-size: 14px 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
