/*
Theme Name: MAA Orodesign Landing
Theme URI: https://emaskilang.my
Author: Hamdi / ChatGPT
Description: Landing page khas untuk program dealer emas harga kilang MAA Orodesign.
Version: 1.1
Text Domain: maa-orodesign-landing
*/

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111111;
  background-color: #050509;
}

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

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

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(5, 5, 9, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(10px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

.site-logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.site-logo-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f8f3d0;
}

.site-logo-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #d4af37;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.main-nav a {
  color: #f5f5f5;
  opacity: 0.85;
}

.main-nav a:hover {
  opacity: 1;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37, #f5e6a0);
  color: #141414;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.55);
}

.btn-primary:hover {
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.8);
}

.btn-outline {
  border-color: #d4af37;
  color: #f5f5f5;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.08);
}

/* Section base */

.section {
  padding: 4rem 0;
}

.section-dark {
  background: radial-gradient(circle at top, #14121b 0%, #050509 55%, #020204 100%);
}

.section-alt {
  background: #080810;
}

.section-light {
  background: #f5f3eb;
  color: #111111;
}

/* Hero */

.hero {
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(10, 10, 15, 0.8);
  color: #f5f5f5;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}

.hero-kicker span.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #4ade80;
}

.hero-title {
  font-size: clamp(2.1rem, 3vw, 2.9rem);
  line-height: 1.1;
  color: #fdf9e6;
  margin-bottom: 1rem;
}

.hero-title strong {
  color: #f5e18b;
}

.hero-subtitle {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #d4d4d4;
  max-width: 34rem;
  margin-bottom: 1.6rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-hint {
  font-size: 0.78rem;
  color: #a3a3a3;
}

.hero-hint strong {
  color: #f5e18b;
}

.hero-card {
  border-radius: 1.2rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), rgba(12, 12, 16, 0.9));
  padding: 1.4rem 1.3rem;
  display: grid;
  gap: 0.5rem;
}

.hero-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #f5e18b;
}

.hero-card-main {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fdfdf5;
}

.hero-card-note {
  font-size: 0.8rem;
  color: #d4d4d4;
}

/* Section headings */

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #d4af37;
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.6rem;
  color: #f5f5f5;
}

.section-title-light {
  color: #111111;
}

.section-desc {
  font-size: 0.95rem;
  color: #c5c5c5;
  max-width: 32rem;
  margin: 0.4rem auto 0;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  gap: 2rem;
}

.card {
  border-radius: 1.2rem;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), rgba(10, 10, 15, 0.96));
  padding: 1.4rem 1.6rem;
}

.card-light {
  border-radius: 1.2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  padding: 1.4rem 1.6rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fdf9e6;
}

.card-title-light {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111111;
}

.card-body {
  font-size: 0.9rem;
  color: #d4d4d4;
  line-height: 1.7;
}

.card-body-light {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.7;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.badge {
  font-size: 0.75rem;
  padding: 0.16rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: #f5f5f5;
}

/* Comparison / price layout */

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: flex-start;
}

.price-widget-box {
  border-radius: 1rem;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: #ffffff;
  padding: 1rem;
}

.price-note {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.6rem;
}

/* Icon list */

.icon-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.icon-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.icon-bullet {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, #f5e18b, #d4af37);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #111111;
  flex-shrink: 0;
}

.icon-content-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
  color: #f5f5f5;
}

.icon-content-body {
  font-size: 0.86rem;
  color: #d4d4d4;
}

/* Comparison table */

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
  padding: 0.6rem 0.7rem;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.compare-table th {
  text-align: left;
  font-weight: 600;
  background: rgba(17, 24, 39, 0.03);
}

.compare-table tr:nth-child(even) td {
  background: rgba(17, 24, 39, 0.015);
}

.compare-highlight {
  color: #15803d;
  font-weight: 600;
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.step-box {
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.98);
}

.step-number {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #f5e18b;
  margin-bottom: 0.2rem;
}

.step-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 0.2rem;
}

.step-body {
  font-size: 0.86rem;
  color: #d1d5db;
}

/* Problems */

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 1.5rem;
}

.problem-box {
  border-radius: 1rem;
  padding: 1.2rem 1.2rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(248, 113, 113, 0.35);
}

.solution-box {
  border-radius: 1rem;
  padding: 1.2rem 1.2rem;
  background: rgba(5, 46, 22, 0.96);
  border: 1px solid rgba(34, 197, 94, 0.5);
}

