/* ===================================================
   Gulnath Textiles Pvt. Ltd. - Master Stylesheet
   Theme Color: Cyan (#1CCDCA), Red (#FF4332), Dark (#1e2024)
   =================================================== */

:root {
  --primary: #1CCDCA;
  --primary-hover: #0fb3b0;
  --secondary: #FF4332;
  --secondary-hover: #e03223;
  --dark: #1e2024;
  --dark-bg: #15171a;
  --gray-bg: #f8f9fa;
  --pink-bg: #fbf0ee;
  --border-color: #e9ecef;
  --text-color: #555555;
  --heading-color: #1a1a1a;
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-heading: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --transition: all 0.3s ease-in-out;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 30px rgba(0,0,0,0.12);
  --radius: 6px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-color);
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

body.menu-open {
  overflow: hidden !important;
  touch-action: none;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading-color);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

h1 { font-size: 42px; }
h2 { font-size: 34px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  margin-bottom: 15px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.section-padding-sm {
  padding: 50px 0;
}

.section-title-wrap {
  margin-bottom: 45px;
  text-align: center;
}

.section-subtitle {
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  position: relative;
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(28, 205, 202, 0.35);
}

.btn-dark {
  background-color: #0b3948;
  color: #fff;
}

.btn-dark:hover {
  background-color: #062631;
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

/* ===================================================
   TOP HEADER
   =================================================== */
.top-header {
  background-color: #fff;
  border-bottom: 1px solid #f0f0f0;
  padding: 10px 0;
  font-size: 13px;
  color: #666;
}

.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.top-header-left, .top-header-right {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.top-header a {
  color: #666;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-header a:hover {
  color: var(--primary);
}

.top-header i {
  color: var(--primary);
  font-size: 14px;
}

/* ===================================================
   MAIN NAVBAR
   =================================================== */
.site-header {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.brand-logo img {
  height: 48px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: #333333;
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover, .nav-item.active > .nav-link {
  color: var(--primary);
}

.nav-link:hover::after, .nav-item.active > .nav-link::after {
  width: 100%;
}

.dropdown-arrow {
  font-size: 11px;
  transition: transform 0.2s;
}

/* DROPDOWN MENU */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  padding: 10px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s ease;
  z-index: 100;
}

.nav-item:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
}

.dropdown-menu a:hover {
  background-color: var(--pink-bg);
  color: var(--primary);
  padding-left: 24px;
}

/* SUB-DROPDOWN MENU */
.sub-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  background: #ffffff;
  min-width: 180px;
  padding: 10px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.25s ease;
}

.dropdown-menu li:hover > .sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Mobile Toggle & Backdrop */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  font-size: 20px;
  color: #1e2024;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle:hover,
.menu-toggle:focus {
  background-color: rgba(28, 205, 202, 0.1);
  color: var(--primary);
  border-color: var(--primary);
  outline: none;
}

.nav-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
  touch-action: none;
}

.nav-backdrop.active {
  display: block;
  opacity: 1;
}

/* ===================================================
   HERO SECTION (HOME)
   =================================================== */
.hero-section {
  position: relative;
  background-color: #ffffff;
  padding: 70px 0 60px;
  overflow: hidden;
  background-image: url('../images/bg-block-left-top.png');
  background-repeat: no-repeat;
  background-position: left top;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 50px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-tag i {
  font-size: 18px;
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.15;
  color: #27384c;
  margin-bottom: 28px;
}

.hero-title span {
  display: block;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-tailor-img {
  width: 100%;
  max-width: 480px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
}

.hero-shape-dots {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  opacity: 0.7;
  z-index: 1;
}

/* ===================================================
   THREE FEATURE BOXES
   =================================================== */
.features-section {
  padding: 40px 0 70px;
  background-color: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-box {
  background: #ffffff;
  border: 1px solid #edf0f2;
  border-radius: var(--radius);
  padding: 35px 30px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.feature-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e2024;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 0;
}

/* ===================================================
   EXPLORE COLLECTION
   =================================================== */
.collection-section {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.collection-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  background: #ffffff;
  border: 1px solid #eef1f4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.collection-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: #dbe4ea;
}

.collection-thumb {
  height: 190px;
  overflow: hidden;
}

.collection-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-card:hover .collection-thumb img {
  transform: scale(1.08);
}

.collection-info {
  padding: 25px 30px;
}

.collection-title {
  font-size: 22px;
  font-weight: 700;
  color: #1e2024;
  margin-bottom: 18px;
}

/* ===================================================
   RED SECTION: IN LADIES WEAR WE ARE DEALING IN
   =================================================== */
.red-banner-section {
  background-color: var(--secondary);
  color: #ffffff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.red-banner-content {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.red-tag {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.red-title {
  color: #ffffff;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 25px;
}

.red-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 15px;
}

.red-text strong {
  color: #ffffff;
}

.red-list-title {
  font-weight: 700;
  font-size: 16px;
  margin: 22px 0 10px;
  color: #ffffff;
}

.red-bullets {
  margin-left: 0;
  padding-left: 0;
}

.red-bullets li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
}

.red-bullets li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 9px;
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
}

.red-line-decor {
  position: absolute;
  right: -50px;
  bottom: 0;
  width: 450px;
  opacity: 0.65;
  pointer-events: none;
  z-index: 1;
}

/* ===================================================
   VALUES & STRATEGIC OBJECTIVE
   =================================================== */
.values-section {
  padding: 90px 0;
  background-color: #ffffff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.value-card {
  position: relative;
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.value-card:hover .value-card-bg {
  transform: scale(1.08);
}

.value-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 22, 28, 0.65);
  transition: background 0.3s ease;
}

