/* ========================================
   VENDOR INFO PAGE — Complete Design System
   ======================================== */

/* ---- CSS Variables ---- */
:root {
    --vi-primary: #667eea;
    --vi-primary-dark: #5a67d8;
    --vi-primary-grad: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --vi-text-dark: #1a202c;
    --vi-text-gray: #4a5568;
    --vi-text-light: #718096;
    --vi-bg-light: #f7f8fc;
    --vi-bg-white: #ffffff;
    --vi-bg-dark: #1a202c;
    --vi-border: #e2e8f0;
    --vi-tours: #38a169;
    --vi-wine: #7b2d8b;
    --vi-car: #667eea;
    --vi-local: #ed8936;
    --vi-radius-sm: 8px;
    --vi-radius-md: 12px;
    --vi-radius-lg: 16px;
    --vi-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --vi-shadow-card: 0 1px 3px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(102, 126, 234, 0.08);
    --vi-shadow-hover: 0 12px 40px rgba(102, 126, 234, 0.18);
    --vi-transition: all 0.3s ease;
}

/* ========================================
   TYPOGRAPHY UTILITIES
   ======================================== */

.section-overline {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--vi-primary);
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--vi-text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-title-center {
    text-align: center;
}

.section-intro {
    font-size: 1.05rem;
    color: var(--vi-text-gray);
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
}

/* ========================================
   BASE
   ======================================== */

html {
    scroll-behavior: smooth;
}

.vendor-info-page {
    font-family: 'Noto Sans Georgian', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.75;
    color: var(--vi-text-dark);
}

.vendor-info-page h1,
.vendor-info-page h2,
.vendor-info-page h3,
.vendor-info-page h4,
.vendor-info-page p,
.vendor-info-page a,
.vendor-info-page button,
.vendor-info-page li {
    font-family: 'Noto Sans Georgian', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.vi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.vi-section {
    padding: 80px 0;
}

/* ========================================
   1. HERO SECTION
   ======================================== */

.vi-hero {
    background: var(--vi-primary-grad);
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: 24px 24px, 100% 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vi-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 24px 120px;
}

.vi-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.vi-hero-badge i {
    font-size: 0.85rem;
}

.vi-hero h1 {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    font-weight: 800;
    color: white;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.vi-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.vi-hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Primary button — white bg */
.vi-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: var(--vi-primary);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--vi-radius-sm);
    text-decoration: none;
    border: 2px solid #ffffff;
    transition: var(--vi-transition);
    font-family: 'Noto Sans Georgian', sans-serif;
}

.vi-btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    color: var(--vi-primary-dark);
}

/* Secondary button — outline */
.vi-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--vi-radius-sm);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: var(--vi-transition);
    font-family: 'Noto Sans Georgian', sans-serif;
}

.vi-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: white;
    color: white;
}

/* Scroll indicator */
.vi-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.4rem;
    animation: vi-bounce 2s infinite;
}

@keyframes vi-bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ========================================
   2. STATS STRIP
   ======================================== */

.vi-stats {
    background: var(--vi-bg-white);
    border-bottom: 1px solid var(--vi-border);
    padding: 32px 0;
}

.vi-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.vi-stat-item {
    text-align: center;
    padding: 16px 24px;
    border-right: 1px solid var(--vi-border);
}

.vi-stat-item:last-child {
    border-right: none;
}

.vi-stat-item i {
    display: block;
    font-size: 1.5rem;
    color: var(--vi-primary);
    margin-bottom: 8px;
}

.vi-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vi-primary);
    line-height: 1.2;
}

.vi-stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--vi-text-light);
    margin-top: 4px;
}

/* ========================================
   3. BENEFITS SECTION
   ======================================== */

.vi-benefits {
    background: var(--vi-bg-light);
    padding: 80px 0;
}

.vi-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.vi-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.vi-benefit-card {
    background: var(--vi-bg-white);
    border-radius: var(--vi-radius-lg);
    padding: 32px;
    border-top: 3px solid var(--vi-primary);
    box-shadow: var(--vi-shadow-card);
    transition: var(--vi-transition);
}

