
/* ===== ALTERATION PRICING SECTION ===== */

.alteration-pricing {
  background: #1c1c1c;
  padding: 80px 0;
  color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #b9a37a;
  margin-bottom: 50px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.pricing-card {
  background: #242424;
  padding: 30px;
  border-radius: 6px;
  border: 1px solid #2f2f2f;
}

.pricing-card h3 {
  margin-bottom: 20px;
  font-size: 22px;
  color: #b9a37a;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background: #2b2b2b;
}

th, td {
  padding: 12px 10px;
  text-align: center;
  border-bottom: 1px solid #333;
  font-size: 14px;
}

th {
  font-weight: 600;
}

td:first-child, th:first-child {
  text-align: left;
}

.pricing-note {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}



/* CTA BUTTON WRAPPER */
.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  align-items: center;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: #b9a37a;
  color: #111;
  padding: 14px 26px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #cbb48a;
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1f3d2b;
  color: #fff;
  padding: 12px 22px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid #2f6f4f;
  transition: 0.3s ease;
}

.btn-whatsapp:hover {
  background: #25d366;
  color: #111;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.35);
}

/* ICON */
.wa-icon img {
  width: 22px;
  height: 22px;
}

/* TEXT */
.wa-text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 600;
}

.wa-text small {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.85;
}


/* ===============================
   CTA BUTTONS – MOBILE FIX
================================ */
@media (max-width: 768px) {

  .cta-buttons {
    flex-direction: column;     /* stack buttons */
    gap: 14px;
    width: 100%;
  }

  .cta-buttons a {
    width: 100%;                /* full width buttons */
    justify-content: center;    /* center content */
    text-align: center;
  }

  .btn-whatsapp {
    padding: 14px 18px;         /* slightly tighter */
  }

  .wa-text {
    align-items: center;        /* center text vertically */
  }
}


/* Footer Call to action Button CSS Start */
/* ===============================
   DUAL CTA BAR (SVG ONLY)
================================ */
.cta-dual-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;

  display: flex;
  z-index: 9999;

  background: #1e1e1e;
  border-top: 1px solid #2f2f2f;
}

/* SHARED CTA */
.cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;

  transition: all 0.25s ease;
}

/* ICON */
.cta-icon {
  display: flex;
  align-items: center;
}

/* TEXT */
.cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.cta-text small {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.9;
}

/* WHATSAPP */
.cta-btn.whatsapp {
  background: linear-gradient(135deg, #1f3d2b, #1a3224);
  border-right: 1px solid #2f2f2f;
}

.cta-btn.whatsapp:hover {
  background: #25d366;
  color: #111;
}

/* CALL */
.cta-btn.call {
  background: linear-gradient(135deg, #0a6fa3, #095c87);
}

.cta-btn.call:hover {
  background: #0aa7e8;
}

/* DESKTOP ALIGNMENT */
@media (min-width: 992px) {
  .cta-dual-bar {
    position: static;
    height: auto;
    background: transparent;
    border: none;
    justify-content: center;
    gap: 18px;
    margin: 40px 0;
  }

  .cta-btn {
    max-width: 260px;
    padding: 14px 22px;
    border-radius: 6px;
  }

  .cta-btn.whatsapp {
    border-right: none;
  }
}

/* Footer Call to Action CSS End */




/* ===============================
   DESKTOP STICKY PILL CTA
================================ */

/* ===============================
   RIGHT SIDE STICKY CTA – LUXURY
================================ */

/* ===============================
   RIGHT SIDE STICKY CTA – FIXED
================================ */
/* ===============================
   RIGHT SIDE STICKY CTA — FINAL
   NO HOVER COLLISION (BUG-FREE)
================================ */

.desktop-sticky-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);

  display: flex;
  flex-direction: column;
  gap: 16px;

  z-index: 9999;
}

/* BUTTON BASE — FIXED HIT AREA */
.desktop-sticky-cta .pill-btn {
  position: relative;

  width: 56px;          /* HIT AREA NEVER CHANGES */
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 28px 0 0 28px;
  overflow: visible;

  text-decoration: none;
  color: #ffffff;

  cursor: pointer;
}