.problem-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.problem-list,
.solution-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.86rem;
}

.problem-list li::before {
  content: "✕ ";
  color: #f97373;
}

.solution-list li::before {
  content: "✓ ";
  color: #bbf7d0;
}

/* Testimonials & FAQ */

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.3rem;
}

.testi-card {
  border-radius: 1.1rem;
  padding: 1.1rem 1.1rem;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(212, 175, 55, 0.35);
  font-size: 0.88rem;
  color: #e5e7eb;
}

.testi-name {
  font-weight: 600;
  margin-top: 0.4rem;
  color: #f5e18b;
}

.testi-meta {
  font-size: 0.78rem;
  color: #9ca3af;
}

.faq {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  padding: 0.8rem 0;
}

.faq-q {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.faq-a {
  font-size: 0.86rem;
  color: #4b5563;
}

/* CTA akhir */

.final-cta {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}

.final-cta p {
  font-size: 0.9rem;
  color: #e5e7eb;
}

/* Legacy footer (can be unused but kept) */

.site-footer {
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: #9ca3af;
  background: #020204;
  border-top: 1px solid rgba(55, 65, 81, 0.7);
}

.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
}

/* New premium footer */

.maa-footer {
  background: #000000;
  color: #f5f5f5;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.maa-footer-container {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.maa-footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #f5e18b;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.maa-footer-desc {
  font-size: 0.85rem;
  color: #d4d4d4;
  line-height: 1.5;
}

.maa-footer-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #f5e18b;
  margin-bottom: 0.6rem;
}

.maa-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.maa-footer-links a {
  color: #d4d4d4;
  font-size: 0.9rem;
}

.maa-footer-links a:hover {
  color: #f5e18b;
}

.maa-footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #888888;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

/* Hide old pagelayer footer if present */

.pagelayer-footer,
footer.pagelayer-footer,
footer.pagelayer-footer * {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner,
  .about-grid,
  .price-layout,
  .problem-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 4.4rem;
  }

  .site-header-inner {
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

/* Kotak Masalah – merah premium */
.problem-box {
    background: #7f1d1d;          /* merah gelap premium */
    color: #ffffff;
}

.problem-box .problem-title,
.problem-box .problem-list li {
    color: #ffffff;
}

/* Kotak Solusi – hijau premium, tulisan putih */
.solution-box {
    /* kekalkan hijau sedia ada atau pilih hijau MAA */
    background: #064e3b;          /* hijau gelap eksklusif */
    color: #ffffff;
}

.problem-box,
.problem-box .problem-title,
.problem-box .problem-list li,
.solution-box,
.solution-box .problem-title,
.solution-box .solution-list li {
    color:#ffffff !important;
}

/* =========================================
   FORCE STYLE: Masalah (merah) + Solusi (hijau)
   Cover semua nama class yang mungkin wujud
========================================= */

/* MASALAH */
.problem-box,
.box-problem {
  background: #7f1d1d !important;   /* merah gelap premium */
  color: #ffffff !important;
  border: 1px solid rgba(212,175,55,.30) !important; /* gold outline */
}

.problem-box h3,
.problem-box h2,
.problem-box .problem-title,
.problem-box li,
.problem-box p,
.box-problem h3,
.box-problem h2,
.box-problem li,
.box-problem p {
  color: #ffffff !important;
}

/* icon X jika ada */
.problem-box .x,
.box-problem .x,
.problem-box .cross,
.box-problem .cross {
  color: #fca5a5 !important;
}

/* SOLUSI */
.solution-box,
.box-solution {
  background: #064e3b !important;   /* hijau gelap premium */
  color: #ffffff !important;
  border: 1px solid rgba(212,175,55,.30) !important; /* gold outline */
}

.solution-box h3,
.solution-box h2,
.solution-box .problem-title,
.solution-box li,
.solution-box p,
.box-solution h3,
.box-solution h2,
.box-solution li,
.box-solution p {
  color: #ffffff !important;
}

/* icon tick jika ada */
.solution-box .tick,
.box-solution .tick,
.solution-box .check,
.box-solution .check {
  color: #a7f3d0 !important;
}

/* =========================
   HERO VIDEO (MAA Premium)
========================= */
.hero-inner{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.hero-video{
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.55);
}

.hero-video-label{
  color: rgba(255,255,255,.85);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.maa-video-frame{
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.maa-video-frame iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video-note{
  margin-top: 10px;
  color: rgba(255,255,255,.75);
  font-size: 13px;
  line-height: 1.5;
}

/* Mobile: stack */
@media (max-width: 900px){
  .hero-inner{
    grid-template-columns: 1fr;
  }
}

/* =========================
   TESTIMONI SLIDER – MAA
========================= */
.maa-slider {
  position: relative;
  overflow: hidden;
  margin-top: 2.5rem;
}

.maa-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.maa-slide {
  min-width: 100%;
  padding: 0 12px;
}

.testi-card {
  background: #0b0b0b;
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 20px 40px rgba(0,0,0,.6);
  text-align: center;
}

.testi-card.premium {
  color: #ffffff;
}

.testi-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.testi-meta {
  font-size: 0.85rem;
  color: #e5c86a;
}

.testi-card.image {
  padding: 18px;
}

.testi-card.image img {
  width: 100%;
  border-radius: 14px;
  display: block;
  margin-bottom: 10px;
}

.maa-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(212,175,55,.5);
  color: #f5e18b;
  font-size: 26px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
}

.maa-nav.prev { left: 10px; }
.maa-nav.next { right: 10px; }

.maa-nav:hover {
  background: #000;
}

.testi-cta {
  text-align: center;
  margin-top: 2rem;
}


/* =========================
   PENAFIAN / DISCLAIMER
   Versi jelas & premium MAA
========================= */
.maa-disclaimer {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.95)
  );
  border-top: 1px solid rgba(212,175,55,0.35);
  padding: 28px 20px;
  margin-top: 60px;
}

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

