:root {
  --yellow: #ffd200;
  --yellow-dark: #e6bd00;
  --yellow-glow: rgba(255, 210, 0, 0.25);
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-card: #141414;
  --black-border: #222222;
  --white: #ffffff;
  --white-muted: #cccccc;
  --white-dim: rgba(255, 255, 255, 0.07);
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Outfit", sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* ── TOP BAR ─────────────────────────── */
.topbar {
  background: var(--black);
  border-bottom: 1px solid var(--black-border);
  padding: 8px 0;
  font-size: 0.8rem;
}

.topbar a {
  color: var(--white-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.topbar a:hover {
  color: var(--yellow);
}

.topbar .divider {
  color: var(--black-border);
  margin: 0 12px;
}

.text-muted {
  color: var(--white-muted) !important;
}

/* ── MAIN NAV ────────────────────────── */
.main-nav {
  background: var(--white);
  border-bottom: 1px solid #ebebeb;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition:
    box-shadow 0.3s,
    background 0.3s;
}

.main-nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar-brand-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.brand-logo-icon {
  width: 100px;
  /* height: 4px; */
  /* background: var(--black); */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-wordmark {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--black);
  white-space: nowrap;
  margin-left: -22px;
}

@media (max-width: 575.98px) {
  .brand-wordmark {
    font-size: 1.05rem;
    margin-left: -18px;
  }

  .brand-logo-icon {
    width: 82px;
  }

  .nav-cta .btn-yellow {
    font-size: 0.65rem;
    padding: 7px 10px;
  }
}

/* .brand-logo-icon::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--yellow);
    } */
.brand-logo-icon i {
  color: var(--white);
  font-size: 1.2rem;
  z-index: 1;
}

.brand-text-wrap .brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--black);
  line-height: 1;
  display: block;
}

.brand-text-wrap .brand-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  line-height: 1;
  display: block;
  margin-top: 2px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  border-radius: 8px;
  transition:
    color 0.2s,
    background 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--black);
  background: rgba(255, 210, 0, 0.12);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--yellow);
  border-radius: 1px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  min-width: 220px;
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  z-index: 100;
}

.dropdown-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  color: var(--black) !important;
  border-radius: 8px !important;
  background: transparent !important;
}

.dropdown-panel a:hover {
  background: rgba(255, 210, 0, 0.1) !important;
}

.dropdown-panel a i {
  color: var(--yellow);
  font-size: 1rem;
  width: 18px;
}

.dropdown-panel a::after {
  display: none !important;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-call-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  padding: 9px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 50px;
  transition: var(--transition);
}

.nav-call-btn i {
  color: var(--yellow);
  font-size: 1rem;
}

.nav-call-btn:hover {
  border-color: var(--yellow);
  color: var(--black);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--black);
  transition: var(--transition);
}

.mobile-toggle:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9998;
  overflow-y: auto;
  padding: 24px;
  flex-direction: column;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.mobile-close {
  width: 42px;
  height: 42px;
  background: #f5f5f5;
  border: none;
  border-radius: 10px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}
.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.mobile-nav-links > li {
  margin-bottom: 15px;
}
.mobile-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  padding-bottom: 10px;
  border-bottom: 1px solid #f5f5f5;
}
.mobile-nav-links a i.arrow {
  font-size: 1rem;
  color: var(--yellow);
  transition: transform 0.2s ease;
}
/* Mobile Accordion Trigger Specifics */
    .mobile-accordion-btn {
      background: none;
      border: none;
      width: 100%;
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 1.15rem;
      font-weight: 600;
      color: #1a1a1a;
      padding: 0 0 10px 0;
      border-bottom: 1px solid #f5f5f5;
    }
    .mobile-accordion-btn i.arrow {
      font-size: 0.85rem;
      color: var(--yellow-dark);
      transition: transform 0.3s ease;
    }
   .mobile-accordion-btn.collapsed .arrow{
    transform: rotate(0deg);
}

.mobile-accordion-btn:not(.collapsed) .arrow{
    transform: rotate(180deg);
}
/* Smooth collapse effect */
.mobile-submenu-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.mobile-submenu-wrapper.open {
    max-height: 300px;  
}
     /* Mobile Sub-menu panel */
    .mobile-submenu {
      list-style: none; 
      background: #fafafa;
      border-radius: 8px;
       padding: 0;
      margin: 0;
    }
    .mobile-submenu li a {
      font-size: 1rem;
      font-weight: 500;
      color: #444;
      padding: 12px 15px;
      border-bottom: 1px solid #eee;
    }
    .mobile-submenu li:last-child a {
      border-bottom: none;
    }
       @media (min-width: 768px) {
        .nav-links li {
            position: relative;
        }
        .has-dropdown {
            padding-bottom: 0px;
            margin-bottom: 0px;
        }
        .custom-dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(15px) scale(0.95);
            background: #ffffff;
            min-width: 260px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
            padding: 12px 0;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                        transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                        visibility 0.3s;
            z-index: 1000;
        }
        
        .custom-dropdown::before {
            content: '';
            position: absolute;
            top: -20px; 
            left: 0;
            width: 100%;
            height: 20px;
            background: transparent;
        }

        .has-dropdown:hover .custom-dropdown {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(5px) scale(1);
        }
        .custom-dropdown li {
            border-bottom: 1px solid #f1f1f1;
        }
        .custom-dropdown li:last-child {
            border-bottom: none;
        }
        .custom-dropdown a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px;
            color: #1a1a1a !important;
            font-size: 0.95rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.25s ease;
        }
        .custom-dropdown a:hover {
            color: var(--yellow-dark) !important;
            background-color: #fffdf3;
            padding-left: 24px;
        }
        .custom-dropdown a .dd-arrow {
            font-size: 0.8rem;
            opacity: 0;
            transform: translateX(-5px);
            transition: all 0.25s ease;
        }
        .custom-dropdown a:hover .dd-arrow {
            opacity: 1;
            transform: translateX(0);
        }
        .has-dropdown > a i {
            font-size: 0.75rem;
            display: inline-block;
            transition: transform 0.2s ease;
        }
        .has-dropdown:hover > a i {
            transform: rotate(180deg);
        }
    }
      @media (max-width: 767.98px) {
      .custom-dropdown { display: none; } 
    }
/* .mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
} 

.mobile-nav-links a i.arrow {
  color: var(--yellow);
}*/

.mobile-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

