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

:root {
  --maroon: #7b1c1c;
  --maroon-dark: #5a1111;
  --gold: #c8973a;
  --gold-light: #e8c77a;
  --cream: #faf6f0;
  --dark: #000000;
  --text: #3d2e22;
  --text-light: #1e1e1e;
  --muted: #7a6a5a;
  --border: #e8ddd0;
  --white: #ffffff;
  --grey: #f4f4f4;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
}

a {
  text-decoration: none;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  height: 90px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 48px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--maroon);
}

.navbar__logo img {
  height: 60px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin-bottom: 0px;
}

.navbar__links a {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s;
}

.navbar__links a:hover {
  color: var(--maroon);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--maroon);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--maroon-dark);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: transparent;
  color: var(--maroon);
  border: 1.5px solid var(--maroon);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--maroon);
  color: #fff;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* overlay */

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* mobile */

@media (max-width: 991px) {
  .menu-toggle {
    display: block;
    order: 2;
  }

  .navbar__links {
    position: fixed;
    top: 0;
    left: -300px;
    width: 260px;
    height: 100vh;
    background: #fff;
    display: block;
    gap: 20px;
    align-items: start;
    padding: 20px;
    transition: 0.3s;
    z-index: 999;
  }

  .navbar__links.active {
    left: 0;
  }

  .navbar__links li {
    padding: 10px 0;
  }

  .menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .menu-close {
    font-size: 20px;
    cursor: pointer;
  }
}

@media (min-width: 992px) {
  #menuClose {
    display: none;
  }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__bg.slider-bg-color {
  background: var(--maroon);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 50%;
  margin-left: 10vw;
  margin-top: 5vw;
  color: #fff;
  animation: fadeUp 0.8s ease both;
}

.hero__content h1 {
  font-size: 70px;
  color: #000;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__content p {
  font-size: 24px;
  color: #000;
  margin-bottom: 32px;
  max-width: 600px;
}

.hero__btn {
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 400;
  background: var(--maroon);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  display: inline-block;
}

.hero__btn:hover {
  background: var(--maroon-dark);
  transform: translateY(-2px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Why Choosing Us ── */
.why-section {
  padding: 100px 48px;
  background: var(--white);
}

.why-section__header {
  margin-bottom: 60px;
}

.why-section__header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--dark);
}

.why-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0 64px;
  align-items: center;
}

.why-grid__left h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-light);
  position: sticky;
  top: 100px;
}

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

.feature-card {
  padding: 32px 28px;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  position: relative;
  overflow: hidden;
  border: 1px solid #efefef;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.feature-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-light);
}

.feature-card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-card__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--maroon);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.feature-card__link:hover {
  gap: 10px;
}

/* ── Products Section ── */
.products-section {
  padding: 100px 48px;
  background: var(--grey);
}

.products-section h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 40px;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  background: var(--maroon);
  max-width: max-content;
  margin: 0 auto 48px;
  border-radius: 100px;
  padding: 10px;
}

.tab-btn {
  padding: 8px 20px;
  background: transparent;
  border-radius: 50px;
  font-size: 18px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-weight: 300;
  opacity: 0.9;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--white);
  color: var(--text-light);
  border-color: var(--text-light);
  opacity: 1;
}

.products-carousel {
  position: relative;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  transition: opacity 0.3s;
}

.products-grid.loading {
  opacity: 0.4;
  pointer-events: none;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}

.product-card:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.product-card__image {
  width: 100%;
  height: 290px;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--border);
}

.product-card__img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f0e8de, #e8d8c8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--maroon);
}

.product-card__body {
  padding: 16px;
}

.product-card__category {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.product-card__name {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
}

.product-wrapper {
  position: relative;
}

.product-wrapper .swiper-button-prev {
  left: -30px;
}

.product-wrapper .swiper-button-next {
  right: -30px;
}

.product-wrapper .swiper-button-prev:after,
.product-wrapper .swiper-button-next:after {
  display: none;
}

.product-wrapper .swiper-button-prev,
.product-wrapper .swiper-button-next {
  height: 50px;
  width: 50px;
  background: #fff;
  border-radius: 50px;
  border: 1px solid transparent;
}

.product-wrapper .swiper-button-prev i,
.product-wrapper .swiper-button-next i {
  color: var(--text-light);
  font-size: 16px;
}

.product-wrapper .swiper-button-prev:hover,
.product-wrapper .swiper-button-next:hover {
  background: var(--maroon);
  color: #fff;
  border: 1px solid #fff;
}

.product-wrapper .swiper-button-prev:hover i,
.product-wrapper .swiper-button-next:hover i {
  color: var(--white);
}

/* ── Experience Section ── */
.experience-section {
  padding: 100px 0px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* .experience-section__image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #e8d8c8, #d8c8b8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--maroon);
} */

.experience-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-section__content {
  max-width: 555px;
}

.experience-section__content .badge {
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 500;
  margin-bottom: 20px;
  padding: 0px;
}

.experience-section__content h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
}

