* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


:root {
  --color-1: #3F51B1; /* Dark Slate Blue */
  --color-2: #FFFFFF; /* White */
  --color-3: #000000; /* Black */
  --color-4: #A62121; /* Firebrick */
  --color-5: #153476; /* Midnight Blue */
  --color-6: #FF4E00; /* Orange Red */
}


html, body {
  background: #0a0a0a;
  color: #ededed;
  font-family: "Inter", sans-serif;
}

.hero-header{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  
  width: 100%;
  height: 100%;
  padding: 0rem 1rem;

  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url("./imgs/showroom-2.png") no-repeat 50% 50%;
  background-size: cover;
}





.hero {
  min-height: auto;
  padding: 4.5rem 3rem ;
  display: flex;
  align-items: center;
  background: none;
}

.hero-content {
  max-width: 910px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tag {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-6);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 1.8rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
}

.tag::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background-color: #ff6a00;
  opacity: 0.6;
}

.hero-title {
  font-size: clamp(38px, 6.4vw, 90px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--color-2);
}

h1 > span {
  display: block;
  overflow: hidden;
  margin-bottom: -0.2em;
}

h1 > span > span {
  display: block;
  transform: translateY(100%);
  will-change: transform;
  padding-bottom: 0.2em;
}

.description {
  max-width: 500px;
  color: var(--color-2);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
}









.workflow-section {
  background-color: #0b0b0b;
  color: #ffffff;
  width: 100%;
  font-family: sans-serif;
  padding: 1rem;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 1rem;
}

.workflow-step {
  position: relative;
  min-height: 500px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 45%, rgba(0, 0, 0, 0.9) 100%), var(--bg-img);
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  border-radius: 10px;
}

.workflow-step:last-child {
  border-right: none;
}

.step-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-number {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #a1a1a1;
}

.step-title {
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
  position: relative;
  padding-left: 14px;
}

/* Red accent square indicator */
.step-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background-color: #ff2a00;
  display: none;
}

.step-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-desc-en {
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
  color: #d1d1d1;
}

.step-desc-kr {
  font-size: 0.75rem;
  margin: 0;
  color: #666666;
}