@media (max-width: 1024px) {
  .nav-links,
  .nav-call-btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-cta {
    gap: 6px;
    flex-shrink: 0;
  }

  .nav-cta .btn-yellow {
    font-size: 0.72rem;
    padding: 8px 12px;
    gap: 4px;
    letter-spacing: 0.02em;
  }

  .nav-cta .btn-yellow i {
    font-size: 0.85rem;
  }

  .nav-inner {
    padding: 10px 0;
    gap: 8px;
  }
}


/* ── BUTTONS ────────────────────────── */
.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid var(--yellow);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-yellow:hover {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--yellow-glow);
}
@media (max-width: 767.98px) {
  .btn-yellow {
    font-size: 0.85rem;
    padding: 10px 20px;
    /* width: 100%; */
    justify-content: center;
  }
}
.btn-outline-yellow {
  background: transparent;
  color: var(--yellow);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--yellow);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-outline-yellow:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
}

.footer-main {
  background: var(--white);
  color: var(--black);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
}

.footer-brand .brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--black);
  margin: 16px 0 24px;
  max-width: 300px;
}

.footer-social-links {
  display: flex;
  gap: 10px;
}

.footer-social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--black-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social-links a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--black);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--yellow);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--black);
  text-decoration: none;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition:
    color 0.2s,
    gap 0.2s;
}

.footer-links a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--yellow);
  border-top: 2px solid var(--yellow);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.footer-links a:hover {
  color: var(--yellow);
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item .icon {
  width: 36px;
  height: 36px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item .info {
  font-size: 0.85rem;
  color: var(--black);
  line-height: 1.5;
}

.footer-contact-item .info a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item .info a:hover {
  color: var(--yellow);
}

.footer-bottom {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  padding: 18px 0;
  margin-top: 50px;
}

.footer-bottom-text {
  font-size: 0.8rem;
  color: #555;
}

.footer-bottom-text a {
  color: var(--yellow);
  text-decoration: none;
}

/* CTA Band */
.footer-cta-band {
  background: var(--yellow);
  padding: 42px 0;
}

.footer-cta-band .cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 0.03em;
  color: var(--black);
  line-height: 1.1;
}

.btn-black {
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-black:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.footer-cta-band .btn-wa {
  background: #25d366;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-cta-band .btn-wa:hover {
  transform: translateY(-2px);
}

/* Decorative BG Text */
.footer-bg-text {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-family: var(--font-display);
  font-size: 12rem;
  color: rgba(255, 255, 255, 0.02);
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* ── WHATSAPP FLOAT ─────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
  animation: pulse-wa 2.5s infinite;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  color: white;
}

@keyframes pulse-wa {
  0%,
  100% {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow:
      0 6px 45px rgba(37, 211, 102, 0.7),
      0 0 0 12px rgba(37, 211, 102, 0.1);
  }
}

/* Slider */

/* ── Homepage hero (video + rotating copy) ── */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: min(78vh, 720px);
  height: min(78vh, 720px);
  overflow: hidden;
  background: #0a0a0a;
  color: #fff;
}

.hero-banner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-banner__video.is-ready {
  opacity: 1;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.82) 0%, rgba(10, 10, 10, 0.55) 42%, rgba(10, 10, 10, 0.18) 70%, rgba(10, 10, 10, 0.08) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.28) 0%, transparent 28%, transparent 72%, rgba(10, 10, 10, 0.45) 100%);
}

.hero-banner__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 72px;
}

.hero-copy {
  display: none;
  max-width: 640px;
}

.hero-copy.active {
  display: block;
  animation: heroCopyIn 0.55s ease both;
}

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

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 210, 0, 0.45);
  border-radius: 999px;
  background: rgba(255, 210, 0, 0.12);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: #fff;
  margin: 0 0 18px;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hero-title span {
  color: var(--yellow);
}

.hero-lead {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
  max-width: 480px;
  margin: 0 0 28px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-btn,
.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-btn {
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--yellow);
}

.hero-btn:hover {
  background: #fff;
  border-color: #fff;
  color: var(--black);
  transform: translateY(-2px);
}

.hero-btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.hero-btn-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.35);
  color: #fff;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero-nav:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.hero-nav--prev {
  left: 18px;
}

.hero-nav--next {
  right: 18px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
}

.hero-dot.active {
  width: 28px;
  border-radius: 999px;
  background: var(--yellow);
}

.btn-primary-yellow {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  padding: 13px 30px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  margin-right: 10px;
  margin-bottom: 8px;
  transition:
    background 0.15s,
    transform 0.12s;
}

.btn-primary-yellow:hover {
  background: #ffe033;
  color: var(--black);
  transform: translateY(-1px);
}

.btn-secondary-black {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 2px solid var(--black);
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 8px;
  transition:
    background 0.15s,
    color 0.15s;
}

.btn-secondary-black:hover {
  background: #fff;
  color: var(--black);
}

/* ── Marquee strip ── */
.marquee-bar {
  background: var(--black);
  padding: 9px 0;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

.marquee-item {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.marquee-item .dot-sep {
  width: 5px;
  height: 5px;
  background: var(--yellow);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .hero-banner {
    min-height: 560px;
    height: auto;
  }

  .hero-banner__inner {
    padding-top: 56px;
    padding-bottom: 88px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-nav {
    display: none;
  }
}

/* Services */
/* ── SECTION HEADER ── */
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.45;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 6px;
}
.section-title span {
  color: var(--yellow);
  background: var(--black);
  padding: 2px 10px;
  border-radius: 6px;
  display: inline-block;
}

.section-sub {
  font-size: 15px;
  color: #555;
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.65;
}

.card-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 18px;
  line-height: 1.2;
}

/* Divider */
.card-divider {
  width: 36px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* Service list */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.service-list li::before {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--black);
}

/* services css start */
/* .service-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
} */

/* Left Side Content Styles */
.service-tag {
  color: var(--yellow-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
}

.service-tag::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--yellow-dark);
}

.service-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  color: #111111;
  margin-bottom: 25px;
}

.service-content p {
  color: #667085;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* Custom Navigation Buttons (Green Rounded Circles) */
.slider-btns {
  display: flex;
  gap: 15px;
}

.slider-btns button {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--yellow);
  color: #000;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.slider-btns button:hover {
  background: var(--yellow-dark);
  transform: scale(1.05);
}

