/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--gold-glow);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 16px 32px;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
}

/* ========== HERO BADGE ========== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* ========== AI BADGE ========== */
.ai-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--navy-deep);
    padding: 4px 10px;
    background: var(--gold);
    border-radius: 4px;
}

/* ========== HIGHLIGHT ========== */
.highlight {
    color: var(--gold);
}

/* ========== CITIES DROPDOWN ========== */
.cities-dropdown {
    display: none;
}

/* ========== CITIES MODAL ========== */
.cities-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cities-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cities-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--navy-deep);
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 32px;
    z-index: 9991;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-width: 700px;
    width: 90vw;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

.cities-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* ========== MODAL HEADER ========== */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.modal-dot.available {
    background: var(--gold);
    box-shadow: 0 0 12px rgba(201, 162, 39, 0.6);
}

.modal-dot.claimed {
    background: #22c55e;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
}

.modal-close {
    width: 36px;
    height: 36px;
    background: var(--navy-mid);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--gray-400);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
}

/* ========== MODAL GRID ========== */
.modal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.modal-column {
    min-width: 0;
}

.column-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.modal-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-column li {
    font-size: 0.85rem;
    color: var(--gray-400);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}

.modal-column li:last-child {
    border-bottom: none;
}

.modal-column li:hover {
    color: var(--white);
}

/* ========== CLAIMED LIST ========== */
.claimed-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.claimed-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--navy-mid);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.claimed-item-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
}

.claimed-item-info {
    flex: 1;
}

.claimed-item-city {
    font-weight: 600;
    font-size: 0.95rem;
}

.claimed-item-partner {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ========== CLAIMED ITEM (DUPLICATE BLOCK) ========== */
.claimed-item {
    background: var(--navy-mid);
    border-radius: 8px;
    padding: 12px 16px;
}

.claimed-city {
    font-weight: 600;
    font-size: 0.95rem;
    color: #22c55e;
    margin-bottom: 2px;
}

.claimed-partner, .claimed-status {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.claimed-status {
    color: var(--green);
}

/* ========== CONTACT FORM ========== */
.contact-form {
    background: var(--navy-mid);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--navy-deep);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-dim);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-600);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.form-submit {
    width: 100%;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--gold-glow);
}
