/* 
   DISCO Tailors - Premium Custom Styling
   Author: Antigravity AI
*/

/* -------------------------------------------------------------
   1. Design Tokens & CSS Custom Properties
------------------------------------------------------------- */
:root {
  --primary-color: #7B1E3A;
  --primary-hover: #61172d;
  --secondary-color: #C9A227;
  --secondary-hover: #b08c20;
  --text-white: #ffffff;
  --text-light: #e5e5e5;
  --text-muted: #a0a0a0;
  --bg-dark: #121212;
  --bg-dark-rgb: 18, 18, 18;
  --nav-bg: rgba(0, 0, 0, 0.3);
  --glass-border: rgba(255, 255, 255, 0.08);

  --font-main: 'Poppins', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.25s ease;
}

/* -------------------------------------------------------------
   2. Reset & Global Styles
------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* -------------------------------------------------------------
   3. Header Section (Top Bar)
------------------------------------------------------------- */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.top-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 15px 80px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 12px;
  justify-self: start;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(123, 30, 58, 0.3);
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  gap: 16px;
  user-select: none;
  justify-self: center;
}

.logo-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-prefix {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1.2;
  margin: 5px 0 0px 3px;
}

.logo-name {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  color: var(--text-white);
  line-height: 1;
}

/* Appointment Button */
.btn-appointment {
  display: inline-block;
  padding: 15px 36px;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background-color: transparent;
  color: var(--text-white);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-smooth);
  justify-self: end;
}

.btn-appointment:hover {
  background-color: var(--text-white);
  color: var(--bg-dark);
  border-color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

/* -------------------------------------------------------------
   4. Navigation Menu
------------------------------------------------------------- */
.nav-section {
  width: 100%;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background-color: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 20px 25px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
}

.nav-link svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.nav-item:hover .nav-link {
  color: var(--secondary-color);
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
  color: var(--secondary-color);
}

.nav-link.active {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Dropdown Sub-menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 220px;
  background-color: rgba(var(--bg-dark-rgb), 0.96);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 105;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent rgba(var(--bg-dark-rgb), 0.96) transparent;
}

.dropdown-item a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.dropdown-item a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--secondary-color);
  padding-left: 25px;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Mobile Toggle Hamburger */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 15px;
  z-index: 110;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-white);
  margin: 6px 0;
  transition: var(--transition-fast);
}

/* -------------------------------------------------------------
   5. Hero / Slider Section
------------------------------------------------------------- */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 480px;
  overflow: hidden;
  background-color: #050505;
}

/* Hero Slider Controls (Bottom Center) */
.slider-controls-wrapper {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 25px; /* space between arrows and dots */
}

/* Hero Slide Navigation Arrows */
.hero-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-arrow svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover States */
.hero-arrow:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--bg-dark);
  box-shadow: 0 6px 15px rgba(201, 162, 39, 0.5);
}

.hero-arrow.prev-slide:hover svg {
  transform: translateX(-2px);
}

.hero-arrow.next-slide:hover svg {
  transform: translateX(2px);
}

/* Responsive styles for controls */
@media (max-width: 768px) {
  .slider-controls-wrapper {
    bottom: 25px;
    gap: 15px;
  }
  
  .hero-arrow {
    width: 34px;
    height: 34px;
  }
  
  .hero-arrow svg {
    width: 14px;
    height: 14px;
  }
}

/* Mobile: header is separate, so slider uses image aspect ratio (no cropping, no blank bars) */
@media (max-width: 768px) {
  .hero-slider-section {
    height: auto;
    min-height: unset;
    aspect-ratio: 1312 / 808;
    /* matches tallest slide image (gemini2) */
  }
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-slices-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}

.slider-slice {
  position: absolute;
  top: 0;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  z-index: 5;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.slide.active-content,
.slide.active-bg {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
}



.slide.active-bg .slide-bg {
  opacity: 1;
}


/* Slide Content */
.slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 120px 80px 0;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.slide-subtitle {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary-color);
  letter-spacing: 3px;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-white);
  letter-spacing: -0.5px;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.15s;
}

.slide-desc {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 300;
  max-width: 700px;
  line-height: 1.65;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.3s;
}

.slide-btn {
  display: inline-block;
  padding: 12px 32px;
  background-color: var(--primary-color);
  color: var(--text-white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 35px;
  letter-spacing: 0.5px;
  border: 1px solid var(--primary-color);
  box-shadow: 0 10px 25px rgba(123, 30, 58, 0.3);
  cursor: pointer;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(30px);
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.45s;
}

.slide-btn:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(123, 30, 58, 0.45);
}

/* Active Slide Text State */
.slide.active-content .slide-subtitle,
.slide.active-content .slide-title,
.slide.active-content .slide-desc,
.slide.active-content .slide-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Instant reset when slide is not active-content to prevent overlapping text */
.slide:not(.active-content) .slide-subtitle,
.slide:not(.active-content) .slide-title,
.slide:not(.active-content) .slide-desc,
.slide:not(.active-content) .slide-btn {
  transition: none !important;
  opacity: 0 !important;
  transform: translateY(30px) !important;
}

/* -------------------------------------------------------------
   6. Slider Controls (Dots)
------------------------------------------------------------- */
.slider-dots {
  z-index: 10;
  display: flex;
  gap: 12px;
  background: #323232b8;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 15px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-smooth);
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.15);
}

.dot.active {
  background-color: var(--secondary-color);
  transform: scale(1.3);
  box-shadow: 0 0 12px var(--secondary-color);
}

/* -------------------------------------------------------------
   6c. Welcome / About Section
------------------------------------------------------------- */
.about-section {
  background-color: #fcfcfc;
  padding: 30px 0;
  color: #121212;
  overflow: hidden;
}

.about-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
}

/* Side-by-side Images Grid */
.about-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  width: 100%;
}

.about-images-grid img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
}

.about-img-right {
  margin-top: 45px;
}

.about-images-grid img:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Content Panel */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-subtitle {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary-color);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.about-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  color: #121212;
  letter-spacing: -0.5px;
  margin-bottom: 25px;
}