/* Right Side Slider Box Wrapper with Curved Border */
.service-slider-outer {
  background: url("https://png.pngtree.com/thumb_back/fh260/background/20250902/pngtree-person-in-pink-top-repairing-mobile-phone-with-microscope-and-tools-image_18350566.webp")
    center center no-repeat;
  background-size: cover;
  border-radius: 60px 0 0 60px;
  /* Exact screenshot bottom/top left radius curves */
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  background-color: #222;
}

@media (max-width: 991px) {
  .service-slider-outer {
    border-radius: 40px;
    padding: 40px 20px;
    margin-top: 40px;
  }

  .service-title {
    font-size: 34px;
  }
}

.service-slider-outer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(44, 46, 51, 0.78);
  /* High contrast dark overlay */
  z-index: 1;
}

.service-slider {
  position: relative;
  z-index: 2;
  overflow: visible;
  /* To allow sliding cut out preview */
}

/* Same Height Cards Alignment Framework */
.service-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.service-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 25px 25px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

/* Card Top Banner/Image Styling */
.card-img-box {
  width: 100%;
  height: 140px;
  border-radius: 15px;
  margin-bottom: 25px;
  overflow: hidden;
  background: #f4f4f4;
}

.card-img-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
}

.service-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 14px;
  color: #667085;
  line-height: 1.5;
  margin-bottom: 25px;
  flex-grow: 1;
}

.service-card-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.service-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--yellow);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.service-book-btn:hover {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--yellow);
}

/* Learn More Arrow Style */
.card-link {
  color: #111111;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: color 0.3s;
}

.card-link i {
  color: var(--primary-green);
  font-size: 16px;
}

.card-link:hover {
  color: var(--primary-green);
}
/* end */

/* Accessories section css start */
.text-ACCESS {
  color: var(--yellow);
}

.section-subtitle {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Card Styling */
.accessory-card {
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid #f3f3f3;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.accessory-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  color: inherit;
}

.in-store-notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 18px 0 8px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff8d6;
  border: 1px solid rgba(255, 210, 0, 0.55);
}

.in-store-notice i {
  color: var(--black);
  font-size: 1.35rem;
  margin-top: 2px;
}

.in-store-notice strong {
  display: block;
  margin-bottom: 4px;
  color: var(--black);
}

.in-store-notice span {
  display: block;
  color: #444;
  font-size: 0.92rem;
  line-height: 1.5;
}

.enquire-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
}

.accessory-card:hover .enquire-hint {
  color: var(--yellow-dark);
}

/* Image Wrapper */
.image-container {
  overflow: hidden;
  border-radius: 22px;
  background-color: #f8f9fa;
}

.card-img {
  width: 100%;
  height: 230px;
  /* Equal image sizes for grid alignment */
  object-fit: cover;
}

/* Floating Icon Badge */
.icon-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--yellow);
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  z-index: 10;
}

/* Text Detail Styling */
.category {
  font-size: 0.72rem;
  letter-spacing: 0.8px;
}

.product-name {
  font-size: 1.15rem;
  color: #111111;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .card-img {
    height: 210px;
  }
}
/* end */

/* buy and Sell section css start */
.devices-section {
  padding: 60px 0;
  background: var(--black);
}

/* ── CARD BASE ── */
.device-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 420px;
  padding: 40px 36px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ── WHITE CARD ── */
.card-white {
  background: var(--white);
}

.card-white .card-heading {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--black);
  letter-spacing: 0.03em;
  line-height: 0.95;
  margin-bottom: 20px;
}

.card-white .card-sub {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.card-white .item-list {
  list-style: none;
  padding: 0;
  margin-bottom: 6px;
}

.card-white .item-list li {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
  padding: 3px 0;
}

.card-white .item-list li::before {
  content: "• ";
  font-weight: 800;
}

.card-white .and-more {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  margin-top: 6px;
}

/* ── YELLOW CARD ── */
.card-yellow {
  background: var(--yellow);
}

.card-yellow .card-heading {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--black);
  letter-spacing: 0.03em;
  line-height: 0.95;
  margin-bottom: 20px;
}

