/* =========================================================
   Moadah — Cheqroom-style look (Construction Theme 1)
   Dark header, gradient hero, clear sections, modern SaaS feel
   ========================================================= */
body.theme-1-modern {
  --cheq-dark: #0f172a;
  --cheq-dark-2: #1e293b;
  --cheq-dark-3: #334155;
  --cheq-text: #0f172a;
  --cheq-text-muted: #475569;
  --cheq-text-light: #64748b;
  --cheq-white: #ffffff;
  --cheq-bg: #ffffff;
  --cheq-bg-soft: #f8fafc;
  --cheq-accent: #0ea5e9;
  --cheq-accent-hover: #0284c7;
  --cheq-gradient: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  --cheq-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --cheq-radius: 12px;
  --cheq-radius-sm: 8px;
  --cheq-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  font-family: var(--cheq-font);
  color: var(--cheq-text);
}

/* ========== Dark header (Cheqroom-style) ========== */
body.theme-1-modern .header-area-one {
  background: var(--cheq-dark) !important;
  border-bottom: none;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
body.theme-1-modern .site-header--theme7 {
  background: var(--cheq-dark) !important;
  border-bottom: none;
  box-shadow: none;
}
body.theme-1-modern .site-header--theme7 .header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}
body.theme-1-modern .site-header--theme7 .logo,
body.theme-1-modern .site-header--theme7 .logo-text {
  color: var(--cheq-white) !important;
}
body.theme-1-modern .site-header--theme7 .logo-placeholder {
  background: var(--cheq-gradient);
  box-shadow: 0 2px 12px rgba(14, 165, 233, 0.4);
}
body.theme-1-modern .site-header--theme7 .nav-link {
  color: rgba(255,255,255,0.85) !important;
}
body.theme-1-modern .site-header--theme7 .nav-link:hover {
  color: var(--cheq-white) !important;
  background: rgba(255,255,255,0.08);
}
body.theme-1-modern .site-header--theme7 .nav-link--active {
  color: var(--cheq-accent) !important;
}
body.theme-1-modern .site-header--theme7 .btn--primary {
  background: var(--cheq-white) !important;
  color: var(--cheq-dark) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
body.theme-1-modern .site-header--theme7 .btn--primary:hover {
  background: var(--cheq-bg-soft) !important;
  color: var(--cheq-dark) !important;
}
body.theme-1-modern .site-header--theme7 .nav-toggle-bar {
  background: var(--cheq-white);
}
body.theme-1-modern .site-header--theme7 .nav-mobile {
  background: var(--cheq-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
}
body.theme-1-modern .site-header--theme7 .nav-mobile-link {
  color: rgba(255,255,255,0.9);
}
body.theme-1-modern .site-header--theme7 .nav-mobile-link:hover {
  background: rgba(255,255,255,0.08);
  color: var(--cheq-white);
}
body.theme-1-modern .site-header--theme7 .nav-dropdown {
  background: var(--cheq-dark-2);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ========== Mobile Navigation Responsive Fixes ========== */
@media (max-width: 991px) {
  .site-header--theme7 .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    height: 70px;
  }

  .site-header--theme7 .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1001;
  }

  .site-header--theme7 .logo-img {
    height: 32px;
    width: auto;
  }

  .site-header--theme7 .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
  }

  .site-header--theme7 .nav-desktop,
  .site-header--theme7 .header-actions {
    display: none !important;
  }

  .site-header--theme7 .nav-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: #2563eb !important;
    border: none;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .site-header--theme7 .nav-toggle-bar {
    width: 22px;
    height: 2.5px;
    background: #ffffff !important;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .site-header--theme7 .nav-toggle-bar:nth-child(1) { transform: translateY(-6px); }
  .site-header--theme7 .nav-toggle-bar:nth-child(2) { width: 14px; transform: translateX(-3px); }
  .site-header--theme7 .nav-toggle-bar:nth-child(3) { transform: translateY(6px); }

  /* Toggle Active State */
  .site-header--theme7 .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(0) rotate(45deg);
  }
  .site-header--theme7 .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
  }
  .site-header--theme7 .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
  }

  .site-header--theme7 .nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0f172a;
    z-index: 1000;
    padding: 90px 24px 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    overflow-y: auto;
  }

  .site-header--theme7 .nav-mobile:not([hidden]) {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .site-header--theme7 .nav-mobile-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .site-header--theme7 .nav-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .site-header--theme7 .nav-mobile-link::after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1rem;
    opacity: 0.5;
  }

  .site-header--theme7 .nav-mobile-link:active {
    color: #38bdf8;
  }

  .site-header--theme7 .nav-mobile .btn--primary {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 1.25rem;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.125rem;
    background: #2563eb !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
  }

  body.nav-open {
    overflow: hidden;
  }
}