.about-text {
  font-size: 15px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* Button */
.about-btn {
  display: inline-block;
  padding: 14px 36px;
  background-color: var(--primary-color);
  color: var(--text-white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 35px;
  letter-spacing: 0.5px;
  border: 1px solid var(--primary-color);
  box-shadow: 0 10px 25px rgba(123, 30, 58, 0.2);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.about-btn:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(123, 30, 58, 0.35);
}

/* -------------------------------------------------------------
   6b. Our Services Section
------------------------------------------------------------- */
.services-section {
  background: linear-gradient(160deg, #fff8f0 0%, #fdf6e8 40%, #fef9f2 70%, #fff4e8 100%);
  padding: 20px 0;
  color: #121212;
  position: relative;
  overflow: hidden;
  border-top: 2px dashed rgba(201, 162, 39, 0.55);
  border-bottom: 2px dashed rgba(201, 162, 39, 0.55);
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(201, 162, 39, 0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 1;
}

/* Shimmer overlay */
.services-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 220, 100, 0.07) 50%, transparent 60%);
  animation: serviceShimmer 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes serviceShimmer {
  0% {
    left: -60%;
  }

  100% {
    left: 130%;
  }
}

.services-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.services-header {
  text-align: center;
  margin-bottom: 24px;
}

.services-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #121212;
  position: relative;
  display: inline-block;
  letter-spacing: 0.5px;
}


/* Services Carousel Styling */
.services-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0;
}

.services-carousel-viewport {
  overflow: hidden;
  width: 100%;
  padding-top: 10px;
  /* room for hover translateY(-6px) — prevents top clipping */
}

.services-carousel-track {
  display: flex;
  width: max-content;
}

.service-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.service-img-wrapper {
  width: 208px;
  height: 208px;
  box-sizing: content-box;
  border-radius: 50%;
  border: 6px solid #ffffff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-bottom: 16px;
  transition: var(--transition-smooth);
  background-color: #fafafa;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-item:hover .service-img-wrapper {
  transform: translateY(-6px);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.25), 0 0 0 8px rgba(201, 162, 39, 0.1), 0 18px 45px rgba(0, 0, 0, 0.12);
}

.service-item:hover .service-img-wrapper img {
  transform: scale(1.09);
}

.service-item:hover .service-title {
  color: #7b1e3a;
  transition: color 0.3s ease;
}

.service-title {
  font-size: 16px;
  font-weight: 700;
  color: #121212;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.service-desc {
  font-size: 12.5px;
  color: #666666;
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* Carousel Control Arrows */
.services-carousel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-color);
  background-color: #ffffff;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.services-carousel-arrow svg {
  width: 22px;
  height: 22px;
}

.services-carousel-arrow:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
  box-shadow: 0 8px 20px rgba(123, 30, 58, 0.2);
}

.services-prev {
  margin-right: 20px;
}

.services-next {
  margin-left: 20px;
}

/* Pagination Dots — Flower style */
.services-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
}

.services-dot {
  width: auto;
  height: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 16px;
  line-height: 1;
  color: rgba(201, 162, 39, 0.35);
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-dot::before {
  content: '✿';
}

.services-dot:hover {
  color: rgba(201, 162, 39, 0.65);
  transform: scale(1.25) rotate(20deg);
}

.services-dot.active {
  color: #7b1e3a;
  transform: scale(1.4) rotate(0deg);
  filter: drop-shadow(0 0 4px rgba(123, 30, 58, 0.45));
  animation: flowerSpin 0.5s ease;
}

@keyframes flowerSpin {
  0% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.6) rotate(180deg);
  }

  100% {
    transform: scale(1.4) rotate(360deg);
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: var(--primary-color);
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(123, 30, 58, 0.3);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--secondary-color);
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 110px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

/* Pulsing radar ripple effect */
.whatsapp-float::before,
.whatsapp-float::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 1.5px solid #25D366;
  border-radius: 50%;
  opacity: 0;
  z-index: -1;
  animation: whatsappPulse 2.4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  pointer-events: none;
}

.whatsapp-float::after {
  animation-delay: 1.2s;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }
  50% {
    opacity: 0.35;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(18, 140, 126, 0.5);
  color: #ffffff;
}

.whatsapp-float:hover svg {
  transform: scale(1.1) rotate(8deg);
}

/* Call to Action Buttons Styling */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.cta-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 44px;
  background-color: #25D366;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0.3px;
  border: 2px solid #25D366;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.cta-whatsapp-btn:hover {
  background-color: #128C7E;
  border-color: #128C7E;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cta-whatsapp-btn svg {
  fill: currentColor;
}

