/*
Theme Name: Luma Technology
Theme URI: https://lumatechnology.id
Author: PT Luxence Technology Makmur
Author URI: https://lumatechnology.id
Description: Company profile theme untuk brand Luma - distributor kabel Type-C, HDMI, dan berbagai kabel teknologi berkualitas.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: luma-theme
Tags: company-profile, technology, business, professional
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.7;
  font-size: 16px;
}

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

/* ===== NAVIGATION ===== */
.luma-nav {
  background: #0C2340;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

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

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: #378ADD;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.nav-brand-name {
  color: white;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-brand-sub {
  color: #85B7EB;
  font-size: 11px;
  font-weight: 400;
  display: block;
  line-height: 1;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-menu a {
  color: #B5D4F4;
  font-size: 14px;
  transition: color 0.2s;
}

.nav-menu a:hover { color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
}

/* ===== HERO ===== */
.luma-hero {
  background: linear-gradient(135deg, #0C2340 0%, #185FA5 60%, #378ADD 100%);
  padding: 6rem 2rem 5rem;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(55,138,221,0.25);
  color: #B5D4F4;
  font-size: 13px;
  padding: 5px 16px;
  border-radius: 20px;
  border: 1px solid #378ADD;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 46px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-title span { color: #85B7EB; }

.hero-desc {
  font-size: 17px;
  color: #B5D4F4;
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #378ADD;
  color: white;
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: #185FA5; color: white; }

.btn-outline {
  background: transparent;
  color: white;
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color 0.2s;
  display: inline-block;
}

.btn-outline:hover { border-color: white; color: white; }

/* ===== STATS ===== */
.luma-stats {
  background: #fff;
  border-bottom: 1px solid #e8edf3;
  padding: 2.5rem 2rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #0C2340;
  display: block;
}

.stat-label {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}

/* ===== SECTIONS ===== */
.luma-section { padding: 5rem 2rem; }
.section-container { max-width: 1000px; margin: 0 auto; }

.section-label {
  font-size: 12px;
  color: #378ADD;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  color: #0C2340;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  max-width: 600px;
}

.section-header { margin-bottom: 3rem; }

/* ===== ABOUT ===== */
.luma-about { background: #F7F9FC; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-top: 1rem;
}

.about-visual-box {
  background: #0C2340;
  border-radius: 14px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-feature-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon.blue { background: rgba(55,138,221,0.2); }
.feature-icon.teal { background: rgba(29,158,117,0.2); }
.feature-icon.amber { background: rgba(186,117,23,0.2); }

.feature-icon svg { width: 22px; height: 22px; }

.feature-title { color: white; font-size: 14px; font-weight: 600; }
.feature-sub { color: #85B7EB; font-size: 12px; margin-top: 2px; }

/* ===== PRODUCTS ===== */
.luma-products { background: #fff; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.product-card {
  background: #F7F9FC;
  border: 1px solid #dde5ef;
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.product-card:hover {
  border-color: #378ADD;
  transform: translateY(-3px);
}

.product-icon-wrap {
  width: 52px;
  height: 52px;
  background: #E6F1FB;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.product-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: #185FA5;
  fill: none;
  stroke-width: 1.5;
}

.product-name {
  font-size: 16px;
  font-weight: 600;
  color: #0C2340;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.65;
}

.product-badge {
  display: inline-block;
  font-size: 11px;
  background: #E6F1FB;
  color: #185FA5;
  padding: 3px 12px;
  border-radius: 20px;
  margin-top: 12px;
  font-weight: 600;
}

/* ===== WHY US ===== */
.luma-why { background: #0C2340; }
.luma-why .section-label { color: #85B7EB; }
.luma-why .section-title { color: white; }
.luma-why .section-subtitle { color: #85B7EB; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
}

.why-number {
  font-size: 36px;
  font-weight: 700;
  color: #378ADD;
  margin-bottom: 10px;
}

.why-title {
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.why-desc {
  font-size: 13px;
  color: #85B7EB;
  line-height: 1.65;
}

/* ===== CONTACT ===== */
.luma-contact { background: #F7F9FC; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: #E6F1FB;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: #185FA5;
  fill: none;
  stroke-width: 1.5;
}

.contact-info-label { font-size: 12px; color: #888; }
.contact-info-value { font-size: 15px; color: #0C2340; font-weight: 600; margin-top: 2px; }

.contact-form-wrap {
  background: white;
  border: 1px solid #dde5ef;
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-label { font-size: 13px; color: #555; font-weight: 500; }

.form-input,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #dde5ef;
  border-radius: 8px;
  font-size: 14px;
  background: #F7F9FC;
  color: #0C2340;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #378ADD;
  background: white;
}

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

.btn-submit {
  background: #0C2340;
  color: white;
  padding: 13px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.btn-submit:hover { background: #185FA5; }

/* ===== FOOTER ===== */
.luma-footer {
  background: #07192E;
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer-brand {
  color: #85B7EB;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.footer-copy {
  color: #4a6a88;
  font-size: 13px;
}

.footer-tagline {
  color: #4a6a88;
  font-size: 12px;
  margin-top: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-title { font-size: 30px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .luma-stats { gap: 2rem; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #0C2340;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
}