.card-yellow .card-sub {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.card-yellow .item-list {
  list-style: none;
  padding: 0;
  margin-bottom: 6px;
}

.card-yellow .item-list li {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
  padding: 3px 0;
}

.card-yellow .item-list li::before {
  content: "• ";
  font-weight: 800;
}

.card-yellow .tagline {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
  margin-top: 10px;
}

.btn-shop {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 28px;
  transition: var(--transition);
  text-decoration: none;
}

.btn-shop:hover {
  background: #f0f0f0;
  color: var(--black);
  transform: scale(1.03);
}

/* ── RED BLOB ── */
.red-blob {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 230px;
  height: 290px;
  background: #cc0000;
  border-radius: 20px;
  transform: rotate(-14deg);
  z-index: 0;
}

/* ── PHONE IMAGES STACK ── */
.img-stack {
  position: absolute;
  right: 0;
  top: 0;
  width: 250px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.img-tilt {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.img-tilt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Phone 1 — top right, tilted right */
.phone-1 {
  width: 130px;
  height: 170px;
  top: 28px;
  right: 28px;
  transform: rotate(10deg);
}

/* Phone 2 — below, tilted left */
.phone-2 {
  width: 130px;
  height: 170px;
  top: 175px;
  right: 65px;
  transform: rotate(-8deg);
}

/* ── CARD CONTENT ABOVE BLOB ── */
.card-content {
  position: relative;
  z-index: 2;
}

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
  .device-card {
    min-height: 380px;
    padding: 30px 24px 36px;
  }

  .card-white .card-heading,
  .card-yellow .card-heading {
    font-size: 3rem;
  }

  .img-stack {
    width: 170px;
  }

  .phone-1 {
    width: 100px;
    height: 130px;
    top: 20px;
    right: 16px;
  }

  .phone-2 {
    width: 100px;
    height: 130px;
    top: 140px;
    right: 44px;
  }
}
/* end */

/* review section css */
.section-title {
  font-weight: 700;
  color: #202124;
}

.section-subtitle {
  color: #667085;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* Review Card (Compact & Modern) */
.review-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #eef0f2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Avatar System */
.avatar-initial {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
}
.avatar-initial {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
}

/* Colors */
.avatar-blue {
  background: #eafeff;
  color: #006875;
}

.avatar-green {
  background: #e6f4ea;
  color: #137333;
}

.avatar-yellow {
  background: #fef7e0;
  color: #b06000;
}

.avatar-red {
  background: #fce8e6;
  color: #c5221f;
}
.reviewer-name {
  font-weight: 600;
  color: #202124;
  margin-bottom: 0;
  font-size: 14px;
}

.reviewer-time {
  font-size: 12px;
  color: #70757a;
  margin-bottom: 0;
}

/* Stars styling */
.stars {
  color: #fbbc05;
  font-size: 13px;
}

.review-text {
  color: #4a4a4a;
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Navigation Arrows */
.nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ced4da;
  color: #495057;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
}

.nav-btn:hover {
  background: var(--yellow);
  color: #000;
}

/* Fix Pagination & Overflows */
.reviewSwiper {
  padding: 5px 5px 45px 5px !important;
}

.swiper-pagination-bullet-active {
  background: var(--yellow) !important;
  width: 18px;
  border-radius: 4px;
}
/* end */

/* blog section css  */
.blog-label {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.blog-heading {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

/* ===== Blog Card Wrapper ===== */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--white-muted);
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.blog-card:hover {
  border-color: var(--yellow);
  box-shadow:
    0 12px 25px rgba(0, 0, 0, 0.06),
    0 0 15px var(--yellow-glow);
}

/* ===== 16:9 Landscape Layout with Split Overlays ===== */
.blog-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background-color: #000;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Top & Bottom Meet Overlays ===== */
.overlay-top,
.overlay-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(0, 0, 0, 0.45);
  transition: transform var(--transition);
  z-index: 1;
}

.overlay-top {
  top: 0;
  transform: translateY(-101%);
}

.overlay-bottom {
  bottom: 0;
  transform: translateY(101%);
}

/* ===== Center Plus Icon Setup ===== */
.hover-plus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.3);
  width: 45px;
  height: 45px;
  background-color: var(--white);
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  opacity: 0;
  z-index: 2;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

/* ===== Trigger Keyframe Animations On Hover ===== */
.blog-card:hover .overlay-top {
  transform: translateY(0);
}

.blog-card:hover .overlay-bottom {
  transform: translateY(0);
}

.blog-card:hover .hover-plus {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Date Badge */
.date-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 12px;
  padding: 6px 14px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.date-badge span {
  display: block;
  font-size: 18px;
  font-weight: 800;
}

.blog-body {
  padding: 1.2rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--white-muted);
  margin-bottom: 0.8rem;
}

.blog-meta i {
  font-size: 15px;
  margin-right: 4px;
  vertical-align: -2px;
  color: var(--yellow-dark);
}

.blog-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 1.2rem;
  line-height: 1.45;
}

.blog-title a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-title a,
.blog-title a:hover {
  color: var(--yellow-dark);
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition:
    gap 0.2s,
    color 0.2s;
}

.blog-link:hover {
  gap: 10px;
  color: var(--yellow-dark);
}
/* end */

/* about page css */

/* ─── Navbar ─────────────────────────────────────────────────── */
.site-navbar {
  background-color: var(--black);
  border-bottom: 1px solid var(--black-border);
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-navbar .navbar-brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--yellow);
  letter-spacing: 1px;
  text-decoration: none;
}

.site-navbar .navbar-brand span {
  color: var(--white);
}

.site-navbar .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--white-muted);
  letter-spacing: 0.5px;
  padding: 0.4rem 0.85rem;
  transition: color var(--transition);
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: var(--yellow);
}

.site-navbar .btn-nav-cta {
  background-color: var(--yellow);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  border-radius: var(--radius);
  padding: 0.45rem 1.2rem;
  transition:
    background-color var(--transition),
    transform var(--transition);
  text-decoration: none;
}

.site-navbar .btn-nav-cta:hover {
  background-color: var(--yellow-dark);
  transform: translateY(-1px);
}

.site-navbar .navbar-toggler {
  border-color: var(--black-border);
}

.site-navbar .navbar-toggler-icon {
  filter: invert(1);
}

/* ─── Hero / Page Banner ─────────────────────────────────────── */
.page-hero {
  background-color: var(--black-soft);
  background-image:
    linear-gradient(135deg, rgba(255, 210, 0, 0.04) 0%, transparent 60%),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=60&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 3rem 0 2rem;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.92) 40%,
    rgba(10, 10, 10, 0.55) 100%
  );
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: 2px;
}

.page-hero--video {
  background-image: none;
  background-color: #0a0a0a;
  min-height: 280px;
  display: flex;
  align-items: center;
}

.page-hero--video::before {
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(10, 10, 10, 0.72) 45%,
    rgba(10, 10, 10, 0.45) 100%
  );
  z-index: 1;
}

.page-hero--video .page-hero__inner {
  z-index: 2;
}

.page-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.page-hero__video.is-ready {
  opacity: 1;
}

.page-hero__title span {
  color: var(--yellow);
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: var(--yellow);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.breadcrumb-item.active {
  color: var(--white-muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--yellow);
  content: "›";
}

/* ─── About Section ─────────────────────────────────────────── */
.about-section {
  padding: 5rem 0 6rem;
  background-color: var(--white);
}

/* ─── Image Stack Column ─────────────────────────────────────── */
.image-stack {
  position: relative;
  padding: 2rem 2rem 2rem 1rem;
}

.image-stack__bg-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background-color: var(--yellow-glow);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.image-stack__dots {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(
    var(--black-border) 1.5px,
    transparent 1.5px
  );
  background-size: 10px 10px;
  z-index: 0;
  opacity: 0.7;
}

.image-stack__primary {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  height: 420px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center;
}

.image-stack__badge {
  position: absolute;
  top: 2.8rem;
  left: 0;
  z-index: 4;
  background-color: var(--yellow);
  color: var(--black);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(255, 210, 0, 0.3);
  min-width: 130px;
}

.image-stack__badge-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--black);
}

.image-stack__badge-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.3rem;
}

/* ─── Text Column ─────────────────────────────────────────────── */
.about-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
  padding-bottom: 2px;
  margin-bottom: 1.1rem;
}

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  color: var(--black);
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}

.about-heading span {
  color: var(--yellow);
}

.about-lead {
  font-size: 0.97rem;
  color: var(--black);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

/* ─── Feature Cards ──────────────────────────────────────────── */
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.feature-card__icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background-color: var(--yellow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px var(--yellow-glow);
  transition: transform var(--transition);
}

.feature-card__icon-wrap:hover {
  transform: translateY(-3px);
}

.feature-card__icon-wrap i {
  font-size: 1.35rem;
  color: var(--black);
}

.feature-card__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.feature-card__text {
  font-size: 0.82rem;
  color: var(--black);
  line-height: 1.5;
}

/* ─── Checklist ──────────────────────────────────────────────── */
.about-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--black);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--black-border);
}

