/* ============================================================
   ProStitch Uniforms — Custom Stylesheet
   Limbe, Blantyre, Malawi
   Color Palette:
     Primary:    #2C3E50  (dark navy — authority, professionalism)
     Accent:     #E67E22  (warm amber — energy, craftsmanship)
     Accent2:    #C0392B  (deep red — boldness, Malawi flag)
     Light bg:   #F8F6F2
     Text dark:  #1A1A2E
     Text mid:   #5D6D7E
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* =========== RESET & BASE =========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:     #2C3E50;
  --accent:      #E67E22;
  --accent-dark: #CF6D17;
  --red:         #C0392B;
  --light-bg:    #F8F6F2;
  --white:       #ffffff;
  --text-dark:   #1A1A2E;
  --text-mid:    #5D6D7E;
  --text-light:  #8E9BAA;
  --border:      #E8E2D9;
  --shadow:      0 8px 40px rgba(44, 62, 80, 0.10);
  --transition:  all 0.35s ease;
  --font-head:   'Josefin Sans', sans-serif;
  --font-body:   'Montserrat', sans-serif;
  --radius:      4px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

/* =========== UTILITIES =========== */
.section-padding40 { padding: 80px 0; }
.mb-60 { margin-bottom: 60px; }
.mb-50 { margin-bottom: 50px; }
.mt-30 { margin-top: 30px; }
.mb-40 { margin-bottom: 40px; }
.pb-bottom { padding-bottom: 80px; }
.fix { overflow: hidden; }
.f-right { margin-left: auto; }
.text-white { color: var(--white) !important; }
.w-100 { width: 100%; }
.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.text-center { text-align: center; }

@media (min-width: 992px) { .d-lg-block { display: block !important; } }
@media (min-width: 992px) { .d-lg-none { display: none !important; } }
@media (max-width: 991px) { .d-lg-none { display: block !important; } }
@media (max-width: 991px) { .d-none { display: none !important; } }

/* =========== CONTAINER =========== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}
[class^="col-"] { padding: 0 12px; }
.col-12 { width: 100%; }
.col-6 { width: 50%; }
.g-3 { gap: 16px; }
.g-4 { gap: 20px; }
.g-5 { gap: 40px; }

/* Grid columns */
@media (min-width: 576px) {
  .col-sm-6 { width: 50%; }
}
@media (min-width: 768px) {
  .col-md-3 { width: 25%; }
  .col-md-6 { width: 50%; }
  .col-md-9 { width: 75%; }
  .col-md-12 { width: 100%; }
}
@media (min-width: 992px) {
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333%; }
  .col-lg-5 { width: 41.666%; }
  .col-lg-7 { width: 58.333%; }
  .col-lg-8 { width: 66.666%; }
  .col-lg-9 { width: 75%; }
  .col-lg-12 { width: 100%; }
}
@media (min-width: 1200px) {
  .col-xl-4 { width: 33.333%; }
  .col-xl-5 { width: 41.666%; }
  .col-xl-6 { width: 50%; }
  .col-xl-7 { width: 58.333%; }
  .col-xl-8 { width: 66.666%; }
}

/* =========== SECTION TITLES =========== */
.section-tittle {
  margin-bottom: 20px;
}
.section-tittle h2 {
  font-size: clamp(26px, 4vw, 42px);
  margin-bottom: 16px;
  color: var(--text-dark);
}
.section-tittle p {
  color: var(--text-mid);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
}

