/* TCG IMPEX — Exact Wix-Style Stylesheet */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #2d2d2d;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* =============================================
   SIDE NAV
============================================= */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 400;
  transition: background 0.3s;
}

.nav-overlay.active {
  display: block;
}

.side-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: #2d2d2d;
  border-left: none;
  z-index: 500;
  padding: 62px 0 30px;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.3);
}

.side-nav.open {
  right: 0;
}

.nav-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  transition: color 0.2s;
}

.nav-close:hover {
  color: #a8744a;
}

.side-nav ul {
  list-style: none;
}

.side-nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.side-nav ul li a {
  display: block;
  padding: 16px 28px;
  font-family: "Fahkwang", sans-serif;
  font-size: 15px;
  color: #e8e8e8;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: all 0.25s;
  font-weight: 500;
}

.side-nav ul li a:hover {
  background: rgba(168, 116, 74, 0.2);
  color: #a8744a;
  padding-left: 32px;
}

/* =============================================
   HEADER
============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: #f5f0e8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 36px;
  height: 85px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s;
}

.header-left {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 1;
}

.header-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title {
  font-family: "Fahkwang", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  margin: 0;
  padding: 5px 12px;
  line-height: 1.2;
  background: #8b5e3c;
  display: inline-block;
}

.brand-tagline {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.2px;
  margin: 0;
  padding: 4px 12px;
  line-height: 1.2;
  background: #8b5e3c;
  display: inline-block;
}

.header-right {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: auto;
}

.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #8b5e3c;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 10px;
  white-space: nowrap;
  transition: all 0.3s;
  letter-spacing: 0.2px;
  border: none;
}

.phone-btn:hover {
  background: #6e4a2d;
  color: #fff;
  transform: translateY(-1px);
}

.phone-btn svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #1a1a1a;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 34px;
  font-weight: 300;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: all 0.3s;
}

.menu-btn:hover {
  color: #8b5e3c;
}

.menu-icon {
  display: none;
}

/* =============================================
   HERO SECTION
============================================= */
.hero {
  min-height: 100vh;
  padding-top: 85px;
  background-image: url("https://static.wixstatic.com/media/5c5262_dae79c2aa9f245f98bd271f6ae46e71f~mv2.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
  pointer-events: none;
}

.hero-brand {
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  text-align: center;
  padding: 10px 20px;
  font-family: "Fahkwang", sans-serif;
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  z-index: 1;
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
  max-width: 900px;
  animation: fadeInUp 0.8s ease 0.3s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h2 {
  font-family: "Fahkwang", sans-serif;
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.8px;
}

.hero-sub {
  font-size: clamp(16px, 3vw, 22px);
  color: #fff;
  font-weight: 600;
  background: #a8744a;
  display: inline-block;
  padding: 8px 20px;
  letter-spacing: 0.4px;
}

/* =============================================
   SHARED SECTION STYLES
============================================= */
.section {
  padding: 80px 0;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-title {
  font-family: "Fahkwang", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 12px;
  color: #1a1a1a;
  display: inline-block;
  width: 100%;
  background: none;
  padding: 0;
}

.section-title.highlight {
  background: #a8744a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 0;
  box-shadow: none;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  text-align: center;
  font-family: "Fahkwang", sans-serif;
  font-size: 13px;
  color: #888;
  margin-bottom: 40px;
  font-weight: 400;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 20px;
}

/* =============================================
   PRODUCTS SECTION
============================================= */
.products-section {
  background: #ffffff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.product-card {
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: all 0.25s ease;
  border: 1px solid #e8e8e8;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #e8e8e8;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.product-info {
  padding: 20px 16px;
  text-align: center;
}

.product-info h3 {
  font-family: "Fahkwang", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  letter-spacing: 0.4px;
}

.product-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* =============================================
   ABOUT SECTION
============================================= */
.about-section {
  background: #ffffff;
  padding: 60px 0;
  border-top: none;
}

.about-text {
  max-width: 900px;
  margin: 24px auto 0;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  text-align: center;
  letter-spacing: 0.3px;
}

/* =============================================
   APPLICATIONS SECTION
============================================= */
.applications-section {
  background: #ffffff;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.app-card {
  background: #ffffff;
  border-radius: 0;
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  box-shadow: none;
  border: 1px solid #e8e8e8;
  transition: all 0.25s ease;
}

.app-card:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #e8e8e8;
}

.app-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 0;
}

.app-card p {
  font-family: "Fahkwang", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.5;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* =============================================
   WHY CHOOSE US
============================================= */
.why-section {
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.why-card {
  background: #ffffff;
  border-top: none;
  border-radius: 0;
  padding: 24px 18px;
  text-align: center;
  box-shadow: none;
  border: 1px solid #e8e8e8;
  transition: all 0.25s ease;
}

.why-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #e8e8e8;
}

.why-icon {
  margin-bottom: 12px;
  transition: transform 0.3s;
}

.why-card:hover .why-icon {
  transform: scale(1.05);
}

.why-card h3 {
  font-family: "Fahkwang", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.why-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* =============================================
   CONTACT SECTION
============================================= */
.contact-section {
  background: #ffffff;
  border-top: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 30px 0 40px;
}

.contact-card {
  background: #ffffff;
  border-radius: 0;
  padding: 24px 20px;
  text-align: center;
  box-shadow: none;
  border: 1px solid #e8e8e8;
  transition: all 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #e8e8e8;
}

.contact-icon {
  margin-bottom: 12px;
  display: inline-block;
}

.contact-card h3 {
  font-family: "Fahkwang", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: 0.4px;
}

.contact-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 8px;
}

.contact-card a {
  color: #a8744a;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  font-size: 14px;
}

.contact-card a:hover {
  color: #8a5a37;
  text-decoration: underline;
}

/* Inquiry Form */
.inquiry-form {
  background: #ffffff;
  border-radius: 0;
  padding: 32px 28px;
  box-shadow: none;
  border: 1px solid #e8e8e8;
  margin-bottom: 44px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.inquiry-form h3 {
  font-family: "Fahkwang", sans-serif;
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 28px;
  text-align: center;
  letter-spacing: 0.5px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 15px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
  background: #ffffff;
  outline: none;
  transition: all 0.2s;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: #999;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: #a8744a;
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(168, 116, 74, 0.1);
}

.inquiry-form textarea {
  width: 100%;
  resize: vertical;
  margin-bottom: 20px;
  display: block;
  min-height: 120px;
}

.submit-btn {
  display: block;
  margin: 0 auto;
  background: #a8744a;
  color: #fff;
  border: none;
  padding: 14px 40px;
  font-family: "Fahkwang", sans-serif;
  font-size: 15px;
  letter-spacing: 0.5px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 700;
}

.submit-btn:hover {
  background: #8a5a37;
  transform: translateY(-1px);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Map */
.map-container {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  margin-bottom: 40px;
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: #f5f3f0;
  color: #666;
  text-align: center;
  padding: 35px 28px;
  border-top: 1px solid #e8e8e8;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  font-family: "Fahkwang", sans-serif;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.4px;
  color: #1a1a1a;
}

.footer-tagline {
  font-size: 11px;
  color: #999;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.footer-copy {
  font-size: 10px;
  color: #999;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #a8744a;
  color: #fff;
  padding: 12px 24px;
  border-radius: 0;
  font-size: 13px;
  z-index: 999;
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-weight: 500;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 10px 20px;
    height: 75px;
  }

  .section {
    padding: 60px 0;
  }

  .header-left {
    display: flex;
    gap: 8px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .phone-btn {
    font-size: 10px;
    padding: 0;
  }

  .inquiry-form {
    padding: 28px 20px;
  }

  .brand-title {
    font-size: 11px;
  }

  .brand-tagline {
    font-size: 9px;
  }

  .hero-content h2 {
    font-size: clamp(24px, 4vw, 40px);
  }

  .hero-sub {
    font-size: clamp(12px, 2vw, 16px);
  }

  .section-title {
    font-size: clamp(22px, 3vw, 32px);
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 10px 16px;
  }

  .section-inner {
    padding: 0 16px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .apps-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-form {
    padding: 24px 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .phone-btn {
    display: none;
  }

  .menu-btn {
    font-size: 11px;
  }
}