.value-card:hover .value-card-overlay {
  background: rgba(18, 22, 28, 0.5);
}

.value-card-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.value-star-icon {
  width: 58px;
  height: 58px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 18px;
  background: rgba(28, 205, 202, 0.15);
  backdrop-filter: blur(4px);
}

.value-title {
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.values-bottom-text {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.8;
  color: #555;
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.values-bottom-text p {
  margin-bottom: 10px;
}

.values-bottom-text strong {
  color: #222;
}

/* ===================================================
   COMPANY INTRO / WE HAVE CLIMBED UP (DARK SECTION)
   =================================================== */
.company-intro-section {
  background-color: #0b0f14;
  color: #fff;
  padding: 90px 0;
  position: relative;
  background-image: url('../images/home-company-profile-bg.jpg');
  background-size: cover;
  background-position: center;
}

.company-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.company-intro-left h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 22px;
}

.company-intro-left p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.company-intro-right h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.company-intro-right p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* ===================================================
   OUR TEAM SECTION
   =================================================== */
.team-section {
  padding: 90px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  background-image: url('../images/bg-line-dot-right-bottom.png');
  background-repeat: no-repeat;
  background-position: right top;
}

.team-header-desc {
  max-width: 950px;
  margin: 0 auto 50px;
  font-size: 14.5px;
  line-height: 1.8;
  color: #666;
  text-align: center;
}

.team-comprises-wrap {
  text-align: center;
  margin-top: 30px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.team-member-card {
  text-align: center;
  background: #ffffff;
  padding: 20px 10px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.team-member-card:hover {
  transform: translateY(-5px);
}

.team-avatar-wrap {
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #edf0f2;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-member-card:hover .team-avatar-wrap {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(28, 205, 202, 0.4);
}

.team-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-role {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
}

/* ===================================================
   OUR SPECIALTY SECTION (DARK)
   =================================================== */
.specialty-section {
  background-color: #0b0f14;
  color: #ffffff;
  padding: 90px 0;
  background-image: url('../images/home-new-specialty-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.specialty-content {
  max-width: 950px;
}

.specialty-title {
  color: #ffffff;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.specialty-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
}

.specialty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
}

.specialty-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.specialty-item i {
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

/* ===================================================
   WRITE US MESSAGE & COLLAGE
   =================================================== */
.contact-collage-section {
  padding: 90px 0;
  background-color: #ffffff;
}

.contact-collage-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-form-block {
  padding-right: 20px;
}

.contact-decor-circle {
  width: 60px;
  height: 60px;
  background-image: repeating-linear-gradient(45deg, #ff4332 0, #ff4332 3px, transparent 3px, transparent 8px);
  border-radius: 50%;
  margin-bottom: 20px;
}

.contact-form-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #1e2024;
}

.custom-form .form-group {
  margin-bottom: 18px;
}

.custom-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.custom-form .form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #b2efee;
  background-color: #e8faf9;
  border-radius: 4px;
  font-size: 16px; /* 16px is required to prevent iOS Safari auto-zoom on iPhone */
  font-family: inherit;
  color: #333;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
  touch-action: manipulation;
}

.custom-form .form-control::placeholder {
  color: #888;
}

.custom-form .form-control:focus {
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(28, 205, 202, 0.2);
}

.custom-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Honeypot Spam Trap (completely hidden from real users) */
.form-hp {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}

/* Math Captcha Widget */
.form-captcha-box {
  background: #f0faf9;
  border: 1.5px dashed var(--primary);
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 18px;
}

.captcha-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}

.captcha-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #1e2024;
}

.captcha-label i {
  color: var(--primary);
  font-size: 15px;
}

.captcha-expression {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #c0eeec;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 1px;
}

.captcha-input-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.captcha-input-group .captcha-input {
  flex: 1;
  background: #ffffff;
  border: 1px solid #b2efee;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}

.captcha-input-group .captcha-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(28, 205, 202, 0.2);
}

.captcha-refresh-btn {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  background: #ffffff;
  border: 1px solid #b2efee;
  color: #555;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

.captcha-refresh-btn:hover,
.captcha-refresh-btn:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: rotate(45deg);
}

.captcha-error-msg {
  display: none;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #d12415;
}

.form-alert {
  display: none;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 500;
}

.form-alert.alert-error {
  background: #ffebe9;
  color: #d12415;
  border: 1px solid #fecaca;
}

.form-alert.alert-success {
  background: #e6f9f0;
  color: #0b7a44;
  border: 1px solid #bbf0d6;
}

.collage-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease;
}

