/* ==========================================================================
   eTECH WORLD - Amazon & Flipkart Full-Width Fluid Responsive Theme
   Adapts to 100% of the screen with zero wasted side margins!
   ========================================================================== */

:root {
  --fk-blue: #2874f0;
  --fk-blue-dark: #1254bf;
  --fk-yellow: #ffe500;
  --fk-orange: #fb641b;
  --fk-orange-hover: #e05411;
  --fk-green: #388e3c;
  --fk-green-bg: #e8f5e9;
  --fk-bg: #f1f2f4;
  --fk-card: #ffffff;
  --fk-text: #212121;
  --fk-text-secondary: #878787;
  --fk-border: #e0e0e0;
  --fk-shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.08);
  --fk-shadow-md: 0 2px 10px rgba(0, 0, 0, 0.1);
  --fk-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --wa-green: #25d366;
  --wa-green-hover: #1ebc59;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background-color: var(--fk-bg);
  color: var(--fk-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   Full-Width Top Header (Flipkart Style)
   ========================================================================== */
.fk-header {
  background-color: var(--fk-blue);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  width: 100%;
}

.fk-header-inner {
  width: 100%;
  max-width: 100%;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.fk-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
}

.fk-brand-logo-img {
  height: 42px;
  width: auto;
  max-width: 50px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.fk-brand-wrap:hover .fk-brand-logo-img {
  transform: scale(1.05);
}

.fk-brand-text {
  display: flex;
  flex-direction: column;
}

.fk-brand-title {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fk-brand-badge {
  font-size: 0.68rem;
  font-style: italic;
  color: var(--fk-yellow);
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: -2px;
}

.fk-brand-badge span {
  color: #fff;
  font-weight: 600;
}

.fk-brand-slogan {
  font-size: 0.66rem;
  font-weight: 700;
  color: #ffe500;
  letter-spacing: 0.25px;
  margin-top: -1px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .fk-brand-slogan {
    font-size: 0.58rem;
  }
}

/* Header Search - Responsive Fluid */
.fk-search-box {
  flex: 1;
  max-width: 800px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.fk-search-input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 18px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--fk-text);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.fk-search-btn {
  background: transparent;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  color: var(--fk-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.fk-search-btn:hover {
  transform: scale(1.1);
}

/* Header Location & Actions */
.fk-location-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #f1f2f4;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.fk-location-badge strong {
  color: #fff;
}

.fk-nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.fk-nav-btn {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  white-space: nowrap;
}

.fk-nav-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.fk-nav-btn.primary {
  background: var(--fk-yellow);
  color: #000;
  border: none;
  font-weight: 700;
}

.fk-nav-btn.primary:hover {
  background: #f5dc00;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* ==========================================================================
   Full-Width Category Strip
   ========================================================================== */
.fk-category-strip {
  background: #fff;
  border-bottom: 1px solid var(--fk-border);
  box-shadow: var(--fk-shadow-sm);
  width: 100%;
}

.fk-category-inner {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  overflow-x: auto;
  gap: 20px;
  scrollbar-width: none;
}

.fk-category-inner::-webkit-scrollbar {
  display: none;
}

.fk-category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
  color: var(--fk-text);
  font-size: 0.88rem;
  font-weight: 600;
  flex: 1;
  min-width: 85px;
  text-align: center;
  transition: all 0.2s ease;
  user-select: none;
}

.fk-category-item:hover {
  color: var(--fk-blue);
  transform: translateY(-2px);
}

.fk-category-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f0f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--fk-blue);
  transition: all 0.2s ease;
  border: 1px solid #e0ecff;
}

.fk-category-item:hover .fk-category-icon {
  background: var(--fk-blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(40, 116, 240, 0.35);
}

/* ==========================================================================
   Full-Width Hero Carousel
   ========================================================================== */
.fk-hero-carousel {
  width: 100%;
  max-width: 100%;
  margin: 14px 0;
  padding: 0 20px;
  position: relative;
}

.fk-carousel-container {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--fk-shadow-md);
  position: relative;
  min-height: 250px;
}

.fk-carousel-slide {
  display: none;
  padding: 40px 60px;
  color: #fff;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  animation: fadeIn 0.4s ease-in-out;
  width: 100%;
}

.fk-carousel-slide.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0.4; transform: scale(0.99); }
  to { opacity: 1; transform: scale(1); }
}