.vi-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--vi-shadow-hover);
}

.vi-benefit-icon {
    width: 52px;
    height: 52px;
    background: var(--vi-primary-grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

.vi-benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--vi-text-dark);
    margin-bottom: 10px;
}

.vi-benefit-card p {
    font-size: 0.92rem;
    color: var(--vi-text-gray);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   4. WHO CAN JOIN
   ======================================== */

.vi-join {
    background: var(--vi-bg-white);
    padding: 80px 0;
}

.vi-join-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.vi-join-card {
    padding: 28px;
    border-radius: var(--vi-radius-md);
    border: 2px solid var(--vi-border);
    background: var(--vi-bg-white);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Tours */
.vi-join-card--tours:hover {
    border-color: var(--vi-tours);
    box-shadow: 0 4px 20px rgba(56, 161, 105, 0.12);
}

/* Car Rental */
.vi-join-card--car:hover {
    border-color: var(--vi-car);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.12);
}

/* Wine */
.vi-join-card--wine:hover {
    border-color: var(--vi-wine);
    box-shadow: 0 4px 20px rgba(123, 45, 139, 0.12);
}

/* Local */
.vi-join-card--local:hover {
    border-color: var(--vi-local);
    box-shadow: 0 4px 20px rgba(237, 137, 54, 0.12);
}

.vi-join-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.vi-join-icon--tours {
    background: #f0fdf4;
    color: var(--vi-tours);
}

.vi-join-icon--car {
    background: #eef2ff;
    color: var(--vi-car);
}

.vi-join-icon--wine {
    background: #fdf4ff;
    color: var(--vi-wine);
}

.vi-join-icon--local {
    background: #fff7ed;
    color: var(--vi-local);
}

.vi-join-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--vi-text-dark);
    margin-bottom: 8px;
}

.vi-join-card p {
    font-size: 0.88rem;
    color: var(--vi-text-gray);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   5. HOW IT WORKS
   ======================================== */

.vi-how {
    background: var(--vi-primary-grad);
    padding: 80px 0;
    color: white;
}

.vi-how .section-overline {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    display: block;
}

.vi-how .section-title {
    color: white;
    text-align: center;
}

.vi-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.vi-step {
    text-align: center;
    position: relative;
    padding: 0 16px;
}

/* Connector line between steps */
.vi-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 32px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.vi-step-num {
    width: 64px;
    height: 64px;
    background: white;
    color: var(--vi-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.vi-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.vi-step p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   6. PLATFORM FEATURES & DASHBOARD SECTIONS
   ======================================== */

.vi-features {
    padding: 80px 0;
}

.vi-features--white {
    background: var(--vi-bg-white);
}

.vi-features--light {
    background: var(--vi-bg-light);
}

.vi-features--wine-bg {
    background: #fdf8ff;
}

.vi-features-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 48px;
    flex-direction: column;
}

.vi-features-header-icon {
    width: 52px;
    height: 52px;
    background: var(--vi-primary-grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

.vi-features-header h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: var(--vi-text-dark);
    margin-bottom: 8px;
}

.vi-features-header p {
    font-size: 1rem;
    color: var(--vi-text-gray);
    line-height: 1.7;
    margin: 0;
}

.vi-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.vi-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 16px 16px 20px;
    border-left: 3px solid var(--vi-border);
    border-radius: 0 var(--vi-radius-sm) var(--vi-radius-sm) 0;
    background: transparent;
    transition: border-left-color 0.2s ease, background 0.2s ease;
}

.vi-feature-item:hover {
    border-left-color: var(--vi-primary);
    background: rgba(102, 126, 234, 0.03);
}

.vi-feature-item i {
    font-size: 1.15rem;
    color: var(--vi-tours);
    flex-shrink: 0;
    margin-top: 3px;
}

.vi-feature-item p {
    margin: 0;
    font-size: 0.93rem;
    color: var(--vi-text-gray);
    line-height: 1.7;
}

.vi-feature-item strong {
    color: var(--vi-text-dark);
    font-weight: 600;
}

/* Verified badge item */
.vi-feature-item--verified {
    border-left-color: var(--vi-primary);
    background: rgba(102, 126, 234, 0.05);
}

.vi-feature-item--verified i {
    color: var(--vi-primary);
}

.vi-feature-item--verified strong {
    color: var(--vi-primary);
}

/* ========================================
   7. SEO DARK SECTION
   ======================================== */

.vi-seo {
    background: var(--vi-bg-dark);
    padding: 80px 0;
}

.vi-seo .section-overline {
    color: var(--vi-primary);
    text-align: center;
    display: block;
}

.vi-seo .section-title {
    color: white;
    text-align: center;
}

.vi-seo .section-intro {
    color: rgba(255, 255, 255, 0.6);
}

.vi-seo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.vi-seo-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--vi-radius-md);
    padding: 28px;
    transition: var(--vi-transition);
}