.about-checklist li:last-child {
  border-bottom: none;
}

.about-checklist li i {
  color: var(--yellow);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ─── CTA Buttons ─────────────────────────────────────────────── */
/* .btn-primary-yellow {
      background-color: var(--yellow);
      color: var(--black);
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 0.9rem;
      border: none;
      border-radius: var(--radius);
      padding: 0.75rem 1.8rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
    }
 
    .btn-primary-yellow:hover {
      background-color: var(--yellow-dark);
      color: var(--black);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px var(--yellow-glow);
    } */

.btn-play-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--black);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition);
}

.btn-play-wrap:hover {
  color: var(--yellow);
}

.btn-play-circle {
  width: 50px;
  height: 50px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color var(--transition),
    box-shadow var(--transition);
  flex-shrink: 0;
}

.btn-play-wrap:hover .btn-play-circle {
  background-color: var(--yellow);
  box-shadow: 0 0 20px var(--yellow-glow);
}

.btn-play-circle i {
  color: var(--yellow);
  font-size: 1.1rem;
  margin-left: 3px;
  transition: color var(--transition);
}

.btn-play-wrap:hover .btn-play-circle i {
  color: var(--black);
}

/* ─── Utilities ──────────────────────────────────────────────── */
@media (max-width: 767px) {
  .image-stack {
    margin-bottom: 3rem;
  }

  .image-stack__primary {
    max-width: 86vw;
    /* height: 260px; */
  }

  .image-stack__badge {
    left: -0.5rem;
  }

  .stat-divider {
    display: none;
  }
}

.about-heading .typed-word {
  color: var(--black); /* your accent color */
  display: inline-block;
  min-width: 2ch;
  border-right: 3px solid var(--black);
  padding-right: 4px;
}
.about-heading .typed-word.cursor-off {
  border-color: transparent;
}
/* end */

/* services page css */
.about-text h2 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: calc(1.4rem + 1.2vw);
  /* Screen ke hisab se heading ka size badlega */
}

.about-text p {
  color: #666;
  line-height: 1.7;
}

/* Bullet list ke semantical issues fix kiye (ul add kiya) */
.about-list {
  margin-top: 20px;
  padding-left: 0;
}

.about-list li {
  list-style: none;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: #333;
  font-weight: 500;
}

.about-list i {
  color: #0d6efd;
  margin-right: 10px;
  font-size: 18px;
  flex-shrink: 0;
  /* Icon text ke sath squeeze nahi hoga */
}

.about-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 20px;
  /* Mobile par text aur image ke beech gap ke liye */
}

@media (min-width: 992px) {
  .about-img {
    margin-top: 0;
  }
}

.about-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: 0.4s;
  display: block;
}

.about-img:hover img {
  transform: scale(1.05);
}

.img-border {
  position: absolute;
  inset: 15px;
  border: 2px solid #ffffff;
  pointer-events: none;
}
/* services repairs section css */
.tech-repair-cards-section .repair-main-title {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 1px;
  color: var(--black);
}

.tech-repair-cards-section .repair-main-title span {
  color: var(--yellow);
}

.tech-repair-cards-section .repair-sub-title {
  font-size: 1.1rem;
  font-weight: 300;
}

/* --- SLIDE UP CARD --- */
.repair-grid-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--black-border);
  height: 260px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.repair-grid-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.repair-grid-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

.card-default-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  color: var(--white);
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 2;
}

.card-default-title span {
  color: var(--yellow);
}

.repair-grid-card:hover .card-default-title {
  opacity: 0;
  transform: translateY(-30px);
}

/* --- NON-STOP SMOOTH BOTTOM TO TOP OVERLAY --- */
.card-hover-overlay {
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(20, 20, 20, 0.85) 0%,
    rgba(40, 40, 40, 0.65) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  transition: bottom 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

.repair-grid-card:hover .card-hover-overlay {
  bottom: 0;
}

.card-hover-overlay .service-icon {
  font-size: 2.1rem;
  color: var(--yellow);
  margin-bottom: 8px;
}

.card-hover-overlay h3 {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-hover-overlay p {
  color: #bbbbbb;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-more {
  background-color: var(--yellow);
  color: var(--black);
  border: none;
  padding: 6px 20px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition:
    background-color var(--transition),
    transform var(--transition);
}

.btn-more:hover {
  background-color: var(--yellow-dark);
  transform: scale(1.05);
}

/* end */

/* contact label css */
/* ── contact  TITLES ── */
.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.05;
}

/* ── CARDS ── */
.info-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  height: 100%;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.info-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 0 24px var(--yellow-glow);
  transform: translateY(-3px);
}

.info-card .icon-wrap {
  width: 46px;
  height: 46px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.info-card .icon-wrap i {
  color: var(--black);
  font-size: 1.1rem;
}

.info-card h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}

.info-card p {
  color: var(--white-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.55;
}

.info-card a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.info-card a:hover {
  color: var(--yellow);
}

.info-card .btn-yellow {
  color: var(--black);
}

.info-card .btn-yellow:hover {
  color: var(--yellow);
}

/* ── MAP BOX ── */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--black-border);
  transition: border-color var(--transition);
}

.map-wrapper:hover {
  border-color: var(--yellow);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

/* ── Homepage map (container width, same as testimonials) ── */
.home-map-section {
  background: transparent;
}

.home-map-section .map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.08);
}

.home-map-section .map-wrapper iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

@media (max-width: 767.98px) {
  .home-map-section .map-wrapper iframe {
    height: 280px;
  }
}

/* ── CONTACT FORM ── */
.form-section {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.form-section .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: var(--white-muted);
  margin-bottom: 6px;
}

.form-section .form-control,
.form-section .form-select {
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.form-section .form-control:focus,
.form-section .form-select:focus {
  background: var(--black-soft);
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px var(--yellow-glow);
  color: var(--white);
  outline: none;
}

.form-section .form-control::placeholder {
  color: #555;
}

.form-section textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-section .form-select option {
  background: var(--black-soft);
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow: 0 10px 30px rgba(10, 10, 10, 0.04);
}

.contact-form-card .contact-form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.5px;
  color: var(--black);
  margin: 0;
}