/* ========== Hero — Cheqroom-style (dark, two-line headline, CTAs, trust line) ========== */
body.theme-1-modern .hero--theme7 {
  background: var(--cheq-dark) !important;
  background-image: none !important;
  padding: 4rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}
body.theme-1-modern .hero--theme7::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(14, 165, 233, 0.25), transparent),
              radial-gradient(ellipse 60% 40% at 100% 50%, rgba(6, 182, 212, 0.15), transparent);
  pointer-events: none;
}
body.theme-1-modern .hero--theme7 .hero-inner {
  position: relative;
  z-index: 1;
  display: grid !important;
  max-width: 1280px;
  margin: 0 auto;
  text-align: left;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 420px;
}
body.theme-1-modern .hero--theme7 .hero-content {
  max-width: 540px;
}
@media (max-width: 899px) {
  body.theme-1-modern .hero--theme7 .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  body.theme-1-modern .hero--theme7 .hero-content { max-width: none; }
  body.theme-1-modern .hero--theme7 .hero-dashboard-wrap { display: block !important; order: 2; }
}
body.theme-1-modern .hero--theme7 .hero-badge {
  display: none;
}
body.theme-1-modern .hero--theme7 .hero-title {
  font-size: clamp(2.25rem, 6vw, 3.5rem) !important;
  font-weight: 800 !important;
  color: var(--cheq-white) !important;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
body.theme-1-modern .hero--theme7 .hero-title-accent {
  display: block;
  font-size: 0.6em;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.02em;
  margin-top: 0.15em;
}
body.theme-1-modern .hero--theme7 .hero-lead {
  font-size: 1.25rem !important;
  color: rgba(255,255,255,0.8) !important;
  max-width: 540px;
  margin: 0 0 2rem;
  line-height: 1.6;
}
@media (max-width: 899px) {
  body.theme-1-modern .hero--theme7 .hero-lead { margin-left: auto; margin-right: auto; }
}
body.theme-1-modern .hero--theme7 .hero-actions {
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 899px) {
  body.theme-1-modern .hero--theme7 .hero-actions { justify-content: center; }
}
body.theme-1-modern .hero--theme7 .hero-actions .btn--primary {
  background: var(--cheq-white) !important;
  color: var(--cheq-dark) !important;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--cheq-radius-sm);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
body.theme-1-modern .hero--theme7 .hero-actions .btn--primary:hover {
  background: var(--cheq-bg-soft) !important;
  color: var(--cheq-dark) !important;
}
body.theme-1-modern .hero--theme7 .hero-actions .btn--secondary {
  background: transparent !important;
  color: var(--cheq-white) !important;
  border: 2px solid rgba(255,255,255,0.5);
}
body.theme-1-modern .hero--theme7 .hero-actions .btn--secondary:hover {
  border-color: var(--cheq-white);
  background: rgba(255,255,255,0.08) !important;
  color: var(--cheq-white) !important;
}
body.theme-1-modern .hero--theme7 .hero-trust {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
}
body.theme-1-modern .hero--theme7 .hero-media,
.hero--theme7 .hero-media.hero-dashboard-wrap {
  display: block !important;
  position: relative;
  min-height: 340px;
  visibility: visible !important;
}
body.theme-1-modern .hero--theme7 .hero-dashboard-wrap,
.hero--theme7 .hero-dashboard-wrap {
  position: relative;
  width: 100%;
  min-height: 320px;
  visibility: visible !important;
}
/* Cheqroom-style UI mockup: layered cards (fallback without body class so it always shows) */
.hero--theme7 .hero-dashboard,
body.theme-1-modern .hero--theme7 .hero-dashboard {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  min-height: 300px;
  display: block !important;
  visibility: visible !important;
}
.hero--theme7 .hero-card,
body.theme-1-modern .hero--theme7 .hero-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2), 0 2px 10px rgba(0,0,0,0.08);
  padding: 12px 14px;
  font-size: 0.8rem;
  color: #0f172a;
  backdrop-filter: blur(8px);
  visibility: visible !important;
}
body.theme-1-modern .hero--theme7 .hero-card--request {
  top: 0;
  right: 10%;
  width: 72%;
  max-width: 220px;
  transform: rotate(-2deg);
  border: 1px solid rgba(0,0,0,0.06);
}
body.theme-1-modern .hero--theme7 .hero-card--request .hero-card-label {
  display: block;
  font-weight: 700;
  color: var(--cheq-dark-3);
  margin-bottom: 4px;
}
body.theme-1-modern .hero--theme7 .hero-card--request .hero-card-meta {
  color: var(--cheq-text-muted);
  font-size: 0.75rem;
}
body.theme-1-modern .hero--theme7 .hero-card--repair {
  top: 18%;
  left: 0;
  width: 58%;
  max-width: 180px;
  transform: rotate(2deg);
  background: linear-gradient(135deg, rgba(14,165,233,0.12) 0%, rgba(6,182,212,0.08) 100%);
  border: 1px solid rgba(14,165,233,0.25);
}
body.theme-1-modern .hero--theme7 .hero-card--repair .hero-card-badge {
  display: block;
  font-weight: 700;
  color: var(--cheq-accent);
  margin-bottom: 4px;
  font-size: 0.7rem;
}
body.theme-1-modern .hero--theme7 .hero-card--repair .hero-card-desc {
  color: var(--cheq-text-muted);
  font-size: 0.75rem;
}
body.theme-1-modern .hero--theme7 .hero-card--table {
  bottom: 12%;
  right: 0;
  width: 88%;
  max-width: 260px;
  transform: rotate(1deg);
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,0.06);
}
body.theme-1-modern .hero--theme7 .hero-table-header,
body.theme-1-modern .hero--theme7 .hero-table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  font-size: 0.7rem;
  padding: 4px 0;
}
body.theme-1-modern .hero--theme7 .hero-table-header {
  font-weight: 700;
  color: var(--cheq-dark-3);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 4px;
}
body.theme-1-modern .hero--theme7 .hero-table-row {
  color: var(--cheq-text-muted);
}
body.theme-1-modern .hero--theme7 .hero-card--chat {
  bottom: 0;
  left: 5%;
  width: 70%;
  max-width: 200px;
  transform: rotate(-1.5deg);
  border: 1px solid rgba(0,0,0,0.06);
}
body.theme-1-modern .hero--theme7 .hero-card--chat p {
  margin: 0 0 8px;
  font-size: 0.8rem;
  color: var(--cheq-text);
}
body.theme-1-modern .hero--theme7 .hero-chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
body.theme-1-modern .hero--theme7 .hero-chat-options span {
  background: var(--cheq-bg-soft);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.65rem;
  color: var(--cheq-text-muted);
}
body.theme-1-modern .hero--theme7 .hero-image-placeholder,
body.theme-1-modern .hero--theme7 .hero-image-img {
  display: none;
}

