/* ==========================================================================
   KamKaj / Laundry - Master Stylesheet
   Pixel-accurate matching of KamKaj.pk reference screenshots
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

:root {
  --kk-orange: #f37023;
  --kk-orange-dark: #d95e14;
  --kk-orange-light: #fff4ed;
  --kk-orange-glow: rgba(243, 112, 35, 0.3);
  
  --kk-dark: #1e293b;
  --kk-black: #111827;
  --kk-card-dark: #18202f;
  
  --kk-text-main: #334155;
  --kk-text-muted: #64748b;
  --kk-text-light: #94a3b8;
  
  --kk-bg-body: #fdfdfd;
  --kk-bg-gray: #f8fafc;
  --kk-bg-alt: #f1f5f9;
  
  --kk-border: #e2e8f0;
  --kk-border-light: #f1f5f9;
  
  --kk-success: #10b981;
  --kk-info: #0284c7;
  --kk-danger: #ef4444;
  
  --kk-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --kk-shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --kk-shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --kk-shadow-xl: 0 20px 35px rgba(0,0,0,0.15);
  
  --kk-transition: all 0.25s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--kk-text-main);
  background-color: var(--kk-bg-body);
  line-height: 1.6;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--kk-orange);
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

[class*="col-"] {
  padding: 0 12px;
  width: 100%;
}

@media (min-width: 768px) {
  .col-md-3 { width: 25%; }
  .col-md-4 { width: 33.333333%; }
  .col-md-6 { width: 50%; }
  .col-md-8 { width: 66.666667%; }
  .col-md-12 { width: 100%; }
}

@media (min-width: 992px) {
  .col-lg-2 { width: 16.666667%; }
  .col-lg-2-4 { width: 20%; }
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333333%; }
  .col-lg-5 { width: 41.666667%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.333333%; }
  .col-lg-8 { width: 66.666667%; }
  .col-lg-12 { width: 100%; }
}

/* -------------------------------------------------------------
   Header & Navigation (Exact Screenshot 1)
   ------------------------------------------------------------- */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}

.brand-logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.brand-logo-text {
  font-size: 26px;
  font-weight: 800;
  color: var(--kk-dark);
  letter-spacing: -0.5px;
  line-height: 1;
}

.brand-logo-text span {
  color: var(--kk-orange);
}

.brand-logo-sub {
  font-size: 10px;
  color: var(--kk-text-light);
  font-weight: 600;
  letter-spacing: 0.5px;
  display: block;
  margin-top: 1px;
}

.main-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.main-nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: #475569;
}

.main-nav-links a:hover,
.main-nav-links li.active a {
  color: var(--kk-orange);
}

.header-call-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--kk-orange);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 4px 10px var(--kk-orange-glow);
  transition: var(--kk-transition);
}

.header-call-circle:hover {
  transform: scale(1.08);
}

.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  color: #0f172a;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.mobile-menu-btn:hover {
  background: var(--kk-orange-light);
  border-color: var(--kk-orange);
  color: var(--kk-orange);
}

/* -------------------------------------------------------------
   Off-Canvas Mobile Navigation Drawer (100% FontAwesome, Zero Emojis)
   ------------------------------------------------------------- */
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 86vw;
  height: 100vh;
  background: #ffffff;
  z-index: 99999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 6px 0 35px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  padding: 18px 20px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
}

.drawer-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.drawer-close-btn:hover {
  background: #fee2e2;
  color: #ef4444;
  border-color: #fecaca;
}