/* -------------------------------------------------------------
   7. Mobile & Tablet Responsiveness
------------------------------------------------------------- */
@media (max-width: 1024px) {
  .slide-title {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  .top-bar {
    padding: 20px 30px;
  }

  .logo-name {
    font-size: 26px;
  }

  .logo-icon {
    width: 48px;
    height: 48px;
  }

  .nav-container {
    padding: 0 30px;
  }

  .nav-link {
    padding: 18px 18px;
    font-size: 14px;
  }

  .slide-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .slide-desc {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .slide-content {
    padding: 120px 40px 0;
  }

  .services-container {
    padding: 0 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .service-img-wrapper {
    width: 200px;
    height: 200px;
  }

  .services-header h2 {
    font-size: 32px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 40px;
  }

  .about-images-grid img {
    height: 380px;
  }

  .about-img-right {
    margin-top: 35px;
  }

  .about-content {
    align-items: center;
    text-align: center;
  }

  .about-title {
    font-size: 32px;
  }
}

@media (max-width: 1024px) {

  /* ── CRITICAL: header no longer overlays slider on mobile ── */
  .main-header {
    position: relative;
    top: auto;
    left: auto;
    background: linear-gradient(to bottom, #1a0812, #121212);
    display: flex;
    flex-direction: column;
    z-index: 250; /* Ensure header remains above body content and overlay */
  }

  /* ── Row 1: social icons (left) + appointment button (right) ── */
  .top-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    grid-template-columns: unset;
    flex-wrap: wrap;
    gap: 10px;
  }

  /* Hide the centered logo from top-bar on mobile */
  .top-bar>.logo-container {
    display: none;
  }

  .social-links {
    gap: 7px;
    justify-self: unset;
  }

  .social-icon {
    width: 30px;
    height: 30px;
  }

  .social-icon svg {
    width: 12px;
    height: 12px;
  }

  .btn-appointment {
    padding: 8px 16px;
    font-size: 12px;
    justify-self: unset;
  }

  /* ── Row 2 (nav bar): logo left + hamburger right ── */
  .nav-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    height: 56px;
    position: relative;
    overflow: visible;
  }

  /* Show mobile logo on left of nav row */
  .nav-logo-mobile {
    display: flex !important;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .nav-logo-mobile .logo-icon {
    width: 70px;
    height: 50px;
  }

  .nav-logo-mobile .logo-prefix {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-light);
    line-height: 1.2;
    margin: 3px 0 0px 2px;
  }

  .nav-logo-mobile .logo-name {
    font-size: 20px;
    color: var(--text-white);
  }

  /* ── Hamburger button ── */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 210;
    transform: none;
    padding: 6px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
  }

  .mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background-color: var(--text-white);
    margin: 3px 0;
    transition: var(--transition-fast);
    display: block;
  }

  /* Hamburger → X when open */
  .mobile-menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .mobile-menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .mobile-menu-toggle.open span {
    background-color: #333333; /* Dark X icon against white menu */
  }

  /* ── Dark overlay behind menu drawer ── */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.40);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 190;
  }

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

  /* ── Slide-in drawer nav menu ── */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 270px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    border-left: 1px solid #eeeeee;
    flex-direction: column;
    align-items: flex-start;
    padding: 70px 0 40px;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 200;
    overflow-y: auto;
  }

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

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #eeeeee;
    color: #333333;
    display: block;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .nav-link.active,
  .nav-link:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
  }

  /* Body lock when menu open */
  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 768px) {


  /* ── Slider: correct height below separate header ── */
  /* Handled by aspect-ratio in base CSS — no overrides needed */

  /* Slide text */
  .slide-content {
    padding: 20px 16px 20px;
    justify-content: center;
  }

  .slide-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }

  .slide-title {
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 15px;
  }

  .slide-desc {
    display: none !important;
  }

  .slide-btn {
    padding: 7px 18px;
    font-size: 12px;
  }

  .slider-dots {
    bottom: 10px;
  }

  /* Other sections */
  .services-container {
    padding: 0 16px;
  }

  .about-container {
    padding: 0 16px;
    gap: 32px;
  }

  .about-title {
    font-size: 24px;
  }

  .about-text {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .back-to-top {
    bottom: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
  }

  .whatsapp-float {
    bottom: 70px;
    right: 18px;
    left: auto;
    width: 40px;
    height: 40px;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
  }

  .whatsapp-float svg {
    width: 20px;
    height: 20px;
  }

  .whatsapp-float::before,
  .whatsapp-float::after {
    border-width: 1px;
    animation: whatsappPulseMobile 2.4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  }

  .whatsapp-float::after {
    animation-delay: 1.2s;
  }

  @keyframes whatsappPulseMobile {
    0% {
      transform: scale(1);
      opacity: 0.65;
    }
    50% {
      opacity: 0.35;
    }
    100% {
      transform: scale(1.35);
      opacity: 0;
    }
  }

  /* Responsive CTA Buttons */
  .cta-buttons {
    gap: 12px;
    flex-direction: column;
    width: 100%;
    margin-top: 25px;
  }

  .cta-btn,
  .cta-whatsapp-btn {
    width: 100%;
    max-width: 280px;
    padding: 12px 30px;
    font-size: 14px;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {

  /* Keep socials but make them smaller */
  .social-icon {
    width: 26px;
    height: 26px;
  }

  .social-icon svg {
    width: 11px;
    height: 11px;
  }

  .btn-appointment {
    padding: 6px 12px;
    font-size: 11px;
  }

  .nav-logo-mobile .logo-name {
    font-size: 20px;
  }

  .nav-logo-mobile .logo-icon {
    width: 70px;
    height: 50px;
  }

  .slide-title {
    font-size: 18px;
    line-height: 1.35;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-header h2 {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .about-img-right {
    margin-top: 20px;
  }

  .about-images-grid {
    gap: 15px;
  }

  .about-title {
    font-size: 24px;
  }
}

/* ────────────────────────────────────────────────────────────────────────────────────────────────────
   Comprehensive Responsive Additions
──────────────────────────────────────────────────────────────────────────────────────────────────── */

/* ── Large Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .choose-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .top-bar {
    padding: 12px 40px;
  }

  .nav-container {
    padding: 0 40px;
  }
}

/* ── Tablet / Small Laptop (≤991px) ── */
@media (max-width: 991px) {

  /* Choose grid: 3 per row */
  .choose-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .choose-card {
    width: 150px;
    height: 150px;
  }

  /* Services: 2 per row */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Footer grid collapse */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {

  /* Choose grid: 2 per row — circles sized to fit 2 columns */
  .choose-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
    justify-items: center;
  }

  /* Circle = half viewport minus padding & gap (+2px larger) */
  .choose-card {
    width: calc(50vw - 40px);
    height: calc(50vw - 40px);
    max-width: 124px;
    max-height: 124px;
    border-radius: 50% !important;
    aspect-ratio: unset !important;
    padding: 8px;
    box-sizing: border-box;
    gap: 4px;
  }

  .choose-card-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 4px;
  }

  .choose-card-icon svg {
    width: 22px;
    height: 22px;
  }

  .choose-card-text {
    font-size: 7.5px;
    line-height: 1.3;
  }

  .choose-container {
    padding: 0 16px;
  }

  .choose-header {
    margin-bottom: 14px;
  }

  /* Services: 1 card per row on mobile — scale image to fill viewport */
  .services-container {
    padding: 0 12px;
  }

  .services-header {
    margin-bottom: 10px;
  }

  .services-carousel-arrow {
    display: none;
    /* hide arrows on mobile — swipe to navigate */
  }

  .service-img-wrapper {
    width: min(220px, 70vw);
    height: min(220px, 70vw);
  }

  .service-title {
    font-size: 15px;
  }

  .service-desc {
    font-size: 12px;
    max-width: 90vw;
  }

  /* About: show both images side-by-side on mobile with gap */
  .about-images-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .about-images-grid img {
    height: auto !important;
    aspect-ratio: 3 / 4 !important;
  }

  .about-img-right {
    display: block !important;
    /* show second image */
    margin-top: 0;
  }

  /* Footer: single column */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  /* Reduce bottom spacing of services and top padding of choose section */
  .services-section {
    padding-bottom: 5px !important;
  }

  .services-carousel-dots {
    margin-top: 12px !important;
  }

  .choose-section {
    padding-top: 15px !important;
  }
}

/* ── Small Mobile (≤480px) ── */
@media (max-width: 480px) {
  .choose-card {
    width: min(105px, calc(50vw - 40px));
    height: min(105px, calc(50vw - 40px));
    padding: 8px;
  }

  .choose-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .choose-card-text {
    font-size: 7.5px;
  }

  .choose-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
}

/* ── Very Small (≤360px) ── */
@media (max-width: 360px) {
  .choose-card {
    width: min(90px, calc(50vw - 36px));
    height: min(90px, calc(50vw - 36px));
    padding: 7px;
  }

  .choose-card-icon svg {
    width: 18px;
    height: 18px;
  }

  .choose-card-text {
    font-size: 7px;
  }

  .choose-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
  }

  .nav-logo-mobile .logo-name {
    font-size: 20px;
  }

  .nav-logo-mobile .logo-icon {
    width: 70px;
    height: 50px;
  }

  .btn-appointment {
    padding: 5px 10px;
    font-size: 10px;
  }

  .slide-title {
    font-size: 15px;
    line-height: 1.35;
  }
}


/* -------------------------------------------------------------
   7b. Why Choose Us Section (5-per-row Grid)
------------------------------------------------------------- */
.choose-section {
  background-color: #F6F3EC;
  /* Warm boutique cream background */
  background-image:
    radial-gradient(circle at -20% -20%, rgba(123, 30, 58, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 120% 120%, rgba(201, 162, 39, 0.18) 0%, transparent 60%);
  padding: 30px 0;
  color: #121212;
  overflow: hidden;
  position: relative;
}

/* Floating circle keyframe animations */
@keyframes chooseDrift {

  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-22px) scale(1.04);
  }
}

@keyframes chooseOrbit {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(12px, -18px) rotate(120deg);
  }

  66% {
    transform: translate(-10px, 10px) rotate(240deg);
  }

  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes chooseSway {

  0%,
  100% {
    transform: translateX(0) scale(1);
  }

  50% {
    transform: translateX(18px) scale(0.96);
  }
}

/* Injected floating circle shared style */
.choose-float-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.choose-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.choose-header {
  text-align: center;
  margin-bottom: 60px;
}

.choose-subtitle {
  display: block;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary-color);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.choose-title {
  font-size: 38px;
  font-weight: 700;
  color: #121212;
  letter-spacing: -0.5px;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  width: 100%;
  justify-items: center;
}

.choose-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 165px;
  height: 165px;
  padding: 18px;
  background-color: #ffffff;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(123, 30, 58, 0.06);
  transition: transform 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(28px);
  animation: cardFadeUp 0.55s ease forwards;
}