.maa-disclaimer-title {
  color: #f5e18b; /* emas lembut */
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.maa-disclaimer-text {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  line-height: 1.7;
}

/* Mobile lebih selesa */
@media (max-width: 768px) {
  .maa-disclaimer-text {
    font-size: 13.5px;
  }
}

/* =========================
   SECTION PROMO BULANAN
   Tema Premium MAA
========================= */
.maa-promo {
  padding-top: 80px;
  padding-bottom: 80px;
}

.maa-promo-box {
  max-width: 900px;
  margin: 40px auto 0;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(212,175,55,.45);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,.6);
}

.maa-promo-image {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}

.maa-promo-cta {
  text-align: center;
  margin-top: 30px;
}

/* =========================
   GRAF EMAS – PREMIUM MAA
========================= */
.maa-chart-box {
  max-width: 900px;
  height: 420px;
  margin: 40px auto 0;
  padding: 20px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,.15);
}

.maa-chart-note {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-top: 12px;
}

/* =========================
   SECTION GRAF – SPACING
========================= */
#graf-emas {
  padding-top: 60px;
  padding-bottom: 60px;
}

#graf-emas .section-heading {
  margin-bottom: 20px;
}

#graf-emas .section-desc {
  margin-bottom: 30px;
}

/* Tajuk kecil "REKOD HARGA" */
#graf-emas .section-kicker {
  color: #b8962e;
  font-weight: 600;
  letter-spacing: 2px;
  opacity: 1;
}

/* Tajuk utama */
#graf-emas .section-title {
  color: #111;
  font-weight: 700;
}

/* Ayat penerangan */
#graf-emas .section-desc {
  color: #444;
  font-size: 16px;
  line-height: 1.7;
}

.maa-chart-note {
  max-width: 900px;
  margin: 16px auto 0;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  text-align: center;
}

/* =========================
   SECTION VIDEO (SELEPAS "KENAPA MAA")
========================= */
.maa-video2{
  padding-top: 70px;
  padding-bottom: 70px;
}

.maa-video2 .section-kicker{
  color: #d4af37;
  letter-spacing: 2px;
  font-weight: 600;
}

.maa-video2 .section-title{
  color: #fff;
  font-weight: 800;
}

.maa-video2 .section-desc{
  color: rgba(255,255,255,.82);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

.maa-video2-wrap{
  max-width: 980px;
  margin: 32px auto 0;
}

.maa-video2-frame{
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,.45);
  box-shadow: 0 30px 70px rgba(0,0,0,.65);
  background: rgba(0,0,0,.35);
}

.maa-video2-frame iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.maa-video2-actions{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn-ghost{
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,.55);
  color: #fff;
  text-decoration: none;
  background: transparent;
}

.btn-ghost:hover{
  background: rgba(212,175,55,.10);
}

.maa-video2-note{
  margin: 12px auto 0;
  max-width: 900px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}