.drawer-content {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 8px;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.drawer-nav-link i {
  width: 20px;
  text-align: center;
  font-size: 15px;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.drawer-nav-link:hover,
.drawer-nav-link.active {
  background: var(--kk-orange-light);
  color: var(--kk-orange);
}

.drawer-nav-link:hover i,
.drawer-nav-link.active i {
  color: var(--kk-orange);
}

.drawer-cta-box {
  background: linear-gradient(135deg, var(--kk-orange-light) 0%, #ffffff 100%);
  border: 1.5px solid rgba(243, 112, 35, 0.25);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 8px;
}

.drawer-auth-box {
  padding: 16px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.drawer-footer-contact {
  padding: 18px 20px;
  border-top: 1px solid #f1f5f9;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* -------------------------------------------------------------
   Hero Section (Pixel-accurate match of KamKaj reference)
   ------------------------------------------------------------- */
.hero-section {
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
  background-color: #f8fafc;
  background-image: 
    radial-gradient(circle at 12% 25%, rgba(243, 112, 35, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 88% 75%, rgba(243, 112, 35, 0.04) 0%, transparent 45%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='104' viewBox='0 0 120 104'%3E%3Cpolygon points='60,0 120,34.64 120,104 60,69.28 0,104 0,34.64' fill='none' stroke='%23e2e8f0' stroke-width='1.2' stroke-opacity='0.6'/%3E%3Cpolygon points='60,0 60,69.28 120,34.64' fill='%23f1f5f9' fill-opacity='0.3'/%3E%3Cpolygon points='60,69.28 120,104 60,104' fill='%23e2e8f0' fill-opacity='0.18'/%3E%3Cpolygon points='0,34.64 60,69.28 0,104' fill='%23ffffff' fill-opacity='0.65'/%3E%3C/svg%3E");
  background-size: auto, auto, 120px 104px;
  border-bottom: 1px solid #e2e8f0;
}

.align-center {
  align-items: center;
}

.hero-left {
  padding-right: 35px;
  z-index: 2;
}

.hero-title {
  font-size: 46px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.6px;
}

.hero-title .text-orange {
  color: var(--kk-orange);
}

.hero-lead-text {
  font-size: 14.5px;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 12px;
  font-weight: 500;
}

.hero-desc-text {
  font-size: 14px;
  color: #475569;
  line-height: 1.72;
  margin-bottom: 28px;
  max-width: 580px;
}

/* Floating Search Bar Pill */
.hero-search-bar {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  max-width: 520px;
  width: 100%;
  position: relative;
  height: 48px;
  transition: all 0.2s ease;
}

.hero-search-bar:focus-within {
  border-color: var(--kk-orange);
  box-shadow: 0 6px 20px rgba(243, 112, 35, 0.18);
}

.search-city-box {
  border-right: 1px solid #e2e8f0;
  padding: 0 12px;
  display: flex;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}

.search-city-box select {
  border: none;
  background: transparent;
  font-size: 13.5px;
  font-weight: 600;
  color: #1e293b;
  outline: none;
  cursor: pointer;
  padding: 10px 18px 10px 4px;
  appearance: none;
  -webkit-appearance: none;
}

.search-city-box i {
  position: absolute;
  right: 6px;
  pointer-events: none;
  font-size: 12px;
  color: #64748b;
}

.search-input-box {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
}

.search-input-box input {
  width: 100%;
  height: 100%;
  border: none;
  padding: 0 14px;
  font-size: 13.5px;
  outline: none;
  font-family: inherit;
  color: #0f172a;
}

.search-icon-btn {
  background: none;
  border: none;
  color: #64748b;
  padding: 0 16px;
  font-size: 16px;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.search-icon-btn:hover {
  color: var(--kk-orange);
}

.search-results-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  z-index: 100;
  max-height: 280px;
  overflow-y: auto;
  display: none;
}

.search-result-item {
  padding: 11px 16px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  transition: all 0.15s ease;
}

.search-result-item:hover {
  background: #fff4ed;
  color: var(--kk-orange);
  padding-left: 19px;
}

/* Right Hero Card: Book Your Service */
.hero-book-card {
  background: #11141b;
  background-image: 
    repeating-linear-gradient(90deg, rgba(255,255,255,0.012) 0px, rgba(255,255,255,0.012) 1px, transparent 1px, transparent 4px),
    linear-gradient(180deg, #181c26 0%, #11141b 100%);
  border-radius: 22px;
  padding: 30px 26px 26px;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.32), 0 4px 15px rgba(0,0,0,0.2);
  max-width: 410px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-book-card h3 {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: -0.2px;
}

.form-group-kk {
  margin-bottom: 12px;
  position: relative;
}

.form-input-kk {
  width: 100%;
  height: 44px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 5px;
  padding: 0 14px;
  font-size: 13.5px;
  font-family: inherit;
  outline: none;
  color: #0f172a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input-kk:focus {
  border-color: var(--kk-orange);
  box-shadow: 0 0 0 2.5px rgba(243, 112, 35, 0.25);
}

select.form-input-kk {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 32px;
}

.select-caret-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #64748b;
  font-size: 13px;
}

.btn-request-call {
  width: 100%;
  height: 46px;
  background: var(--kk-orange);
  background: linear-gradient(135deg, #f37023 0%, #ea580c 100%);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 6px 18px rgba(243, 112, 35, 0.35);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-request-call:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(243, 112, 35, 0.45);
}

.btn-request-call:active {
  transform: translateY(0);
}

/* -------------------------------------------------------------
   Universal Section Headers (Centered, Professional, Modern)
   ------------------------------------------------------------- */
.kk-section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 36px auto;
  position: relative;
}

.kk-section-header h2 {
  font-size: 30px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin: 0 0 10px 0;
  letter-spacing: -0.4px;
}

.kk-section-header p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin: 0 auto;
}

.kk-section-header .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--kk-orange-light);
  color: var(--kk-orange);
  border: 1px solid rgba(243, 112, 35, 0.25);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* -------------------------------------------------------------
   Top Services (Clean Horizontal Pills from KamKaj Design)
   ------------------------------------------------------------- */
.top-services-section {
  padding: 45px 0 35px;
  background: #ffffff;
}

.top-services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

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

@media (max-width: 600px) {
  .top-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .top-services-grid {
    grid-template-columns: 1fr;
  }
}

.top-service-pill {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
  text-decoration: none;
  transition: var(--kk-transition);
}

.top-service-pill:hover {
  border-color: var(--kk-orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.top-service-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--kk-orange-light);
  color: var(--kk-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.top-service-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--kk-dark);
}

.top-service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.top-service-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  transition: transform 0.25s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.top-service-card-luxury:hover .top-service-icon-box {
  transform: scale(1.1) rotate(4deg);
}

.top-service-badge-pill {
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.top-service-card-title {
  font-size: 14.5px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
  line-height: 1.3;
}

.top-service-card-desc {
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.4;
  margin-bottom: 14px;
}

.top-service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px dashed #f1f5f9;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--kk-orange);
}

.top-service-card-footer span {
  color: #64748b;
  font-size: 11px;
  font-weight: 500;
}

.top-service-card-footer i {
  transition: transform 0.2s ease;
}

.top-service-card-luxury:hover .top-service-card-footer i {
  transform: translateX(4px);
}

/* Floating Search Bar & City Selector */
.hero-search-wrapper-floating {
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 50px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  transition: all 0.25s ease;
}

.hero-search-wrapper-floating:focus-within {
  border-color: var(--kk-orange);
  box-shadow: 0 18px 45px rgba(243, 112, 35, 0.18);
}

/* -------------------------------------------------------------
   Recommended Services (Exact 4-Column Grid)
   ------------------------------------------------------------- */
.rec-services-section {
  padding: 50px 0 60px;
  background: #ffffff;
}

.rec-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1199px) {
  .rec-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .rec-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .rec-services-grid {
    grid-template-columns: 1fr;
  }
}

.rec-card, .rec-service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
}

.rec-card:hover, .rec-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--kk-orange);
}

.rec-card-img-wrap, .rec-card-image-box {
  height: 180px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
  border-radius: 8px;
  margin-bottom: 14px;
}

.rec-card-img-wrap img, .rec-card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  display: block;
}

