/* Digital Registry — public marketing site */
:root {
    --dr-navy: #0c2340;
    --dr-navy-deep: #071628;
    --dr-blue: #1a5f9e;
    --dr-blue-light: #2d7bc4;
    --dr-gold: #b8860b;
    --dr-gold-soft: #f5e6c8;
    --dr-slate: #475569;
    --dr-muted: #64748b;
    --dr-border: #e2e8f0;
    --dr-surface: #f8fafc;
    --dr-white: #ffffff;
    --dr-shadow: 0 4px 24px rgba(12, 35, 64, 0.08);
    --dr-shadow-lg: 0 20px 50px rgba(12, 35, 64, 0.12);
    --dr-radius: 12px;
    --dr-radius-lg: 20px;
    --header-h: 76px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.marketing-body {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dr-navy);
    background: var(--dr-white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    border-bottom-color: var(--dr-border);
    box-shadow: 0 4px 20px rgba(12, 35, 64, 0.06);
}

.site-header .navbar {
    padding: 0.85rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--dr-blue), var(--dr-navy));
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--dr-navy);
    letter-spacing: -0.02em;
}

.brand-tagline {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--dr-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.site-header .nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dr-slate);
    padding: 0.5rem 0.9rem !important;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--dr-blue);
}

.site-header .nav-link.active {
    background: rgba(26, 95, 158, 0.08);
}

.btn-site-primary {
    background: linear-gradient(135deg, var(--dr-blue), var(--dr-navy));
    border: none;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.55rem 1.25rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(26, 95, 158, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-site-primary:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(26, 95, 158, 0.35);
}

.btn-site-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.55rem 1.35rem;
    border-radius: 10px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-site-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}

.btn-site-light {
    background: #fff;
    color: var(--dr-navy);
    font-weight: 700;
    border: none;
    padding: 0.55rem 1.35rem;
    border-radius: 10px;
    box-shadow: var(--dr-shadow);
    transition: transform 0.2s ease;
}

.btn-site-light:hover {
    color: var(--dr-blue);
    transform: translateY(-1px);
}

/* Hero */
.hero-main {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 3rem) 0 4rem;
    background: linear-gradient(145deg, var(--dr-navy-deep) 0%, var(--dr-navy) 45%, #123a5c 100%);
    overflow: hidden;
}

.hero-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(45, 123, 196, 0.25), transparent),
        radial-gradient(ellipse 50% 40% at 0% 100%, rgba(184, 134, 11, 0.12), transparent);
    pointer-events: none;
}

.hero-main .container {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-eyebrow i {
    color: var(--dr-gold-soft);
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.hero-title .highlight {
    color: #7ec8f0;
}

.hero-lead {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2.5rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 600;
}

.hero-trust-item i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--dr-gold-soft);
}

.hero-visual {
    position: relative;
}

.hero-image-wrap {
    border-radius: var(--dr-radius-lg);
    overflow: hidden;
    box-shadow: var(--dr-shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.hero-image-wrap--dashboard img {
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: top left;
}

.hero-float-card {
    position: absolute;
    bottom: -20px;
    left: -24px;
    background: #fff;
    border-radius: var(--dr-radius);
    padding: 1rem 1.25rem;
    box-shadow: var(--dr-shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 240px;
}

.hero-float-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #15803d;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
}

.hero-float-card strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dr-navy);
}

.hero-float-card span {
    font-size: 0.78rem;
    color: var(--dr-muted);
}

/* Page hero (inner pages) */
.page-hero {
    padding: calc(var(--header-h) + 3.5rem) 0 3.5rem;
    background: linear-gradient(160deg, var(--dr-navy-deep), var(--dr-navy));
    color: #fff;
    text-align: center;
}

.page-hero .eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dr-gold-soft);
    margin-bottom: 0.75rem;
}

.page-hero h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--dr-surface);
}

.section-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-heading .eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dr-blue);
    margin-bottom: 0.6rem;
}

.section-heading h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--dr-navy);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.section-heading p {
    color: var(--dr-muted);
    margin: 0;
}

/* Cards */
.dr-card {
    background: #fff;
    border: 1px solid var(--dr-border);
    border-radius: var(--dr-radius-lg);
    padding: 1.75rem;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dr-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dr-shadow-lg);
    border-color: rgba(26, 95, 158, 0.2);
}

.dr-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    color: #fff;
    background: linear-gradient(135deg, var(--dr-blue), var(--dr-blue-light));
    margin-bottom: 1.25rem;
}

.dr-card h3,
.dr-card h4,
.dr-card h5 {
    font-weight: 700;
    color: var(--dr-navy);
    margin-bottom: 0.5rem;
}

.dr-card p {
    color: var(--dr-muted);
    margin: 0;
    font-size: 0.94rem;
}

