/* HERO SECTION – COMMON */
.hero {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 25, 0.65);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

/* BREADCRUMB */
.breadcrumb {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.9;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 8px;
}

/* HERO TITLE */
.hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 600;
  margin: 0;
}

/* BOUTIQUE SPECIFIC BACKGROUND */
.boutique-hero {
  background: url("/images/Boutique\ stitching\ service\ BG.png") center/cover no-repeat;
}
.boutique-about-section {
  padding: 120px 8%;
  background: #ffffff;
}

.boutique-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.boutique-tag {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 18px;
}

.boutique-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: #2f3142;
  margin-bottom: 25px;
}

.boutique-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #7a7a88;
  max-width: 520px;
  margin-bottom: 35px;
}

/* SKILLS */
.skill {
  margin-bottom: 25px;
}

.skill-label {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 8px;
  color: #2f3142;
}

.skill-bar {
  height: 4px;
  background: #ececec;
  position: relative;
}

.skill-fill {
  height: 100%;
  background: var(--gold);
}

/* BOTTOM */
.boutique-bottom {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.call-box span {
  display: block;
  font-size: 14px;
  color: #7a7a88;
}

.call-box strong {
  font-size: 22px;
  color: #2f3142;
  font-family: 'Cormorant Garamond', serif;
}

.signature-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.signature-box img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.signature-box span {
  font-family: 'Allura', cursive;
  font-size: 28px;
  color: var(--gold);
}

/* RIGHT IMAGE */
.boutique-image {
  position: relative;
  padding-left: 40px;
  border-left: 2px solid var(--gold);
}

.boutique-image img {
  width: 100%;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .boutique-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .boutique-image {
    padding-left: 0;
    border-left: none;
  }
}

/* ===== BOUTIQUE PROCESS SLIDER ===== */

.boutique-process-slider {
  padding: 120px 8%;
  background: #faf6f0;
  overflow: hidden;
}

/* HEADER */
.process-header {
  text-align: center;
  margin-bottom: 70px;
}

.process-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  color: #2f3142;
}

/* SWIPER */
.process-swiper {
  padding: 30px 0 70px;
}

/* SLIDE */
.process-swiper .swiper-slide {
  width: 360px;
  height: auto;
}

/* CARD – CONE STYLE */
.process-card {
  background: #ffffff;
  padding: 70px 40px 60px;
  text-align: center;

  border-radius: 18px; /* 👈 cone feel */
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);

  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;

  transition: all 0.4s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(201,161,107,0.25);
}

/* IMAGE CIRCLE */
.process-img-wrap {
  width: 170px;
  height: 170px;
  margin-bottom: 35px;
  border-radius: 50%;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.process-img-wrap::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 2px dashed #d8c6aa;
  border-radius: 50%;
}

.process-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* TEXT */
.process-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  margin-bottom: 14px;
  color: #2f3142;
}

.process-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #7a7a88;
}

/* ARROWS */
.process-prev,
.process-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;

  width: 52px;
  height: 52px;
  border: 1.5px dashed #c9a16b;
  border-radius: 50%;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  color: #c9a16b;
  cursor: pointer;
  transition: all 0.4s ease;
}

.process-prev { left: -70px; }
.process-next { right: -70px; }

.process-prev:hover,
.process-next:hover {
  background: #c9a16b;
  color: #ffffff;
}

/* DOTS */
.process-pagination {
  margin-top: 40px;
  text-align: center;
}

.process-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: transparent;
  border: 1px solid #c9a16b;
  opacity: 1;
  margin: 0 6px;
}

.process-pagination .swiper-pagination-bullet-active {
  background: #c9a16b;
}

/* MOBILE */
@media(max-width: 768px) {
  .process-prev,
  .process-next {
    display: none;
  }
}

/* ===== WHY CHOOSE US SECTION ===== */

.why-choose-zigzag {
  padding: 120px 0;
  background: #fff;
}

.choose-header {
  text-align: center;
  margin-bottom: 100px;
}
.choose-header p{
  font-size: 16px;
  line-height: 1.8;
  color: #7a7a88;
}

.choose-tag {
  font-size: 13px;
  letter-spacing: 2px;
  color: #caa36a;
}

.choose-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  margin-top: 12px;
  color: #1f1f2e;
}