.rec-card:hover .rec-card-img-wrap img, .rec-service-card:hover .rec-card-image-box img {
  transform: scale(1.05);
}

.rec-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--kk-orange);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
}

.rec-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rec-card-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.35;
}

.rec-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 14px;
}

.rec-card-price span {
  font-size: 11px;
  color: #64748b;
  display: block;
  margin-bottom: 2px;
}

.rec-card-price strong {
  font-size: 15px;
  color: var(--kk-orange);
  font-weight: 800;
}

.rec-card-rating {
  font-size: 12px;
  font-weight: 700;
  color: #eab308;
  display: flex;
  align-items: center;
  gap: 3px;
}

.btn-book-card {
  width: 100%;
  background: #0f172a;
  color: #ffffff;
  border: none;
  padding: 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  font-family: inherit;
}

.btn-book-card:hover {
  background: var(--kk-orange);
  color: #ffffff;
}

/* -------------------------------------------------------------
   Safety & Guarantee Section
   ------------------------------------------------------------- */
.safety-section {
  padding: 50px 0;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.safety-col h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
}

.safety-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.safety-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.safety-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: var(--kk-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.safety-item-text strong {
  font-size: 13.5px;
  color: #0f172a;
  display: block;
}

.safety-item-text p {
  font-size: 12px;
  color: #64748b;
  margin-top: 3px;
  line-height: 1.5;
}

.video-preview-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 220px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.video-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--kk-orange);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(243,112,35,0.4);
  transition: transform 0.2s ease;
}