/* ICON */
.desktop-sticky-cta .icon {
  z-index: 2;
}

.desktop-sticky-cta .icon svg {
  width: 26px;
  height: 26px;
}

/* VISUAL EXPANSION LAYER (NOT HOVER AREA) */
.desktop-sticky-cta .pill-btn::after {
  content: "";

  position: absolute;
  right: 0;
  top: 0;

  height: 100%;
  width: 56px;        /* SAME AS HIT AREA */

  border-radius: 28px 0 0 28px;

  z-index: 1;
  transition: width 0.35s ease, box-shadow 0.35s ease;
}

/* LABEL */
.desktop-sticky-cta .label {
  position: absolute;
  right: 56px;

  opacity: 0;
  white-space: nowrap;

  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;

  transition: opacity 0.25s ease;
  z-index: 2;
}

.desktop-sticky-cta .label small {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.85;
}

/* HOVER — ONLY VISUAL EXPANDS */
.desktop-sticky-cta .pill-btn:hover::after {
  width: 220px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.6);
}

.desktop-sticky-cta .pill-btn:hover .label {
  opacity: 1;
}

/* WHATSAPP */
.desktop-sticky-cta .whatsapp::after {
  background: linear-gradient(135deg, #1f3d2b, #1a3224);
}

/* CALL */
.desktop-sticky-cta .call::after {
  background: linear-gradient(135deg, #0a6fa3, #095c87);
}

/* HIDE ON MOBILE */
@media (max-width: 991px) {
  .desktop-sticky-cta {
    display: none;
  }
}






/* Servic section Card - Css */
/* SECTION */
.premium-services {
  background: #1b1b1b;
  padding: 100px 0;
}

.services-wrapper {
  max-width: 1300px;
  margin: auto;
  padding: 0 24px;
}

/* HEADINGS */
.services-title {
  text-align: center;
  font-size: 38px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.services-subtitle {
  text-align: center;
  color: #b9a37a;
  font-size: 15px;
  margin-bottom: 70px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.service-card {
  background: #222;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #2f2f2f;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

/* IMAGE */
.service-image {
  height: 300px; /* BIG & VISIBLE */
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

/* CONTENT */
.service-content {
  padding: 28px;
}

.service-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

.service-content p {
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-image {
    height: 260px;
  }
}



/* Section Section Card - End CSS */



/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1300px;
  margin: 0 auto;
}

/* SERVICE CARD (CLICKABLE) */
.service-card {
  display: block;
  background: #222;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid #2f2f2f;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
}

/* IMAGE */
.service-image {
  height: 360px; /* INCREASED SIZE */
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

/* CONTENT */
.service-content {
  padding: 32px;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.service-content p {
  font-size: 14.5px;
  color: #cfcfcf;
  line-height: 1.65;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-image {
    height: 280px;
  }
}



/* FAQ CSS */
/* FAQ SECTION */
.faq-section {
  background: #1c1c1c;
  padding: 100px 0;
}

.faq-container {
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.faq-header p {
  font-size: 14px;
  color: #b9a37a;
}

/* FAQ ITEMS */
.faq-item {
  border-bottom: 1px solid #2f2f2f;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: #b9a37a;
}

.faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.7;
  padding-bottom: 20px;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* FAQ CSS End */


/* Content Call to Action */
/* ===============================
   TAILOR CTA SECTION
================================ */

.tailor-cta-section {
  background: #1b1b1b;
  padding: 120px 0;
}

/* CONTAINER */
.tailor-cta-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 24px;
}

/* CARD */
.cta-content {
  background: linear-gradient(
    145deg,
    #222 0%,
    #1c1c1c 100%
  );

  border-radius: 14px;
  padding: 70px 80px;
  text-align: center;

  border: 1px solid #2f2f2f;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.6);
}

/* TAG */
.cta-tag {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b9a37a;
}

/* TITLE */
.cta-title {
  font-size: 40px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
}

/* DESCRIPTION */
.cta-description {
  font-size: 15px;
  line-height: 1.8;
  color: #cfcfcf;
  max-width: 760px;
  margin: 0 auto 45px;
}

/* ACTIONS */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 22px;
}

/* BUTTON BASE */
.cta-btn {
  padding: 16px 34px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* PRIMARY */
.cta-btn.primary {
  background: #b9a37a;
  color: #111;
}

.cta-btn.primary:hover {
  background: #cbb48a;
}

/* SECONDARY */
.cta-btn.secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid #3a3a3a;
}

.cta-btn.secondary:hover {
  background: #25d366;
  color: #111;
  border-color: #25d366;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .cta-content {
    padding: 50px 28px;
  }

  .cta-title {
    font-size: 30px;
  }

  .cta-description {
    font-size: 14px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}



/* SEO Content CSS */

/* ===============================
   SEO CONTENT SECTION
================================ */

.tailor-content-section {
  background: #1b1b1b;
  padding: 120px 0 80px;
}

.tailor-content-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 24px;
}

/* HEADINGS */
.content-heading {
  font-size: 38px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 22px;
}

.content-intro {
  font-size: 15px;
  line-height: 1.8;
  color: #cfcfcf;
  max-width: 900px;
  margin-bottom: 60px;
}

/* GRID */
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-bottom: 50px;
}

/* BLOCK */
.content-block h3 {
  font-size: 20px;
  font-weight: 600;
  color: #b9a37a;
  margin-bottom: 14px;
}

.content-block p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #d0d0d0;
}

/* CLOSING */
.content-closing {
  font-size: 15px;
  line-height: 1.8;
  color: #cfcfcf;
  max-width: 900px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .content-heading {
    font-size: 30px;
  }
}

/* SEO Content CSS ENd */


/* ===============================
   TAILORING SVG BACKGROUND
================================ */

.tailor-content-section {
  position: relative;
  overflow: hidden;
}

/* SVG WRAPPER */
.tailor-bg-svg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* COMMON SVG STYLE */
.tailor-bg-svg svg {
  position: absolute;
  fill: none;
  stroke: #b9a37a;
  stroke-width: 2;
  opacity: 0.06; /* VERY SUBTLE */
}

/* NEEDLE */
.svg-needle {
  width: 180px;
  top: 80px;
  left: -40px;
}

/* SCISSORS */
.svg-scissors {
  width: 220px;
  bottom: 120px;
  right: -60px;
}

/* STITCH LINE */
.svg-stitch {
  width: 300px;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

/* Ensure content stays above SVG */
.tailor-content-container {
  position: relative;
  z-index: 2;
}

/* MOBILE – reduce clutter */
@media (max-width: 768px) {
  .svg-needle,
  .svg-scissors {
    display: none;
  }

  .svg-stitch {
    opacity: 0.04;
  }
}



/* ===============================
   STRONG TAILORING BACKGROUND
================================ */

.tailor-content-section {
  position: relative;
  overflow: hidden;
}

/* BACKGROUND LAYER */
.tailor-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* COMMON SVG STYLE */
.tailor-bg-pattern svg {
  position: absolute;
  fill: none;
  stroke: #b9a37a;
  stroke-width: 1.5;
  opacity: 0.12; /* NOTICEABLY VISIBLE */
}

/* STITCH PATTERN */
.stitch-pattern {
  width: 420px;
  top: 40px;
  left: -80px;
}

/* MEASUREMENT GRID */
.measurement-grid {
  width: 360px;
  right: -120px;
  top: 120px;
  stroke-width: 1;
  opacity: 0.10;
}

/* NEEDLE */
.needle-accent {
  width: 260px;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  stroke-width: 2;
  opacity: 0.18;
}

/* CONTENT ABOVE */
.tailor-content-container {
  position: relative;
  z-index: 2;
}

/* MOBILE CLEANUP */
@media (max-width: 768px) {
  .measurement-grid {
    display: none;
  }

  .needle-accent {
    opacity: 0.12;
  }
}




/* SERVICES GRID */
.tailor-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

/* CARD */
.tailor-service-card {
  background: #1c1c1c;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tailor-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* IMAGE */
.tailor-service-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.tailor-service-content {
  padding: 25px;
  text-align: center;
}

.tailor-service-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.tailor-service-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

/* TABLET (2 columns but smaller spacing) */
@media (max-width: 991px) {
  .tailor-services-grid {
    gap: 30px;
  }

  .tailor-service-img img {
    height: 240px;
  }
}

/* MOBILE (1 column) */
@media (max-width: 576px) {
  .tailor-services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .tailor-service-img img {
    height: 220px;
  }

  .tailor-service-content h3 {
    font-size: 18px;
  }
}


/* Footer Content CSS */
/* ===============================
   FOOTER – TAILORING BRAND
================================ */

.tailor-footer {
  background: #151515;
  color: #cfcfcf;
  padding: 90px 0 0;
}

/* CONTAINER */
.footer-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1.3fr;
  gap: 60px;
}

/* COLUMNS */
.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-col h3 {
  font-size: 22px;
}

.footer-col h4 {
  font-size: 16px;
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 360px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cfcfcf;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #b9a37a;
}

/* CONTACT */
.footer-col.contact ul li {
  font-size: 14px;
  line-height: 1.7;
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 70px;
  border-top: 1px solid #2a2a2a;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #9e9e9e;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

/* Footer Content CSS End */

/* ===============================
   FOOTER SVG BACKGROUND
================================ */

.tailor-footer {
  position: relative;
  overflow: hidden;
}

/* SVG LAYER */
.footer-bg-svg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.footer-bg-svg svg {
  position: absolute;
  fill: none;
  stroke: #b9a37a;
  opacity: 0.12;
}

/* STITCH */
.footer-stitch {
  width: 420px;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  stroke-width: 2;
}

/* GRID */
.footer-grid {
  width: 360px;
  right: -120px;
  bottom: 40px;
  stroke-width: 1;
  opacity: 0.08;
}

/* Ensure content is above SVG */
.footer-container,
.footer-bottom {
  position: relative;
  z-index: 2;
}


/* ===============================
   FOOTER LOGO
================================ */

.footer-logo {
  margin-bottom: 18px;
}

.footer-logo img {
  max-width: 160px;     /* PERFECT for footer */
  height: auto;
  display: block;
}

/* ===============================
   FOOTER SOCIAL – LUXURY STYLE
================================ */

.footer-col.brand .footer-social {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}

/* ICON LINKS */
.footer-col.brand .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

/* ICON SVG */
.footer-col.brand .footer-social svg {
  width: 18px;
  height: 18px;
  fill: #9e9e9e;
}

/* HOVER (SUBTLE GOLD) */
.footer-col.brand .footer-social a:hover svg {
  fill: #b9a37a;
}

.footer-col.brand .footer-social a:hover {
  opacity: 0.95;
}



.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}

.footer-social .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #9e9e9e;
  transition: fill 0.3s ease;
}

.footer-social .social-link:hover svg {
  fill: #b9a37a;
}



/* Area SErved Css */
/* ===============================
   AREAS WE SERVE SECTION
================================ */

.service-areas {
  padding: 110px 0;
  background: #1a1a1a;
}

.service-areas .sec-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.service-areas .sec-title .sub-title {
  color: #b9a37a;
  letter-spacing: 1.5px;
  font-size: 12px;
  text-transform: uppercase;
}

.service-areas .sec-title h2 {
  color: #ffffff;
  font-size: 36px;
  margin: 14px 0;
}

.service-areas .sec-desc {
  color: #b5b5b5;
  font-size: 15px;
  line-height: 1.8;
}

/* GRID */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 50px;
}

/* LOCATION CARD */
.area-card {
  background: #222;
  border: 1px solid #2e2e2e;
  padding: 22px 20px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #e5e5e5;
  letter-spacing: 0.3px;
  transition: all 0.35s ease;
  cursor: default;
}

.area-card:hover {
  border-color: #b9a37a;
  color: #b9a37a;
  transform: translateY(-4px);
}

/* NOTE */
.areas-note {
  max-width: 820px;
  margin: auto;
  text-align: center;
  font-size: 14px;
  color: #a5a5a5;
  line-height: 1.7;
  position: relative;
}

.areas-note .dot {
  display: block;
  width: 6px;
  height: 6px;
  background: #b9a37a;
  border-radius: 50%;
  margin: 0 auto 14px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}


/* Area Served CSS End */


/* ===============================
   WORK PROCESS – DOORSTEP SERVICE
================================ */
/* ===============================
   WORK PROCESS – TAILORING
================================ */

.work-process {
  padding: 120px 0;
  background: #1b1b1b;
}

/* SECTION TITLE */
.work-process .sec-title {
  max-width: 820px;
  margin: 0 auto 70px;
  text-align: center;
}

.work-process .sub-title {
  color: #b9a37a;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.work-process h2 {
  color: #ffffff;
  font-size: 36px;
  margin: 14px 0;
}

.work-process .sec-desc {
  color: #b5b5b5;
  font-size: 15px;
  line-height: 1.8;
}

/* PROCESS GRID */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
}

/* STITCH CONNECTOR LINE */
.process-stitch::before {
  content: "";
  position: absolute;
  top: 54%;
  left: 6%;
  right: 6%;
  height: 2px;
  background-image: repeating-linear-gradient(
    to right,
    #b9a37a 0 6px,
    transparent 6px 16px
  );
  opacity: 0.25;
}

/* CARD */
.process-card {
  background: linear-gradient(180deg, #232323 0%, #1e1e1e 100%);
  border: 1px solid #2e2e2e;
  padding: 40px 30px;
  transition: all 0.35s ease;
  position: relative;
  z-index: 2;
}

/* HOVER */
.process-card:hover {
  border-color: #b9a37a;
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* ICON CIRCLE */
.process-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px dashed rgba(185, 163, 122, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.4s ease;
}

/* ICON SVG */
.process-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #b9a37a;
  stroke-width: 1.8;
}

/* ICON HOVER */
.process-card:hover .process-icon {
  border-style: solid;
  box-shadow: 0 0 0 6px rgba(185, 163, 122, 0.08);
}

/* TEXT */
.process-card h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 12px;
}

.process-card p {
  color: #b5b5b5;
  font-size: 14px;
  line-height: 1.7;
}

/* NOTE */
.process-note {
  max-width: 900px;
  margin: auto;
  text-align: center;
  color: #a5a5a5;
  font-size: 14px;
  line-height: 1.8;
}

.process-note .dot {
  display: block;
  width: 6px;
  height: 6px;
  background: #b9a37a;
  border-radius: 50%;
  margin: 0 auto 14px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-stitch::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
  .work-process h2 {
    font-size: 30px;
  }
}


/* ===============================
   HERO TRUST BADGES – 2 + 1 GRID
================================ */
/* ===============================
   HERO TRUST BADGES – BADGE VIEW
================================ */

.hero-trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 38px;
}