/* ROW LAYOUT */
.choose-row {
  max-width: 1200px;
  margin: 0 auto 120px;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* reverse row */
.choose-row.reverse {
  flex-direction: row-reverse;
}

/* TEXT */
.choose-text {
  flex: 1;
}

.choose-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.choose-number {
  font-size: 28px;
  color: #caa36a;
  font-weight: 600;
}

.choose-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  margin-bottom: 16px;
  color: #1f1f2e;
}

.choose-text p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* IMAGE */
.choose-image {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}

.choose-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* LEFT SLIDE */
.choose-row.animate-left .choose-text,
.choose-row.animate-left .choose-image {
  transform: translateX(-80px);
}

/* RIGHT SLIDE */
.choose-row.animate-right .choose-text,
.choose-row.animate-right .choose-image {
  transform: translateX(80px);
}

/* VISIBLE */
.choose-row.visible .choose-text,
.choose-row.visible .choose-image {
  opacity: 1;
  transform: translateX(0);
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {

  .choose-row,
  .choose-row.reverse {
    flex-direction: column;
    gap: 40px;
  }

  .choose-row.animate-left .choose-text,
  .choose-row.animate-left .choose-image,
  .choose-row.animate-right .choose-text,
  .choose-row.animate-right .choose-image {
    transform: translateY(40px);
  }

  .choose-row.visible .choose-text,
  .choose-row.visible .choose-image {
    transform: translateY(0);
  }

  .choose-image img {
    height: 280px;
  }

}
.boutique-cta-strip {
  background: #e6bf98; /* luxury beige */
  padding: 45px 8%;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT */
.cta-call {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 260px;
}

.cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2f3142;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-call-text span {
  display: block;
  font-size: 14px;
  color: #fff;
  opacity: 0.9;
}

.cta-call-text strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: #fff;
}

/* CENTER */
.cta-strip-content {
  flex: 1;
}

.cta-strip-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff;
  max-width: 620px;
}

/* RIGHT BUTTON */
.cta-strip-btn a {
  display: inline-block;
  padding: 16px 36px;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.35s ease;
}

.cta-strip-btn a:hover {
  background: #ffffff;
  color: #2f3142;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-call {
    justify-content: center;
  }

  .cta-strip-content p {
    max-width: 100%;
  }
}
/* ===== BOUTIQUE PARTNERS SECTION ===== */

.boutique-partners-section {
  padding: 120px 8%;
  background: #ffffff;
}

/* HEADER */
.partners-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.partners-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  color: #2f3142;
  margin-bottom: 18px;
}

.partners-header p {
  font-size: 16px;
  line-height: 1.8;
  color: #7a7a88;
}

/* GRID */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.partner-card {
  background: #faf6f0;
  padding: 60px 45px;
  text-align: center;
  border: 1.5px dashed #e1c9a6;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(201,161,107,0.2);
}

/* LOGO */
.partner-logo {
  width: 140px;
  height: 140px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

/* PLACEHOLDER */
.partner-placeholder {
  width: 140px;
  height: 140px;
  margin: 0 auto 25px;
  border-radius: 50%;
  border: 2px dashed #c9a16b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: #c9a16b;
  font-family: 'Cormorant Garamond', serif;
}

/* TEXT */
.partner-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: #2f3142;
  margin-bottom: 14px;
}

.partner-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #7a7a88;
  margin-bottom: 22px;
}

/* STATUS */
.partner-status {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1px;
  color: #ffffff;
  background: #c9a16b;
  padding: 6px 18px;
}

/* CTA */
.partner-cta {
  display: inline-block;
  padding: 14px 34px;
  border: 1.5px solid #c9a16b;
  color: #2f3142;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.35s ease;
}

.partner-cta:hover {
  background: #c9a16b;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}
.boutique-faq-section {
  padding: 120px 8%;
  background: #ffffff;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 70px;
}

.faq-tag {
  font-size: 13px;
  letter-spacing: 2px;
  color: #c9a16b;
  display: inline-block;
  margin-bottom: 16px;
}

.faq-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  color: #2f3142;
}