.sub-title {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.sub-title.light { color: rgba(255,255,255,0.75); }

/* =========== BUTTON =========== */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 36px;
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}
.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.35);
}
.btn-white {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* =========== PRELOADER =========== */
#preloader-active {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.preloader-inner {
  position: relative;
  width: 80px;
  height: 80px;
}
.preloader-circle {
  position: absolute;
  inset: 0;
  border: 3px solid rgba(255,255,255,0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.preloader-logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =========== HEADER =========== */
.header-area {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.main-header { width: 100%; }
.header-bottom {
  display: flex;
  align-items: center;
  padding: 20px 40px;
  justify-content: space-between;
  transition: var(--transition);
}

/* Sticky */
.header-sticky.sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
  padding: 14px 40px;
  animation: slideDown 0.35s ease;
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* Logo */
.logo-text {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}
.logo-text span { color: var(--accent); }

/* Nav */
.main-menu nav ul { display: flex; gap: 8px; }
.main-menu nav ul li { position: relative; }
.main-menu nav ul li a {
  display: block;
  padding: 8px 16px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}
.main-menu nav ul li a:hover,
.main-menu nav ul li a:focus { color: var(--accent); }

/* Dropdown */
.main-menu nav ul li .submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 200px;
  background: var(--primary);
  border-top: 3px solid var(--accent);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.main-menu nav ul li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-menu nav ul li .submenu li a {
  padding: 10px 20px;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.main-menu nav ul li .submenu li a:hover { color: var(--accent); padding-left: 26px; }

/* Header CTA */
.header-btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  transition: var(--transition);
}
.header-btn:hover {
  background: var(--accent-dark);
  color: var(--white);
}
.ms-30 { margin-left: 30px; }

/* Mobile Nav */
.mobile_menu { padding: 12px 20px; }
.slicknav_menu { background: var(--primary); }
.slicknav_btn {
  background: none;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 8px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  float: right;
  margin: 8px 0;
}
.slicknav_icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition);
}
.slicknav_nav {
  background: var(--primary);
  padding: 10px 0;
  clear: both;
}
.slicknav_hidden { display: none; }
.slicknav_open { display: block; }
.slicknav_nav li a {
  display: block;
  padding: 10px 20px;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-head);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.slicknav_nav li a:hover { color: var(--accent); }
.slicknav_arrow {
  float: right;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  padding: 10px 20px;
  font-size: 16px;
}
.slicknav_nav .submenu {
  background: rgba(0,0,0,0.25);
  padding-left: 16px;
}

/* =========== HERO SLIDER =========== */
.slider-area { position: relative; overflow: hidden; }
.slider-active { position: relative; }

.single-slider {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slider-height {
  min-height: 100vh;
  min-height: 700px;
}
.hero-overly::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(44, 62, 80, 0.88) 0%,
    rgba(44, 62, 80, 0.55) 60%,
    rgba(44, 62, 80, 0.15) 100%);
  z-index: 1;
}
.hero-overly .container { position: relative; z-index: 2; }