.fk-slide-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.fk-slide-content p {
  font-size: 1.05rem;
  opacity: 0.94;
  margin-bottom: 22px;
  max-width: 750px;
  line-height: 1.5;
}

.fk-slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fk-yellow);
  color: #000;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.fk-slide-btn:hover {
  background: #fff;
  transform: translateY(-2px);
}

.fk-slide-tag {
  display: inline-block;
  background: rgba(255,255,255,0.22);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.fk-carousel-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 32px;
  pointer-events: none;
}

.fk-carousel-arrow {
  pointer-events: auto;
  width: 44px;
  height: 70px;
  background: rgba(255, 255, 255, 0.92);
  color: #000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.fk-carousel-arrow:hover {
  background: #fff;
  transform: scale(1.08);
}

/* ==========================================================================
   Full-Width Trust Strip
   ========================================================================== */
.fk-trust-strip {
  width: 100%;
  max-width: 100%;
  margin: 6px 0 18px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.fk-trust-card {
  background: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--fk-shadow-sm);
  border: 1px solid var(--fk-border);
}

.fk-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e8f5e9;
  color: var(--fk-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.fk-trust-info h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.fk-trust-info p {
  font-size: 0.8rem;
  color: var(--fk-text-secondary);
}

/* ==========================================================================
   Full-Width Section Shelves (Adapts to Screen Size)
   ========================================================================== */
.fk-section {
  width: 100%;
  max-width: 100%;
  margin: 0 0 20px 0;
  padding: 0 20px;
}

.fk-section-box {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--fk-shadow-sm);
  border: 1px solid var(--fk-border);
  overflow: hidden;
  width: 100%;
}

.fk-section-header {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--fk-border);
  background: #fafafa;
}

.fk-section-header-left {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.fk-section-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--fk-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.fk-section-subtitle {
  font-size: 0.9rem;
  color: var(--fk-text-secondary);
}

.fk-timer-pill {
  background: #fff3e0;
  color: #e65100;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #ffe0b2;
}

.fk-view-all-btn {
  color: var(--fk-blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 7px 18px;
  border: 1px solid var(--fk-blue);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  background: #fff;
  cursor: pointer;
}

.fk-view-all-btn:hover {
  background: var(--fk-blue);
  color: #fff;
}

/* ==========================================================================
   Full-Width Responsive Fluid Product Grid
   ========================================================================== */
.fk-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  padding: 20px 24px;
  width: 100%;
}

/* ==========================================================================
   Full-Width 4-Column Balanced Grid for Software Section (No Empty Space)
   ========================================================================== */
#category-software .fk-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 16px 20px;
  width: 100%;
}

@media (max-width: 1100px) {
  #category-software .fk-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  #category-software .fk-product-grid {
    grid-template-columns: 1fr;
  }
}

.fk-software-card {
  padding: 16px;
  background: #ffffff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  position: relative;
}

.fk-software-card:hover {
  border-color: #2563eb;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12);
  transform: translateY(-3px);
}

.fk-software-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  margin-bottom: 10px;
}

.fk-software-mini-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  flex-shrink: 0;
  box-shadow: 0 2px 5px rgba(37, 99, 235, 0.12);
}

.fk-software-top-info {
  flex: 1;
  min-width: 0;
}

.fk-software-top-info .fk-card-title {
  font-size: 0.94rem;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 3px;
  line-height: 1.25;
}

.fk-software-plan-pill {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-left: 3px solid #2563eb;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #334155;
  margin-bottom: 10px;
}

.fk-software-micro-bullets {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
  font-size: 0.77rem;
  color: #475569;
}

.fk-software-micro-bullets div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 5px;
}

.fk-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  position: relative;
  height: 100%;
}

.fk-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  border-color: #cbd5e1;
  transform: translateY(-3px);
}

.fk-card-badge-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--fk-green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  z-index: 2;
  text-transform: uppercase;
}

.fk-card-img-wrap {
  width: 100%;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 14px;
  position: relative;
  background: #fdfdfd;
}

.fk-card-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.fk-card:hover .fk-card-img {
  transform: scale(1.08);
}

.fk-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fk-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fk-text);
  margin-bottom: 8px;
  line-height: 1.38;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.75em;
}

