/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0f172a;
    color: #f1f5f9;
    line-height: 1.6;
}


.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* ===== NAVBAR ===== */
.navbar {
    background: #020617;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

/* LOGO */
.logo img {
    height: 39px;
}

/* MENU */
.menu {
    display: flex;
    gap: 25px;
}



.menu a {
    text-decoration: none;
    color: #cbd5f5;
    font-weight: 500;
    transition: 0.3s;
}

.menu a:hover {
    color: #22c55e;
}

/* BUTTONS */
.nav-right {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    border: 1px solid #334155;
    transition: 0.3s;
}

.btn:hover {
    background: #1e293b;
}

.btn.primary {
    background: #22c55e;
    border: none;
    color: #022c22;
    font-weight: 600;
}

.btn.primary:hover {
    background: #16a34a;
}

/* MODEL */
.model {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  height: 260px;
  z-index: 3;
}

/* CENTER TEXT */
.center-text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  z-index: 3;
}

/* BUBBLE BASE */
.bubble {
  position: absolute;
  padding: 10px 16px;
  border-radius: 25px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  z-index: 2;
}

/* LEFT SIDE */
.b1 {
  top: 40px;
  left: 90px;
  transform: rotate(-8deg);
}

.b2 {
  top: 190px;
  left: 40px;
  transform: rotate(6deg);
}

.b3 {
  bottom: 110px;
  left: 110px;
  transform: rotate(-5deg);
}

/* RIGHT SIDE */
.b4 {
  top: 50px;
  right: 90px;
  transform: rotate(8deg);
}

.b5 {
  top: 210px;
  right: 40px;
  transform: rotate(-6deg);
}

.b6 {
  bottom: 120px;
  right: 110px;
  transform: rotate(5deg);
}

/* FLOATING ICONS */
.icon {
  position: absolute;
  font-size: 20px;
  opacity: 0.8;
  z-index: 1;
}

.i1 {
  top: 130px;
  right: 200px;
}

.i2 {
  bottom: 150px;
  left: 200px;
}

.i3 {
  top: 90px;
  left: 300px;
}

@media (max-width: 768px) {

  .hero {
    height: auto;
    padding: 40px 20px;
  }

  .model {
    position: relative;
    top: 0;
    height: 200px;
    margin: auto;
    display: block;
  }

  .center-text {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    text-align: center;
    margin-top: 15px;
  }

  .bubble {
    position: relative;
    display: inline-block;
    margin: 6px;
    transform: none;
  }

  .icon {
    display: none;
  }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding: 100px 0;
    text-align: center;
    color: #fff;

    /* BACKGROUND IMAGE */
    background: url('/images/hero.jpg') center/cover no-repeat;
}

/* DARK OVERLAY */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(2 6 23 / 27%), rgb(2 6 23 / 55%))
    
}

/* CONTENT ABOVE OVERLAY */
.hero .container {
    position: relative;
    z-index: 2;
}

/* TEXT */
.hero h1 {
    font-size: 40px;
    font-weight: 700;
}