.hero-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(230, 126, 34, 0.12);
  border: 1px solid rgba(230, 126, 34, 0.4);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.hero-caption h1 {
  font-size: clamp(34px, 5.5vw, 68px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-caption p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-btn {
  margin-right: 14px;
  margin-bottom: 12px;
}
.hero-btn-outline {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 32px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  transition: var(--transition);
  margin-bottom: 12px;
}
.hero-btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Hero Swiper Nav */
.slider-area .swiper-button-prev,
.slider-area .swiper-button-next {
  color: var(--white);
  background: rgba(230, 126, 34, 0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: var(--transition);
}
.slider-area .swiper-button-prev:hover,
.slider-area .swiper-button-next:hover { background: var(--accent); }
.slider-area .swiper-button-prev::after,
.slider-area .swiper-button-next::after { font-size: 18px; font-weight: 700; }

/* Slide animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animated { animation-fill-mode: both; animation-duration: 0.8s; }
.fadeInLeft { animation-name: fadeInLeft; }
.fadeInDown { animation-name: fadeInDown; }
.zoomIn { animation-name: zoomIn; }
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

/* =========== STATS BAR =========== */
.stats-bar {
  background: var(--primary);
  padding: 40px 0;
}
.stat-item { padding: 16px 10px; }
.stat-item h3 {
  font-size: 42px;
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-head);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item p {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* =========== OFFERS / HIGHLIGHTS =========== */
.clients-area { background: var(--light-bg); }
.single-offers { padding-left: 50px; }
.single-offers .offers-img {
  margin-bottom: 36px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.single-offers .offers-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.single-offers:hover .offers-img img { transform: scale(1.06); }

.single-offers .offers-cap { position: relative; }
.single-offers .offers-cap span {
  position: absolute;
  content: "";
  width: 36px;
  height: 36px;
  background: var(--accent);
  top: -4px;
  left: -50px;
  font-size: 12px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-head);
  transition: var(--transition);
}
.single-offers:hover .offers-cap span {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.single-offers .offers-cap h3 a {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  display: block;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.single-offers:hover .offers-cap h3 a { color: var(--accent); }
.single-offers .offers-cap p {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.75;
}

/* =========== ABOUT / VISIT SECTION =========== */
.visit-tailor-area {
  display: flex;
  flex-wrap: wrap;
  min-height: 600px;
}
.tailor-offers {
  flex: 0 0 50%;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 500px;
}
.tailor-offers-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,62,80,0.5) 0%, rgba(44,62,80,0.15) 100%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
}
.tailor-offers-badge {
  background: var(--accent);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  text-align: center;
}
.tailor-offers-badge .badge-number {
  display: block;
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.tailor-offers-badge .badge-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
}

.tailor-details {
  flex: 0 0 50%;
  padding: 70px 60px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tailor-details h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 20px;
}
.tailor-details .pera-top {
  color: var(--text-mid);
  font-size: 15px;
  margin-bottom: 16px;
}
.tailor-details .pera-bottom {
  color: var(--text-mid);
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 1.8;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
}
.feature-item i { color: var(--accent); font-size: 16px; flex-shrink: 0; }

/* =========== WHY CHOOSE US =========== */
.categories-area { background: var(--light-bg); }
.single-cat {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(44,62,80,0.07);
  transition: var(--transition);
}
.single-cat:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(44,62,80,0.14);
}
.single-cat .cat-icon {
  width: 64px;
  height: 64px;
  background: rgba(230,126,34,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.single-cat:hover .cat-icon { background: var(--accent); }
.single-cat .cat-icon i {
  font-size: 26px;
  color: var(--accent);
  transition: var(--transition);
}
.single-cat:hover .cat-icon i { color: var(--white); }
.single-cat .cat-cap h5 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
}
.single-cat .cat-cap p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}

/* =========== PRODUCTS =========== */
.products-area { background: var(--white); }
.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44,62,80,0.08);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(44,62,80,0.16);
}
.product-img { position: relative; overflow: hidden; }
.product-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.product-card:hover .product-img img { transform: scale(1.07); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,62,80,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-cta {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.product-cta:hover { background: var(--accent-dark); color: var(--white); }
.product-info {
  padding: 24px;
  background: var(--white);
}
.product-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: var(--transition);
}
.product-card:hover .product-info h4 { color: var(--accent); }
.product-info p { font-size: 13px; color: var(--text-mid); line-height: 1.7; }

/* =========== VIDEO / CTA AREA =========== */
.video-area, .section-bg2 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0;
  position: relative;
}
.video-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44,62,80,0.80);
}
.video-cta-wrap {
  position: relative;
  z-index: 2;
}
.video-cta-wrap h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--white);
  margin-bottom: 16px;
}
.video-cta-wrap p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 36px;
}

/* =========== PROCESS =========== */
.process-area { background: var(--primary); }
.process-area .section-tittle h2 { color: var(--white); }
.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}
.step-number {
  font-family: var(--font-head);
  font-size: 80px;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}
.step-icon {
  width: 72px;
  height: 72px;
  background: rgba(230,126,34,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 20px;
  transition: var(--transition);
  border: 2px solid rgba(230,126,34,0.3);
}
.process-step:hover .step-icon {
  background: var(--accent);
  border-color: var(--accent);
}
.step-icon i { font-size: 28px; color: var(--accent); transition: var(--transition); }
.process-step:hover .step-icon i { color: var(--white); }
.process-step h5 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
}
.process-step p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.75; }