/* Media Queries for Workflow Section */
@media (max-width: 1024px) {
  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-step {
    min-height: 460px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .workflow-step:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 600px) {
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .workflow-step {
    border-right: none;
    min-height: 380px;
  }
}

















.catalog-container {
  max-width: 1280px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* Header */
.catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.title {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  color: #9ca3af;
}

.search-wrapper input {
  padding: 10px 16px 10px 40px;
  background-color: #f3f4f6;
  border: 1px solid transparent;
  border-radius: 20px;
  font-size: 14px;
  width: 240px;
  outline: none;
  transition: all 0.2s ease;
}

.search-wrapper input:focus {
  border-color: #d1d5db;
  background-color: #ffffff;
}

.btn-add-product {
  background-color: #ffffff;
  border: 1.5px solid #111827;
  color: #111827;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-add-product:hover {
  background-color: #f3f4f6;
}

/* Category Filter Pills */
.categories-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 28px;
  scrollbar-width: none;
}

.categories-nav::-webkit-scrollbar {
  display: none;
}

.category-btn {
  background: transparent;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

.category-btn.active, .category-btn:hover {
  background-color: #f3f4f6;
  color: #111827;
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* Card Item */
.product-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.image-box {
  background-color: #f8f9fa;
  border-radius: 16px;
  height: 200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
  padding: 12px;
}

.image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.title-price{
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 2rem;
}
.product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-price {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
}

.product-stats {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #111827;
  font-weight: 500;
}

.product-stats span {
  font-weight: 700;
}

/* First Card Decorative Arrow */
.arrow-icon-btn {
  position: absolute;
  right: 16px;
  bottom: 40px;
  width: 28px;
  height: 28px;
  background-color: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Load More Area */
.load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.btn-load-more {
  background-color: #111827;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-load-more:hover {
  opacity: 0.9;
}

.btn-load-more.hidden {
  display: none;
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  border-radius: 24px;
  width: 90%;
  max-width: 550px;
  padding: 24px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: scale(0.95);
  transition: transform 0.2s ease;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #6b7280;
  cursor: pointer;
}

.modal-product-img {
  width: 100%;
  height: 350px;
  background-color: #f8f9fa;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  object-fit: cover;
}

.modal-product-img img {
  max-height: 80%;
  max-width: 80%;
  object-fit: contain;
}

.modal-product-details h2 {
  font-size: 20px;
  color: #000000;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.modal-product-details .category-tag {
  display: inline-block;
  background: #e5e7eb;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  margin-bottom: 12px;
  color: #000;
  text-transform: capitalize;
  font-weight: 700;
}

.modal-product-details p {
  color: #000000;
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.buttons-div{
  padding: 1rem 0rem;
}
 

    .add-to-cart-btn {
      width: 100%;
      background: #000000;
      color: #ffffff;
      border: none;
      padding: 14px;
      border-radius:10px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      margin-bottom: 12px;
      transition: opacity 0.2s ease;
    }

    .add-to-cart-btn:hover {
      opacity: 0.9;
    }

    .installment-badge {
      width: 100%;
      border: 1px solid #000;
      border-radius: 10px;
      padding: 10px;
      text-align: center;
      font-size: 12px;
      color: #000;
    }

    .installment-badge strong {
      color: var(--text-main);
    }

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .modal-product-img {
  width: 100%;
  height: 300px;}
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-container {
    padding: 20px 16px;
  }
  .search-wrapper input {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .products-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}















.stack-section {
  padding: 40px 20px 2rem ;
    width: 100%;
    height: auto;  
    background: #f4f0e8;
  color: #151515;
}

.stack-heading {
  max-width: 1120px;
  margin: 0 auto 50px;
}

.stack-heading h2 {
  max-width: 780px;

   font-size: clamp(42px, 8vw, 96px);
  letter-spacing: -0.06em;
  line-height: 0.95;
  margin-bottom: 24px;
}

.stack-heading p {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.7;
  color: #645d55;
}

.cards {
  max-width: 1420px;
  margin: 0 auto;
  
  padding-bottom: 120px;
}

.stack-card {
  position: sticky;
  top: 100px;
  min-height: 480px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 38px;
  align-items: center;
  padding: 28px;
  box-shadow: 0 25px 80px rgba(30, 24, 18, 0.18);
  border-radius: 34px;
  background: var(--card-bg);
  transform: scale(var(--scale, 1));
  transform-origin: top center;
}

.stack-card:nth-child(1) {
  top: 20px;
  --card-bg: #fff7e8;
}

.stack-card:nth-child(2) {
  top: 40px;
  --card-bg: #eaf3ff;
}

.stack-card:nth-child(3) {
  top: 60px;
  --card-bg: #f0eadf;
}

.stack-card:nth-child(4) {
  top: 60px;
  --card-bg: #e9f7ef;
}

.card-image {
  height: 100%;
  min-height: 410px;
  border-radius: 26px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 20px 16px 20px 0;
}

.card-number {
  display: inline-flex;
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.48);
}

.card-content h3 {
  max-width: 520px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

.card-content p {
  max-width: 500px;
  font-size: 18px;
  line-height: 1.7;
  color: #55504a;
  margin-bottom: 32px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.card-meta span {
  padding: 10px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.09);
  font-size: 13px;
  font-weight: 800;
  color: #39352f;
}

/* Tablet */

@media (max-width: 900px) {
  .stack-card {
    gap: 24px;
    padding: 22px;
    min-height: 400px;
  }

  .card-image {
    min-height: 340px;
  }

  .card-content {
    padding: 16px 12px 16px 0;
  }
}

/* Mobile  */

@media (max-width: 680px) {
  .stack-card {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    min-height: 100svh;
    padding: 20px;
    margin-bottom: 0;
    border-radius: 26px;
  }

  .card-image {
    width: 100%;
    min-height: 0;
    height: 240px;
    border-radius: 18px;
  }

  .card-content {
    padding: 4px;
  }

  .card-content h3 {
    margin-bottom: 16px;
  }

  .card-content p {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .card-number {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .card-meta span {
    font-size: 12px;
    padding: 8px 12px;
  }

  .intro,
  .outro {
    min-height: 70vh;
    padding: 60px 20px;
  }
}









/*********************** collection  section ************************/


.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 2rem;
  background-color: #000000;
}

.collection-card {
  position: relative;
  min-height: 420px;
  border-radius: 16px;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.65) 100%), var(--bg-img);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  color: #ffffff;
  box-sizing: border-box;
}

.collection-card.card-large {
  grid-column: 1 / -1;
  min-height: 480px;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.collection-tag {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  font-family: sans-serif;
}

.collection-title {
  font-size: 2.2rem;
  font-weight: 300;
  margin: 0 0 16px 0;
  line-height: 1.1;
  font-family: sans-serif;
}

.collection-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffffff;
  color: #111111;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  font-family: sans-serif;
  transition: opacity 0.2s ease;
}




/* Actions & Buttons */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.btn-primary {
  background-color: #2c2b28;
  color: #ffffff;
  padding: 6px 6px 6px 18px;
  gap: 12px;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #c5e8d2;
  color: #111111;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #1a1917;
}


.collection-btn:hover {
  opacity: 0.85;
}

/* Media Query for Mobile & Tablets */
@media (max-width: 768px) {
  .collections-grid {
    grid-template-columns: 1fr;
  }

  .collection-card.card-large {
    grid-column: auto;
    min-height: 360px;
  }

  .collection-card {
    min-height: 360px;
    padding: 24px;
  }

  .collection-title {
    font-size: 1.6rem;
  }
}







/* Base Styles */


/* FAQ Layout */
.faq-section {
  background-color: #050505;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
  padding: 40px 20px;


  width: 100%;
  max-width: 1400px;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

/* Left Section */
.faq-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 80px;
  height: 100%;
}

.badge {
  display: inline-block;
  background-color: #1a1a1a;
  color: #a1a1aa;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 1px solid #27272a;
}

.faq-header h2 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

/* Contact Card */
.contact-card {
  background-color: #121214;
  border: 1px solid #222225;
  border-radius: 10px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 340px;


/* From https://css.glass */
background: rgba(255, 255, 255, 0.2);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.3);


}

.profile-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.contact-info h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--color-2);
}

.contact-info .role {
  display: block;
  font-size: 0.65rem;
  color: var(--color-2);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  background-color: #2c2b28;
  color: var(--color-2);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 6px;
  border-radius: 8px;
  gap: 8px;
  transition: opacity 0.2s ease;
}

.call-btn .arrow{
  margin-left: 0px;
}

.call-btn:hover {
  opacity: 0.9;
}

/* Right Section (Accordion) */
.faq-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: #121214;
  border: 1px solid #222225;
  border-radius: 12px;
  padding: 18px 22px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: #333338;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 500;
}

