/* ============================================
   PALM COST LLC — Become a Vendor Page Styles
   ============================================ */

/* --- Vendor Hero --- */
.vendor-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        var(--navy-deep) 0%,
        var(--navy) 40%,
        var(--navy-light) 100%
    );
}

.vendor-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(196, 162, 101, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(196, 162, 101, 0.05) 0%, transparent 40%);
    z-index: 1;
}

.vendor-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(196, 162, 101, 0.06);
    border-radius: 50%;
    z-index: 0;
}

.vendor-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(196, 162, 101, 0.04);
    border-radius: 50%;
    z-index: 0;
}

.vendor-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    padding: 0 var(--container-padding);
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
}

.vendor-hero-content .hero-label {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.vendor-hero-content .hero-title {
    font-size: 60px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.vendor-hero-content .hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.vendor-hero-content .hero-actions {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* --- Active Nav Link --- */
.nav-links a.active {
    color: var(--gold) !important;
}

.nav-links a.active::after {
    width: 100%;
}

/* --- Vendor Support Section --- */
.vendor-support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.vendor-support-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.highlight-card {
    padding: 32px 28px;
    border: 1px solid var(--border);
    background: var(--white);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.highlight-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-number {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    color: rgba(196, 162, 101, 0.3);
    line-height: 1;
    margin-bottom: 16px;
    transition: color var(--transition);
}

.highlight-card:hover .highlight-number {
    color: rgba(196, 162, 101, 0.6);
}

.highlight-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.highlight-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-medium);
}

/* --- Benefits Section --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    padding: 44px 32px;
    border: 1px solid rgba(196, 162, 101, 0.12);
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.benefit-card:hover {
    border-color: rgba(196, 162, 101, 0.35);
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.02);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(196, 162, 101, 0.3);
    transform: rotate(45deg);
    transition: all var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: var(--gold);
    border-color: var(--gold);
}

.benefit-icon-inner {
    transform: rotate(-45deg);
    font-size: 20px;
    color: var(--gold);
    transition: color var(--transition);
}

.benefit-card:hover .benefit-icon-inner {
    color: var(--navy);
}

.benefit-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 14px;
    line-height: 1.3;
}

.benefit-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
}

/* --- Vendor Application Section --- */
.vendor-app-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.vendor-form-wrapper {
    padding: 48px !important;
}

.vendor-form-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.vendor-form-section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    margin-top: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gold-muted);
    width: 100%;
}

.form-row--three {
    grid-template-columns: 1fr 1fr 1fr !important;
}

/* Developer Credit */
.dev-credit {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.dev-credit a {
    color: var(--gold);
    transition: color 0.3s ease;
}

.dev-credit a:hover {
    color: var(--gold-light);
}

/* ============================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .vendor-hero-content .hero-title {
        font-size: 48px;
    }

    .vendor-support-grid {
        gap: 48px;
    }

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

    .vendor-app-grid {
        gap: 48px;
    }
}

/* ============================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    .vendor-hero {
        min-height: 55vh;
    }

    .vendor-hero-content .hero-title {
        font-size: 36px;
    }

    .vendor-support-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .vendor-support-highlights {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .vendor-app-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .vendor-form-wrapper {
        padding: 32px 24px !important;
    }

    .form-row--three {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .vendor-hero-content .hero-title {
        font-size: 28px;
    }

    .highlight-card {
        padding: 24px 20px;
    }

    .benefit-card {
        padding: 32px 24px;
    }
}