/* Staggered entrance for each card */
.choose-card:nth-child(1) {
  animation-delay: 0.05s;
}

.choose-card:nth-child(2) {
  animation-delay: 0.12s;
}

.choose-card:nth-child(3) {
  animation-delay: 0.19s;
}

.choose-card:nth-child(4) {
  animation-delay: 0.26s;
}

.choose-card:nth-child(5) {
  animation-delay: 0.33s;
}

.choose-card:nth-child(6) {
  animation-delay: 0.40s;
}

.choose-card:nth-child(7) {
  animation-delay: 0.47s;
}

.choose-card:nth-child(8) {
  animation-delay: 0.54s;
}

.choose-card:nth-child(9) {
  animation-delay: 0.61s;
}

.choose-card:nth-child(10) {
  animation-delay: 0.68s;
}

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

.choose-card:hover {
  transform: translateY(-6px) scale(1.06);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 6px rgba(123, 30, 58, 0.12), 0 16px 35px rgba(123, 30, 58, 0.25);
}

.choose-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  color: var(--primary-color);
  transition: color 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.choose-card:hover .choose-card-icon {
  color: var(--secondary-color);
  transform: scale(1.18) rotate(-8deg);
}

.choose-card-icon svg {
  width: 36px;
  height: 36px;
}

.choose-card-text {
  font-size: 11.5px;
  font-weight: 600;
  color: #121212;
  line-height: 1.4;
  letter-spacing: 0.2px;
  transition: color 0.35s ease;
}

.choose-card:hover .choose-card-text {
  color: #ffffff;
}

/* Responsive Overrides for Choose Us Section */
@media (max-width: 1024px) {
  .choose-container {
    padding: 0 40px;
  }

  .choose-grid {
    gap: 20px;
  }

  .choose-card {
    padding: 25px 15px;
  }

  .choose-card-text {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .choose-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .choose-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .choose-container {
    padding: 0 20px;
  }

  .choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .choose-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .choose-title {
    font-size: 24px;
  }

  .choose-card {
    padding: 30px 20px;
  }
}

/* -------------------------------------------------------------
   8. Ready to Wear / Trends Gallery Section
------------------------------------------------------------- */
.trends-section {
  background-color: #F9F6F0;
  padding: 30px 0;
  color: #121212;
  position: relative;
  overflow: hidden;
}

/* Modern Abstract Thread curves representing wings/silk threads */
.trends-section::before,
.trends-section::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.18;
  /* Reduced opacity slightly for clean, subtle background */
  z-index: 1;
}