.hero p {
    margin-top: 10px;
    color: #cbd5f5;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}


.card {
    background: #020617;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card .content {
    padding: 15px;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.card p {
    font-size: 14px;
    color: #94a3b8;
}

/* ===== FOOTER ===== */
.footer {
    background: #020617;
    padding: 30px 0;
    margin-top: 50px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer p {
    color: #64748b;
    font-size: 14px;
}

/* ===== DARK MODE SUPPORT ===== */
.dark body {
    background: #020617;
}

/* ===== MOBILE ===== */
@media(max-width: 768px) {
    .menu {
        display: none;
    }

    .hero h1 {
        font-size: 26px;
    }
}



.hero h1 {
    font-size: 40px;
    font-weight: 700;
    color: #f8fafc;
}

.hero p {
    margin-top: 10px;
    font-size: 16px;
    color: #dbb91a;
}

/* SEARCH BOX */
.hero-search {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero-search input {
    width: 300px;
    padding: 12px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: #020617;
    color: #fff;
}

.hero-search button {
    padding: 12px 20px;
    background: #22c55e;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #022c22;
}

.hero-search button:hover {
    background: #16a34a;
}

/* BUTTONS */
.hero-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* MOBILE */
@media(max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero-search {
        flex-direction: column;
        align-items: center;
    }

    .hero-search input {
        width: 90%;
    }

    .hero-buttons {
        flex-direction: column;
    }
}
.trust-strip {
    background: linear-gradient(to right, #020617, #0f172a);
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* CENTER CONTENT */
.strip-inner {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* ITEMS */
.item {
    color: #cbd5f5;
    font-size: 14px;
    position: relative;
    padding-left: 18px;
}

/* DOT BEFORE TEXT */
.item::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 6px;
}

/* MAKE INNER HIDDEN */
.strip-inner {
    overflow: hidden;
    white-space: nowrap;
}

/* TRACK MOVES */
.track {
    display: inline-flex;
    gap: 50px;
    animation: scrollMove 25s linear infinite;
}

/* ANIMATION */
@keyframes scrollMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0a0a0a;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* ===== MAIN LAYOUT ===== */
.main-container {
  display: grid;
  grid-template-columns: 250px 1fr 280px;
  gap: 20px;
  padding: 20px;
}

/* ===== SIDEBARS ===== */
.left-sidebar,
.right-sidebar {
  position: sticky;
  top: 20px;
  height: fit-content;
}

/* ===== FILTER BOX ===== */
.filter-box {
  background: #111;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255,0,0,0.2);
}

.filter-box input {
  width: 100%;
  padding: 8px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: none;
  background: #1a1a1a;
  color: #fff;
}

.filter-box a {
  display: block;
  padding: 6px 0;
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.filter-box a:hover {
  color: #ff2a2a;
}

/* ===== PROFILE LIST ===== */
.profile-list {
  display: flex;
  flex-direction: column;
}

/* ===== PROFILE CARD ===== */
.profile-card {
  display: flex;
  background: #111;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255,0,0,0.2);
  overflow: hidden;
  transition: 0.3s;
}

.profile-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(255,0,0,0.3);
}

.profile-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.profile-card .info {
  padding: 12px;
  flex: 1;
}

.profile-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.profile-card p {
  font-size: 13px;
  margin-bottom: 5px;
  color: #ccc;
}

.profile-card .price {
  color: #ff2a2a;
  font-weight: 600;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  margin-top: 6px;
  padding: 6px 10px;
  background: #ff2a2a;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 13px;
  transition: 0.3s;
}

.btn:hover {
  background: #cc0000;
}

/* ===== RIGHT SIDEBAR ===== */
.right-box {
  background: #111;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255,0,0,0.2);
}

.right-box h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

/* ===== MINI PROFILE ===== */
.mini-profile {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.mini-profile img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.mini-profile strong {
  font-size: 14px;
}

.mini-profile div {
  font-size: 12px;
  color: #ccc;
}

/* ===== STATS ===== */
.right-box p {
  font-size: 13px;
  margin: 6px 0;
  color: #ddd;
}



.hero h1 {
  font-size: 26px;
  margin-bottom: 10px;
}

.hero p {
  color: #ccc;
  margin-bottom: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .main-container {
    grid-template-columns: 1fr;
  }

  .left-sidebar,
  .right-sidebar {
    position: relative;
    top: 0;
  }

  .profile-card {
    flex-direction: column;
  }

  .profile-card img {
    width: 100%;
    height: 200px;
  }
}

/* ===== MOBILE FIX (CLEAN) ===== */
@media (max-width: 900px) {

  .main-container {
    display: flex !important;
    flex-direction: column;
    padding: 10px;
    gap: 15px;
  }

  /* ORDER FIX */
  .left-sidebar {
    order: 1;
  }

  .profile-list {
    order: 2;
  }

  .right-sidebar {
    order: 3;
  }

  /* FULL WIDTH */
  .left-sidebar,
  .right-sidebar,
  .profile-list {
    width: 100%;
    position: relative;
    top: 0;
  }

  /* FILTER BOX CLEAN */
  .filter-box {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .filter-box a {
    flex: 1 1 48%;
    background: #1a1a1a;
    padding: 8px;
    text-align: center;
    border-radius: 6px;
    font-size: 12px;
  }

  /* PROFILE CARD */
  .profile-card {
    flex-direction: column;
  }

  .profile-card img {
    width: 100%;
    height: 200px;
  }

  /* BUTTON FULL WIDTH */
  .btn {
    width: 100%;
    text-align: center;
  }

}

/* CARD */
.pro-card {
  display: flex;
  background: #0b0f1a; /* dark navy */
  border-radius: 16px;
   /* ⭐ PERMANENT GOLD BORDER */
  border: 1.5px solid #c9a54c;
  overflow: hidden;
  max-width: 900px;
  transition: 0.3s;
}

/* HOVER */
.pro-card:hover {
  border-color: #c9a54c; /* gold */
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* IMAGE */
.pro-img {
  width: 180px;
  position: relative;
}

.pro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PRO RIBBON (GOLD) */
.ribbon {
  position: absolute;
  top: 10px;
  left: -35px;
  background: linear-gradient(135deg, #c9a54c, #f5d97b);
  color: #000;
  padding: 6px 40px;
  transform: rotate(-45deg);
  font-size: 11px;
  font-weight: 700;
}

/* BADGES */
.badges span {
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 6px;
  color: white;
}

.trusted {
  background: #1e40af;
}

.verified {
  background: #16a34a;
}

/* DIAMOND STRIP */
.bottom-strip {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, #c9a54c, #f5d97b);
  color: #000;
  text-align: center;
  padding: 6px;
  font-size: 12px;
  font-weight: 700;
}

/* CONTENT */
.pro-content {
  flex: 1;
  padding: 16px;
}

/* TITLE */
.title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

/* DESCRIPTION */
.desc {
  font-size: 14px;
  color: #b8c1cc;
  margin: 8px 0;
}

/* LOCATION */
.location {
  font-size: 14px;
  color: #22c55e;
}

/* META */
.meta {
  margin-top: 6px;
  font-size: 13px;
  color: #9ca3af;
}
/* BOTTOM ROW LAYOUT */
.bottom-row {
  margin-top: 12px;
  display: flex;
  justify-content: space-between; /* ⭐ key */
  align-items: center;
}

/* PRICE */
.price {
  font-size: 16px;
  font-weight: 600;
  color: #e5e7eb;
}

.price span {
  font-size: 12px;
  color: #9ca3af;
}
/* BUTTON */
.hire {
  margin-top: 12px;
  background: linear-gradient(135deg, #c9a54c, #f5d97b);
  color: #000;
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.hire:hover {
  opacity: 0.9;
}



/* NORMAL CARD (REMOVE PREMIUM LOOK) */
.pro-card.normal {
  border: 1px solid rgba(255,255,255,0.06); /* no gold */
  box-shadow: none;
}

/* REMOVE GOLD HOVER */
.pro-card.normal:hover {
  border-color: rgba(255,255,255,0.1);
  box-shadow: none;
}

/* HIDE PREMIUM ELEMENTS IF PRESENT */
.pro-card.normal .ribbon,
.pro-card.normal .bottom-strip {
  display: none;
}

.booked {
  background: #999;
  color: #fff;
  padding: 10px 15px;
  border: none;
  cursor: not-allowed;
  border-radius: 6px;
}

.hire {
  background: #d4af37;
  color: #000;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 6px;
}
.pro-img {
  position: relative;
}

.views-badge {
  position: absolute;
  top: 10px;
  right: 10px;

  background: rgba(0,0,0,0.7);
  color: #fff;

  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;

  backdrop-filter: blur(4px);
}

.filter-box button {
    display: block;          /* full width */
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 8px;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;

    color: #cbd5e1;
    font-size: 14px;
    text-align: left;

    cursor: pointer;
    transition: 0.2s;
}

/* hover */
.filter-box button:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

/* active (selected filter) */
.filter-box button.active {
    background: #f5c518;
    color: #000;
    font-weight: 600;
}

@media (max-width: 768px) {

    .filter-box {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .filter-box button {
        width: calc(50% - 4px); /* 2 buttons per row */
        margin-bottom: 0; /* gap handles spacing */
    }

}

@media (max-width: 768px) {

    .pro-card {
        display: flex;
        gap: 10px;
    }

    .pro-img {
        flex: 0 0 40%;
        max-width: 40%;
    }

    .pro-content {
        flex: 0 0 60%;
        max-width: 60%;
    }

    .pro-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }


}

@media (max-width: 768px) {

    .hero-buttons {
        display: flex !important;
        flex-direction: row !important; /* 🔥 force same row */
        gap: 10px;
    }

    .hero-buttons a {
        flex: 1;
        text-align: center;
    }

}