.fk-card-rating-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.fk-rating-badge {
  background: var(--fk-green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.fk-rating-count {
  font-size: 0.8rem;
  color: var(--fk-text-secondary);
}

.fk-assured-tag {
  margin-left: auto;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--fk-blue);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 3px;
}

.fk-price-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.fk-price-current {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--fk-text);
}

.fk-price-mrp {
  font-size: 0.88rem;
  color: var(--fk-text-secondary);
  text-decoration: line-through;
}

.fk-price-discount {
  font-size: 0.85rem;
  color: var(--fk-green);
  font-weight: 700;
}

.fk-delivery-tag {
  font-size: 0.78rem;
  color: #555;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.fk-delivery-tag strong {
  color: var(--fk-green);
}

/* Action Buttons */
.fk-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.fk-btn-enquire {
  background: var(--fk-orange);
  color: #fff;
  border: none;
  padding: 10px 8px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 0.2s;
  text-decoration: none;
}

.fk-btn-enquire:hover {
  background: var(--fk-orange-hover);
}

.fk-btn-whatsapp {
  background: var(--wa-green);
  color: #fff;
  border: none;
  padding: 10px 8px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 0.2s;
  text-decoration: none;
}

.fk-btn-whatsapp:hover {
  background: var(--wa-green-hover);
}

/* ==========================================================================
   Full-Width Services Grid
   ========================================================================== */
.fk-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  padding: 20px 24px;
  width: 100%;
}

.fk-service-card {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  position: relative;
  height: 100%;
}

.fk-service-card:hover {
  border-color: var(--fk-blue);
  box-shadow: 0 6px 18px rgba(40, 116, 240, 0.15);
  transform: translateY(-2px);
}

.fk-service-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.fk-service-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #eef4ff;
  color: var(--fk-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.fk-service-head h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fk-text);
  margin-bottom: 3px;
}

.fk-service-head p {
  font-size: 0.82rem;
  color: var(--fk-text-secondary);
}

.fk-service-features {
  list-style: none;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: #444;
}

.fk-service-features li {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.fk-service-price {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--fk-text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed #e0e0e0;
  padding-top: 12px;
}

.fk-service-price span {
  color: var(--fk-green);
  font-size: 1.15rem;
}

.fk-btn-book {
  background: var(--fk-blue);
  color: #fff;
  border: none;
  padding: 11px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
  text-decoration: none;
}

.fk-btn-book:hover {
  background: var(--fk-blue-dark);
}

/* ==========================================================================
   Full-Width Doorstep Service Booking Section
   ========================================================================== */
.fk-booking-section {
  background: linear-gradient(135deg, #f8faff 0%, #edf2fc 100%);
  border: 1px solid #d0e0fc;
  border-radius: var(--radius-sm);
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.fk-booking-left h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--fk-blue-dark);
  margin-bottom: 10px;
}

.fk-booking-left p {
  color: #555;
  font-size: 0.98rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.fk-booking-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fk-perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #333;
}

.fk-booking-form {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--fk-shadow-md);
  border: 1px solid var(--fk-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fk-form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--fk-text);
  margin-bottom: 4px;
}

.fk-form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ccc;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.fk-form-control:focus {
  border-color: var(--fk-blue);
  box-shadow: 0 0 0 2px rgba(40, 116, 240, 0.15);
}

/* ==========================================================================
   Full-Width Customer Reviews
   ========================================================================== */
.fk-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  padding: 20px 24px;
  width: 100%;
}

.fk-review-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: var(--radius-sm);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fk-review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fk-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--fk-blue);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.fk-review-user h5 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.fk-review-user p {
  font-size: 0.78rem;
  color: var(--fk-text-secondary);
}

.fk-review-text {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.5;
}

/* ==========================================================================
   Full-Width Footer
   ========================================================================== */
.fk-footer {
  background: #172337;
  color: #fff;
  margin-top: auto;
  font-size: 0.85rem;
  width: 100%;
}

.fk-footer-top {
  width: 100%;
  max-width: 100%;
  padding: 40px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  border-bottom: 1px solid #33435c;
}

.fk-footer-col h4 {
  font-size: 0.82rem;
  color: #878787;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  font-weight: 700;
}

