/* === EDEN GROUP LTD — GLOBAL STYLES === */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #c9a84c;
  --gold-hover: #b8953f;
  --dark: #1a1a1a;
  --darker: #111;
  --light: #f5f5f5;
  --white: #ffffff;
  --text: #333;
  --text-light: #777;
  --border: #e0e0e0;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* === NAVBAR === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5%;
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}

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

.lang-switcher {
  display: flex;
  gap: 8px;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  padding: 6px 12px;
  font-size: 0.8rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
}

.lang-btn:hover,
.lang-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* === MOBILE MENU === */
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--dark);
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
  color: var(--white);
  font-size: 1.1rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* === HERO === */
.hero {
  background: 
    linear-gradient(135deg, rgba(17,17,17,0.85) 0%, rgba(26,26,26,0.75) 100%),
    url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 5% 80px;
  text-align: center;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.7) 0%, rgba(26,26,26,0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

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

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 15px;
  line-height: 1.7;
}

.hero-focus {
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 500;
}

.hero-tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 5px;
}

.hero-edge {
  color: var(--gold);
  font-weight: 600;
  margin: 15px 0 25px;
  font-size: 1.05rem;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* === BUTTONS === */
.btn-primary,
.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-small {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* === SECTIONS === */
.section {
  padding: 80px 5%;
}

.bg-light { background: var(--light); }
.bg-white { background: var(--white); }
.bg-dark {
  background: linear-gradient(135deg, var(--dark) 0%, #252525 100%);
  color: var(--white);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: inherit;
}

.section-subtitle {
  text-align: center;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

/* === ABOUT === */
.about-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.about-card {
  background: var(--white);
  padding: 25px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}

.about-card-label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.about-card-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}

/* === SERVICES === */
.services-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-box {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}

.service-box h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-box p {
  color: var(--text);
  line-height: 1.7;
}

.services-main {
  margin-top: 30px;
}

.services-main h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.services-main p {
  max-width: 800px;
  line-height: 1.8;
  color: var(--text);
}

/* === IMAGES === */
.img-container {
  margin: 30px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.img-container img {
  width: 100%;
  object-fit: cover;
  max-height: 450px;
}

/* === LISTS === */
.check-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

.check-list li {
  padding: 12px 0 12px 35px;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}

.check-list li:last-child { border-bottom: none; }

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

/* === TAGS === */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}

.tag {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
}

.tag-gold {
  background: rgba(201,168,76,0.12);
  color: #8a6d1f;
  border: 1px solid rgba(201,168,76,0.3);
}

.tag-dark {
  background: var(--dark);
  color: var(--white);
}

.tag-blue {
  background: rgba(66,133,244,0.1);
  color: #1a73e8;
  border: 1px solid rgba(66,133,244,0.2);
}

/* === WHY / CARDS === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-card {
  background: rgba(255,255,255,0.05);
  padding: 30px 25px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}

.why-card h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--gold);
}

.why-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === THREE GRID === */
.three-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.three-card {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
}

.three-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--gold);
}

.three-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === FOUNDATION === */
.foundation-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.foundation-img {
  margin: 30px auto;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.foundation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: 40px auto 0;
}

.foundation-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}

.foundation-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.foundation-card p {
  color: var(--text);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* === IMPORT/EXPORT === */
.ie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.ie-card {
  background: var(--light);
  padding: 35px 30px;
  border-radius: 10px;
  border-left: 4px solid var(--gold);
}

.ie-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.ie-card p {
  color: var(--text);
  line-height: 1.7;
  font-size: 0.95rem;
}

.ie-center {
  text-align: center;
  max-width: 700px;
  margin: 30px auto 0;
}

.ie-center h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.ie-center p {
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* === PRODUCTS === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.product-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.product-card p {
  color: var(--text);
  line-height: 1.7;
  font-size: 0.95rem;
  flex: 1;
}

.product-img {
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
  max-height: 220px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === BUSINESS === */
.start-content {
  max-width: 800px;
  margin: 0 auto;
}

.start-content h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.start-content .sub {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1rem;
}

.start-content > p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 25px;
}

/* === REACH === */
.reach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.reach-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}

.reach-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--gold);
}

.reach-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === CTA SECTION === */
.cta-section {
  background: var(--light);
  padding: 80px 5%;
  text-align: center;
}

.cta-section h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.cta-section > p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--text);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* === FOOTER === */
.footer {
  background: var(--darker);
  color: rgba(255,255,255,0.6);
  padding: 60px 5% 30px;
  text-align: center;
}

.footer-tagline {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 30px;
  font-weight: 500;
}

.footer-info h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.footer-info p {
  margin-bottom: 8px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-info a {
  color: var(--gold);
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* === RESPONSIVE === */

/* === EXPERIENCE === */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.exp-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  transition: transform 0.2s, box-shadow 0.2s;
}

.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.exp-card h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--dark);
  font-weight: 600;
}

.exp-card p {
  color: var(--text);
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .lang-switcher { display: none; }

  .hero {
    padding: 60px 5% 50px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .section {
    padding: 50px 5%;
  }

  .services-top,
  .why-grid,
  .three-grid,
  .foundation-grid,
  .ie-grid,
  .product-grid,
  .reach-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-box,
  .why-card,
  .three-card,
  .foundation-card,
  .ie-card,
  .product-card,
  .reach-item,
  .about-card {
    padding: 25px 20px;
  }

  .img-container img {
    max-height: 280px;
  }

  .tag-row {
    flex-direction: column;
    align-items: center;
  }

  .tag {
    width: 100%;
    max-width: 350px;
    text-align: center;
  }

  .check-list li {
    padding-left: 30px;
    font-size: 0.95rem;
  }

  .footer {
    padding: 40px 5% 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.4rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .product-img {
    max-height: 180px;
  }
}