.vi-seo-card:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(102, 126, 234, 0.5);
}

.vi-seo-card i {
    font-size: 28px;
    color: var(--vi-primary);
    display: block;
    margin-bottom: 16px;
}

.vi-seo-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.4;
}

.vi-seo-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0;
}

.vi-seo-card strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.vi-seo-highlight {
    background: rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.4);
    border-radius: var(--vi-radius-md);
    padding: 28px 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}

.vi-seo-highlight i {
    font-size: 2rem;
    color: var(--vi-primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.vi-seo-highlight h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.vi-seo-highlight p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin: 0;
}

.vi-seo-highlight strong {
    color: white;
    font-weight: 700;
}

/* ========================================
   8. CTA SECTION
   ======================================== */

.vi-cta {
    background: var(--vi-primary-grad);
    padding: 100px 0;
    text-align: center;
}

.vi-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.vi-cta>.vi-container>p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.vi-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--vi-primary);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 48px;
    border-radius: var(--vi-radius-sm);
    text-decoration: none;
    border: 2px solid white;
    transition: var(--vi-transition);
    font-family: 'Noto Sans Georgian', sans-serif;
}

.vi-cta-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    color: var(--vi-primary-dark);
}

.vi-cta-note {
    margin-top: 28px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
}

.vi-cta-note a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    transition: opacity 0.2s;
}

.vi-cta-note a:hover {
    opacity: 1;
    color: white;
}

/* ========================================
   RESPONSIVE — TABLET ≤ 768px
   ======================================== */

@media (max-width: 768px) {
    .vi-section {
        padding: 60px 0;
    }

    .vi-benefits {
        padding: 60px 0;
    }

    .vi-join {
        padding: 60px 0;
    }

    .vi-how {
        padding: 60px 0;
    }

    .vi-features {
        padding: 60px 0;
    }

    .vi-seo {
        padding: 60px 0;
    }

    .vi-cta {
        padding: 72px 0;
    }

    .vi-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .vi-join-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .vi-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vi-stat-item {
        border-right: none;
        border-bottom: 1px solid var(--vi-border);
    }

    .vi-stat-item:nth-child(2n) {
        border-right: none;
    }

    .vi-stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .vi-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .vi-step::after {
        display: none;
    }

    .vi-seo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vi-seo-highlight {
        flex-direction: column;
        gap: 16px;
    }

    .vi-features-list {
        grid-template-columns: 1fr;
    }

    .vi-hero h1 {
        font-size: 2rem;
    }

    .vi-hero-subtitle {
        font-size: 1rem;
    }
}

/* ========================================
   RESPONSIVE — MOBILE ≤ 480px
   ======================================== */

@media (max-width: 480px) {
    .vi-container {
        padding: 0 16px;
    }

    .vi-hero-inner {
        padding: 60px 16px 100px;
    }

    .vi-benefits-grid,
    .vi-join-grid,
    .vi-seo-grid {
        grid-template-columns: 1fr;
    }

    .vi-hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .vi-btn-primary,
    .vi-btn-secondary {
        justify-content: center;
    }

    .vi-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vi-cta {
        padding: 60px 0;
    }

    .vi-cta-btn {
        padding: 14px 32px;
        font-size: 1rem;
    }
}