.fk-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fk-footer-col a {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.fk-footer-col a:hover {
  opacity: 1;
  text-decoration: underline;
}

.fk-footer-address {
  line-height: 1.7;
  opacity: 0.85;
}

.fk-footer-bottom {
  width: 100%;
  max-width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: #a0aec0;
}

.fk-footer-badges {
  display: flex;
  align-items: center;
  gap: 18px;
}

.fk-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 600;
}

/* ==========================================================================
   Modal Dialogs
   ========================================================================== */
.fk-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.fk-modal-backdrop.open {
  display: flex;
}

.fk-modal-content {
  background: #fff;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--fk-shadow-lg);
  animation: modalPop 0.25s ease-out;
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.fk-modal-header {
  padding: 16px 22px;
  border-bottom: 1px solid var(--fk-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fk-modal-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--fk-text);
}

.fk-modal-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #888;
}

.fk-modal-close:hover {
  color: #000;
}

.fk-modal-body {
  padding: 22px;
}

/* Floating WhatsApp Button */
.fk-float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--wa-green);
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  text-decoration: none;
  font-size: 1.8rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.fk-float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1100px) {
  .fk-trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .fk-booking-section {
    grid-template-columns: 1fr;
  }
  .fk-footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .fk-header-inner {
    flex-wrap: wrap;
    padding: 10px 14px;
    gap: 12px;
  }
  .fk-search-box {
    order: 3;
    max-width: 100%;
    width: 100%;
  }
  .fk-location-badge {
    display: none;
  }
  .fk-category-inner {
    padding: 10px 14px;
    gap: 12px;
  }
  .fk-hero-carousel, .fk-trust-strip, .fk-section {
    padding: 0 10px;
  }
  .fk-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 12px 10px;
  }
  .fk-card {
    padding: 10px;
  }
  .fk-card-img-wrap {
    height: 125px;
  }
  .fk-card-title {
    font-size: 0.82rem;
    min-height: 2.4em;
  }
  .fk-price-current {
    font-size: 1.05rem;
  }
  .fk-card-actions {
    grid-template-columns: 1fr;
  }
  .fk-carousel-slide {
    padding: 24px 20px;
  }
  .fk-slide-content h2 {
    font-size: 1.35rem;
  }
  .fk-slide-content p {
    font-size: 0.88rem;
  }
  .fk-trust-strip {
    grid-template-columns: 1fr;
  }
  .fk-footer-top {
    grid-template-columns: 1fr;
    padding: 28px 16px;
  }
  .fk-footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 18px 16px;
  }
}

/* ==========================================================================
   AMC (Annual Maintenance Contract) Models for Home & Office
   ========================================================================== */
.fk-amc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px 24px;
  width: 100%;
}

@media (max-width: 980px) {
  .fk-amc-grid {
    grid-template-columns: 1fr;
    padding: 16px 14px;
  }
}

.fk-amc-card {
  background: #ffffff;
  border: 1px solid var(--fk-border);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
  box-shadow: var(--fk-shadow-sm);
}

.fk-amc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.fk-amc-card.featured {
  border: 2px solid #2874f0;
  box-shadow: 0 6px 20px rgba(40, 116, 240, 0.16);
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.fk-amc-badge-ribbon {
  position: absolute;
  top: -12px;
  right: 18px;
  background: var(--fk-orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(251, 100, 27, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fk-amc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.fk-amc-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.fk-amc-title-box h4 {
  font-size: 1.12rem;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 2px;
}

.fk-amc-target {
  font-size: 0.74rem;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid #a7f3d0;
}

.fk-amc-pricing {
  margin: 12px 0 16px;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
}

.fk-amc-price-main {
  font-size: 1.55rem;
  font-weight: 900;
  color: #1e40af;
}

.fk-amc-price-sub {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 2px;
}

.fk-amc-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.81rem;
  color: #334155;
  line-height: 1.4;
}

.fk-amc-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.fk-amc-features-list li span.check {
  color: #16a34a;
  font-weight: 900;
  flex-shrink: 0;
}

/* Interactive AMC Estimator Widget */
.fk-amc-calculator-box {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  margin: 0 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.fk-amc-calc-inputs {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.fk-amc-calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fk-amc-calc-input-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #166534;
}

.fk-amc-calc-input-group select,
.fk-amc-calc-input-group input {
  padding: 6px 10px;
  border: 1px solid #86efac;
  border-radius: 4px;
  font-size: 0.85rem;
  background: #fff;
  font-weight: 700;
  color: #14532d;
}

.fk-amc-card-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px dashed #e2e8f0;
}

.fk-amc-btn-book {
  flex: 1;
  background: var(--fk-orange);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: background 0.15s ease;
  box-shadow: 0 2px 6px rgba(251, 100, 27, 0.25);
}

.fk-amc-btn-book:hover {
  background: #e8590f;
  color: #fff;
}

.fk-amc-btn-outline {
  flex: 1;
  background: #ffffff;
  color: #1e40af;
  border: 1.5px solid #93c5fd;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.fk-amc-btn-outline:hover {
  background: #eff6ff;
  border-color: #2874f0;
}

/* Homepage 4-Pillar Category Gateways */
.fk-gateway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 992px) {
  .fk-gateway-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .fk-gateway-grid {
    grid-template-columns: 1fr;
  }
}

.fk-gateway-card {
  background: #ffffff;
  border: 1px solid var(--fk-border);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  box-shadow: var(--fk-shadow-sm);
  position: relative;
  overflow: hidden;
}

.fk-gateway-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: #93c5fd;
}

.fk-gateway-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 14px;
}