.faq-question .icon {
  font-size: 1.2rem;
  font-weight: 300;
  color: #a1a1aa;
}

.faq-answer {
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.faq-answer p {
  color: #a1a1aa;
  font-size: 0.9rem;
  line-height: 1.5;
  padding-top: 14px;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-left {
    gap: 30px;
  }

  .faq-header h2 {
    font-size: 2rem;
  }

  .contact-card {
    max-width: 100%;
  }
}








/* Base Section Styling */
.contact-consultation {
  position: relative;
  width: 100%;
  min-height: auto; /* Specified requirement */
  padding: 80px 40px;
  box-sizing: border-box;
  background: linear-gradient(rgba(206, 80, 80, 0.397), rgba(233, 42, 42, 0.85)),
              url('./imgs/brittani-burns-LNBXK6AUs3w-unsplash.jpg') center/cover no-repeat;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}

/* Left Column Styling */
.contact-info {
  display: flex;
  flex-direction: column;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #8ce1a9;
  margin-bottom: 20px;
}

.tag-dot {
  width: 6px;
  height: 6px;
  background-color: #8ce1a9;
  border-radius: 1px;
}

.contact-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0 0 24px 0;
  color: #ffffff;
}

.contact-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 36px 0;
  max-width: 500px;
}

.contact-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}
/***
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: #ffffff;
  color: #111827;
}

.btn-primary:hover {
  background-color: #e2e8f0;
}


**/
.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
}

/* Left Contact Footer */
.contact-contact-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.contact-row {
  display: flex;
  gap: 30px;
  align-items: center;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.contact-item svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 0.8);
}

.contact-divider {
  width: 100%;
  max-width: 380px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}

/* Right Column Card Styling */
.contact-form-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 44px;
  color: #111827;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-title {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 28px 0;
  letter-spacing: -0.3px;
  color: #111827;
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  padding: 8px 0;
  font-size: 14px;
  color: #1f2937;
  outline: none;
  background: transparent;
  box-sizing: border-box;
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #111827;
  opacity: 0.8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: #111827;
}

/* Select Dropdown */
.select-wrapper {
  position: relative;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.select-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #6b7280;
  pointer-events: none;
}

.form-divider {
  width: 100%;
  height: 1px;
  background-color: #f3f4f6;
  margin: 8px 0;
}

/* Checkbox */
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  accent-color: #0d2127;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 13px;
  color: #6b7280;
  cursor: pointer;
}