.trends-section::before {
  top: -80px;
  left: -80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none' stroke='%23C9A227' stroke-width='0.6'%3E%3Cpath d='M10,190 C60,140 40,60 190,10 M30,190 C80,140 60,60 190,30 M50,190 C100,140 80,60 190,50 M70,190 C120,140 100,60 190,70 M90,190 C140,140 120,60 190,90'/%3E%3C/svg%3E");
}

.trends-section::after {
  bottom: -120px;
  right: -80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none' stroke='%237B1E3A' stroke-width='0.6'%3E%3Cpath d='M190,190 C140,140 160,60 10,10 M170,190 C120,140 140,60 10,30 M150,190 C100,140 120,60 10,50 M130,190 C80,140 100,60 10,70 M110,190 C60,140 80,60 10,90'/%3E%3C/svg%3E");
}

.trends-header {
  max-width: 800px;
  margin: 0 auto 35px;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.trends-subtitle {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary-color);
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.trends-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  color: #121212;
  letter-spacing: -0.5px;
  margin-bottom: 15px;
}

.trends-text {
  font-size: 14.5px;
  color: #555555;
  line-height: 1.65;
}

.trends-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.trends-grid {
  column-count: 4;
  column-gap: 25px;
  width: 100%;
}

.trend-card {
  break-inside: avoid;
  margin-bottom: 25px;
  width: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.trend-img-container {
  position: relative;
  width: 100%;
  border-radius: 12px;
  border: 5px solid #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background-color: #f0f0f0;
  transition: var(--transition-smooth);
}

.trend-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

.trend-img-container .img-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
}

.trend-img-container .img-front {
  position: relative;
  z-index: 1;
}

/* Card flipped state toggled on click or hover */
.trend-card.flipped .img-front,
.trend-card:hover .img-front {
  opacity: 0;
  transform: scale(1.04);
}

.trend-card.flipped .img-back,
.trend-card:hover .img-back {
  opacity: 1;
  transform: scale(1.04);
}

/* Hover style (zoom and float) */
.trend-card:hover .trend-img-container {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Custom heights for Masonry effect */
.card-h-tall .trend-img-container {
  height: 480px;
}

.card-h-medium .trend-img-container {
  height: 380px;
}

.card-h-short .trend-img-container {
  height: 310px;
}

/* Responsive Overrides for Trends Gallery */
@media (max-width: 1024px) {
  .trends-container {
    padding: 0 40px;
  }

  .trends-grid {
    column-count: 3;
    column-gap: 20px;
  }
}

@media (max-width: 991px) {
  .trends-title {
    font-size: 32px;
  }

  .trends-grid {
    column-count: 2;
    column-gap: 15px;
  }

  .card-h-tall .trend-img-container {
    height: 400px;
  }

  .card-h-medium .trend-img-container {
    height: 330px;
  }

  .card-h-short .trend-img-container {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .trends-container {
    padding: 0 20px;
  }

  .trends-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .trends-grid {
    column-count: 2;
    column-gap: 15px;
  }

  .card-h-tall .trend-img-container {
    height: 220px;
  }

  .card-h-medium .trend-img-container {
    height: 180px;
  }

  .card-h-short .trend-img-container {
    height: 140px;
  }
}

/* -------------------------------------------------------------
   9. Footer Section
------------------------------------------------------------- */
.main-footer {
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  width: 100%;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  user-select: none;
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-prefix {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.2;
  margin: 4px 0 0px 2px;
}

.footer-logo-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
}

.footer-about-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-social-links {
  display: flex;
  gap: 10px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.footer-social-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.footer-social-icon:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(201, 162, 39, 0.35);
}

.footer-col-title {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary-color);
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 1.5px;
  background-color: var(--secondary-color);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li {
  display: flex;
  align-items: flex-start;
}

.footer-links a {
  font-size: 13.5px;
  color: var(--text-light);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.footer-links a::before {
  content: '›';
  font-size: 18px;
  line-height: 1;
  color: var(--secondary-color);
  transition: transform 0.2s ease;
  margin-top: 1px;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-links a:hover::before {
  transform: translateX(4px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-light);
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--secondary-color);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-hours-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-hours-wrapper span {
  display: block;
  line-height: 1.4;
}


.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 30px;
  padding-top: 20px;
}

.footer-bottom-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  width: 100%;
}

/* Footer Responsive Overrides */
@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 40px;
  }

  .footer-bottom-container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 20px;
  }

  .footer-bottom-container {
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: left;
  }

  .footer-col:nth-child(1) {
    grid-column: span 2;
  }

  .footer-col:nth-child(2) {
    grid-column: span 1;
  }

  .footer-col:nth-child(3) {
    grid-column: span 1;
  }

  .footer-col:nth-child(4) {
    grid-column: span 2;
  }

  .footer-logo {
    justify-content: flex-start;
  }

  .footer-social-links {
    justify-content: flex-start;
  }

  .footer-col-title::after {
    left: 0;
    transform: none;
  }

  .footer-contact li {
    justify-content: flex-start;
  }

  .footer-bottom-container {
    flex-direction: column;
    gap: 8px;
    text-align: left;
    align-items: flex-start;
  }
}

/* -------------------------------------------------------------
   9. Call to Action (CTA) Section
------------------------------------------------------------- */
.cta-section {
  position: relative;
  width: 100%;
  min-height: 340px;
  background-image: url('../img/cta_background.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Dark overlay over the background image */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 12, 12, 0.85) 0%, rgb(108 72 83 / 42%) 100%);
  z-index: 1;
}

.cta-container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.cta-text {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 680px;
}

.cta-btn {
  display: inline-block;
  padding: 16px 44px;
  background-color: #ffffff;
  color: #121212;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0.3px;
  border: 2px solid #ffffff;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.cta-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Overrides for CTA */
@media (max-width: 991px) {
  .cta-title {
    font-size: 34px;
  }

  .cta-container {
    padding: 70px 40px;
  }
}

@media (max-width: 768px) {
  .cta-container {
    padding: 60px 25px;
  }

  .cta-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 22px;
    line-height: 1.3;
  }

  .cta-text {
    font-size: 14px;
  }

  .cta-btn {
    padding: 14px 34px;
    font-size: 14px;
  }
}


/* text shadow style  */

/* Add text shadow to slide titles and CTA titles */
.slide-title {
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.7);
}