/* Third badge full width */
.hero-trust-badges .trust-badge:nth-child(3) {
  grid-column: 1 / -1;
}

/* TRUST BADGE */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 8px;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.01)
  );

  border: 1px solid #2f2f2f;
  transition: all 0.3s ease;
}

/* Hover = subtle authority */
.trust-badge:hover {
  border-color: #b9a37a;
  transform: translateY(-2px);
}

/* ICON */
.badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px dashed rgba(185, 163, 122, 0.7);

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon svg {
  width: 20px;
  height: 20px;
  stroke: #b9a37a;
  stroke-width: 1.8;
  fill: none;
}

/* TEXT */
.badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.badge-value {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.4px;
}

.badge-title {
  font-size: 12.5px;
  color: #b5b5b5;
  margin-top: 4px;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 640px) {
  .hero-trust-badges {
    grid-template-columns: 1fr;
  }
}



.enterprise-uniforms {
  padding: 100px 0;
  background: linear-gradient(180deg, #0d0d0d, #121212);
}

.enterprise-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

/* LEFT CONTENT */
.enterprise-tag {
  color: #b9a37a;
  letter-spacing: 2px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 14px;
}

.enterprise-content h2 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}

.enterprise-intro {
  font-size: 16px;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Trust points */
.enterprise-points div {
  font-size: 15px;
  color: #ddd;
  margin-bottom: 12px;
}

/* CTA */
.enterprise-cta {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 34px;
  background: #b9a37a;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.enterprise-cta:hover {
  background: #d1bb8e;
}

/* RIGHT BLOCKS */
.enterprise-blocks {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.enterprise-block {
  background: #1b1b1b;
  padding: 28px 30px;
  border-left: 4px solid #b9a37a;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.enterprise-block:hover {
  transform: translateX(6px);
}

.enterprise-block h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}

.enterprise-block p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 991px) {
  .enterprise-wrap {
    grid-template-columns: 1fr;
  }

  .enterprise-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .enterprise-uniforms {
    padding: 80px 0;
  }

  .enterprise-content h2 {
    font-size: 26px;
  }
}