.video-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  color: #ffffff;
}

/* -------------------------------------------------------------
   Reviews & Appreciations Section
   ------------------------------------------------------------- */
.reviews-section {
  padding: 50px 0 60px;
  background: #ffffff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.review-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  position: relative;
  transition: all 0.2s ease;
}

.review-card:hover {
  border-color: var(--kk-orange);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.review-quote-mark {
  font-size: 38px;
  color: var(--kk-orange);
  line-height: 1;
  font-family: serif;
  margin-bottom: 8px;
}

.review-text {
  font-size: 13px;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 18px;
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--kk-orange) 0%, var(--kk-orange-dark) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(243,112,35,0.25);
}

.review-author-info h4 {
  font-size: 13.5px;
  color: #0f172a;
  margin: 0 0 2px;
}

.review-author-info span {
  font-size: 11.5px;
  color: #64748b;
}
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumb-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.youtube-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ff0000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(255,0,0,0.4);
  cursor: pointer;
  transition: var(--kk-transition);
}

.youtube-play-btn:hover {
  transform: scale(1.15);
}

.video-review-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--kk-dark);
  margin: 12px 14px 4px;
}

.video-review-card p {
  font-size: 12px;
  color: var(--kk-text-muted);
  margin: 0 14px;
  line-height: 1.5;
}

/* -------------------------------------------------------------
   Why Choose Us (Screenshot 1)
   ------------------------------------------------------------- */
.why-choose-section {
  padding: 50px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.why-left-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--kk-shadow-md);
}

.why-left-image img {
  width: 100%;
  height: auto;
  display: block;
}

.why-points-list {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-point-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--kk-dark);
}

.why-point-item i {
  color: var(--kk-orange);
  font-size: 15px;
  width: 20px;
}

/* -------------------------------------------------------------
   Download App Section (Screenshot 1)
   ------------------------------------------------------------- */
.download-app-section {
  padding: 40px 0;
  background: #ffffff;
}

.app-box-inner {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.app-content-center h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--kk-dark);
  margin-bottom: 6px;
}

.app-content-center p {
  font-size: 13px;
  color: var(--kk-text-muted);
  margin-bottom: 16px;
}

.app-badges {
  display: flex;
  gap: 12px;
}

.app-badge-btn {
  background: #111827;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.app-badge-btn:hover {
  background: var(--kk-orange);
  color: #ffffff;
}

.app-qr-box {
  text-align: center;
  font-size: 11px;
  color: var(--kk-text-muted);
  font-weight: 600;
}

/* -------------------------------------------------------------
   Trusted Organizations (Screenshot 1)
   ------------------------------------------------------------- */
.trusted-orgs-section {
  padding: 40px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.org-logos-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 25px;
}