.cta-title {
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}

/* Additional fix for 320px screens */
@media (max-width: 360px) {
  .btn-appointment {
    padding: 4px 8px;
    font-size: 9px;
  }

  .social-icon {
    width: 20px;
    height: 20px;
  }

  .social-icon svg {
    width: 9px;
    height: 9px;
  }

  .social-links {
    gap: 3px;
  }

  .top-bar {
    padding: 4px 6px;
  }
}

/* -------------------------------------------------------------
   About Us Page Styles
------------------------------------------------------------- */
.sec-padding {
  padding: 70px 0;
}

.sec-subtitle {
  display: block;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary-color);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.sec-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  color: #121212;
  letter-spacing: -0.5px;
  margin-bottom: 25px;
}

/* Page Banner Layout (Full Width Background with Left-Aligned Overlay) */
.page-banner {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 380px;
  display: flex;
  align-items: flex-end; /* Align elements to the bottom to clear header on desktop */
  justify-content: flex-start;
  padding: 150px 0 60px; /* Large top padding to clear absolute header */
  overflow: hidden;
}

/* Linear gradient overlay: dark burgundy-black on left, transparent on right */
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(26 8 18) 0%, rgb(26 8 18 / 30%) 40%, rgb(26 8 18 / 0%) 100%);
  z-index: 1;
}

.banner-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.banner-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  padding-left: 25px; /* Offset from gold accent line */
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  text-align: left;
}

.breadcrumbs {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Left-aligned breadcrumbs */
  gap: 8px;
  padding-left: 25px;
}

.breadcrumbs a {
  color: var(--secondary-color);
  transition: var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--text-white);
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-current {
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-banner {
    min-height: 220px;
    padding: 60px 0 45px; /* Header is relative, no top padding needed */
    align-items: center;
  }
  
  .banner-container {
    border-left-width: 3px;
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .page-banner {
    min-height: 180px;
    padding: 45px 0 35px;
  }
  
  .banner-container {
    padding: 0 20px;
  }
  
  .banner-title {
    font-size: 32px;
    padding-left: 15px;
  }
  
  .breadcrumbs {
    font-size: 13px;
    padding-left: 15px;
  }
  
  /* On mobile/tablet, make gradient slightly darker and more solid for readability */
  .page-banner::before {
    background: linear-gradient(to right, rgba(26, 8, 18, 0.98) 0%, rgba(26, 8, 18, 0.9) 60%, rgba(26, 8, 18, 0.4) 100%);
  }
}

@media (max-width: 480px) {
  .page-banner {
    min-height: 140px;
    padding: 35px 0 25px;
  }
  
  .banner-container {
    padding: 0 15px;
  }
  
  .banner-title {
    font-size: 24px;
    padding-left: 10px;
  }
  
  .breadcrumbs {
    font-size: 12px;
    padding-left: 10px;
  }
}

/* About Intro Section */
.about-intro-section {
  background-color: #FDFBF7;
  color: #121212;
  overflow: hidden;
}

.about-intro-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}

.about-intro-content {
  display: flex;
  flex-direction: column;
}

.intro-para {
  font-size: 15px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.intro-para:last-child {
  margin-bottom: 0;
}

.about-intro-collage {
  display: flex;
  justify-content: center;
}

.collage-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 450px;
}

.collage-bg-shape {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 2px dashed rgba(201, 162, 39, 0.3);
  border-radius: 12px;
  z-index: 1;
  pointer-events: none;
}

.collage-img-back {
  width: 80%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  filter: grayscale(15%);
  transition: var(--transition-smooth);
}

.collage-img-front {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  border: 8px solid #ffffff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  z-index: 3;
  transition: var(--transition-smooth);
}

.collage-wrapper:hover .collage-img-back {
  transform: translateY(-5px);
}

.collage-wrapper:hover .collage-img-front {
  transform: translateY(-8px);
}

/* Mission & Vision Section */
.mission-vision-section {
  background-color: #ffffff;
  border-top: 1px solid #f2f2f2;
}

.mission-vision-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
}

.mv-card {
  padding: 45px 40px;
  border-radius: 16px;
  border: 1px solid rgba(123, 30, 58, 0.06);
  background-color: #fbfbf9;
  text-align: center;
  transition: var(--transition-smooth);
}

.mv-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
  box-shadow: 0 15px 40px rgba(123, 30, 58, 0.05);
}

.mv-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(123, 30, 58, 0.07);
  color: var(--primary-color);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.mv-card:hover .mv-icon {
  background-color: var(--primary-color);
  color: #ffffff;
}

.mv-icon svg {
  width: 32px;
  height: 32px;
}

.mv-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.mv-text {
  font-size: 15px;
  color: #555555;
  line-height: 1.7;
}

/* Why Choose Us Section (Exactly like image layout) */
.about-choose-section {
  background-color: #F9F7F2;
  overflow: hidden;
}

.choose-layout-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}

.choose-left-col {
  display: flex;
  flex-direction: column;
}

.choose-intro-text {
  font-size: 15.5px;
  color: #555555;
  line-height: 1.65;
  margin-bottom: 10px;
}

.choose-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 30px;
}

.feature-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(123, 30, 58, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--secondary-color);
  box-shadow: 0 15px 35px rgba(201, 162, 39, 0.08);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(201, 162, 39, 0.08);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  background-color: var(--secondary-color);
  color: #ffffff;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-info {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-size: 16.5px;
  font-weight: 600;
  color: #121212;
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
}

.choose-right-col {
  display: flex;
  justify-content: center;
}

.choose-collage-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 450px;
}

.choose-img-back {
  width: 80%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  filter: grayscale(100%);
  transition: var(--transition-smooth);
}

