/**
 * Vos Exclusive - Lease Page Styling
 * Premium, refined design consistent with brand
 */

/* ========================================
   BASE STYLES
   ======================================== */

.tpl-lease {
    background: #adae9c;
    min-height: 100vh;
}

/* Match hero banner sizing with content pages */
.tpl-lease .hero-banner {
    max-width: 1920px !important;
    margin: 0 auto !important;
    background-position: center center !important;
}

.tpl-lease section.hero-banner {
    max-width: 1920px !important;
    overflow: hidden;
}

@media (max-width: 768px) {
    .tpl-lease section.hero-banner {
        margin: 0 auto !important;
        height: 180px !important;
    }
}

@media (min-width: 1921px) {
    .tpl-lease section.hero-banner {
        border-radius: 12px;
    }
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'VAA', Arial, "Helvetica Neue", Helvetica, sans-serif;
    line-height: 1.2;
}

.section-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #333333;
    max-width: 700px;
    margin: 25px auto 0;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .section-intro {
        font-size: 16px;
        padding: 0 15px;
    }
}

/* ========================================
   LEASE TYPES SECTION
   ======================================== */

.lease-types-section {
    padding: 100px 60px 80px;
    background: #adae9c;
}

.lease-types-section .container {
    max-width: 1600px !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
}

.lease-tiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 100%;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .lease-tiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .lease-types-section {
        padding: 60px 20px;
    }
    
    .lease-tiles-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 30px;
    }
}

/* ========================================
   LEASE TILE CARDS - Premium Design
   ======================================== */

.lease-tile {
    position: relative;
    background: #c9c4b5;
    padding: 45px 40px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.lease-tile:hover {
    transform: translateY(-6px);
}

.lease-tile h3 {
    font-size: 26px;
    font-weight: 400;
    margin: 0 0 18px 0;
    color: #000000;
    font-family: 'VAA', Arial, "Helvetica Neue", Helvetica, sans-serif;
    letter-spacing: 0.5px;
}

.tile-description {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 25px;
}

.tile-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.08);
    color: #000000;
    padding: 10px 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.tile-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.tile-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tile-features li:last-child {
    border-bottom: none;
}

.feature-icon {
    font-size: 14px;
    color: #000000;
    flex-shrink: 0;
    font-weight: 600;
    margin-top: 2px;
}

.tile-features li span:not(.feature-icon) {
    font-size: 15px;
    color: #333333;
    line-height: 1.5;
}

.tile-ideal {
    font-size: 14px;
    color: #444444;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}

.tile-ideal strong {
    color: #000000;
    font-weight: 600;
}

/* ========================================
   LEASE CALCULATOR SECTION
   ======================================== */

.lease-calculator-section {
    padding: 80px 60px 100px;
    background: transparent;
}

.lease-calculator-section .container {
    max-width: 1600px !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
}

@media (max-width: 768px) {
    .lease-calculator-section {
        padding: 60px 20px;
    }
}

/* ========================================
   CTA SECTION - Premium styling
   ======================================== */

.tpl-lease .socials-cta {
    max-width: 100%;
    padding: 100px 60px;
    background: transparent;
    text-align: center;
}

.tpl-lease .socials-cta h2 {
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.tpl-lease .socials-cta p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.7;
    color: #333333;
}

@media (max-width: 768px) {
    .tpl-lease .socials-cta {
        padding: 60px 20px;
    }
    
    .tpl-lease .socials-cta h2 {
        font-size: 28px;
    }
    
    .tpl-lease .socials-cta p {
        font-size: 16px;
    }
}