/* contact page css */

.contact-hero {
  padding: 110px 20px;
  background: linear-gradient(180deg, #0d0d0d, #141414);
  text-align: center;
}

.hero-tag {
  color: #b9a37a;
  letter-spacing: 2px;
  font-size: 13px;
}

.contact-hero h1 {
  font-size: 44px;
  max-width: 900px;
  margin: 20px auto;
  color: #fff;
}

.contact-hero p {
  max-width: 750px;
  margin: auto;
  color: #ccc;
  font-size: 16px;
  line-height: 1.7;
}


.contact-trust-strip {
  background: #111;
  padding: 40px 20px;
}

.trust-strip-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ddd;
  font-size: 14px;
}

.trust-item svg {
  width: 22px;
  fill: #b9a37a;
}


.contact-main {
  padding: 100px 20px;
}

.contact-main-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
}

.contact-info-box h2,
.contact-form-box h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #fff;
}

.contact-info-box p {
  color: #ccc;
  margin-bottom: 30px;
}

.info-row {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  color: #ddd;
}

.info-row svg {
  width: 22px;
  fill: #b9a37a;
}

.contact-form-box form {
  background: #161616;
  padding: 40px;
  border-radius: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

input, select, textarea {
  padding: 14px;
  background: #1f1f1f;
  border: none;
  border-radius: 8px;
  color: #fff;
  width: 100%;
}

textarea {
  min-height: 130px;
}

button {
  background: #b9a37a;
  color: #000;
  padding: 15px;
  width: 100%;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}


.contact-map iframe {
  width: 100%;
  height: 420px;
  border: none;
}


.contact-final-cta {
  padding: 90px 20px;
  text-align: center;
  background: #0d0d0d;
}

.contact-final-cta h2 {
  font-size: 34px;
  color: #fff;
}

.contact-final-cta p {
  color: #ccc;
  margin: 15px 0 30px;
}

.contact-final-cta a {
  background: #b9a37a;
  color: #000;
  padding: 14px 40px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
}


@media (max-width: 991px) {
  .trust-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .contact-main-inner {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}


/* contact page contact form css */
.tailor-contact-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0d0d0d, #141414);
}

.tailor-contact-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
}