.contact-form-card .contact-form-sub {
  color: #667085;
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-form-card .contact-form-sub strong {
  color: var(--black);
}

.contact-form-card .form-label {
  color: #555;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  background: #f5f6f8;
  border: 1px solid #e6e8ec;
  color: var(--black);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  background: #ffffff;
  border-color: var(--black);
  box-shadow: 0 0 0 3px var(--yellow-glow);
  color: var(--black);
}

.contact-form-card .form-control::placeholder {
  color: #9aa0a6;
}

.contact-form-card .contact-form-note {
  color: #8890a0;
}

.contact-form-success {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(255, 210, 0, 0.18);
  border: 1px solid rgba(230, 189, 0, 0.45);
  color: var(--black);
  font-weight: 600;
}

.contact-form-error {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid #dc3545;
  color: #b02a37;
  font-weight: 600;
}

.btn-outline-yellow {
  background: transparent;
  color: var(--yellow);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 12px 28px;
  transition:
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-yellow:hover {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 0 20px var(--yellow-glow);
}

/* ── SOCIAL LINKS ── */
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--black-border);
  background: var(--black-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-muted);
  font-size: 1rem;
  text-decoration: none;
  transition:
    border-color var(--transition),
    color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.social-link:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  box-shadow: 0 0 12px var(--yellow-glow);
}

/* ── HOURS BADGE ── */
.hours-grid {
  display: grid;
  gap: 6px;
  margin-top: 6px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--white-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--black-border);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  font-weight: 600;
  color: var(--white);
}

.hours-row .time {
  color: var(--yellow);
  font-weight: 500;
}

/* ── QUICK CTA STRIP ── */
.cta-strip {
  background: var(--yellow);
  padding: 28px 0;
}

.cta-strip h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--black);
  letter-spacing: 0.5px;
}

.cta-strip p {
  color: var(--black);
  font-size: 0.95rem;
  opacity: 0.75;
  margin: 0;
}

.btn-black {
  background: var(--black);
  color: var(--yellow);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: var(--radius);
  padding: 13px 28px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background var(--transition),
    color var(--transition);
  white-space: nowrap;
}

.btn-black:hover {
  background: #1a1a1a;
  color: var(--yellow);
}

/* ── DIVIDER ── */
.y-divider {
  width: 40px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 12px 0 24px;
}

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
  .form-section {
    padding: 28px 20px;
  }

  .page-hero {
    padding: 50px 0 36px;
  }
}
/* end */

/* servies details page css */
/* ── MAIN LAYOUT ── */
.main-section {
  padding: 60px 0 80px;
  background: #f5f5f5;
}

/* ── SIDEBAR ── */
.sidebar-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 24px;
}

.sidebar-card h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: #1a1a1a;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

/* Service Menu */
.service-menu {
  list-style: none;
  padding: 0;
}

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

.service-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  color: #444;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.service-menu li a:hover {
  border-color: var(--yellow);
  color: var(--black);
  background: #fffbe6;
  padding-left: 22px;
}

.service-menu li.active a {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  font-weight: 700;
}

.service-menu li a .arrow {
  font-size: 0.75rem;
}

/* CTA Card */
.cta-card {
  background: linear-gradient(135deg, var(--black-card), #1c1500);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--yellow-glow);
}

.cta-card h4 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 10px;
  position: relative;
}

.cta-card p {
  color: var(--white-muted);
  font-size: 0.82rem;
  margin-bottom: 22px;
  line-height: 1.5;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin-bottom: 22px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--white-muted);
}

.contact-info li i {
  color: var(--yellow);
  margin-top: 2px;
  font-size: 0.85rem;
}

/* ── MAIN CONTENT ── */
.content-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 320px;
  margin-bottom: 32px;
  border: 1px solid #e0e0e0;
}

.content-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #1a1a1a;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.content-lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.7;
  margin-bottom: 20px;
}

.content-body {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 36px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.9rem;
  color: #444;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: "→";
  color: var(--yellow-dark);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Work images + quality cards */
.work-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 220px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
}

.quality-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  transition: var(--transition);
}

.quality-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--yellow-glow);
}

.quality-icon {
  width: 52px;
  height: 52px;
  background: #fffbe6;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.quality-icon i {
  color: var(--yellow-dark);
  font-size: 1.3rem;
}

.quality-card h5 {
  font-weight: 700;
  font-size: 1.05rem;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.quality-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* FAQ Accordion */
.faq-section {
  margin-top: 48px;
}

.faq-section h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #1a1a1a;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.accordion-item {
  background: #ffffff !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: var(--radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-button {
  background: #ffffff !important;
  color: #1a1a1a !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 18px 20px;
  box-shadow: none !important;
  border: none;
}

.accordion-button:not(.collapsed) {
  color: #000 !important;
  background: #fffbe6 !important;
}

.accordion-button::after {
  filter: none;
}

.accordion-button:not(.collapsed)::after {
  filter: invert(60%) sepia(80%) saturate(600%) hue-rotate(5deg) brightness(95%);
}

.accordion-body {
  background: #fafafa !important;
  color: #555;
  font-size: 0.88rem;
  line-height: 1.7;
  padding: 16px 20px 20px;
  border-top: 1px solid #e0e0e0;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--yellow);
  border-radius: 3px;
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  .sidebar-col {
    order: 2;
  }

  .content-col {
    order: 1;
  }
}

@media (max-width: 575.98px) {
  .content-img {
    height: 220px;
  }

  .work-img {
    height: 180px;
  }

  .main-section {
    padding: 36px 0 60px;
  }
}
/* end */

