/* ==============================
   GLOBAL VARIABLES
================================ */
:root {
  --brand-purple: #6f2dbd;
  --brand-purple-dark: #5a22a3;
  --brand-dark: #1e1e1e;
  --brand-light: #f7f7f7;
  --brand-yellow: #f5b942;
  --text-dark: #222;
  --text-muted: #666;
}

/* ==============================
   BASE RESET
================================ */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: #ffffff;
  color: var(--text-dark);
  line-height: 1.6;
}

/* ==============================
   CONTAINER
================================ */
.container-app {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background: linear-gradient(90deg, #0f0f0f, #1b1b1b);
  z-index: 1000;
}

.header-container {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  height: 36px;
  display: block;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  color: #ffffff;
  font-size: 14px;
  opacity: 0.85;
  white-space: nowrap;
}

.btn-enquiry {
  background: #7b2cbf;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-enquiry:hover {
  background: #5a189a;
}

/* Space for fixed header */
.header-spacer {
  height: 72px;
}

/* =========================
   MOBILE HEADER
========================= */

@media (max-width: 768px) {
  .header-phone {
    display: none;
  }

  .btn-enquiry {
    padding: 6px 14px;
    font-size: 13px;
  }
}


/* ==============================
   FOOTER
================================ */
.site-footer {
  background: #1b1b1b;
  color: #ccc;
  padding: 40px 20px;
  text-align: center;
}

.site-footer p {
  margin: 6px 0;
  font-size: 14px;
}

.site-footer a {
  color: #ccc;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

/* ==============================
   SECTION HEADINGS
================================ */
.section-title {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 50px;
}

/* ==============================
   CARDS (COMMON)
================================ */
.card-ui {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
  height: 100%;
}

.card-ui:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* ==============================
   CARD ICONS (BROWSE)
================================ */
.card-icon {
  width: 64px;
  height: 64px;
  background: var(--brand-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
}

/* ==============================
   CARD TEXT
================================ */
.card-title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
  color: var(--text-dark);
}

.card-link {
  text-decoration: none;
  color: inherit;
}

.card-link:hover {
  text-decoration: none;
}

/* ==============================
   PRODUCTS GRID
================================ */
.product-card img {
  max-height: 220px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 20px;
}

.product-card .card-title {
  font-size: 18px;
  font-weight: 600;
}

/* ==============================
   PRODUCT HERO (DETAIL PAGE)
================================ */
.product-hero {
  background: radial-gradient(circle at top, #6f2dbd, #4b1c80);
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.product-hero h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-hero img {
  max-width: 520px;
  width: 100%;
  margin-top: 30px;
}

/* ==============================
   BUTTONS
================================ */
.btn-primary-custom {
  background: var(--brand-purple);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 500;
  border: none;
  text-decoration: none;
}

.btn-primary-custom:hover {
  background: var(--brand-purple-dark);
  color: #fff;
}

/* ==============================
   RESPONSIVE FIXES
================================ */
@media (max-width: 991px) {
  .section-title {
    font-size: 32px;
  }

  .container-app {
    padding: 50px 16px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .card-ui {
    padding: 30px 20px;
  }

  .card-title {
    font-size: 18px;
  }

  .btn-enquiry {
    padding: 8px 16px;
    font-size: 14px;
  }
}
/* ========== PRODUCT CAROUSEL ========== */
.product-carousel {
  background:#2c0f3f;
  padding:20px 0;
  overflow-x:auto;
}

.carousel-track {
  max-width:1280px;
  margin:auto;
  display:flex;
  gap:20px;
  padding:0 20px;
}

.carousel-item {
  min-width:160px;
  background:#fff;
  border-radius:10px;
  padding:10px;
  text-align:center;
  text-decoration:none;
  color:#111;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.carousel-item.active {
  outline:3px solid #f5b335;
}

.carousel-item img {
  width:100%;
  height:90px;
  object-fit:contain;
}

/* ========== INTRO SECTION ========== */
.product-intro {
  padding:80px 20px;
}

.intro-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.intro-image img {
  width:100%;
  border-radius:16px;
  box-shadow:0 20px 50px rgba(0,0,0,.18);
}

.intro-content ul {
  margin:15px 0 25px;
  padding-left:18px;
}

/* ========== TECH GUIDE ========== */
.tech-guide {
  padding:80px 20px;
  text-align:center;
}

.canva-wrapper {
  max-width:1100px;
  margin:40px auto 0;
  aspect-ratio:16/9;
}

.canva-wrapper iframe {
  width:100%;
  height:100%;
  border:none;
  border-radius:12px;
}

/* ========== COMPONENTS ========== */
.component-section {
  padding:80px 20px;
}

.component-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  margin-top:40px;
}

.component-card {
  background:#fff;
  padding:25px;
  border-radius:16px;
  text-align:center;
  box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.component-card img {
  width:100%;
  height:120px;
  object-fit:contain;
}

/* ========== APPLICATIONS ========== */
.applications {
  padding:80px 20px;
}

.app-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
  margin-top:30px;
}

.app-card {
  background:#fff;
  padding:40px 20px;
  text-align:center;
  border-radius:14px;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
  font-weight:600;
}

/* ========== VALUE BLOCKS ========== */
.value-section {
  padding:80px 20px;
}

.value-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.value-card {
  background:#fff;
  padding:30px;
  border-radius:16px;
  box-shadow:0 14px 35px rgba(0,0,0,.12);
}

/* ========== FINAL CTA ========== */
.final-cta {
  background:#f4f4f4;
  padding:80px 20px;
  text-align:center;
}

.final-cta p {
  max-width:700px;
  margin:15px auto 25px;
}

/* ========== RESPONSIVE ========== */
@media(max-width:900px) {
  .intro-grid {
    grid-template-columns:1fr;
  }
}
/* ========== ENTRY PAGE ========== */
.entry-section {
  min-height:80vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 20px;
  background:#f6f6f6;
}

.entry-card {
  background:#fff;
  padding:50px 40px;
  border-radius:20px;
  width:100%;
  max-width:420px;
  text-align:center;
  box-shadow:0 30px 70px rgba(0,0,0,.18);
}

.entry-card h1 {
  margin-bottom:10px;
}

.entry-card p {
  margin-bottom:25px;
  color:#666;
}

.entry-card input {
  width:100%;
  padding:14px 16px;
  font-size:16px;
  border-radius:10px;
  border:1px solid #ccc;
  margin-bottom:20px;
  font-family:'Outfit', sans-serif;
}

.entry-card input:focus {
  outline:none;
  border-color:#6f2dbd;
}

.form-error {
  background:#ffe1e1;
  color:#a60000;
  padding:10px;
  border-radius:8px;
  margin-bottom:15px;
}

.privacy-note {
  display:block;
  margin-top:15px;
  font-size:13px;
  color:#777;
}
.form-note {
  background:#f4f4f4;
  padding:12px;
  border-radius:8px;
  margin-bottom:20px;
  font-size:14px;
  color:#333;
}
.user-phone {
  color:#fff;
  font-size:14px;
  opacity:0.85;
}

/* ===========================
   INDEX PAGE – PHONE GATE
=========================== */

.index-page {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
}

.index-page .container {
  display: flex;
  justify-content: center;
}

.phone-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  padding: 42px 40px;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
  text-align: center;
}

.phone-card h1 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 6px;
}

.phone-card .subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 26px;
}

/* Form */
.phone-form {
  display: flex;
  gap: 12px;
}

.phone-form input[type="tel"] {
  flex: 1;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: 'Outfit', sans-serif;
}

.phone-form input:focus {
  outline: none;
  border-color: #6f2dbd;
  box-shadow: 0 0 0 2px rgba(111,45,189,0.15);
}

/* Button */
.phone-form .btn-primary,
.phone-form button {
  background: #6f2dbd;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.phone-form button:hover {
  background: #5a23a1;
}

/* Error */
.form-error {
  background: #ffe6e6;
  color: #b00020;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 18px;
  font-size: 14px;
}

.accordion {
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #fff;
}

.accordion-header {
  width: 100%;
  text-align: left;
  background: #f8f9fb;
  padding: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}

.accordion-body {
  display: none;
  padding: 16px;
}

.accordion.open .accordion-body {
  display: block;
}

.form-group {
  margin-bottom: 16px;
}

.group-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
}