/* ========== Section titles ========== */
body.theme-1-modern .section-title .sub-title {
  color: var(--cheq-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
body.theme-1-modern .section-title h2 {
  color: var(--cheq-text);
  font-weight: 700;
}
body.theme-1-modern .section-title p {
  color: var(--cheq-text-muted);
}

/* ========== About ========== */
body.theme-1-modern .about-area {
  background: var(--cheq-bg);
  padding: 5rem 0;
}
body.theme-1-modern .about-img-one {
  border-radius: var(--cheq-radius);
  box-shadow: var(--cheq-shadow);
}
body.theme-1-modern .about-content-box-one p {
  color: var(--cheq-text-muted);
}
body.theme-1-modern .main-btn {
  background: var(--cheq-dark) !important;
  color: var(--cheq-white) !important;
  border-radius: var(--cheq-radius-sm);
  font-weight: 600;
  padding: 12px 24px;
}
body.theme-1-modern .main-btn:hover {
  background: var(--cheq-dark-2) !important;
  color: var(--cheq-white) !important;
}

/* ========== Work process ========== */
body.theme-1-modern .working-process {
  background: var(--cheq-bg-soft) !important;
  padding: 5rem 0;
}
body.theme-1-modern .process-item-one {
  background: var(--cheq-bg);
  border-radius: var(--cheq-radius);
  box-shadow: var(--cheq-shadow);
  border: 1px solid rgba(15,23,42,0.06);
}
body.theme-1-modern .process-item-one .icon {
  color: var(--cheq-accent);
}
body.theme-1-modern .process-item-one .process-count {
  color: var(--cheq-accent);
}

/* ========== Features ========== */
body.theme-1-modern .features-area {
  background: var(--cheq-bg);
  padding: 5rem 0;
}
body.theme-1-modern .features-item-one {
  background: var(--cheq-bg-soft);
  border-radius: var(--cheq-radius);
  border: 1px solid rgba(15,23,42,0.06);
}
body.theme-1-modern .features-item-one .icon {
  color: var(--cheq-accent);
}

/* ========== Counter ========== */
body.theme-1-modern .counter-area {
  background: var(--cheq-dark) !important;
  padding: 5rem 0;
}
body.theme-1-modern .counter-area.bg-with-overlay::before {
  background: transparent;
}
body.theme-1-modern .counter-item-one .content h2 {
  color: var(--cheq-white);
}
body.theme-1-modern .counter-item-one .content h5 {
  color: rgba(255,255,255,0.8);
}
body.theme-1-modern .counter-item-one .icon {
  color: var(--cheq-accent);
}

/* ========== Ultra-Modern Premium Equipment Cards ========== */
.pricing-item-one {
  background: #ffffff !important;
  border-radius: 28px !important;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.05) !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02), 0 15px 45px rgba(15, 23, 42, 0.04) !important;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
}