.choose-img-front {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  border: 8px solid #ffffff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  z-index: 3;
  transition: var(--transition-smooth);
}

.choose-collage-wrapper:hover .choose-img-back {
  transform: translateY(-5px);
}

.choose-collage-wrapper:hover .choose-img-front {
  transform: translateY(-8px);
}

/* Interactive Silhouette Fit Guide */
.fit-guide-section {
  background-color: #ffffff;
  border-top: 1px solid #f2f2f2;
}

.fit-guide-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.fit-guide-header {
  text-align: center;
  margin-bottom: 45px;
}

.fit-guide-desc {
  font-size: 15px;
  color: #666666;
  max-width: 700px;
  margin: 10px auto 0;
  line-height: 1.6;
}

.fit-guide-interactive-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.mannequin-column {
  display: flex;
  justify-content: center;
}

.mannequin-visual {
  position: relative;
  width: 100%;
  max-width: 320px;
  background: rgba(249, 246, 240, 0.6);
  border-radius: 20px;
  border: 1px solid rgba(201, 162, 39, 0.18);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  justify-content: center;
}

.mannequin-svg {
  width: 100%;
  height: auto;
  max-height: 440px;
}

.hotspot {
  cursor: pointer;
}

.hotspot circle {
  transition: var(--transition-fast);
}

.hotspot:hover circle:nth-child(2) {
  fill: var(--primary-color);
  r: 6px;
}

.hotspot.active circle:nth-child(2) {
  fill: var(--primary-color);
  r: 6px;
}

.pulse {
  transform-origin: center;
  animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
  0% {
    r: 6px;
    opacity: 0.8;
  }
  100% {
    r: 18px;
    opacity: 0;
  }
}

.fit-details-column {
  display: flex;
  align-items: center;
}

.fit-details-card {
  width: 100%;
  min-height: 360px;
  padding: 45px;
  border-radius: 16px;
  border: 1px solid rgba(123, 30, 58, 0.08);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.fit-detail-content {
  display: none;
  animation: fadeInDetail 0.45s ease forwards;
}

.fit-detail-content.active {
  display: block;
}

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

.fit-point-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary-color);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.fit-details-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.fit-details-card p {
  color: #555555;
  line-height: 1.65;
  font-size: 14.5px;
  margin-bottom: 22px;
}

.fit-point-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 20px;
  list-style-type: square;
  color: #666666;
  font-size: 13.5px;
}

.fit-point-list li {
  line-height: 1.4;
}

.fit-detail-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(201, 162, 39, 0.08);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.fit-detail-icon-wrap svg {
  width: 30px;
  height: 30px;
}

/* Responsive Styles for About Page */
@media (max-width: 1024px) {
  .about-intro-container,
  .choose-layout-container,
  .fit-guide-interactive-wrapper {
    padding: 0 40px;
  }
  .mission-vision-container {
    padding: 0 40px;
  }
}

@media (max-width: 991px) {
  .about-intro-container,
  .choose-layout-container,
  .fit-guide-interactive-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .collage-wrapper,
  .choose-collage-wrapper {
    height: 380px;
    max-width: 380px;
    margin: 0 auto;
  }

  .collage-img-back,
  .choose-img-back {
    height: 320px;
  }

  .collage-img-front,
  .choose-img-front {
    height: 220px;
  }

  .mission-vision-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .fit-details-card {
    min-height: unset;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .about-intro-container,
  .choose-layout-container,
  .fit-guide-container {
    padding: 0 20px;
  }
  
  .mission-vision-container {
    padding: 0 20px;
  }

  .choose-feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sec-title {
    font-size: 30px;
  }

  .banner-title {
    font-size: 34px;
  }
  
  .fit-guide-interactive-wrapper {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .collage-wrapper,
  .choose-collage-wrapper {
    height: 280px;
    max-width: 280px;
  }

  .collage-img-back,
  .choose-img-back {
    height: 240px;
  }

  .collage-img-front,
  .choose-img-front {
    height: 160px;
    border-width: 4px;
  }

  .sec-title {
    font-size: 24px;
  }

  .banner-title {
    font-size: 28px;
  }
  
  .fit-details-card {
    padding: 20px;
  }
  
  .fit-details-card h3 {
    font-size: 20px;
  }
}

/* -------------------------------------------------------------
   10. Custom Tailoring Page Layout & Grid (Round Design)
------------------------------------------------------------- */
.tailoring-page-section {
  padding: 70px 30px;
  background-color: #fafafa;
}

.tailoring-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.tailoring-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  height: 100%;
}

.tailoring-card:hover {
  transform: translateY(-8px);
}

.tailoring-img-wrapper {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 6px solid #ffffff;
  outline: 1px solid rgba(201, 162, 39, 0.35); /* soft gold ring */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), outline-color 0.4s ease;
  background-color: #fafafa;
}

.tailoring-card:hover .tailoring-img-wrapper {
  transform: scale(1.05);
  outline-color: var(--secondary-color);
  box-shadow: 0 15px 35px rgba(123, 30, 58, 0.15), 0 0 0 6px rgba(201, 162, 39, 0.2);
}

.tailoring-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.tailoring-card:hover .tailoring-img-wrapper img {
  transform: scale(1.09);
}

.tailoring-info {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tailoring-title {
  font-size: 16px;
  font-weight: 700;
  color: #121212;
  margin-bottom: 8px;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.tailoring-card:hover .tailoring-title {
  color: var(--primary-color);
}

.tailoring-desc {
  font-size: 12px;
  color: #666666;
  line-height: 1.5;
  margin: 0;
}

/* Breakpoints for Responsive Grid & Sizing */
@media (max-width: 1150px) {
  .tailoring-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
  }
  .tailoring-img-wrapper {
    width: 155px;
    height: 155px;
    border-width: 5px;
  }
  .tailoring-title {
    font-size: 15px;
  }
  .tailoring-desc {
    font-size: 11.5px;
  }
}

@media (max-width: 768px) {
  .tailoring-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 15px;
  }
  .tailoring-img-wrapper {
    width: 130px;
    height: 130px;
    border-width: 4px;
    margin-bottom: 15px;
  }
  .tailoring-title {
    font-size: 14px;
  }
  .tailoring-desc {
    font-size: 11px;
  }
}