/* LEFT */
.section-tag {
  color: #b9a37a;
  letter-spacing: 2px;
  font-size: 13px;
}

.tailor-contact-info h2 {
  font-size: 36px;
  color: #fff;
  margin: 15px 0;
}

.tailor-contact-info p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 35px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ddd;
  font-size: 15px;
}

.info-item svg {
  width: 22px;
  fill: #b9a37a;
}

.tailor-icon-row {
  margin-top: 40px;
  display: flex;
  gap: 18px;
}

.tailor-icon-row svg {
  width: 40px;
  stroke: #b9a37a;
  fill: none;
  opacity: 0.4;
}

/* FORM BOX */
.tailor-form-box {
  background: #161616;
  padding: 45px;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.tailor-form-box h3 {
  font-size: 26px;
  margin-bottom: 30px;
}

/* FORM */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #ccc;
}

input, select, textarea {
  width: 100%;
  padding: 14px;
  background: #1f1f1f;
  border: 1px solid #2b2b2b;
  border-radius: 8px;
  color: #fff;
}

textarea {
  min-height: 120px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* BUTTON */
.submit-btn {
  margin-top: 20px;
  width: 100%;
  padding: 15px;
  background: #b9a37a;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .tailor-contact-container {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }
}



.trust-strip {
  background: #0f0f0f;
  border-top: 1px solid #1f1f1f;
  border-bottom: 1px solid #1f1f1f;
  padding: 28px 0;
}

.trust-strip-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ddd;
  font-size: 14px;
  white-space: nowrap;
}