/* FAQ ITEMS */
.faq-item {
  border-bottom: 1px solid #e6e6e6;
  padding: 22px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #2f3142;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 28px;
  color: #c9a16b;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.8;
  color: #7a7a88;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 36px;
  }

  .faq-question {
    font-size: 20px;
  }
}
/* ===== CONTACT CARD (EXACT MATCH) ===== */

.contact-card {
  position: relative;
  background:
    linear-gradient(rgba(52,54,71,0.88), rgba(52,54,71,0.88)),
    url("images/sewing-machine.jpg") center / cover no-repeat;
  padding: 70px 30px;
  text-align: center;
  color: #fff;
}

/* CIRCLE ICON */
.contact-icon {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 34px;
  height: 34px;
}

/* TITLE */
.contact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 22px;
}

/* SUBTEXT */
.call-label {
  display: block;
  font-size: 14px;
  letter-spacing: 1px;
  color: #e0e0e0;
  margin-bottom: 6px;
}
.contact-box a {
  color: #ffffff !important;   /* force white */
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}
/* NUMBER */
.call-number {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
}

.call-number:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-card {
    padding: 60px 20px;
  }

  .contact-card h3 {
    font-size: 28px;
  }

  .contact-icon {
    width: 75px;
    height: 75px;
  }
}
/* ===== TEXT STAGGER EFFECT ===== */
.choose-row.visible .choose-text h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.choose-row.visible .choose-text p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
/* ===== IMAGE MASK REVEAL ===== */

.choose-image img {
  transform: scale(1.1);
  transition: transform 1.1s ease;
}

.choose-row.visible .choose-image img {
  transform: scale(1);
}
/* ===== NUMBER GLOW ===== */
.choose-number {
  transition: color 0.4s ease, text-shadow 0.4s ease;
}

.choose-row.visible .choose-number {
  color: #caa36a;
  text-shadow: 0 0 10px rgba(202,163,106,0.45);
}
/* ===== NUMBER GLOW ===== */
.choose-number {
  transition: color 0.4s ease, text-shadow 0.4s ease;
}

.choose-row.visible .choose-number {
  color: #caa36a;
  text-shadow: 0 0 10px rgba(202,163,106,0.45);
}
@media (max-width: 768px) {

  .choose-text,
  .choose-image {
    transform: translateY(40px) !important;
  }

  .choose-row.visible .choose-text,
  .choose-row.visible .choose-image {
    transform: translateY(0) !important;
  }

}
/* ===== ROADMAP SECTION (FINAL FIXED) ===== */

.boutique-roadmap {
  position: relative;
  max-width: 1100px;
  margin: 140px auto;
  padding-left: 160px;
}

/* dotted line */
.roadmap-line {
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    #caa36a,
    #caa36a 6px,
    transparent 6px,
    transparent 14px
  );
}

/* item */
.roadmap-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 120px;

  opacity: 0;
  transform: translateY(80px);
  transition: all 0.7s ease;
}

.roadmap-item.active {
  opacity: 1;
  transform: translateY(0);
}

/* dot ON line */
.roadmap-dot {
  position: absolute;
  left: 52px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #caa36a;
  color: #caa36a;
  font-weight: 600;

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;

  transition: all 0.4s ease;
}

.roadmap-item.active .roadmap-dot {
  background: #caa36a;
  color: #fff;
  box-shadow: 0 0 20px rgba(202,163,106,0.55);
}

/* content slide from line */
.roadmap-content {
  background: #fff;
  padding: 36px 42px;
  max-width: 640px;
  margin-left: 120px;
  border-radius: 16px;

  box-shadow: 0 30px 70px rgba(0,0,0,0.08);

  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.8s ease;
  position: relative;
  z-index: 2;
}
.roadmap-item .roadmap-content {
  transform-origin: left center;
}
.roadmap-item.active .roadmap-content {
  opacity: 1;
  transform: translateX(0);
}

/* mobile */
@media (max-width: 768px) {
  .boutique-roadmap {
    padding-left: 0;
  }

  .roadmap-line {
    left: 50%;
  }

  .roadmap-dot {
    left: calc(50% - 28px);
  }

  .roadmap-item {
    flex-direction: column;
    text-align: center;
  }

  .roadmap-content {
    margin-left: 0;
    margin-top: 32px;
    transform: translateY(40px);
  }

  .roadmap-item.active .roadmap-content {
    transform: translateY(0);
  }
}