/* =========== TESTIMONIALS =========== */
.testimonial-area { background: var(--light-bg); }
.testimonial-padding { padding: 90px 0; }

.single-testimonial { padding: 60px 30px 40px 70px; }
.testimonial-caption { position: relative; margin-bottom: 36px; }
.quotes-sign {
  position: absolute;
  top: -40px;
  left: -60px;
  width: 80px;
  height: 60px;
  z-index: 0;
  pointer-events: none;
}
.testimonial-caption p {
  font-size: 17px;
  color: var(--text-dark);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.testimonial-founder { margin-top: 28px; gap: 16px; }
.founder-img { flex-shrink: 0; }
.founder-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-text span {
  display: block;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}
.founder-text p { color: var(--text-mid); font-size: 13px; margin: 0; }

/* Testimonial Swiper arrows */
.testimonial-swiper .swiper-button-prev,
.testimonial-swiper .swiper-button-next {
  color: var(--accent);
  bottom: 0;
  top: auto;
  background: none;
  width: 40px;
  height: 40px;
}
.testimonial-swiper .swiper-button-prev { left: 30px; }
.testimonial-swiper .swiper-button-next { right: 30px; }
.testimonial-swiper .swiper-button-prev::after,
.testimonial-swiper .swiper-button-next::after { display: none; }
.testimonial-swiper .swiper-button-prev i,
.testimonial-swiper .swiper-button-next i { font-size: 20px; }

.testimonial-swiper .swiper-pagination { bottom: 4px; }
.testimonial-swiper .swiper-pagination-bullet { background: var(--text-light); }
.testimonial-swiper .swiper-pagination-bullet-active { background: var(--accent); }

/* =========== GALLERY / INSTAGRAM =========== */
.instagram-area { background: var(--white); padding-bottom: 0; }
.single-instagram {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.single-instagram img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.single-instagram:hover img { transform: scale(1.08); }
.single-instagram::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44,62,80,0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1;
}
.single-instagram:hover::before { opacity: 1; visibility: visible; }
.single-instagram a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  color: var(--white);
  font-size: 28px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 2;
}
.single-instagram:hover a {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

/* =========== CONTACT =========== */
.contact-area { background: var(--light-bg); }

.contact-info-wrap { padding-right: 20px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-of-type { border-bottom: none; }
.contact-icon {
  width: 52px;
  height: 52px;
  background: rgba(230,126,34,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { font-size: 20px; color: var(--accent); }
.contact-text h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.contact-text p, .contact-text a {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}
.contact-text a:hover { color: var(--accent); }

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.contact-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 16px;
  transition: var(--transition);
}
.contact-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow);
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-family: var(--font-head);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--light-bg);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(230,126,34,0.12);
}
.form-group textarea { resize: vertical; line-height: 1.6; }
.form-group select { appearance: none; cursor: pointer; }
.form-message {
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px;
}
.form-message.alert-success { background: #d4edda; color: #155724; }
.form-message.alert-danger  { background: #f8d7da; color: #721c24; }

/* =========== CTA BANNER =========== */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 70px 0;
}
.cta-banner__content { text-align: center; }
.cta-banner__title {
  font-size: clamp(24px, 3vw, 38px);
  color: var(--white);
  margin-bottom: 14px;
}
.cta-banner__text {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto 30px;
}
.cta-banner__btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 40px;
  background: var(--white);
  color: var(--accent);
  border-radius: var(--radius);
  transition: var(--transition);
}
.cta-banner__btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* =========== FOOTER =========== */
.footer-wrapper {
  background: var(--primary);
}
.footer-padding { padding: 80px 0 40px; }
.footer-logo-text {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-text span { color: var(--accent); }

.footer-tittle h4 {
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: var(--font-head);
}
.footer-pera p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 28px;
}
.footer-tittle ul li { margin-bottom: 10px; }
.footer-tittle ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: var(--transition);
}
.footer-tittle ul li a:hover { color: var(--accent); padding-left: 6px; }