/* Stats */
.stats-bar {
    background: #fff;
    border-top: 1px solid var(--dr-border);
    border-bottom: 1px solid var(--dr-border);
    padding: 2.5rem 0;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 0.5rem;
}

.stat-value {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--dr-blue);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dr-muted);
    margin-top: 0.25rem;
}

/* Process steps */
.process-step {
    text-align: center;
    position: relative;
}

.process-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dr-blue), var(--dr-navy));
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    display: grid;
    place-items: center;
    margin: 0 auto 1rem;
}

.process-step h5 {
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--dr-muted);
    margin: 0;
}

/* Testimonial */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--dr-border);
    border-radius: var(--dr-radius-lg);
    padding: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    line-height: 1;
    color: var(--dr-blue);
    opacity: 0.15;
    font-family: Georgia, serif;
}

.testimonial-card blockquote {
    font-size: 1.05rem;
    color: var(--dr-slate);
    margin: 0 0 1.25rem;
    padding-top: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dr-surface), var(--dr-border));
    display: grid;
    place-items: center;
    color: var(--dr-blue);
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--dr-muted);
}

/* FAQ */
.faq-item {
    background: #fff;
    border: 1px solid var(--dr-border);
    border-radius: var(--dr-radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 0.75rem;
}

.faq-item h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dr-navy);
    margin-bottom: 0.35rem;
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--dr-muted);
    margin: 0;
}

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, var(--dr-navy), var(--dr-blue));
    border-radius: var(--dr-radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    color: #fff;
}

.cta-band h2 {
    font-weight: 800;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    margin-bottom: 0.75rem;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Property cards */
.property-card-pro {
    background: #fff;
    border: 1px solid var(--dr-border);
    border-radius: var(--dr-radius-lg);
    overflow: hidden;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.property-card-pro:hover {
    transform: translateY(-4px);
    box-shadow: var(--dr-shadow-lg);
}

.property-card-pro .card-img-top {
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
}

.property-card-pro .card-body {
    padding: 1.25rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.status-badge.verified {
    background: #dcfce7;
    color: #166534;
}

.status-badge.pending {
    background: #fef3c7;
    color: #b45309;
}

.status-badge.review {
    background: #e0f2fe;
    color: #0369a1;
}

/* Search panel */
.search-panel {
    background: #fff;
    border: 1px solid var(--dr-border);
    border-radius: var(--dr-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--dr-shadow);
}

.search-panel .form-control,
.search-panel .form-select {
    border-radius: 10px;
    border-color: var(--dr-border);
    min-height: 46px;
    font-size: 0.92rem;
}

.search-panel .form-control:focus,
.search-panel .form-select:focus {
    border-color: var(--dr-blue);
    box-shadow: 0 0 0 3px rgba(26, 95, 158, 0.12);
}

/* Contact */
.contact-info-card {
    background: var(--dr-surface);
    border-radius: var(--dr-radius-lg);
    padding: 1.75rem;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 1.25rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item .icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    color: var(--dr-blue);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: var(--dr-shadow);
}

.contact-form-card {
    background: #fff;
    border: 1px solid var(--dr-border);
    border-radius: var(--dr-radius-lg);
    padding: 2rem;
}

.contact-form-card .form-control {
    border-radius: 10px;
    min-height: 48px;
}

.map-placeholder {
    background: var(--dr-surface);
    border: 2px dashed var(--dr-border);
    border-radius: var(--dr-radius-lg);
    padding: 3rem;
    text-align: center;
    color: var(--dr-muted);
}

/* Detail page */
.detail-gallery img {
    border-radius: var(--dr-radius);
}

.detail-panel {
    background: var(--dr-surface);
    border-radius: var(--dr-radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}

.detail-panel h5 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: var(--dr-navy);
}

.detail-panel p {
    margin-bottom: 0.35rem;
    font-size: 0.92rem;
    color: var(--dr-slate);
}

.detail-panel p:last-child {
    margin-bottom: 0;
}

/* Team card */
.team-card {
    text-align: center;
}

.team-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dr-surface), #e0f2fe);
    color: var(--dr-blue);
    display: grid;
    place-items: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
}

/* Footer */
.site-footer {
    background: var(--dr-navy-deep);
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 0 0;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-brand .brand-name {
    font-weight: 800;
    font-size: 1.15rem;
    color: #fff;
}

.footer-about {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    max-width: 320px;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.8);
    transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
    background: var(--dr-blue);
    color: #fff;
}

.footer-heading {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.65rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact i {
    color: var(--dr-gold-soft);
    margin-top: 3px;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
}

.footer-bottom small {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .hero-float-card {
        display: none;
    }

    .hero-visual {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: 3.5rem 0;
    }

    .hero-main {
        min-height: auto;
        padding-bottom: 3rem;
    }
}
