:root{
      --bg:#0b0b0c; --card:#111111; --muted:#d1d5db; --accent:#d4af37; --accent-2:#b8961f; --glass:rgba(255,255,255,0.08);
      --max-width:1100px; --radius:12px; --gap:18px; 
    }
    *{box-sizing:border-box}
    body{font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; margin:0; background:var(--bg); color:#0f172a; -webkit-font-smoothing:antialiased}

    /* Page container */
    .page{max-width:var(--max-width); margin:28px auto; padding:20px; background-color: #ffffff;}

    /* HERO */
    /* .hero{position:relative; border-radius:16px; overflow:hidden; min-height:36vh; display:flex; align-items:center; color:white; background-image:linear-gradient(135deg, rgba(239, 213, 129, 0.9), rgba(240, 191, 29, 0.9)); padding:36px}
    .hero .col{flex:1}
    .hero h1{font-size:clamp(20px,4vw,36px); margin:0 0 8px}
    .hero p{margin:0 0 18px; color:rgba(255,255,255,0.92)}
    .hero .cta{display:inline-block; padding:10px 18px; background:var(--glass); color:#04263a; border-radius:10px; text-decoration:none; font-weight:600} */

    /* Utilities */
    .row{display:flex; gap:var(--gap)}
    .space-between{display:flex; align-items:center; justify-content:space-between}

    /* Controls */
    .controls{display:flex; gap:12px; align-items:center; margin:18px 0}
    .search{flex:1; position:relative}
    .search input{width:100%; padding:12px 14px 12px 40px; border-radius:10px; border:1px solid #e6eef5; background:white}
    .search .icon{position:absolute; left:12px; top:50%; transform:translateY(-50%); opacity:0.6}
    .filters{display:flex; gap:8px; flex-wrap:wrap}
    .filters button{background:white; border:1px solid #e6eef5; padding:8px 12px; border-radius:999px; cursor:pointer}
    .filters button.active{background:var(--accent); color:white; border-color:transparent}

    /* Categories / Accordion for mobile */
    .category{margin-bottom:18px}
    .category-header{display:flex; align-items:center; justify-content:space-between; padding:12px 14px; background:#fff; border-radius:10px; border:1px solid #e6eef5; cursor:pointer}
    .category-header h3{margin:0; font-size:16px}
    .category-content{margin-top:12px}

    /* Grid of cards */
    .grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
    .card{background:var(--card); border-radius:12px; padding:16px; box-shadow:0 6px 20px rgba(2,6,23,0.04); border:1px solid rgba(2,6,23,0.03); display:flex; gap:12px; align-items:flex-start}
    .card .icon{flex:0 0 48px; height:48px;width: 50px; border-radius:10px; display:grid; place-items:center; background:linear-gradient(135deg,var(--accent),var(--accent-2)); color:white}
    .card h4{margin:0 0 6px; font-size:25px}
    .card p{margin:0; color:var(black); font-size:13px}
    .card a{margin-left:auto; color:var(--accent-2); text-decoration:none; font-weight:600}

    /* Responsive */
    @media (max-width:1000px){
      .grid{grid-template-columns:repeat(2,1fr)}
      :root{--max-width:920px}
    }
    @media (max-width:640px){
      .page{padding:14px}
      .row{flex-direction:column}
      .hero{min-height:26vh; padding:18px}
      .controls{flex-direction:column; gap:10px}
      .grid{grid-template-columns:1fr}

      /* Accordion behavior: collapse category & show cards inside */
      .category-content{display:none}
      .category.open .category-content{display:block}
    }

    /* small helpers */
    /* .muted{color:var(--muted)}
    .tag{display:inline-block; padding:6px 8px; border-radius:999px; background:#000000; font-size:12px; margin-right:8px}
    footer{margin-top:28px; text-align:center; color:var(--muted); font-size:13px}
    */

     /* NAVBAR */
 
.navbar {
  background: #000;
  height: 80px;
  padding: 0 20px;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* DESKTOP MENU (FIXED ALIGNMENT) */
.desktop-menu {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.desktop-menu .nav-item {
  list-style: none;
}

.desktop-menu .nav-link {
  color: #f1f1f1 !important;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
  padding: 0 !important;
  line-height: normal !important;
}

/* Hover underline */
.desktop-menu .nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f3c623d0;
  transition: width 0.3s ease;
}

.desktop-menu .nav-link:hover::after {
  width: 100%;
}


/* BRAND AREA */
.brand-area {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 60px;
  width: auto;
  margin-right: 12px;
}

.brand-text {
    padding-top: 8px;
  font-family: "Lexend Peta", sans-serif;
  display: flex;
  flex-direction: column;
  line-height: 18px;
}

.brand-title {
    padding-top: 4px;
     font-size: 30px; /* 26px*/
  /* font-weight: 300; */
  color:#debf5b;;
  letter-spacing: 1px;
}

.brand-subtitle {
  font-size: 13px;
  color: #fff9eb;
  margin-top: 1px;/* -2px*/
}

/* MOBILE MENU ICON */
.menu-icon {
  font-size: 25px; /* 35px*/
  color: #d8a114;
  cursor: pointer;
  display: none;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}


/* FORCE MOBILE HIDE — IMPORTANT FIX */
@media (max-width: 1000px) {
  .desktop-menu {
    display: none !important;
  }
  .menu-icon {
    display: block !important;
  }
  .brand-title {
    padding-top: 4px;
   font-size: 20px; /* 26px*/
  /* font-weight: 700; */
  color: #f8db7d;
  letter-spacing: 1px;
}

.brand-subtitle {
  font-size: 8px;
  color: #fff9eb;
  margin-top: 0px;/* -2px*/
}


}

/* SIDE MENU (Mobile Drawer) */
.side-menu {
  height: 100%;
  width: 260px;
  position: fixed;
  top: 0;
  right: 0;
  background: #000000;
  overflow-y: auto;
  padding-top: 80px;
  z-index: 999999;
  
  /* OLD: width transition → REMOVE */
  /* transition: 0.4s ease; */

  /* NEW SMOOTH ANIMATION */
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 0.9, 0.36, 1);
}

/* When opened */
.side-menu.open {
  transform: translateX(0);
}


/* Side menu links */
.side-menu a {
  padding: 15px 30px;
  font-size: 20px;
  color: #fff;
  display: block;
  text-decoration: none;
}

.side-menu a:hover {
  /* background: #0b740f; */
  color: #e1b532;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 35px;
  color: white;
  cursor: pointer;
  z-index: 1000000;
}

 
/*  Hero Section */
.service-hero {
  position: relative;
  height: 70vh;
  background-color: black ;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
}

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

.service-hero-content {
  position: relative;
  z-index: 5;
  max-width: 700px;
}

.service-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.service-btn {
  padding: 12px 25px;
  background: #eacd4d;
  color: white;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
/* ---------- Hero ---------- */
.service-hero{
  background: linear-gradient(rgba(0, 0, 0, 0.458), rgba(0, 0, 0, 0.75)),
              url('/static/img/ser.jpg') center/cover no-repeat;
  color: #ffffff;
  padding: 100px 20px;
  height: 400px;
}

.category-header{
  border-color: #b8961f;
  border-width: 3px;
}


.service-btn:hover {
  background: #f1c500;
}

/* Mobile Responsive */

@media (max-width: 1000px) {
  .service-hero {
    height:350px;
    padding: 15px;
  }
  .service-hero-content h1 {
    font-size: 2rem;
  }

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

.service-img {
  width: 90px;
  height: auto;
  margin-bottom: 20px;
}

/* --- CTA --- */
.need-exchange-section {
    background-color: rgb(0, 0, 0);
    text-align: center;  
    color: #f5f5f5;     /* Centers text + button */
    padding: 40px 20px;
}

.need-exchange-section h2 {
    margin-bottom: 10px;
}

.need-exchange-section p {
    margin-bottom: 20px;
}

.need-exchange-btn {
    display: inline-block;
    background-color: #d4b24d;  /* Your gold color */
    color: #0a0a0a;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}