  :root {
        --text-dark: #2a1f14;
    --text-mid: #6b5440;
    

          --dark-base: #140e08;
      --dark-surface: #070707;
  
      --dark-border: rgba(201, 149, 90, 0.18);

  }

#index {
  padding-top: 100px;
}
#other {
    padding-top: 110px;

}
@media (max-width: 991.98px) {
  body {
    padding-top: 120px; 
  }
}


.navbar {
  padding: 0.5rem 0; 
  min-height: 100px;

  position: fixed;
  top: 0;
}


.navbar-brand {
  font-size: 1.6rem;
}


@media (min-width: 992px) {
  .navbar-nav .nav-link {
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    margin: 0;
  }

  .navbar-nav .gap-2 > li + li {
    margin-left: 0.5rem;
  }
}


@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: #212529;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 0.75rem;
  }

  .navbar-nav .nav-link {
    font-size: 1.05rem;
    padding: 0.75rem 1rem !important;
  }
}


.dropdown-menu-dark .dropdown-item {
  padding: 0.6rem 1.25rem;
  font-size: 0.95rem;
}



  



/* Contact Page  */
.contact-page {
  background: #ffffff;
}

.contact-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  color: #111827;
  transition: all 0.3s ease;
}

.whatsapp-card:hover .icon-circle {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

.email-card:hover .icon-circle {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

.phone-card:hover .icon-circle {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

.contact-card h3 {
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.contact-card:hover h3 {
  color: #000000 !important;
}

.contact-card p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.note-box {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .contact-card {
    padding: 2rem 1.5rem !important;
  }
  
  .icon-circle {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .contact-card h3 {
    font-size: 1.1rem;
  }

  .contact-card p {
    font-size: 0.85rem;
  }

  .contact-page {
    padding: 2rem 0 !important;
  }
}



/* Hero Carousel - Mobile Optimized */
.hero-carousel {
  position: relative;
  height: 100vh;
  min-height: 500px;
  max-height: 900px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 90%;
  max-width: 800px;
  padding: 1.5rem;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
  line-height: 1.6;
}

.hero-cta {
  display: inline-block;
  background: #ffffff;
  color: #000000;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.hero-cta:hover {
  background: #f0f0f0;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Mobile Optimizations */
@media (max-width: 992px) {
  .hero-carousel {
    height: 85vh;
    min-height: 550px;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .hero-content p {
    font-size: 1.15rem;
  }

  .hero-cta {
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-carousel {
    height: 75vh;
    min-height: 500px;
  }

  .hero-content {
    width: 95%;
    padding: 1rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }

  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
  }

  .hero-cta {
    padding: 0.85rem 2rem;
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-cta {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
  }
}





/* featured */
 .hero__rule {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.6s ease both;
  }
  .hero__rule span { 
    /* font-family: 'DM Sans', sans-serif; */
     font-size: 0.7rem;
    font-weight: 500;
    margin-left: 2.4rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dark);
  } 
   .hero__rule::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--dark-base), transparent);
  } 


  /* experts cards */
 .experts-grid {
  display: grid;
    
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  padding: 1rem 0;
    
    max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.expert-card {
  display: flex;
  flex-direction: column;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.expert-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 149, 90, 0.35);
  border-color: rgba(201, 149, 90, 0.4);
}

/* Avatar */
.expert-card__avatar {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--dark-base);
  overflow: hidden;
}

.expert-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;

   
}

.expert-card:hover .expert-card__avatar img {
  transform: scale(1.04);
}

.expert-card__badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(20, 14, 8, 0.82);
  border: 1px solid var(--dark-border);
   color: #e5e7eb;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.02em;
}

/* Body */
.expert-card__body {
  flex: 1;
  padding: 1rem 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.expert-card__name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #e8d5bc;
  line-height: 1.3;
}

.expert-card__shop {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.expert-card__shop-name {
  font-size: 0.8rem;
  font-weight: 600;
  /* color: #c9955a; */
  color: #e5e7eb;

}

.expert-card__locale {
  font-size: 0.75rem;
  /* color: var(--text-mid); */
    color: #e5e7eb;

}

.expert-card__contact {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  /* color: var(--text-mid); */
    color: #e5e7eb;

  margin-top: 2px;
}

.expert-card__contact svg {
  color: #4caf50;
  flex-shrink: 0;
}

/* Footer */
.expert-card__footer {
  padding: 0.6rem 1rem 0.9rem;
  border-top: 1px solid var(--dark-border);
  margin-top: 0.75rem;
}

.expert-card__cta {
  font-size: 0.75rem;
  font-weight: 600;
  color: #c9955a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: letter-spacing 0.2s ease;
}

.expert-card:hover .expert-card__cta {
  letter-spacing: 0.08em;
}

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

@media (max-width: 480px) {
  .experts-grid {
    grid-template-columns: 1fr;
  }
}

/* findLocs */
.loc-search-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.loc-search {
  width: 100%;
  max-width: 420px;
  padding: 0.75rem 1.25rem;
  background: #fff;
  border: 2px solid #e8d5bc;
  border-radius: 30px;
  color: var(--text-dark);
  font-size: 0.9rem;
  outline: none;
  box-shadow: 0 4px 16px rgba(42, 31, 20, 0.08);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.loc-search:focus {
  border-color: #c9955a;
  box-shadow: 0 4px 20px rgba(201, 149, 90, 0.2);
}

.loc-search::placeholder {
  color: #b0967c;
}

.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.loc-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f0e4d4;
  box-shadow: 0 2px 12px rgba(42, 31, 20, 0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.loc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(42, 31, 20, 0.13);
}

.loc-card__top {
  padding: 1.25rem 1.25rem 1rem;
  background: linear-gradient(135deg, #fdf6ee, #f5e6d0);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.loc-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #c9955a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(201, 149, 90, 0.3);
}

.loc-card__area {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.loc-card__bottom {
  padding: 0.75rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.loc-card__rest {
  font-size: 0.78rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 5px;
}

.loc-card__rest::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9955a;
  flex-shrink: 0;
}

.loc-card__link {
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #c9955a;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.loc-empty {
  color: var(--text-mid);
  font-size: 0.875rem;
  text-align: center;
  padding: 2rem;
}

@media (max-width: 768px) {
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .loc-grid { grid-template-columns: 1fr; }
}

/* home categories and side bar */
.hub-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
  padding-top: 2rem;
}

/* ── Sidebar ── */
 .hub-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 1rem;
}


.sidebar-card {
  /* background: var(--dark-surface); */
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-card__icon {
  font-size: 1.5rem;
}

.sidebar-card__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #e8d5bc;
}

.sidebar-card__desc {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.5;
}
 
.sidebar-btn {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.5rem 1rem;
  background: #050505;
  color: white;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.2s;
}

.sidebar-btn:hover {
  background: #e0aa6a;
  transform: translateY(-1px);
}

.sidebar-btn--ghost {
  background: transparent;
  border: 1px solid #c9955a;
  color: #c9955a;
}

.sidebar-btn--ghost:hover {
  background: rgba(201, 149, 90, 0.1);
}
  
.sidebar-label {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c9955a;
}

.hub-sidebar .sidebar-card {
  background: #fff;
  border: 1px solid #f0e4d4;
  box-shadow: 0 2px 12px rgba(42, 31, 20, 0.07);
}

.hub-sidebar .sidebar-card__title {
  color: var(--text-dark);
}

.hub-sidebar .sidebar-card__desc,
.hub-sidebar .maker-desc,
.hub-sidebar .featured-location {
  color: var(--text-mid);
}

.hub-sidebar .featured-name {
  color: var(--text-dark);
}

.hub-sidebar .sidebar-card:hover {
  box-shadow: 0 6px 20px rgba(42, 31, 20, 0.12);
}

.featured-name {
  font-size: 1rem;
  font-weight: 800;
  color: #e8d5bc;
  text-decoration: none;
}

.featured-name:hover { color: #c9955a; }

.featured-location {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-mid);
}

.maker-img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 100px;
}

.maker-desc {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ── Categories ── */
.hub-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cat-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.cat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 149, 90, 0.45);
  background: #251a0f;
}

.cat-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #e8d5bc;
}

