:root {
    --gold: #c9a24a;
    --gold-grad: linear-gradient(135deg, #c9a24a 0%, #ecd48a 100%);
}

.bg-black { background-color: #050505; }

/* Hero Section */
.location-hero {
    background: radial-gradient(circle at top, rgba(201, 162, 74, 0.1), transparent);
    border-bottom: 1px solid rgba(201, 162, 74, 0.1);
}

/* Main Location Card */
.location-main-card {
    background: #111;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    transition: 0.4s ease;
}

.location-main-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-grad);
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 10;
}

.map-wrapper iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(0.9);
}

/* Spot Cards */
.spot-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 20px;
    transition: 0.3s;
}

.spot-card:hover {
    background: rgba(201, 162, 74, 0.05);
    border-color: var(--gold);
    transform: translateX(10px);
}

.spot-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 162, 74, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
}

/* Helper Classes */
.border-dashed-gold {
    border: 2px dashed rgba(201, 162, 74, 0.3);
}

.btn-outline-gold-sm {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 5px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: 0.3s;
}

.btn-outline-gold-sm:hover {
    background: var(--gold);
    color: #000;
}

.text-gradient {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.location-card {
    background: #0f0f0f;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.4s;
}

.location-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.location-image {
    position: relative;
}

.location-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50px;
}

.status.active {
    background: #1f8f4d;
    color: #fff;
}

.status.hq {
    background: var(--gold-grad);
    color: #000;
}

.location-content {
    padding: 22px;
}

.location-content h5 {
    color: #fff;
    margin-bottom: 5px;
}

.location-type {
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.location-meta {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.location-meta li {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 6px;
}

.location-meta i {
    color: var(--gold);
    margin-right: 6px;
}

.cta-box {
    padding: 80px 40px;
    border-radius: 30px;
    background: radial-gradient(circle at top, rgba(201,162,74,0.12), #050505 60%);
    border: 1px solid rgba(201,162,74,0.35);
    box-shadow: 0 0 40px rgba(201,162,74,0.08);
}
.cta-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: #fff;
}

.cta-text {
    max-width: 600px;
    margin: 0 auto;
    color: #aaa;
    font-size: 1.05rem;
}

/* --- CTA Section Styles --- */

.cta-box {
    position: relative;
    padding: 100px 40px;
    border-radius: 40px;
    background: #0a0a0a; /* لون أسود عميق */
    border: 1px solid rgba(201, 162, 74, 0.2); /* حدود ذهبية شفافة */
    overflow: hidden;
    transition: 0.5s ease-in-out;
}

/* حركة عند تمرير الماوس على الصندوق */
.cta-box:hover {
    border-color: rgba(201, 162, 74, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(201, 162, 74, 0.1);
}

/* العنصر المضيء في الخلفية */
.cta-glow-element {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 162, 74, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: rotateGlow 15s linear infinite;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem; /* تكبير العنوان */
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -1px;
}

/* تدرج ذهبي للنصوص الهامة */
.text-gradient {
    background: linear-gradient(135deg, #c9a24a 0%, #ecd48a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-text {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    font-weight: 300;
}

/* تحسين زر Become a Partner */
.btn-gold-glow {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #c9a24a 0%, #ecd48a 100%);
    color: #000 !important;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(201, 162, 74, 0.3);
    transition: 0.4s;
}

.btn-gold-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(201, 162, 74, 0.5);
    filter: brightness(1.1);
}

/* دعم الهواتف */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
    .cta-box {
        padding: 60px 20px;
    }
}

.location-image{
  position: relative;
}

.status{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 14px;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;

  color: #fff !important;              /* أهم سطر */
  text-transform: uppercase;

  background: #16a34a;                 /* default */
  box-shadow: 0 8px 22px rgba(0,0,0,.28);
}

/* حسب status */
.status.active{ background: #16a34a; }
.status.temporary{ background: #f59e0b; }
.status.inactive{ background: #6b7280; }