/* blog details */
    .blog-details-section {
        background: #F5F5F5 !important;
    }

    /* ── Section label ── */
    .blog-section-label {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--text-main);
        margin-bottom: 18px;
    }

    .blog-section-label::before {
        content: "";
        display: block;
        width: 28px;
        height: 3px;
        background: var(--yellow);
        border-radius: 2px;
        flex-shrink: 0;
    }

    /* ── Post hero ── */
    .post-hero {
        position: relative;
        border-radius: var(--radius-lg);
        overflow: hidden;
        margin-bottom: 1.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .post-hero img {
        width: 100%;
        height: 380px;
        object-fit: cover;
    }

    .post-date-badge {
        position: absolute;
        top: 14px;
        right: 14px;
        background: var(--yellow);
        color: var(--black);
        font-family: var(--font-body);
        font-weight: 700;
        font-size: 12px;
        line-height: 1.2;
        text-align: center;
        padding: 7px 10px;
        border-radius: 8px;
        min-width: 40px;
    }

    /* ── Post meta ── */
    .post-meta {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: 14px;
    }

    .meta-badge {
        background: var(--yellow);
        color: var(--black);
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        padding: 4px 12px;
        border-radius: 20px;
    }

    .meta-item {
        font-size: 13px;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .meta-item i {
        color: var(--yellow-dark);
        font-size: 14px;
    }

    /* ── Post title ── */
    .post-title {
        font-family: var(--font-display);
        font-size: clamp(1.2rem, 2.5vw, 1.8rem);
        line-height: 1.1;
        color: var(--text-main);
        margin-bottom: 1.1rem;
        letter-spacing: 0.5px;
    }

    /* ── Post body ── */
    .post-body {
        color: var(--text-muted);
        font-size: 15px;
        line-height: 1.8;
    }

    .post-body p {
        margin-bottom: 1rem;
    }

    /* ── Blockquote ── */
    .post-quote {
        background: #fffbea;
        border-left: 4px solid var(--yellow);
        border-radius: 0 var(--radius) var(--radius) 0;
        padding: 1.4rem 1.6rem;
        margin: 1.8rem 0;
    }

    .post-quote p {
        font-size: 15px;
        font-style: italic;
        color: var(--text-main);
        margin-bottom: 10px;
        line-height: 1.7;
    }

    .post-quote .quote-author {
        font-size: 13px;
        color: var(--yellow-dark);
        font-weight: 600;
        font-style: normal;
    }

    /* ── Sub heading ── */
    .post-subheading {
        font-family: var(--font-display);
        font-size: 1.6rem;
        color: var(--text-main);
        letter-spacing: 0.5px;
        margin: 2rem 0 0.8rem;
    }

    /* ── Image grid ── */
    .post-img-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 1.6rem 0;
    }

    .post-img-grid img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: var(--radius);
        transition: transform var(--transition);
    }

    .post-img-grid img:hover {
        transform: scale(1.02);
    }

    /* ── Tags & Share ── */
    .post-footer-bar {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
        padding: 1.2rem 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        margin: 2rem 0;
    }

    .tags-label {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-muted);
        margin-right: 4px;
    }

    .tag-pill {
        background: var(--white);
        border: 1px solid var(--border);
        color: var(--text-muted);
        font-size: 12px;
        padding: 4px 12px;
        border-radius: 20px;
        transition: all var(--transition);
    }

    .tag-pill:hover {
        background: var(--yellow);
        color: var(--black);
        border-color: var(--yellow);
    }

    .share-group {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .share-label {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-muted);
    }

    .share-btn {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        background: var(--white);
        border: 1px solid var(--border);
        color: var(--text-muted);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        transition: all var(--transition);
        cursor: pointer;
    }

    .share-btn:hover {
        background: var(--yellow);
        color: var(--black);
        border-color: var(--yellow);
    }

    /* ── Comments ── */
    .comments-section {
        margin-top: 2.5rem;
    }

    .comment-card {
        background: var(--white) !important;
        border: 1px solid var(--border) !important;
        border-radius: var(--radius);
        padding: 1.2rem 1.3rem;
        margin-bottom: 1rem;
        transition:
            border-color var(--transition),
            box-shadow var(--transition);
    }

    .comment-card:hover {
        border-color: var(--yellow);
        box-shadow: 0 2px 12px rgba(255, 210, 0, 0.12);
    }

    .comment-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0;
    }

    .comment-name {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-main);
        margin-bottom: 1px;
    }

    .comment-date {
        font-size: 12px;
        color: var(--text-light);
    }

    .comment-reply {
        font-size: 12px;
        font-weight: 600;
        color: var(--yellow-dark);
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 4px;
        transition: color var(--transition);
    }

    .comment-reply:hover {
        color: var(--black);
    }

    .comment-body {
        font-size: 14px;
        color: var(--text-muted);
        margin: 10px 0 0;
        line-height: 1.7;
    }

    /* ── Reply Form ── */
    .reply-form-section {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 1.6rem;
        margin-top: 2.5rem;
    }

    .reply-form-title {
        font-family: var(--font-display);
        font-size: 1.4rem;
        color: var(--text-main);
        letter-spacing: 0.5px;
        margin-bottom: 6px;
    }

    .reply-form-sub {
        font-size: 13px;
        color: var(--text-muted);
        margin-bottom: 1.4rem;
    }

    .form-control-light {
        background: #f9fafb !important;
        border: 1px solid var(--border) !important;
        border-radius: var(--radius) !important;
        color: var(--text-main) !important;
        font-family: var(--font-body);
        font-size: 14px;
        padding: 10px 14px;
        transition: border-color var(--transition);
    }

    .form-control-light::placeholder {
        color: var(--text-light);
    }

    .form-control-light:focus {
        outline: none !important;
        box-shadow: 0 0 0 3px var(--yellow-glow) !important;
        border-color: var(--yellow) !important;
        background: var(--bg-white) !important;
    }

    /* ── Sidebar ── */
    .sidebar-search {
        display: flex;
        margin-bottom: 2rem;
    }

    .sidebar-search input {
        flex: 1;
        background: var(--white);
        border: 1px solid var(--border);
        border-right: none;
        border-radius: var(--radius) 0 0 var(--radius);
        color: var(--text-main);
        font-family: var(--font-body);
        font-size: 14px;
        padding: 10px 14px;
    }

    .sidebar-search input::placeholder {
        color: var(--text-light);
    }

    .sidebar-search input:focus {
        outline: none;
        border-color: var(--yellow);
        box-shadow: none;
    }

    .sidebar-search button {
        background: var(--yellow);
        border: none;
        border-radius: 0 var(--radius) var(--radius) 0;
        padding: 0 16px;
        color: var(--black);
        font-size: 16px;
        cursor: pointer;
        transition: background var(--transition);
    }

    .sidebar-search button:hover {
        background: var(--yellow-dark);
    }

    .sidebar-widget {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 1.3rem 1.4rem;
        margin-bottom: 1.5rem;
    }

    .recent-post-item {
        display: flex;
        gap: 12px;
        padding: 10px 0;
        border-bottom: 1px solid var(--border);
        transition: transform var(--transition);
        text-decoration: none;
    }

    .recent-post-item:last-child {
        border-bottom: none;
    }

    .recent-post-item:hover {
        transform: translateX(3px);
    }

    .recent-thumb {
        width: 72px;
        height: 60px;
        object-fit: cover;
        border-radius: 8px;
        flex-shrink: 0;
    }

    .recent-post-title {
        font-size: 13px;
        font-weight: 600;
        color: #000;
        line-height: 1.4;
        margin-bottom: 5px;
        transition: color var(--transition);
        text-decoration: none;
    }

    .recent-post-item:hover .recent-post-title {
        color: var(--yellow-dark);
    }

    .recent-post-date {
        font-size: 11px;
        color: #000;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .tags-cloud {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .cloud-tag {
        background: var(--white);
        border: 1px solid var(--border);
        color: var(--text-muted);
        font-size: 12px;
        padding: 5px 13px;
        border-radius: 20px;
        cursor: pointer;
        transition: all var(--transition);
    }

    .cloud-tag:hover {
        background: var(--yellow);
        color: var(--black);
        border-color: var(--yellow);
    }

    /* ── Responsive ── */
    @media (max-width: 991px) {
        .sidebar {
            margin-top: 3rem;
        }

        .post-hero img {
            height: 260px;
        }
    }

    @media (max-width: 575px) {
        .post-hero img {
            height: 200px;
        }

        .post-img-grid {
            grid-template-columns: 1fr;
        }

        .post-img-grid img {
            height: 180px;
        }

        .share-group {
            margin-left: 0;
        }

        .post-footer-bar {
            flex-direction: column;
            align-items: flex-start;
        }
    }
