/* Partner / List Your Property — StayVista-inspired */
.page-partner {
    background: var(--sv-cream, #faf8f5);
}

/* Hero */
.pt-hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    background: var(--sv-dark, #141414);
    color: #fff;
    overflow: hidden;
}

.pt-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1613490493576-2f22e0f0a088?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.45;
}

.pt-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(20, 20, 20, 0.94) 0%, rgba(20, 20, 20, 0.78) 42%, rgba(20, 20, 20, 0.5) 100%);
}

.pt-hero-inner {
    position: relative;
    z-index: 1;
    padding: 3.5rem 0 4rem;
}

.pt-hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sv-gold, #c9a96e);
    margin-bottom: 0.75rem;
}

.pt-hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.12;
    margin-bottom: 1rem;
}

.pt-hero-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    max-width: 38rem;
    margin-bottom: 1.75rem;
}

.pt-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pt-hero-actions .sv-btn-gold {
    padding: 0.8rem 1.75rem;
}

.pt-hero-actions .sv-btn-outline {
    border-color: rgba(255, 255, 255, 0.65);
    color: #fff;
}

.pt-hero-actions .sv-btn-outline:hover {
    background: #fff;
    color: var(--sv-dark, #141414);
    border-color: #fff;
}

.pt-hero-login {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.pt-hero-login a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

/* Hero inquiry form card — compact like StayVista */
.pt-hero-form-wrap {
    max-width: 420px;
    margin-left: auto;
    margin-right: 0;
}

.pt-hero-form-card {
    background: #fdfaf5;
    border-radius: 4px;
    padding: 1.35rem 1.25rem 1.2rem;
    color: var(--sv-dark, #141414);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.pt-hero-form-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 600;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.pt-hero-form {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.pt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
}

.pt-form-field {
    min-width: 0;
}

.pt-form-input {
    width: 100%;
    padding: 0.6rem 0.7rem;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.78rem;
    color: var(--sv-dark, #141414);
    background: #fff;
    border: 1px solid #ddd8d2;
    border-radius: 3px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pt-form-input::placeholder {
    color: #9a948d;
}

.pt-form-input:focus {
    outline: none;
    border-color: var(--sv-dark, #141414);
    box-shadow: 0 0 0 3px rgba(20, 20, 20, 0.06);
}

.pt-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b6560' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2rem;
    cursor: pointer;
}

.pt-form-select:invalid,
.pt-form-select option[value=""] {
    color: #9a948d;
}

.pt-form-textarea {
    resize: vertical;
    min-height: 4.25rem;
}

.pt-form-phone {
    display: flex;
    align-items: stretch;
}

.pt-phone-code {
    display: flex;
    align-items: center;
    padding: 0 0.55rem;
    font-size: 0.78rem;
    font-weight: 500;
    background: #fff;
    border: 1px solid #ddd8d2;
    border-right: none;
    border-radius: 3px 0 0 3px;
    color: var(--sv-muted, #6b6560);
    white-space: nowrap;
}

.pt-form-phone .pt-form-input {
    border-radius: 0 3px 3px 0;
}

.pt-form-submit {
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: var(--sv-dark, #141414);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
}

.pt-form-submit:hover:not(:disabled) {
    background: #2a2a2a;
}

.pt-form-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.pt-form-alert {
    margin-top: 0.5rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.82rem;
    border-radius: 3px;
    text-align: center;
}

.pt-form-alert.is-success {
    background: #e8f5e9;
    color: #2d6a4f;
    border: 1px solid #b7dfc5;
}

.pt-form-alert.is-error {
    background: #fdecea;
    color: #9b2226;
    border: 1px solid #f5c2c0;
}

.pt-form-login-hint {
    text-align: center;
    font-size: 0.75rem;
    color: var(--sv-muted, #6b6560);
    margin: 0.65rem 0 0;
}

.pt-form-login-hint a {
    color: var(--sv-dark, #141414);
    font-weight: 600;
}

/* Stats bar */
.pt-stats {
    background: #fff;
    border-bottom: 1px solid var(--sv-border, #e8e4df);
    padding: 2rem 0;
}

.pt-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.pt-stat-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sv-dark, #141414);
    line-height: 1;
}

.pt-stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--sv-muted, #6b6560);
    margin-top: 0.35rem;
}

/* Section defaults */
.pt-section {
    padding: 4rem 0;
}

.pt-section-alt {
    background: #fff;
}

.pt-section-head {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2.5rem;
}

.pt-section-head h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 0.65rem;
}

.pt-section-head p {
    color: var(--sv-muted, #6b6560);
    margin: 0;
    line-height: 1.6;
}

/* Benefits */
.pt-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.pt-benefit-card {
    background: #fff;
    border: 1px solid var(--sv-border, #e8e4df);
    padding: 1.5rem;
    border-radius: 2px;
    height: 100%;
}

.pt-section-alt .pt-benefit-card {
    background: var(--sv-cream, #faf8f5);
}

.pt-benefit-icon {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sv-cream, #faf8f5);
    border: 1px solid var(--sv-border, #e8e4df);
    border-radius: 2px;
    color: var(--sv-gold-dark, #a8864d);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.pt-section-alt .pt-benefit-icon {
    background: #fff;
}

.pt-benefit-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
}

.pt-benefit-card p {
    font-size: 0.88rem;
    color: var(--sv-muted, #6b6560);
    margin: 0;
    line-height: 1.55;
}

/* How it works */
.pt-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    counter-reset: pt-step;
}

.pt-step {
    text-align: center;
    position: relative;
}

.pt-step::before {
    counter-increment: pt-step;
    content: counter(pt-step, decimal-leading-zero);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    background: var(--sv-dark, #141414);
    color: #fff;
    border-radius: 50%;
}

.pt-step h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.pt-step p {
    font-size: 0.85rem;
    color: var(--sv-muted, #6b6560);
    margin: 0;
    line-height: 1.5;
}

/* Property types */
.pt-types-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.pt-type-pill {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    background: #fff;
    border: 1px solid var(--sv-border, #e8e4df);
    border-radius: 2px;
    color: var(--sv-dark, #141414);
}

/* Testimonials */
.pt-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.pt-testimonial {
    background: var(--sv-cream, #faf8f5);
    border: 1px solid var(--sv-border, #e8e4df);
    padding: 1.5rem;
    border-radius: 2px;
}

.pt-testimonial-quote {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--sv-dark, #141414);
    margin-bottom: 1rem;
    font-style: italic;
}

.pt-testimonial-author {
    font-size: 0.8rem;
    font-weight: 600;
}

.pt-testimonial-meta {
    font-size: 0.75rem;
    color: var(--sv-muted, #6b6560);
}

/* FAQ */
.pt-faq-list {
    max-width: 44rem;
    margin: 0 auto;
}

.pt-faq-item {
    border-bottom: 1px solid var(--sv-border, #e8e4df);
}

.pt-faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.1rem 0;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    color: var(--sv-dark, #141414);
}

.pt-faq-a {
    padding: 0 0 1.1rem;
    font-size: 0.9rem;
    color: var(--sv-muted, #6b6560);
    line-height: 1.6;
}

/* Register form card */
.pt-form-section {
    padding: 4rem 0 5rem;
    background: #fff;
    border-top: 1px solid var(--sv-border, #e8e4df);
}

.pt-form-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.pt-form-intro h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.pt-form-intro p {
    color: var(--sv-muted, #6b6560);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.pt-form-perks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pt-form-perks li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    margin-bottom: 0.65rem;
    color: var(--sv-dark, #141414);
}

.pt-form-perks i {
    color: var(--sv-gold-dark, #a8864d);
    margin-top: 0.15rem;
}

.pt-register-card {
    position: sticky;
    top: 90px;
    background: #fff;
    border: 1px solid var(--sv-border, #e8e4df);
    border-radius: 2px;
    padding: 1.5rem;
    box-shadow: 0 12px 40px rgba(20, 20, 20, 0.06);
}

.pt-register-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.pt-register-sub {
    font-size: 0.82rem;
    color: var(--sv-muted, #6b6560);
    margin-bottom: 1.25rem;
}

.pt-register-card .cu-field {
    margin-bottom: 0.85rem;
}

.pt-register-card .cu-btn-primary {
    margin-top: 0.25rem;
}

.pt-login-link {
    text-align: center;
    font-size: 0.82rem;
    color: var(--sv-muted, #6b6560);
    margin: 1rem 0 0;
}

.pt-login-link a {
    color: var(--sv-dark, #141414);
    font-weight: 600;
}

/* CTA band */
.pt-cta-band {
    background: linear-gradient(135deg, var(--sv-dark) 0%, #2c2420 100%);
    color: #fff;
    padding: 3.5rem 0;
    text-align: center;
}

.pt-cta-band h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.pt-cta-band p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
    .pt-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pt-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .pt-testimonials {
        grid-template-columns: 1fr;
    }

    .pt-form-layout {
        grid-template-columns: 1fr;
    }

    .pt-register-card {
        position: static;
    }
}

@media (max-width: 991px) {
    .pt-hero {
        min-height: 0;
        align-items: flex-start;
    }

    .pt-hero-inner {
        padding: 2.5rem 0 2rem;
    }
}

@media (max-width: 575px) {
    .pt-hero h1 {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }

    .pt-hero-actions {
        flex-direction: column;
    }

    .pt-hero-actions .sv-btn-gold,
    .pt-hero-actions .sv-btn-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .pt-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .pt-benefits-grid,
    .pt-steps {
        grid-template-columns: 1fr;
    }

    .pt-form-row {
        grid-template-columns: 1fr;
    }

    .pt-hero-form-wrap {
        max-width: 100%;
        margin-left: 0;
    }

    .pt-hero-form-card {
        padding: 1.25rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pt-hero-form-wrap {
        max-width: 380px;
    }
}