.footer-hours li {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-contact-info p {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin-bottom: 8px;
}
.footer-contact-info i { color: var(--accent); margin-right: 8px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.footer-bottom-area { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer-copy-right p {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  margin: 0;
}

/* =========== BACK TO TOP =========== */
#back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: none;
}
#back-top a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(230,126,34,0.4);
  transition: var(--transition);
}
#back-top a:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
}

/* =========== AOS OVERRIDES =========== */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* =========== RESPONSIVE =========== */
@media (max-width: 1199px) {
  .header-bottom { padding: 18px 24px; }
  .tailor-details { padding: 50px 40px; }
}

@media (max-width: 991px) {
  .slider-height { min-height: 600px; }
  .hero-caption h1 { font-size: clamp(28px, 6vw, 48px); }
  .visit-tailor-area { flex-direction: column; }
  .tailor-offers { flex: 0 0 100%; min-height: 380px; }
  .tailor-details { flex: 0 0 100%; padding: 50px 30px; }
  .stat-item h3 { font-size: 32px; }
  .single-offers { padding-left: 0; }
  .single-offers .offers-cap span { display: none; }
  .contact-form-wrap { padding: 32px 24px; }
  .testimonial-area .col-lg-9 { width: 100%; }
  .testimonial-swiper { width: 100%; min-height: 280px; }
  .single-testimonial { padding: 50px 20px 40px 40px; }
  .quotes-sign { left: -30px; }
}

@media (max-width: 767px) {
  .section-padding40 { padding: 60px 0; }
  .slider-height { min-height: 520px; }
  .hero-tag { margin-top: 12px; }
  .hero-caption p { font-size: 14px; }
  .stats-bar .row { gap: 0; }
  .stat-item { padding: 12px 8px; }
  .stat-item h3 { font-size: 28px; }
  .tailor-details { padding: 40px 20px; }
  .about-features { grid-template-columns: 1fr; }
  .footer-padding { padding: 60px 0 30px; }
  .row.g-5 { gap: 30px; }
  .contact-info-wrap { padding-right: 0; }
  .single-instagram img { height: 220px; }
  .testimonial-padding { padding: 70px 0 80px; }
  .single-testimonial {
    padding: 36px 18px 56px;
  }
  .testimonial-caption { margin-bottom: 22px; }
  .testimonial-caption p { font-size: 15px; line-height: 1.7; }
  .quotes-sign {
    top: -28px;
    left: -8px;
    width: 52px;
    height: 40px;
  }
  .testimonial-swiper { min-height: 300px; }
  .testimonial-founder {
    margin-top: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .founder-avatar {
    width: 46px;
    height: 46px;
    font-size: 14px;
  }
  .founder-text span { font-size: 16px; }
  .founder-text p { font-size: 12px; }
  .testimonial-area .swiper-button-prev,
  .testimonial-area .swiper-button-next { display: none; }
  .testimonial-swiper .swiper-pagination { bottom: 0; }
  .hero-btn, .hero-btn-outline { font-size: 11px; padding: 12px 22px; }
}

@media (max-width: 575px) {
  .header-bottom { padding: 14px 16px; }
  .hero-caption h1 { font-size: 30px; }
  .col-6 { width: 50%; }
  .testimonial-area .col-lg-9 { width: 100%; }
  .testimonial-swiper { min-height: 320px; }
  .cta-banner { padding: 50px 0; }
  .process-step { padding: 20px 10px; }
  .single-testimonial { padding: 32px 16px 52px; }
  .testimonial-caption p { font-size: 14px; }
  .quotes-sign {
    top: -24px;
    left: 0;
    width: 46px;
    height: 34px;
  }
}