.cat-card__arrow {
  color: #c9955a;
  font-size: 1rem;
  transition: transform 0.2s;
}

.cat-card:hover .cat-card__arrow {
  transform: translateX(4px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hub-layout {
    grid-template-columns: 1fr;
  }

  .hub-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .hub-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hub-sidebar { grid-template-columns: 1fr; }
  .hub-categories { grid-template-columns: 1fr; }
}


/* CTA Banner  */
.cat-cta-banner {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #f1e4d6, #ebe0d4);
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  padding: 1.75rem 2rem;
  margin-top: 0.5rem;
}

.cat-cta-banner__text h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: #070707;
}

.cat-cta-banner__text p {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: var(--text-mid);
  max-width: 380px;
  line-height: 1.6;
}

.cat-cta-banner__illustration {
  font-size: 4rem;
  opacity: 0.4;
  flex-shrink: 0;
}


@media (max-width: 768px) {
  
  .cat-cta-banner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cat-cta-banner__illustration { display: none; }
}
/* filters box handyman */
.filters-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;

  max-width: 960px;
  margin: 0 auto;

}

.filter-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.filter-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-label i {
  color: #c9955a;
}

.filter-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 0.7rem 2.5rem 0.7rem 1rem;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9955a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 1rem center;
  border: 1.5px solid #f0e4d4;
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--text-dark);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(42, 31, 20, 0.06);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.filter-select:focus {
  outline: none;
  border-color: #c9955a;
  box-shadow: 0 2px 12px rgba(201, 149, 90, 0.2);
}

.filter-select option {
  color: var(--text-dark);
  background: #fff;
}

@media (max-width: 768px) {
  .filters-bar {
    grid-template-columns: 1fr;
  }
}

/* single page */
.single-profile {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 2.5rem;
  align-items: start;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
  margin: 2rem auto;
}

.single-profile__avatar {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--dark-base);
  overflow: hidden;
}

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

.single-profile__body {
  padding: 2rem 2rem 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.single-profile__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.single-profile__name {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 800;
  color: #e8d5bc;
  line-height: 1.2;
}

.single-profile__username {
  font-size: 0.82rem;
  color: #c9955a;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.single-profile__shop {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 1rem;
  background: rgba(201, 149, 90, 0.07);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
}

.single-profile__shop-name {
  font-size: 1rem;
  font-weight: 700;
  color: #e8d5bc;
}

.single-profile__contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.single-profile__contact-item {
  font-size: 0.82rem;
  color: #e5e7eb;
}

.single-profile__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.single-profile__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.65rem 1.4rem;
  background: #25D366;
  color: #fff;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.single-profile__wa-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  color: #fff;
}

.single-profile__back-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--dark-border);
  color: #e8d5bc;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.single-profile__back-btn:hover {
  border-color: rgba(201, 149, 90, 0.4);
  background: rgba(201, 149, 90, 0.07);
  color: #e8d5bc;
}

.single-profile__since {
  margin: 0;
  font-size: 0.72rem;
  color: var(--text-mid);
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .single-profile {
    grid-template-columns: 1fr;
  }

  .single-profile__avatar {
    aspect-ratio: 4 / 3;
  }

  .single-profile__body {
    padding: 1.25rem;
  }
}