.fk-gateway-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 6px;
}

.fk-gateway-desc {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.45;
  margin-bottom: 14px;
}

.fk-gateway-link {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--fk-blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.fk-section-view-all {
  background: #f1f5f9;
  color: var(--fk-blue);
  border: 1px solid #cbd5e1;
  padding: 6px 14px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.8rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.15s ease;
}

.fk-section-view-all:hover {
  background: #eff6ff;
  border-color: #93c5fd;
  color: #1d4ed8;
}

/* ==========================================================================
   Animated Priority IT AMC Spotlight Banner
   ========================================================================== */
.amc-animated-spotlight {
  position: relative;
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 30%, #d1fae5 70%, #f0fdf4 100%);
  background-size: 300% 300%;
  animation: amcBgFlow 8s ease infinite, amcBoxPulse 3.5s ease-in-out infinite;
  border: 2px solid #10b981;
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.18);
  overflow: hidden;
}

.amc-animated-spotlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: amcOrbPulse 5s ease-in-out infinite alternate;
}

@keyframes amcBgFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes amcBoxPulse {
  0%, 100% {
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.15), 0 0 0 1px rgba(16, 185, 129, 0.25);
  }
  50% {
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.32), 0 0 0 2px rgba(16, 185, 129, 0.5);
  }
}

@keyframes amcOrbPulse {
  0% { transform: scale(0.9) translate(0, 0); opacity: 0.5; }
  100% { transform: scale(1.3) translate(-20px, 20px); opacity: 0.9; }
}

.amc-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #059669;
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.35);
  margin-bottom: 10px;
}

.amc-live-dot {
  width: 7px;
  height: 7px;
  background: #86efac;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 rgba(134, 239, 172, 0.7);
  animation: amcPulseDot 1.6s infinite;
}

@keyframes amcPulseDot {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(134, 239, 172, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(134, 239, 172, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(134, 239, 172, 0); }
}

.amc-spotlight-title {
  font-size: 1.48rem;
  font-weight: 900;
  margin-bottom: 6px;
  background: linear-gradient(90deg, #065f46 0%, #047857 30%, #059669 60%, #065f46 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: amcTextShine 6s linear infinite;
}

@keyframes amcTextShine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.amc-price-pill {
  background: #ffffff;
  border: 1.5px solid #a7f3d0;
  color: #166534;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.amc-price-pill:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: #059669;
  background: #f0fdf4;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.amc-btn-shimmer {
  position: relative;
  overflow: hidden;
  background: #059669;
  color: #ffffff !important;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.95rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.amc-btn-shimmer:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.5);
}

.amc-btn-shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -70%;
  width: 45%;
  height: 200%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(25deg);
  animation: amcBtnSweep 3.2s infinite;
}

@keyframes amcBtnSweep {
  0% { left: -70%; }
  35%, 100% { left: 140%; }
}

.amc-floating-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 100%);
  border: 1.5px solid #a7f3d0;
  border-radius: 16px;
  font-size: 2.2rem;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.15);
  animation: amcFloat 3.4s ease-in-out infinite;
}

@keyframes amcFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(3deg); }
}