.trust-strip-item svg {
  width: 20px;
  height: 20px;
  stroke: #b9a37a;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

/* Tablet */
@media (max-width: 991px) {
  .trust-strip-container {
    grid-template-columns: 1fr 1fr;
    row-gap: 16px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .trust-strip-container {
    grid-template-columns: 1fr;
  }

  .trust-strip-item {
    justify-content: flex-start;
  }
}



.contact-info-pro {
  max-width: 520px;
  padding-left: 28px;
  border-left: 3px solid #b9a37a;
}

/* Eyebrow */
.contact-eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  color: #b9a37a;
  margin-bottom: 14px;
}

/* Heading */
.contact-heading {
  font-size: 36px;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 18px;
  font-weight: 600;
}

/* Description */
.contact-description {
  font-size: 15px;
  line-height: 1.7;
  color: #cfcfcf;
  margin-bottom: 32px;
}

/* Details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: #e0e0e0;
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  stroke: #b9a37a;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

/* Responsive tightening */
@media (max-width: 768px) {
  .contact-info-pro {
    padding-left: 20px;
  }

  .contact-heading {
    font-size: 28px;
  }
}


.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  cursor: pointer;
}

/* ICON HOLDER */
.icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(185,163,122,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* ICON */
.contact-icon {
  width: 20px;
  height: 20px;
  stroke: #b9a37a;
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s ease;
}

/* TEXT */
.contact-text {
  font-size: 15px;
  color: #e0e0e0;
  transition: color 0.3s ease;
}

/* HOVER EFFECT */
.hover-item:hover .icon-wrap {
  background: #b9a37a;
}

.hover-item:hover .contact-icon {
  stroke: #000;
  transform: scale(1.1);
}

.hover-item:hover .contact-text {
  color: #ffffff;
}



/* Contact Page - Trust Element */
.trust-metrics {
  padding: 70px 0;
  background: #0f0f0f;
  border-top: 1px solid #1c1c1c;
  border-bottom: 1px solid #1c1c1c;
}

.trust-metrics-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* METRIC BLOCK */
.trust-metric {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

/* ICON */
.metric-icon {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(185,163,122,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.metric-icon svg {
  width: 22px;
  height: 22px;
  stroke: #b9a37a;
  stroke-width: 2;
  fill: none;
}

/* CONTENT */
.metric-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.metric-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #cfcfcf;
}

/* SUBTLE HOVER (OPTIONAL BUT REALISTIC) */
.trust-metric:hover .metric-icon {
  background: rgba(185,163,122,0.08);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .trust-metrics-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}


/* ===== DESKTOP VIEW (default table) ===== */
    .pricing-card table {
      width: 100%;
      border-collapse: collapse;
    }

    .pricing-card thead {
      background: rgba(255, 255, 255, 0.05);
    }

    .pricing-card th,
    .pricing-card td {
      padding: 14px 18px;
      text-align: left;
      white-space: nowrap;
    }

    /* ==========================================
   ===== FULLY RESPONSIVE MOBILE TABLE =====
   ========================================== */

    @media (max-width: 768px) {

      /* Convert table into blocks */
      .pricing-card table,
      .pricing-card thead,
      .pricing-card tbody,
      .pricing-card th,
      .pricing-card td,
      .pricing-card tr {
        display: block;
        width: 100%;
      }

      /* Hide table header */
      .pricing-card thead {
        display: none;
      }

      /* Each row becomes a card */
      .pricing-card tr {
        margin-bottom: 15px;
        background: rgba(255, 255, 255, 0.03);
        padding: 12px 15px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.08);
      }

      /* Each cell behaves like a line */
      .pricing-card td {
        display: flex;
        justify-content: space-between;
        padding: 8px 6px;
        font-size: 15px;
        border: none;
        white-space: normal;
      }

      /* Add the label from data-label */
      .pricing-card td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #d2b887;
        /* Your gold theme */
        flex: 1;
        text-align: left;
      }

      /* The price values */
      .pricing-card td:last-child {
        font-weight: 600;
        color: #fff;
      }
    }