.form-section {
  padding: 40px 0 60px;
}

.form-section h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-section p {
  color: #666;
  margin-bottom: 24px;
}

.form-container {
  max-width: 900px;
  margin: 0 auto;
}
.accordion {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  overflow: hidden;
}

.accordion h3 {
  margin: 0;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  background: #f7f7f9;
  cursor: pointer;
}

.accordion-body {
  padding: 22px 20px 26px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 16px;
}

/* Full width helper */
.form-grid .full {
  grid-column: 1 / -1;
}
.form-section input,
.form-section select,
.form-section textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  transition: all 0.2s ease;
  background: #fff;
}

.form-section input::placeholder,
.form-section textarea::placeholder {
  color: #999;
}

.form-section input:focus,
.form-section select:focus,
.form-section textarea:focus {
  outline: none;
  border-color: #7b2cbf;
  box-shadow: 0 0 0 3px rgba(123,44,191,0.12);
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px 16px;
}

.checkbox-grid label,
.accordion-body label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: #7b2cbf;
}
.btn-primary {
  margin-top: 24px;
  background: #7b2cbf;
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(123,44,191,0.3);
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: #6a1fb0;
  transform: translateY(-1px);
}
.session-phone-display {
  margin-bottom: 18px;
  padding: 10px 14px;
  background: #f3f0fa;
  border-left: 4px solid #7b2cbf;
  border-radius: 6px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .accordion-body {
    padding: 18px 16px;
  }

  .form-section h1 {
    font-size: 24px;
  }
}
/* ===== Accordion ===== */

.mn-accordion {
  background: #f8f8fb;
  border-radius: 12px;
  margin-bottom: 18px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

/* Header */
.mn-accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px 18px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Body — CLOSED by default */
.mn-accordion-body {
  display: none;
  padding: 0 18px 18px;
}

/* Body — OPEN state */
.mn-accordion.is-open .mn-accordion-body {
  display: block;
}

/* Optional visual cue */
.mn-accordion.is-open {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.mn-accordion-body { display: none; }
/* ===== FINAL ACCORDION FIX ===== */

/* Body hidden by default — force it */
.mn-accordion-body {
  display: none !important;
}

/* Open state */
.mn-accordion.is-open > .mn-accordion-body {
  display: block !important;
}

/* Safety: prevent accidental global rules */
.mn-accordion > * {
  box-sizing: border-box;
}