@media (max-width: 475px) {
  .tailoring-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
  .tailoring-page-section {
    padding: 40px 15px;
  }
  .tailoring-img-wrapper {
    width: 110px;
    height: 110px;
    border-width: 3px;
    margin-bottom: 12px;
  }
  .tailoring-title {
    font-size: 13px;
    margin-bottom: 6px;
  }
  .tailoring-desc {
    font-size: 10px;
    line-height: 1.4;
  }
}

/* -------------------------------------------------------------
   11. Contact Page Layout & Form
------------------------------------------------------------- */
.contact-page-section {
  padding: 70px 30px;
  background-color: #fafafa;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eeeeee;
  height: 100%;
}

.contact-info-title {
  font-size: 28px;
  color: #121212;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.contact-info-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
}

.contact-info-desc {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 18px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-detail-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(123, 30, 58, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
}

.contact-detail-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: #121212;
  margin-bottom: 4px;
}

.contact-detail-text p,
.contact-detail-text a {
  font-size: 14px;
  color: #666666;
  text-decoration: none;
  line-height: 1.5;
}

.contact-detail-text a:hover {
  color: var(--primary-color);
}

.contact-meta-box {
  border-top: 1px solid #eeeeee;
  padding-top: 18px;
  margin-top: 18px;
}

.contact-meta-item {
  margin-bottom: 12px;
}

.contact-meta-item h5 {
  font-size: 14px;
  font-weight: 600;
  color: #121212;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-meta-item p {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
}

.business-hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px;
  background: rgba(123, 30, 58, 0.03);
  border-left: 3px solid var(--secondary-color);
  border-radius: 4px;
  transition: var(--transition-fast);
}

.hours-row:hover {
  background: rgba(123, 30, 58, 0.06);
  transform: translateX(4px);
}

.hours-day {
  font-weight: 600;
  font-size: 14px;
  color: #121212;
}

.hours-time {
  font-size: 14px;
  color: #555555;
  font-weight: 500;
}
/* Form Styling */
.contact-form-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eeeeee;
  scroll-margin-top: 10px;
}

.contact-form-title {
  font-size: 28px;
  color: #121212;
  margin-bottom: 25px;
  font-weight: 700;
}

.contact-form-group {
  margin-bottom: 20px;
}

.contact-form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 8px;
}

.contact-form-input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid #dddddd;
  border-radius: 6px;
  background-color: #fafafa;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  color: #333333;
}

.contact-form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: #ffffff;
}

textarea.contact-form-input {
  resize: vertical;
  min-height: 120px;
}

.recaptcha-wrapper {
  margin: 20px 0;
  overflow: hidden;
  width: 100%;
}

@media (max-width: 360px) {
  .recaptcha-wrapper {
    max-width: 100%;
    width: 228px;
    overflow: hidden;
  }
  .g-recaptcha {
    transform: scale(0.75);
    transform-origin: 0 0;
    -webkit-transform: scale(0.75);
    -webkit-transform-origin: 0 0;
  }
}

.contact-form-btn {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 14px;
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
}

.contact-form-btn:hover {
  background-color: #61162d;
  transform: translateY(-2px);
}

/* Premium Submit Button States */
.contact-form-btn.loading {
  background-color: #551428 !important;
  color: transparent !important;
  pointer-events: none;
}

.contact-form-btn.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: btnSpinner 0.6s linear infinite;
}

.contact-form-btn.success {
  background-color: #2e7d32 !important;
  color: #ffffff !important;
  border-color: #2e7d32 !important;
  pointer-events: none;
  animation: btnPulse 0.4s ease-out;
}

.contact-form-btn.error {
  background-color: #c62828 !important;
  color: #ffffff !important;
  border-color: #c62828 !important;
  animation: btnShake 0.4s ease-in-out;
}

@keyframes btnSpinner {
  to {
    transform: rotate(360deg);
  }
}

@keyframes btnPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

@keyframes btnShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* Map Section */
.contact-map-section {
  padding: 0;
  width: 100%;
  background-color: #ffffff;
  border-top: 1px solid #eeeeee;
  overflow: hidden;
}

.map-container {
  width: 100%;
  height: 450px;
  line-height: 0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .map-container {
    height: 350px;
  }
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .contact-page-section {
    padding: 50px 15px;
  }
  .contact-info-card,
  .contact-form-card {
    padding: 25px 20px;
  }
  .contact-info-title,
  .contact-form-title {
    font-size: 22px;
  }
}

@media (max-width: 360px) {
  .contact-page-section {
    padding: 40px 10px;
  }
  .contact-info-card,
  .contact-form-card {
    padding: 20px 12px;
  }
  .contact-form-input {
    padding: 10px 12px;
  }
}

/* Mobile responsive layout fixes for top-bar & page banner */
@media (max-width: 480px) {
  .top-bar {
    padding: 6px 12px;
    gap: 6px;
  }
  .social-links {
    gap: 4px;
  }
  .social-icon {
    width: 25px;
    height: 25px;
  }
  .social-icon svg {
    width: 10px;
    height: 10px;
  }
  .btn-appointment {
    padding: 6px 12px;
    font-size: 11px;
  }
  .banner-title {
    font-size: 24px;
  }
  .breadcrumbs {
    font-size: 13px;
  }
  .nav-container{
    padding: 0px 15px;
  }
}


.footer-links.scrollable-links {
  max-height: 160px;
  overflow-y: auto;
  padding-right: 12px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.08);
}

/* Chrome, Safari, Edge, Opera custom scrollbar styling */
.footer-links.scrollable-links::-webkit-scrollbar {
  width: 8px;
}

.footer-links.scrollable-links::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.footer-links.scrollable-links::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.footer-links.scrollable-links::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.55);
  border: 2px solid transparent;
  background-clip: padding-box;
}
