:root {
    --primary: #e6005c;
    --primary-hover: #cc0052;
    --dark-bg: #14141f;
    --card-bg: #ffffff;
    --body-bg: #faf8f5;
    --border-color: #eaeaea;
    --gold: #ffcc00;
    --whatsapp: #25D366;
    --text-dark: #1f1f2e;
    --text-muted: #66667a;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--body-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header UI Elements */
.site-header {
    background-color: var(--dark-bg);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-link img {
    height: 45px;
    width: auto;
    display: block;
}

.nav-utilities {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-btn {
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 6px;
    color: #fff;
    transition: background 0.2s;
}

.btn-secondary { background-color: rgba(255,255,255,0.1); }
.btn-secondary:hover { background-color: rgba(255,255,255,0.2); }
.btn-primary { background-color: var(--primary); }
.btn-primary:hover { background-color: var(--primary-hover); }

/* Hero Component & Search Parameters */
.hero-deck {
    background: linear-gradient(180deg, #1d1d2e 0%, var(--dark-bg) 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.hero-deck h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.hero-deck p {
    color: #b0b0c0;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.search-wrapper {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    background: #fff;
    border-radius: 30px;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.search-wrapper input {
    border: none;
    padding: 12px 20px;
    width: 100%;
    font-size: 15px;
    border-radius: 30px;
    outline: none;
    color: #333;
}

.search-wrapper button {
    background: var(--primary);
    border: none;
    color: white;
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
}

/* Master Structure Definitions */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-bg);
}

/* Premium Listings Uniform Strips Interface */
.listings-grid-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.listing-strip-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.vvip-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    color: #000;
    font-weight: 800;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 2;
}

.card-image-box {
    width: 100%;
    height: 250px;
    background: #e5e5f0;
    position: relative;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-details-box {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.card-anchor {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-bg);
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
    padding-right: 90px;
}

.card-anchor:hover { color: var(--primary); }

.card-snippet {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.meta-pill {
    background: #f0f0f5;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 500;
    color: #445;
}

.meta-pill.accentuate {
    background: #fff0f5;
    color: var(--primary);
    font-weight: 600;
}

/* Upper Right Contact Cluster Inside Strip Cards */
.card-inline-actions {
    position: absolute;
    top: 25px;
    right: 25px;
    display: flex;
    gap: 8px;
}

.action-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.action-dot.call { background-color: var(--primary); }
.action-dot.wa { background-color: var(--whatsapp); }

/* Layout Adjustments for Tablet / Desktop screens */
@media (min-width: 768px) {
    .listing-strip-card { flex-direction: row; height: 220px; }
    .card-image-box { width: 260px; height: 100%; }
}

/* Pill Grid Components */
.pill-scroller {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}

.scroller-pill {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
}

.scroller-pill.active, .scroller-pill:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Pricing Grid Structured View Matrix */
.pricing-matrix-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.matrix-tier {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.matrix-tier h3 { font-size: 20px; margin-bottom: 15px; }
.matrix-tier .cost { font-size: 32px; font-weight: 800; color: var(--primary); margin-bottom: 15px; }

/* FAQ Accordion */
.faq-accordion-box {
    margin-top: 25px;
}

.faq-node {
    background: white;
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-trigger {
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-panel {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out, padding 0.2s ease-out;
    color: var(--text-muted);
    font-size: 14px;
}

/* Detail Page Layout Specs */
.split-deck {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 992px) {
    .split-deck { grid-template-columns: 2fr 1fr; }
}

.deck-main-body {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.deck-sidebar-body {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sticky-sidebar-node {
    background: white;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: sticky;
    top: 90px;
}

/* Structured Specification Table Matrix */
.spec-table-matrix {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.spec-table-matrix td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.spec-table-matrix td:first-child { font-weight: 600; color: var(--text-muted); }
.spec-table-matrix td:last-child { text-align: right; font-weight: 700; }

/* Interactive Gallery Flex Wrapper */
.showcase-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.showcase-gallery img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

/* Absolute Global Viewport Floating Trigger Layout Nodes */
.viewport-floating-node {
    position: fixed;
    bottom: 25px;
    padding: 0 20px;
    height: 50px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    z-index: 9999;
    text-transform: uppercase;
}

.float-call { left: 25px; background-color: var(--primary); }
.float-wa { right: 25px; background-color: var(--whatsapp); }

/* Dashboard forms & structures */
.admin-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 14px; }
.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

/* Breadcrumb Navigation styling */
.breadcrumb-nav {
    padding: 12px 0;
    font-size: 13px;
    color: var(--text-muted);
}
.breadcrumb-nav a { color: var(--primary); text-decoration: none; font-weight: 500; }
.breadcrumb-nav span { padding: 0 8px; }