.collage-item:hover img {
  transform: scale(1.03);
}

.collage-item.span-2 {
  grid-column: span 2;
}

/* ===================================================
   CLIENTAGE SATISFACTION (RED BANNER & STATS & RACK)
   =================================================== */
.clientage-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr;
  background-color: #ffffff;
  align-items: stretch;
}

.clientage-red {
  background-color: var(--secondary);
  color: #ffffff;
  padding: 70px 50px;
}

.clientage-red h2 {
  color: #ffffff;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 22px;
}

.clientage-red p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 0;
}

.clientage-stats {
  background-color: #ffffff;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.stat-item {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 25px;
}

.stat-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  line-height: 1.4;
}

.clientage-image {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.clientage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================================================
   PAGE BANNER / BREADCRUMB (INNER PAGES)
   =================================================== */
.page-banner {
  background-color: #1e2024;
  background-image: linear-gradient(rgba(18, 22, 28, 0.75), rgba(18, 22, 28, 0.85)), url('../images/bg-breadcrumb.jpg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-banner-title {
  color: #ffffff;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}

.breadcrumb-list {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-list a {
  color: #ffffff;
}

.breadcrumb-list a:hover {
  color: var(--primary);
}

.breadcrumb-list .separator {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-list .current {
  color: var(--primary);
}

/* ===================================================
   GALLERY PAGES (DRESS, TOPS, KIDS, KNITS, WOVEN)
   =================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.gallery-card {
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #edf0f2;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.gallery-card-thumb {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.gallery-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card-thumb img {
  transform: scale(1.08);
}

.gallery-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 205, 202, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-overlay i {
  color: #fff;
  font-size: 28px;
}

.gallery-card-title {
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-align: center;
  background: #fff;
}

/* ===================================================
   ABOUT PAGE SPECIFIC
   =================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content-left h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-img-frame img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* ===================================================
   INFRASTRUCTURE PAGE SPECIFIC
   =================================================== */
.infra-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.infra-card {
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #edf0f2;
}

.infra-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.infra-card-body {
  padding: 22px;
}

.infra-card-body h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

/* ===================================================
   CONTACT PAGE SPECIFIC
   =================================================== */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}

.contact-info-card {
  background: #fdfefe;
  border: 1px solid #eef2f5;
  border-radius: var(--radius);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(28, 205, 202, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 17px;
  margin-bottom: 5px;
}

.contact-text p, .contact-text a {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
}

.map-container {
  margin-top: 50px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background-color: #1a1c20;
  color: #a0a6b1;
  padding: 80px 0 0;
  position: relative;
  background-image: url('../images/bg-footer-3.png');
  background-repeat: no-repeat;
  background-position: right bottom;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.4fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #a0a6b1;
  font-size: 14px;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 16px;
  font-size: 14px;
}

.footer-contact-item i {
  color: var(--primary);
  font-size: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: #a0a6b1;
}

.footer-contact-item a:hover {
  color: var(--primary);
}

.footer-about-logo {
  max-width: 220px;
  margin-bottom: 20px;
}

.footer-about-text {
  font-size: 14px;
  line-height: 1.8;
  color: #9ba0aa;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-copyright {
  font-size: 13px;
  color: #7e8590;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}

.social-btn:hover {
  background-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

/* ===================================================
   LIGHTBOX MODAL FOR GALLERIES
   =================================================== */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: var(--radius);
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #ffffff;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: var(--primary);
}

/* BACK TO TOP BUTTON */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
  box-shadow: var(--shadow-md);
  border: none;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
}

/* ===================================================
   RESPONSIVE BREAKPOINTS & MOBILE OPTIMIZATIONS
   Optimized for iPhone (Safari / iOS) and Android devices
   =================================================== */

/* Safe area support for iOS notches & home indicators */
@supports (padding-top: env(safe-area-inset-top)) {
  .site-header {
    padding-top: env(safe-area-inset-top);
  }
}

.footer-bottom {
  padding-bottom: calc(18px + env(safe-area-inset-bottom));
}

.back-to-top {
  bottom: calc(20px + env(safe-area-inset-bottom));
  right: calc(20px + env(safe-area-inset-right));
}

@media (max-width: 1024px) {
  .hero-title { font-size: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .clientage-section { grid-template-columns: 1fr 1fr; }
  .clientage-image { grid-column: span 2; }
}

@media (max-width: 768px) {
  .top-header { display: none; }
  .menu-toggle { display: flex; }
  
  .site-header .container {
    height: 70px;
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .brand-logo img {
    height: 38px;
  }
  
  /* Mobile Drawer Navigation */
  .nav-menu {
    position: fixed;
    top: calc(70px + env(safe-area-inset-top));
    left: -100%;
    width: min(320px, 86vw);
    height: calc(100vh - 70px - env(safe-area-inset-top));
    height: calc(100dvh - 70px - env(safe-area-inset-top));
    background-color: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 16px calc(30px + env(safe-area-inset-bottom));
    gap: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.18);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1000;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    width: 100%;
    border-bottom: 1px solid #f1f3f5;
  }

  .nav-item:last-child {
    border-bottom: none;
  }
  
  .nav-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px;
    font-size: 16px;
    font-weight: 600;
    color: #1e2024;
    min-height: 44px; /* Apple minimum touch target */
    border-radius: 6px;
  }

  .nav-item.active > .nav-link {
    color: var(--primary);
    background-color: #f0faf9;
  }

  .dropdown-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    transition: transform 0.25s ease;
    font-size: 13px;
    color: #718096;
  }

  .nav-item.dropdown-open > .nav-link .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--primary);
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    padding: 4px 0 8px 12px;
    display: none;
    background: #f8fafb;
    border-radius: 6px;
    margin-bottom: 8px;
    width: 100%;
  }

  .dropdown-menu li {
    width: 100%;
    border-bottom: 1px dashed #e2e8f0;
  }

  .dropdown-menu li:last-child {
    border-bottom: none;
  }

  .dropdown-menu li a {
    padding: 10px 12px;
    font-size: 15px;
    font-weight: 500;
    color: #4a5568;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
  }

  .dropdown-menu li.has-subdropdown.dropdown-open > a .dropdown-arrow {
    transform: rotate(90deg);
    color: var(--primary);
  }
  
  .sub-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    padding: 4px 0 6px 12px;
    display: none;
    background: #edf5f5;
    border-radius: 4px;
    margin: 4px 8px 8px;
    width: 100%;
  }

  .sub-dropdown li a {
    padding: 8px 12px;
    font-size: 14px;
    color: #4a5568;
    min-height: 38px;
  }
  
  .nav-item.dropdown-open > .dropdown-menu,
  .dropdown-menu li.dropdown-open > .sub-dropdown {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-tailor-img {
    max-width: 300px;
    margin: 0 auto;
  }

  .features-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .company-intro-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .specialty-grid { grid-template-columns: 1fr; }
  .contact-collage-grid { grid-template-columns: 1fr; }
  .clientage-section { grid-template-columns: 1fr; }
  .clientage-image { grid-column: span 1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .infra-step-grid { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  /* Section padding reductions for mobile */
  .section-padding { padding: 60px 0; }
  .section-padding-sm { padding: 40px 0; }

  /* Form touch padding */
  .custom-form .form-row { grid-template-columns: 1fr; }
  .contact-form-block { padding: 25px 20px !important; }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 30px;
    line-height: 1.2;
  }

  .hero-title span {
    display: inline-block;
  }

  .section-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .collection-card { grid-template-columns: 1fr; }
  .collection-thumb { height: 220px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  
  .hero-tailor-img { max-width: 250px; }
  
  .btn {
    width: 100%;
    min-height: 46px;
    padding: 12px 20px;
  }

  .footer-col {
    margin-bottom: 25px;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .captcha-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .captcha-input-group {
    width: 100%;
  }
}

/* ===================================================
   THANK YOU & 404 NOT FOUND PAGE STYLES
   =================================================== */
.status-page-section {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, #f7fdfd 0%, #ffffff 100%);
  min-height: 65vh;
  display: flex;
  align-items: center;
}

.status-card {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
  border: 1px solid #eef4f6;
  position: relative;
  overflow: hidden;
}

.status-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.status-icon-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 40px;
  transition: transform 0.3s ease;
}

.status-icon-wrap.success {
  background: #e6f9f0;
  color: #10b981;
  box-shadow: 0 0 0 12px rgba(16, 185, 129, 0.1);
}

.status-icon-wrap.error-404 {
  background: #fff1f0;
  color: var(--secondary);
  box-shadow: 0 0 0 12px rgba(255, 67, 50, 0.1);
}

.status-code {
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  color: #1e2024;
  margin-bottom: 10px;
  letter-spacing: -2px;
}

.status-code span {
  color: var(--secondary);
}

.status-title {
  font-size: 32px;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
}

.status-subtitle {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 30px;
}

.status-info-box {
  background: #f8fafb;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  margin: 25px auto 30px;
  text-align: left;
  max-width: 580px;
}

.status-info-box h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1e2024;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-info-box ul {
  padding-left: 0;
  margin: 0;
}

.status-info-box li {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-info-box li i {
  color: var(--primary);
}

.status-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.status-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 30px 0;
  text-align: left;
}

.status-link-card {
  padding: 16px;
  border-radius: 8px;
  background: #fbfdfe;
  border: 1px solid #e4eaee;
  display: block;
  color: #333;
  transition: var(--transition);
}

.status-link-card:hover {
  background: #ffffff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  color: var(--primary);
}

.status-link-card h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-link-card p {
  font-size: 12px;
  color: #777;
  margin: 0;
}

@media (max-width: 768px) {
  .status-card {
    padding: 35px 20px;
  }
  .status-code {
    font-size: 60px;
  }
  .status-title {
    font-size: 25px;
  }
  .status-subtitle {
    font-size: 15px;
  }
  .status-links-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .status-actions .btn {
    width: 100%;
  }
}