.experience-section__content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 18px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--maroon);
  transition: gap 0.2s;
}

.link-arrow:hover {
  gap: 14px;
}

/* ── Fabric Specialization ── */
.fabric-section {
  padding: 0px 0px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.fabric-section__images {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: 30px;
  height: auto;
}

.fabric-section__images .img-wrap:nth-child(2) img {
  height: 550px;
  width: 100%;
  position: absolute;
  bottom: 0;
}

.fabric-section__images .img-wrap {
  position: relative;
}

.fabric-section__images .img-wrap.tall {
  grid-row: span 2;
  grid-column: 2;
  position: relative;
}

.fabric-section__images .img-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 15px;
}

/* .fabric-section__images .img-wrap:hover img {
  transform: scale(1.04);
} */

.fabric-section__content {
  max-width: 555px;
  margin: 0 auto;
  padding-left: 48px;
}

.fabric-section__content .badge,
.contact-form .head .badge {
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 500;
  margin-bottom: 20px;
  padding: 0px;
}

.fabric-section__content h2,
.contact-form .head h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
}

.fabric-section__content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 18px;
}

/* Contact form */
.contact-form.card-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
      background: var(--grey);
    padding: 100px 0;
}

.contact-form .head{
  text-align: center;
  margin-bottom: 40px;
}

.contact-form .card {
  border: none;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border-radius: 5px;
}

.contact-form .card .fom-inner {
  background-color: #fff;
  border-radius: 5px;
  padding: 3rem 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  animation: slideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.contact-form .form-header {
  margin-bottom: 2.2rem;
}

.contact-form .form-header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2b1f17;
  line-height: 1.2;
  animation: slideUp 0.7s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.contact-form .form-header p {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: #000;
  font-weight: 300;
  line-height: 1.6;
  animation: slideUp 0.7s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
  animation: slideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.contact-form .form-group:nth-child(1) {
  animation-delay: 0.35s;
}
.contact-form .form-group:nth-child(2) {
  animation-delay: 0.4s;
}
.contact-form .form-group:nth-child(3) {
  animation-delay: 0.45s;
}
.contact-form .form-group:nth-child(4) {
  animation-delay: 0.5s;
}
.contact-form .form-group:nth-child(5) {
  animation-delay: 0.55s;
}

.contact-form .form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 0.45rem;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  font-size: 0.92rem;
  color: #2b1f17;
  background-color: #fff;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  padding: 0.75rem 1rem;
  outline: none;
  transition:
    border-color 0.25s,
    background-color 0.25s,
    box-shadow 0.25s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form .form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  border-color: #000;
  background-color: #fff;
}

.contact-form .form-group input:hover,
.contact-form .form-group select:hover,
.contact-form .form-group textarea:hover {
  border-color: #000;
}

.contact-form .form-footer {
  text-align: center;
}

.contact-form .btn-submit {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: #7b1c1c;
  border: 1px solid #7b1c1c;
  border-radius: 5px;
  padding: 0.8rem 2rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    background-color 0.3s,
    transform 0.15s,
    box-shadow 0.3s;
  white-space: nowrap;
}

.contact-form .btn-submit:hover {
  background-color: #fff;
  color: #7b1c1c;
}

.contact-form .btn-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

.contact-detail {
  background-color: #fff;
  border-radius: 5px;
  padding: 3rem 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  display: grid;
  border: 1px solid #e2e8f0;
}

.contact-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  margin-bottom: 30px;
}

.contact-box:hover {
  transform: translateY(-5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #7b1c1c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}

.contact-text h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.contact-text a {
  margin: 4px 0 0;
  font-size: 16px;
  color: #1e1e1e;
}

/* ── Footer ── */
footer {
  padding: 48px 48px 20px;
  text-align: center;
}

footer img {
  height: 100px;
}

footer p {
  font-size: 18px;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 500;
  color: var(--dark);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
}

.footer-social a {
  color: var(--text-light);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-social a:hover {
  color: var(--maroon);
}

.footer-social a i {
  padding-right: 10px;
  font-size: 16px;
}

.footer-copy {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-light);
}
