/* BRAND COLORS */
:root {
    --navy: #0a192f;
    --dark-navy: #020c1b;
    --gold: #ffd700;
}

/* NAV LINKS PREMIUM HOVER */
.navbar .nav-link {
    position: relative;
    color: #ccc;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--gold);
}

/* underline animation */
.navbar .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--gold);
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.navbar .nav-link:hover::after {
    width: 100%;
}

.btn-gold {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--dark-navy);
    transition: all 0.3s ease;
}

/* PREMIUM HOVER */
.btn-gold:hover {
    background-color: rgba(255, 215, 0, 0.85);
    color: var(--dark-navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}
.signup-glow {
    background-color: var(--gold);
    color: var(--dark-navy);
    border: none;
    padding: 5px 25px; 
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.bg-navy {
    background-color: var(--navy) !important;
}

.bg-dark-navy {
    background-color: var(--dark-navy) !important;
}

.text-gold {
    color: var(--gold) !important;
}

.text-navy {
    color: var(--dark-navy) !important;
}

.border-gold-subtle {
    border-color: rgba(255, 215, 0, 0.15) !important;
}

/* HERO */
.hero {
    height: 85vh;
background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),

        url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2') center/cover;
}

/* BUTTONS */
/* BUTTON BASE */
.btn-gold {
    background: linear-gradient(135deg, #ffd700, #e6c200);
    border: none;
    color: #020c1b;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* BUTTON HOVER (PREMIUM EFFECT) */
.btn-gold:hover {
    transform: translateY(-5px) scale(1.05) rotate(1deg);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.8);
    color: #020c1b;
    animation: buttonPulse 0.6s ease-in-out;
}

/* CATCHY PULSE ANIMATION */
@keyframes buttonPulse {
    0% { transform: translateY(-5px) scale(1.05) rotate(1deg); }
    50% { transform: translateY(-8px) scale(1.08) rotate(-1deg); }
    100% { transform: translateY(-5px) scale(1.05) rotate(1deg); }
}

/* EXTRA CATCHY LOGIN BUTTON */
.btn-login-catchy {
    position: relative;
}

.btn-login-catchy::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-login-catchy:hover::after {
    width: 300px;
    height: 300px;
}

/* SUBTLE SHINE EFFECT */
.btn-gold::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-gold:hover::before {
    left: 100%;
}
.signup-upgrade {
    background-color: var(--gold);
    color: var(--dark-navy);
    border: none;
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}
/* THE PREMIUM SIGNUP GLOW */
.signup-glow:hover {
    background-color: rgba(255, 215, 0, 0.1) !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

/* CARDS & STATS */
/* GLASSMORPHIC PROPERTY CARDS */
.card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
}

/* CARD IMAGE */
.card img {
    height: 200px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* CARD HOVER */
.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* IMAGE ZOOM EFFECT */
.card:hover img {
    transform: scale(1.05);
}

/* BIGGER PROPERTY CARDS */
.card {
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(12px);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s ease;
}

/* IMAGE */
.card img {
    height: 230px;
    object-fit: cover;
}

/* HOVER */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* FILTER BAR */
.form-control {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #fff;
}

.form-control:focus {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* CONTACT PAGE BRIGHTER WORDING */
.contact-page h1,
.contact-page h2,
.contact-page h5,
.contact-page p,
.contact-page label {
    color: #fff8dc !important;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.24), 0 0 24px rgba(255, 255, 255, 0.08);
}

.contact-page .hero .display-4 {
    text-shadow: 0 0 22px rgba(255, 255, 255, 0.25), 0 0 34px rgba(255, 215, 0, 0.18);
}

.contact-page .card {
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.08);
}

.contact-page .form-control {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-page .form-control:focus {
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.18);
    border-color: rgba(255, 215, 0, 0.35);
}

/* GLOBAL FOOTER */
.footer {
    background: rgba(2, 12, 27, 0.92);
    border-top: 1px solid rgba(255, 215, 0, 0.12);
    color: #dcdcdc;
}

.footer a {
    color: var(--gold);
    text-decoration: none;
}

.footer a:hover {
    color: #ffffff;
}

.footer .footer-links li + li {
    margin-top: 0.75rem;
}

.footer .footer-copy {
    color: rgba(255, 255, 255, 0.65);
}

.footer .footer-heading {
    letter-spacing: 0.04em;
}

