/* 🎨 Paleta de Colores Pacific Inmobiliaria */
:root {
    /* Azules */
    --blue-pacific: #0F2D46;
    --blue-secondary: #1F4E6B;
    --blue-dark: #0A1F33;
    /* Dorados del Logo */
    --gold-main: #CFA75B;
    --gold-light: #F2D38A;
    --gold-dark: #A67C2E;
    /* Neutrales */
    --tony-bg: #F8FAFC;
    --tony-white: #FFFFFF;
    --tony-text: #111827;
    --tony-muted: #6B7280;
    --tony-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    background-color: var(--tony-bg);
    color: var(--tony-text);
    font-family: 'Inter', 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

/* Navbar Pacific */
.navbar-pacific {
    background-color: var(--blue-pacific) !important;
    border-bottom: 4px solid var(--gold-main);
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.navbar-pacific .navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold-light) !important;
    font-family: 'Playfair Display', serif;
}

.navbar-pacific .nav-link {
    color: var(--tony-white) !important;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin: 0 10px;
    transition: color 0.3s;
}

.navbar-pacific .nav-link:hover {
    color: var(--gold-main) !important;
}

/* Hero Home */
.hero-home {
    background: linear-gradient(rgba(15, 45, 70, 0.85), rgba(10, 31, 51, 0.95)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1373&q=80');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
}

/* Estilos de Ficha Técnica */
.property-header {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.property-price {
    color: var(--gold-dark);
    font-size: 2.2rem;
    font-weight: 800;
}

.section-title {
    color: var(--blue-pacific);
    border-left: 5px solid var(--gold-main);
    padding-left: 15px;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Botones */
.btn-gold, .btn-cta {
    background-color: var(--tony-gold) !important;
    border-color: var(--tony-gold-dark) !important;
    color: var(--tony-white) !important;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
}

.btn-main {
    background-color: var(--tony-blue-pacific) !important;
    color: white !important;
    border-radius: 50px;
}

/* Galería de Ficha */
.main-property-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--tony-shadow);
}

.thumb-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.thumb-img:hover { opacity: 0.8; }

/* Footer */
.footer-pacific {
    background-color: var(--tony-blue-dark);
    color: #cbd5e1;
    padding: 60px 0 20px;
    border-top: 5px solid var(--tony-gold);
}

.footer-pacific h5 {
    color: var(--tony-gold);
    font-family: 'Playfair Display', serif;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
}

/* Filtros y Formuarios */
.border-gold-focus:focus {
    border-color: var(--gold-main) !important;
    box-shadow: 0 0 0 0.25rem rgba(207, 167, 91, 0.25) !important;
}

.filters-section {
    border-top: 1px solid #eee;
    transition: all 0.3s ease;
}

.input-group-text {
    border-color: #dee2e6;
    background-color: #f8f9fa;
    color: var(--tony-muted);
}

/* Badges y Colores de Estatus */
.badge.bg-gold { background-color: var(--gold-main) !important; color: white !important; }
.text-pacific { color: var(--blue-pacific) !important; }