.pricing-item-one:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.12) !important;
  border-color: rgba(37, 99, 235, 0.2) !important;
}

.pricing-img {
  position: relative;
  overflow: hidden;
  padding: 30px 20px 10px;
  background: radial-gradient(circle at center, #ffffff 0%, #f8fafc 100%);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-img img {
  width: 90%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.08));
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.pricing-item-one:hover .pricing-img img {
  transform: scale(1.1) translateY(-5px);
  filter: drop-shadow(0 20px 25px rgba(0,0,0,0.12));
}

.pricing-info {
  padding: 10px 24px 28px !important;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Price Display - Modern & Bold */
.pricing-item-one .pricing-img {
  position: relative !important;
  border-radius: 28px 28px 0 0 !important;
  overflow: hidden !important;
}

.pricing-item-one .price-info {
  position: absolute !important;
  top: 15px !important;
  right: 15px !important;
  background: linear-gradient(145deg, #c9a227, #b8921f, #a07819) !important;
  color: #ffffff !important;
  padding: 12px 20px !important;
  border-radius: 14px !important;
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.4) !important;
  min-width: 100px !important;
  z-index: 10 !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2px !important;
  border: none !important;
  margin: 0 !important;
}

.pricing-item-one .price-info h5 {
  display: none !important;
}

.pricing-item-one .price-info span {
  display: block !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin: 0 !important;
  line-height: 1.2 !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.pricing-item-one .price-tag {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}

.pricing-item-one .price-tag h4 {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

.pricing-item-one .price-tag::after {
  display: none !important;
}

.price-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 16px;
  background: #f8fafc;
  padding: 12px 20px !important;
  border-radius: 16px;
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.03) !important;
}

.price-info span {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-tag h4 {
  font-size: 1.5rem !important;
  font-weight: 900 !important;
  color: #2563eb;
  margin: 0 !important;
  letter-spacing: -0.02em;
}

/* Title & Vendor */
.pricing-body {
  margin-bottom: 24px;
  width: 100%;
}

.pricing-body .title {
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  margin-bottom: 6px !important;
  color: #0f172a !important;
  line-height: 1.2 !important;
}

.pricing-body .title a {
  color: inherit !important;
  text-decoration: none;
  background: linear-gradient(to right, #0f172a, #0f172a);
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.3s ease;
}

.pricing-item-one:hover .pricing-body .title a {
  background-size: 100% 2px;
  color: #2563eb !important;
}

.vendor-name {
  font-size: 0.95rem;
  color: #94a3b8;
  font-weight: 500;
}

.vendor-name a {
  color: #64748b;
  text-decoration: none;
  font-weight: 600;
}

/* Hide clutter */
.price-option, .delivary, .info-list, .more-feature-link, .rate {
  display: none !important;
}

/* Action Buttons - High End UI */
.pricing-bottom {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 0 !important;
  border-top: none !important;
}

.pricing-bottom .main-btn {
  width: 100%;
  margin: 0 !important;
  padding: 16px 12px !important;
  border-radius: 14px !important;
  font-weight: 800 !important;
  font-size: 0.95rem !important;
  text-transform: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border: none !important;
}

/* View Specs Button */
.pricing-bottom .main-btn:first-child {
  background: #f1f5f9 !important;
  color: #475569 !important;
}

.pricing-bottom .main-btn:first-child:hover {
  background: #e2e8f0 !important;
  color: #0f172a !important;
  transform: translateY(-2px);
}

/* Book Now Button */
.pricing-bottom .main-btn:last-child {
  background: linear-gradient(135deg, #ff9f1c 0%, #f39200 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 20px rgba(255, 159, 28, 0.25) !important;
}

.pricing-bottom .main-btn:last-child:hover {
  box-shadow: 0 15px 30px rgba(255, 159, 28, 0.4) !important;
  transform: translateY(-3px) scale(1.03);
}

@media (max-width: 767px) {
  .pricing-item-one {
    border-radius: 24px !important;
  }
  .pricing-bottom {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .pricing-body .title {
    font-size: 1.4rem !important;
  }
}

.pricing-bottom .main-btn {
  width: 100%;
  text-align: center;
  padding: 12px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  background: #0f172a !important;
  color: #ffffff !important;
  transition: all 0.3s ease !important;
}

.pricing-item-one:hover .pricing-bottom .main-btn {
  background: #2563eb !important;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

@media (max-width: 767px) {
  .pricing-info {
    padding: 20px !important;
  }
  .price-tag h4 {
    font-size: 1.25rem !important;
  }
}

/* ========== Testimonial ========== */
body.theme-1-modern .testimonial-area {
  background: var(--cheq-bg) !important;
  padding: 5rem 0;
}
body.theme-1-modern .testimonial-item-one {
  background: var(--cheq-bg-soft);
  border-radius: var(--cheq-radius);
  border: 1px solid rgba(15,23,42,0.06);
}
body.theme-1-modern .testimonial-item-one .quote i {
  color: var(--cheq-accent);
}

/* ========== CTA ========== */
body.theme-1-modern .cta-area {
  background: var(--cheq-dark) !important;
  padding: 4.5rem 0;
}
body.theme-1-modern .cta-area.bg-with-overlay::before {
  background: transparent;
}
body.theme-1-modern .cta-content-box-one h2,
body.theme-1-modern .cta-content-box-one h4 {
  color: var(--cheq-white) !important;
}
body.theme-1-modern .cta-content-box-one .main-btn {
  background: var(--cheq-white) !important;
  color: var(--cheq-dark) !important;
}

/* ========== Blog ========== */
body.theme-1-modern .blog-area {
  background: var(--cheq-bg-soft);
  padding: 5rem 0;
}
body.theme-1-modern .blog-post-item-one {
  background: var(--cheq-bg);
  border-radius: var(--cheq-radius);
  box-shadow: var(--cheq-shadow);
  border: 1px solid rgba(15,23,42,0.06);
}
body.theme-1-modern .blog-post-item-one .btn-link {
  color: var(--cheq-accent);
  font-weight: 600;
}

/* ========== Newsletter ========== */
body.theme-1-modern .newsletter-area {
  background: var(--cheq-bg);
  padding: 4rem 0;
}
body.theme-1-modern .newsletter-content-box {
  background: var(--cheq-bg-soft);
  border-radius: var(--cheq-radius);
  border: 1px solid rgba(15,23,42,0.08);
}
body.theme-1-modern .newsletter-form button[type="submit"],
body.theme-1-modern .newsletter-form .main-btn {
  background: var(--cheq-dark) !important;
  color: var(--cheq-white) !important;
}

/* ========== Footer ========== */
body.theme-1-modern .footer-area-one {
  background: var(--cheq-dark) !important;
  padding: 4rem 0 2rem;
}
body.theme-1-modern .footer-area-one .widget-title,
body.theme-1-modern .footer-area-one .about-widget h5 {
  color: var(--cheq-white);
}
body.theme-1-modern .footer-area-one .widget-nav a:hover,
body.theme-1-modern .footer-area-one .contact-info-list a:hover,
body.theme-1-modern .footer-area-one .social-link a:hover {
  color: var(--cheq-accent);
}
body.theme-1-modern .copyright-area {
  border-top-color: rgba(255,255,255,0.1);
}

/* ========== Breadcrumb (inner pages) ========== */
body.theme-1-modern .hero-area .breadcrumbs-area {
  background: var(--cheq-dark) !important;
  padding: 3.5rem 0;
}
body.theme-1-modern .breadcrumbs-area .page-title h1 {
  color: var(--cheq-white) !important;
}
body.theme-1-modern .breadcrumbs-link a,
body.theme-1-modern .breadcrumbs-link .active {
  color: rgba(255,255,255,0.8);
}

/* ========== Contact, FAQ ========== */
body.theme-1-modern .contact-area {
  background: var(--cheq-bg);
}
body.theme-1-modern .faq-area {
  background: var(--cheq-bg-soft);
}
body.theme-1-modern .faq-area .card {
  background: var(--cheq-bg);
  border-radius: var(--cheq-radius-sm);
  border: 1px solid rgba(15,23,42,0.08);
}
body.theme-1-modern .faq-area .card-header[aria-expanded="true"] {
  color: var(--cheq-accent);
}
body.theme-1-modern .back-to-top {
  background: var(--cheq-dark) !important;
  color: var(--cheq-white) !important;
}
body.theme-1-modern .back-to-top:hover {
  background: var(--cheq-dark-2) !important;
  color: var(--cheq-white) !important;
}

/* ========== FORCE all sections below hero — override theme defaults ========== */
body.theme-1-modern .about-area.pt-130.pb-120,
body.theme-1-modern .about-area {
  background: #ffffff !important;
  background-image: none !important;
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
body.theme-1-modern .working-process.light-gray.pt-130.pb-120,
body.theme-1-modern .working-process {
  background: #f8fafc !important;
  background-image: none !important;
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
body.theme-1-modern .features-area.pt-130.pb-120,
body.theme-1-modern .features-area {
  background: #ffffff !important;
  background-image: none !important;
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
body.theme-1-modern .counter-area.bg-with-overlay.pt-130.pb-90,
body.theme-1-modern .counter-area {
  background: #0f172a !important;
  background-image: none !important;
  padding-top: 5rem !important;
  padding-bottom: 4rem !important;
}
body.theme-1-modern .pricing-area.pt-120.pb-110,
body.theme-1-modern .pricing-area {
  background: #f8fafc !important;
  background-image: none !important;
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
body.theme-1-modern .testimonial-area.light-bg.pt-130.pb-130,
body.theme-1-modern .testimonial-area {
  background: #ffffff !important;
  background-image: none !important;
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
body.theme-1-modern .cta-area.pt-120.pb-130,
body.theme-1-modern .cta-area {
  background: #0f172a !important;
  background-image: none !important;
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}
body.theme-1-modern .blog-area.pt-130.pb-130,
body.theme-1-modern .blog-area {
  background: #f8fafc !important;
  background-image: none !important;
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
body.theme-1-modern .newsletter-area {
  background: #ffffff !important;
  padding: 4rem 0 !important;
}
body.theme-1-modern .footer-area-one {
  background: #0f172a !important;
  background-image: none !important;
}
/* Section typography — ensure modern font and colors */
body.theme-1-modern .about-area .section-title h2,
body.theme-1-modern .working-process .section-title h2,
body.theme-1-modern .features-area .section-title h2,
body.theme-1-modern .pricing-area .section-title h2,
body.theme-1-modern .testimonial-area .section-title h2,
body.theme-1-modern .blog-area .section-title h2 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  font-size: clamp(1.75rem, 4vw, 2.25rem) !important;
}
body.theme-1-modern .about-area p,
body.theme-1-modern .features-item-one .content p,
body.theme-1-modern .testimonial-item-one p {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  color: #475569 !important;
  line-height: 1.65 !important;
}
body.theme-1-modern .process-item-one .content h4,
body.theme-1-modern .features-item-one .content h4 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 600 !important;
  color: #0f172a !important;
}

/* ========== Equipment page — search bar (expected UI: light bar, rounded, dividers, mustard button) ========== */
body.theme-1-modern .pricing-list-section .equipments-search-filter {
  margin-bottom: 2.5rem !important;
}
body.theme-1-modern .pricing-list-section .search-filter-form form {
  margin: 0;
}
body.theme-1-modern .pricing-list-section .search-filter-form .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -0.25rem;
  background: #f8f9fa;
  border-radius: 9999px;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
body.theme-1-modern .pricing-list-section .search-filter-form .row > [class*="col-"] {
  flex: 1;
  min-width: 0;
  max-width: none;
  padding: 0.25rem 0.5rem;
  margin: 0;
}
body.theme-1-modern .pricing-list-section .search-filter-form .form_group {
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
body.theme-1-modern .pricing-list-section .search-filter-form .form_group::before {
  content: '';
  display: none;
}
body.theme-1-modern .pricing-list-section .search-filter-form .row > [class*="col-"]:first-child .form_group::before {
  content: '\f002';
  display: inline-block;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 0.9rem;
  color: #64748b;
  flex-shrink: 0;
}
body.theme-1-modern .pricing-list-section .search-filter-form .form_control {
  flex: 1;
  min-width: 0;
  border: none !important;
  background: transparent !important;
  padding: 0.6rem 0.5rem !important;
  font-size: 0.9375rem !important;
  color: #0f172a !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
body.theme-1-modern .pricing-list-section .search-filter-form .form_control::placeholder {
  color: #94a3b8;
}
body.theme-1-modern .pricing-list-section .search-filter-form .input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}
body.theme-1-modern .pricing-list-section .search-filter-form .input-wrap .form_control {
  flex: 1;
}
body.theme-1-modern .pricing-list-section .search-filter-form .input-wrap .fa-calendar-alt {
  color: #64748b;
  font-size: 0.9rem;
  flex-shrink: 0;
}
body.theme-1-modern .pricing-list-section .search-filter-form select.form_control {
  appearance: none;
  padding-right: 1.75rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.5rem center !important;
}
body.theme-1-modern .pricing-list-section .search-filter-form .row > [class*="col-"]:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.5rem;
  background: #cbd5e1;
}
body.theme-1-modern .pricing-list-section .search-filter-form .row > [class*="col-"] {
  position: relative;
}
body.theme-1-modern .pricing-list-section .search-filter-form .search-btn {
  width: 100%;
  padding: 0.75rem 1.75rem !important;
  border-radius: 9999px !important;
  border: none !important;
  background: #c9a227 !important;
  color: #fff !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  white-space: nowrap;
}
body.theme-1-modern .pricing-list-section .search-filter-form .search-btn:hover {
  background: #b8921f !important;
  color: #fff !important;
  transform: none;
}
@media (max-width: 991px) {
  body.theme-1-modern .pricing-list-section .search-filter-form .row {
    border-radius: 16px;
    padding: 0.75rem 1rem;
  }
  body.theme-1-modern .pricing-list-section .search-filter-form .row > [class*="col-"]::after {
    display: none;
  }
  body.theme-1-modern .pricing-list-section .search-filter-form .row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  body.theme-1-modern .pricing-list-section .search-filter-form .row > [class*="col-"]:last-child {
    border-bottom: none;
    padding-top: 0.75rem;
  }
  body.theme-1-modern .pricing-list-section .search-filter-form .search-btn {
    border-radius: 12px !important;
  }
}

/* Equipment Details Price Options Grid */
.price-options-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 12px !important;
  margin-bottom: 24px !important;
}

.price-option-item {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important;
  padding: 12px 10px !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

.price-option-item:hover {
  background: #ffffff !important;
  border-color: #c9a227 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05) !important;
}

.price-option-item .price-val {
  font-size: 1rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  line-height: 1.2 !important;
}

.price-option-item .price-unit {
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  color: #64748b !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-top: 4px !important;
}

/* Equipment Details Price Badge - Unique Classes to Bypass Cache */
.price-info-new {
  background: #0f172a !important;
  padding: 35px 25px !important;
  border-radius: 24px !important;
  margin-bottom: 30px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
  position: relative !important;
  min-height: 120px !important;
}

.price-info-badge-new {
  background: linear-gradient(145deg, #c9a227, #b8921f, #a07819) !important;
  color: #ffffff !important;
  padding: 16px 28px !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 25px rgba(201, 162, 39, 0.35) !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  width: auto !important;
  min-width: 180px !important;
}

.price-info-badge-new span.label-new {
  display: block !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  margin: 0 !important;
  line-height: 1 !important;
  color: rgba(255, 255, 255, 0.75) !important;
}

.price-info-badge-new .price-tag-new h4 {
  font-size: 2rem !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  margin: 0 !important;
  line-height: 1 !important;
  letter-spacing: -0.02em !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