/* Submit Button */
.btn-submit-contact {
  width: 100%;
  padding: 16px;
  background-color: #0d2127;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  transition: background-color 0.2s ease;
}

.btn-submit-contact:hover {
  background-color: #1a3841;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-info {
    max-width: 600px;
  }

  .contact-title {
    font-size: 40px;
  }

  .contact-consultation {
    padding: 60px 30px;
  }
}

@media (max-width: 640px) {
  .contact-consultation {
    padding: 40px 20px;
  }

  .contact-title {
    font-size: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    box-sizing: border-box;
  }

  .contact-form-card {
    padding: 24px;
  }
}











@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Reset & Layout --- */
.footer-section {
  background-color: #0d0d0d;
  color: #ffffff;
  padding: 40px 40px 24px 40px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.footer-section * {
  box-sizing: border-box;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* --- Top Row Navigation --- */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.meta-icon {
  stroke: #ffffff;
}

.meta-time {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-pill {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
}

.nav-pill:hover,
.nav-pill.active {
  background-color: #ffffff;
  color: #0d0d0d;
  border-color: #ffffff;
}

/* --- Middle Info Section --- */
.footer-middle {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-left-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-headline {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -1px;
}

.text-bright {
  color: #ffffff;
}

.text-muted {
  color: #4a4a4a;
}

.copyright-text {
  font-size: 13px;
  color: #666666;
  margin: 40px 0 0 0;
}

.footer-right-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 80px;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-label {
  font-size: 11px;
  font-weight: 600;
  color: #555555;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.info-value {
  font-size: 14px;
  line-height: 1.5;
  color: #cccccc;
  font-style: normal;
  margin: 0;
}

.info-link {
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-link:hover {
  color: #ffffff;
}

/* --- Giant Brand Title --- */
.footer-branding {
  width: 100%;
  text-align: center;
  margin: 20px 0;
}

.brand-giant-text {
  font-size: 7rem;
  font-weight: 700;
  line-height: 0.8;
  margin: 0;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-transform: uppercase;
  user-select: none;
}

/* --- Bottom Bar --- */
.footer-bottom-bar {
  background-color: #141414;
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back-to-top-text {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: #888888;
  line-height: 1.3;
}

.back-to-top-btn {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.back-to-top-btn:hover {
  background-color: #ffffff;
  color: #0d0d0d;
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* --- Media Queries --- */
@media (max-width: 1024px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-middle {
    flex-direction: column;
    gap: 40px;
  }

  .footer-headline {
    font-size: 38px;
  }

  .footer-right-grid {
    gap: 30px 40px;
  }

  .brand-giant-text{
    font-size: 5rem;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 30px 20px 20px 20px;
  }

  .footer-headline {
    font-size: 30px;
  }

  .footer-right-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brand-giant-text {
    font-size: 18vw;
    margin: 10px 0;
  }
}

















 /* Modal 2 (Form) Specifics */
    .supplier-tag { font-size: 12px; color: #777; margin-bottom: 8px; }
    .form-product-header { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
    .form-product-thumb { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; border: 1px solid #eee; }
    .form-product-info h4 { font-size: 13px; margin: 0 0 4px; color: #222; }
    .form-product-info p { font-size: 12px; margin: 0; color: #666; font-weight: 600; }

    .section-title { font-size: 15px; font-weight: bold; margin: 16px 0 8px; color: #111; }
    .textarea-box { background: #f8f8f8; border: 1px solid #eaeaea; border-radius: 8px; padding: 10px; }
    textarea { width: 100%; height: 80px; border: none; background: transparent; resize: none; outline: none; font-size: 13px; }
    .char-count { text-align: right; font-size: 11px; color: #888; }

    .attach-container { margin-top: 10px; display: flex; align-items: center; gap: 10px; }
    .attach-btn { border: 1px solid #ccc; border-radius: 20px; padding: 6px 12px; font-size: 12px; cursor: pointer; background: #fff; }
    .attach-hint { font-size: 11px; color: #888; }

    .input-field { width: 100%; padding: 10px 0; border: none; border-bottom: 1px solid #eee; outline: none; font-size: 13px; margin-top: 8px; }
    .input-field:focus { border-bottom-color: #e53935; }

    .btn-red { width: 100%; background: #e53935; color: #fff; border: none; border-radius: 24px; padding: 12px; font-size: 15px; font-weight: bold; cursor: pointer; margin-top: 20px; }
    .btn-red:hover { background: #d32f2f; }