.org-logo-item {
  font-size: 18px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* -------------------------------------------------------------
   Master Dark Footer (Exact Screenshot 1)
   ------------------------------------------------------------- */
.master-footer {
  background: #141820;
  color: #94a3b8;
  padding: 50px 0 20px;
  font-size: 13px;
}

.footer-logo-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-logo-title span {
  color: var(--kk-orange);
}

.footer-col-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 8px;
}

.footer-menu li a {
  color: #94a3b8;
}

.footer-menu li a:hover {
  color: var(--kk-orange);
}

.footer-social-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
}

.footer-social-icon:hover {
  background: var(--kk-orange);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 35px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 12px;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
  z-index: 999;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: #ffffff;
}

/* -------------------------------------------------------------
   Interactive Multi-Step Modal Popup System
   ------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  display: flex !important;
  opacity: 1;
}

.modal-dialog {
  background: #ffffff;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid #e2e8f0;
  position: relative;
  transform: scale(0.92);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-dialog {
  transform: scale(1);
}

.modal-header {
  padding: 18px 24px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.modal-header h3 {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  margin: 0;
}

.modal-close-btn {
  background: transparent;
  border: none;
  font-size: 24px;
  color: #64748b;
  cursor: pointer;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.modal-step-tracker {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #f1f5f9;
  padding: 4px;
  border-bottom: 1px solid #e2e8f0;
}

.step-tracker-item {
  text-align: center;
  padding: 8px 4px;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  border-radius: 6px;
  transition: all 0.2s;
}

.step-tracker-item.active {
  background: #ffffff;
  color: var(--kk-orange);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.step-tracker-item.completed {
  color: #10b981;
}

.modal-body {
  padding: 24px;
}

.modal-step-content {
  display: none;
}

.modal-step-content.active {
  display: block;
  animation: fadeInStep 0.3s ease;
}

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

/* -------------------------------------------------------------
   Modal Action Buttons & Footers (Step Transitions & Submission)
   ------------------------------------------------------------- */
.modal-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
}

.btn-modal-back {
  background: #f1f5f9;
  color: #334155;
  border: 1.5px solid #cbd5e1;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
  width: auto;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.btn-modal-back:hover {
  background: #e2e8f0;
  color: #0f172a;
  border-color: #94a3b8;
  transform: translateY(-1px);
}

.btn-modal-confirm {
  background: var(--kk-orange);
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
  box-shadow: 0 4px 14px var(--kk-orange-glow);
  width: auto;
  flex-shrink: 0;
}

.btn-modal-confirm:hover {
  background: var(--kk-orange-dark);
  box-shadow: 0 6px 18px var(--kk-orange-glow);
  transform: translateY(-1px);
}

.btn-modal-next {
  background: var(--kk-orange);
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
  box-shadow: 0 4px 14px var(--kk-orange-glow);
  width: auto;
}

.btn-modal-next:hover {
  background: var(--kk-orange-dark);
  box-shadow: 0 6px 18px var(--kk-orange-glow);
  transform: translateY(-1px);
}

/* -------------------------------------------------------------
   Screenshots 2 & 3 Special Views
   ------------------------------------------------------------- */
.track-order-card-exact {
  max-width: 600px;
  margin: 40px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--kk-shadow-sm);
  text-align: center;
}

.why-step-row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.why-step-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--kk-orange);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
  flex: 1;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.why-step-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.why-step-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .main-nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-left { padding-right: 0; margin-bottom: 30px; }
  .hero-title { font-size: 28px; }
}

/* ==========================================================================
   Luxury Customer Feedback & Review Modal Component
   ========================================================================== */
.modal-feedback-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: fadeInModal 0.25s ease forwards;
}