/* end */

/* term css */
 /* ── Hero ── */
    .pp-hero {
        text-align: center;
        padding: 3rem 1rem 2rem;
    }

    .pp-badge {
        display: inline-block;
        background: #FAEEDA;
        color: #633806;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 5px 16px;
        border-radius: 20px;
        margin-bottom: 14px;
    }

    .pp-hero h1 {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
        font-weight: 600;
        color: #1a1a18;
        margin-bottom: 8px;
    }

    .pp-hero p {
        font-size: 14px;
        color: #5f5e5a;
        margin-bottom: 20px;
    }

    .pp-divider {
        width: 40px;
        height: 3px;
        background: var(--yellow);
        border-radius: 2px;
        margin: 0 auto;
    }

    /* ── Main Single Card Wrapper ── */
    .pp-main-card {
        background: #ffffff;
        border: 0.5px solid rgba(0, 0, 0, 0.1);
        border-radius: 14px;
        padding: 2.5rem;
        margin-bottom: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    }

    /* ── Card internal rows spacing ── */
    .pp-section-block {
        margin-bottom: 2.5rem;
    }

    .pp-section-block:last-of-type {
        margin-bottom: 0;
    }

    /* ── Card header ── */
    .pp-card-head {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
    }

    .pp-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-radius: 9px;
        background: #FAEEDA;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pp-icon i {
        font-size: 17px;
        color: #854F0B;
    }

    .pp-card-title {
        font-size: 16px;
        font-weight: 600;
        color: #1a1a18;
        margin: 0;
    }

    /* ── Body text ── */
    .pp-card-body {
        font-size: 14px;
        color: #5f5e5a;
        line-height: 1.75;
        margin: 0;
    }

    /* ── Warning Block inside single card ── */
    .pp-block-warn {
        border-left: 3px solid var(--yellow);
        padding-left: 14px;
        background: rgba(250, 238, 218, 0.25);
        padding-top: 12px;
        padding-bottom: 12px;
        border-radius: 0 8px 8px 0;
    }

    /* ── Arrow list ── */
    .pp-list {
        margin: 8px 0 0;
        padding-left: 0;
        list-style: none;
    }

    .pp-list li {
        font-size: 14px;
        color: #5f5e5a;
        line-height: 1.65;
        padding: 6px 0 6px 22px;
        position: relative;
        border-bottom: 0.5px solid rgba(0, 0, 0, 0.07);
    }

    .pp-list li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .pp-list li::before {
        content: "→";
        position: absolute;
        left: 0;
        color: var(--yellow);
        font-size: 13px;
        top: 7px;
    }

    .pp-list li strong {
        color: #1a1a18;
        font-weight: 600;
    }

    /* ── Contact card ── */
    .pp-contact {
        background: #2C2C2A;
        border-radius: 14px;
        padding: 1.6rem;
        margin-top: 2rem;
    }

    .pp-contact-title {
        font-size: 15px;
        font-weight: 600;
        color: var(--yellow);
        margin-bottom: 16px;
    }

    .pp-contact-label {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        color: #888780;
        margin-bottom: 4px;
    }

    .pp-contact-store {
        font-size: 15px;
        font-weight: 600;
        color: var(--yellow);
        margin-bottom: 3px;
    }

    .pp-contact-addr,
    .pp-contact-row {
        font-size: 13px;
        color: #B4B2A9;
        margin-bottom: 2px;
    }

    .pp-contact-link {
        color: var(--yellow);
        text-decoration: none;
        font-weight: 500;
    }

    .pp-contact-link:hover {
        text-decoration: underline;
        color: #FAC775;
    }

    /* ── Responsive tweaks ── */
    @media (max-width: 576px) {
        .pp-main-card {
            padding: 1.5rem 1.2rem;
        }

        .pp-contact {
            padding: 1.2rem;
        }

        .pp-contact .row>div+div {
            margin-top: 1rem;
        }
    }
/* end */

/* =====================================================
   Homepage — Booking Steps
   ===================================================== */
.booking-steps-section {
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(255, 210, 0, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(10, 10, 10, 0.04), transparent 50%),
    #f7f7f5;
  position: relative;
  overflow: hidden;
}

.booking-steps-label-bar {
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.booking-steps-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.booking-steps-track::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--black) 0 8px,
    transparent 8px 16px
  );
  opacity: 0.12;
  pointer-events: none;
}

.booking-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0.5rem 0.75rem 0;
  transition: transform 0.35s ease;
}

.booking-step:hover {
  transform: translateY(-6px);
}

.booking-step__num {
  font-family: var(--font-display);
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: 1px;
  color: var(--black);
  opacity: 0.08;
  margin-bottom: -0.35rem;
  transition: opacity 0.35s ease, color 0.35s ease;
}

.booking-step:hover .booking-step__num {
  opacity: 0.18;
  color: var(--yellow-dark);
}

.booking-step__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--yellow);
  font-size: 1.45rem;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(10, 10, 10, 0.18);
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.booking-step:hover .booking-step__icon {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 12px 32px var(--yellow-glow);
}

.booking-step__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.5px;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.booking-step__text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #667085;
  margin: 0 auto;
  max-width: 220px;
}

@media (max-width: 991.98px) {
  .booking-steps-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.25rem;
  }

  .booking-steps-track::before {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .booking-steps-track {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .booking-step__text {
    max-width: 280px;
  }
}