@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalScaleUp {
  from { transform: scale(0.92) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-feedback-card {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  padding: 0;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
  position: relative;
  animation: modalScaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.modal-feedback-header {
  background: linear-gradient(135deg, #18202f 0%, #0f172a 100%);
  color: #ffffff;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.modal-feedback-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--kk-orange) 0%, #fb923c 100%);
}

.modal-feedback-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-feedback-title .star-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(243, 112, 35, 0.15);
  border: 1px solid rgba(243, 112, 35, 0.3);
  color: var(--kk-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.modal-feedback-title h3 {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.3px;
}

.modal-feedback-title span {
  font-size: 11.5px;
  color: #94a3b8;
  display: block;
}

.modal-close-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #94a3b8;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: rotate(90deg);
}

.modal-feedback-body {
  padding: 26px 28px 28px;
}

/* Interactive Star Rating Picker */
.star-rating-picker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 18px;
  margin-bottom: 18px;
}

.star-rating-stars {
  display: flex;
  gap: 6px;
  cursor: pointer;
}

.star-rating-stars i {
  font-size: 26px;
  color: #cbd5e1;
  transition: all 0.15s ease;
}

.star-rating-stars i.active,
.star-rating-stars i.hovered {
  color: #f59e0b;
  transform: scale(1.15);
  text-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
}

.star-rating-label {
  font-size: 12.5px;
  font-weight: 700;
  color: #0f172a;
}

/* Modal Form Inputs */
.feedback-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 13.5px;
  color: #0f172a;
  background: #ffffff;
  outline: none;
  transition: all 0.2s ease;
}

.feedback-input:focus {
  border-color: var(--kk-orange);
  box-shadow: 0 0 0 4px rgba(243, 112, 35, 0.12);
}

.feedback-label {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Action Buttons */
.modal-feedback-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
}

.btn-modal-cancel {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.btn-modal-cancel:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.btn-modal-submit {
  background: linear-gradient(135deg, var(--kk-orange) 0%, var(--kk-orange-dark) 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 12px 30px;
  font-weight: 800;
  font-size: 13.5px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(243, 112, 35, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  font-family: inherit;
}

.btn-modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(243, 112, 35, 0.45);
  filter: brightness(1.05);
}

/* ==============================================================
   RESPONSIVE MEDIA QUERIES (Mobile & Tablet Optimization)
   ============================================================== */
@media (max-width: 991px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

/* Global Viewport & Overflow Protection */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

@media (max-width: 1199px) {
  .main-nav-links {
    display: none !important;
  }

  .mobile-menu-btn {
    display: inline-flex !important;
  }

  .header-container {
    height: 66px !important;
  }

  .site-header .container {
    flex-wrap: nowrap !important;
  }

  .brand-logo-text {
    font-size: 22px !important;
  }

  .brand-logo-sub {
    display: none !important;
  }

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

  .sticky-cart-card {
    position: static !important;
    margin-top: 24px;
  }

  .hero-search-wrapper-floating {
    max-width: 100%;
    flex-direction: column;
    border-radius: 16px;
    gap: 10px;
    padding: 12px;
  }

  .modal-dialog {
    width: 95% !important;
    max-width: 550px !important;
    margin: 20px auto !important;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 28px !important;
    line-height: 1.25 !important;
  }

  h2 {
    font-size: 22px !important;
  }

  .rec-services-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .row {
    margin-left: -6px;
    margin-right: -6px;
  }

  [class*="col-"] {
    padding-left: 6px;
    padding-right: 6px;
  }

  /* Catalog Tabs in Order Builder */
  .catalog-tabs-nav {
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    gap: 8px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .tab-category-btn {
    flex-shrink: 0;
    padding: 8px 16px !important;
    font-size: 12px !important;
  }

  /* Form & Input Touch Friendly */
  .feedback-input, .form-input-kk {
    font-size: 14px !important;
    min-height: 44px;
  }

  /* Floating WhatsApp */
  .floating-whatsapp {
    width: 50px;
    height: 50px;
    font-size: 26px;
    bottom: 68px; /* Give clearance above mobile sticky checkout bar */
    right: 14px;
  }

  /* Mobile Sticky Order Bar */
  #mobileStickyBar {
    display: block !important;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 24px !important;
  }

  .top-service-card-luxury {
    padding: 14px;
  }

  .modal-step-tracker {
    flex-direction: column;
    gap: 4px;
  }

  .step-tracker-item {
    font-size: 11px;
    padding: 6px;
    text-align: center;
  }
}

