/* ============================================
   LEASING PAGE - Refined Visual Styles
   Matches POL-MET brand: dark theme, yellow/blue accents
   ============================================ */

:root {
    --pm-primary: #4a90a4;
    --pm-accent: #4a90a4;
    --pm-bg-dark: #181c22;
    --pm-bg-section: #232a33;
    --pm-bg-card: #20242b;
    --pm-text-light: #e6e6e6;
    --pm-text-muted: #b0b0b0;
    --pm-border: #404040;
    --pm-shadow: rgba(0,0,0,0.25);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 2vw;
}

/* ============================================
   HEADER BANNER (Hero)
   ============================================ */
.header-banner {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pm-bg-dark);
    margin-top: 60px; /* Account for fixed navbar */
}

.header-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0.6;
}

.header-banner-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(24,28,34,0.85), rgba(35,42,51,0.75));
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.header-banner-overlay h1 {
    color: #fff;
    font-size: 4.2rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    margin: 0;
    letter-spacing: -0.02em;
}

/* ============================================
   PAGE INTRO with LOGO - Flex Layout (Option 2)
   ============================================ */
.page-intro {
    background: linear-gradient(135deg, rgba(74,144,164,0.08), rgba(247,195,37,0.05));
    padding: 50px 40px;
    margin: 60px auto 50px;
    border-radius: 16px;
    text-align: left;
    border: 1px solid rgba(74,144,164,0.15);
    box-shadow: 0 8px 32px var(--pm-shadow);
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-intro-logo {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(24,28,34,0.5);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
    border: 2px solid rgba(74,144,164,0.2);
    transition: all 0.3s ease;
}

.page-intro-logo:hover {
    transform: scale(1.05);
    border-color: #4a90a4;
    box-shadow: 0 8px 32px rgba(74,144,164,0.3);
}

.page-intro-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.1);
}

.page-intro-content {
    flex: 1;
}

.page-intro h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--pm-accent);
    font-weight: 700;
    text-align: left;
}

.page-intro p {
    font-size: 1.15rem;
    color: var(--pm-text-muted);
    margin: 0;
    line-height: 1.7;
    text-align: left;
}

/* ============================================
   RESPONSIVE - Page Intro with Logo
   ============================================ */
@media (max-width: 768px) {
    .page-intro {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
        gap: 25px;
    }

    .page-intro-logo {
        width: 100px;
        height: 100px;
        padding: 15px;
    }

    .page-intro h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .page-intro p {
        font-size: 1.05rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-intro {
        padding: 25px 20px;
    }

    .page-intro-logo {
        width: 80px;
        height: 80px;
        padding: 12px;
    }

    .page-intro h2 {
        font-size: 1.5rem;
    }
}
/* ============================================
   SECTIONS - Base styling
   ============================================ */
main.container > section {
    margin: 50px 0;
    padding: 50px 40px;
    background: var(--pm-bg-section);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.03);
}
main.container > section > p {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
main.container > section h2 {
    font-size: 2rem;
    color: var(--pm-accent);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.01em;
}

main.container > section:nth-child(even) {
    background: var(--pm-bg-card);
}

/* Remove heavy styling from intro */
main.container > .page-intro {
    padding: 50px 40px;
    margin-top: 60px;
}

/* ============================================
   CHECK LIST - Benefits
   ============================================ */
.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.check-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(74,144,164,0.05);
    border-radius: 10px;
    border-left: 3px solid var(--pm-primary);
    transition: all 0.3s ease;
}

.check-list li:hover {
    background: rgba(74,144,164,0.1);
    transform: translateX(5px);
    border-left-color: var(--pm-accent);
}

.check-list li span {
    font-size: 1.08rem;
    color: var(--pm-text-light);
    line-height: 1.6;
}

.check-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    margin-top: 2px;
}

/* ============================================
   OFFERS SECTION - CTA Buttons
   ============================================ */
.offers {
    background: linear-gradient(135deg, var(--pm-bg-section), var(--pm-bg-card)) !important;
    border: 2px solid rgba(247,195,37,0.2);
}

.offers h2 {
    color: var(--pm-accent);
    font-size: 2.2rem;
    margin-bottom: 35px;
}

.offers-cta {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-large:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pm-accent), #4a90a4);
    color: var(--pm-bg-dark);
    border: none;
    box-shadow: 0 8px 24px rgba(74,144,164,0.35);
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px #4a90a4;
}

.btn-secondary {
    background: transparent;
    color: var(--pm-primary);
    border: 2px solid var(--pm-primary);
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.btn-secondary:hover {
    background: var(--pm-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(74,144,164,0.35);
}

/* Active state for selected offer term */
.btn-large.active {
    background: var(--pm-primary);
    color: #fff;
    border-color: var(--pm-accent);
    box-shadow: 0 0 0 4px rgba(247,195,37,0.2);
}

/* ============================================
   OFFER DOCUMENTS - PDF Links
   ============================================ */
.offers-links {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.offers-group {
    text-align: center;
}

.offers-group p {
    color: var(--pm-text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.offer-docs {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.offer-doc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    background: rgba(74,144,164,0.12);
    color: var(--pm-primary);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(74,144,164,0.3);
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.offer-doc-btn:hover {
    background: var(--pm-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74,144,164,0.3);
    border-color: var(--pm-primary);
}

/* ============================================
   PROCESS STEPS - Timeline
   ============================================ */
.process-steps {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    position: relative;
}

.process-step {
    display: flex;
    margin-bottom: 50px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 0.6s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }

.step-number {
    background: linear-gradient(135deg, var(--pm-primary), #2c5f6f);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    margin-right: 25px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    border: 3px solid rgba(247,195,37,0.3);
    box-shadow: 0 6px 20px rgba(74,144,164,0.25);
    transition: all 0.3s ease;
}

.step-number:hover,
.process-step:hover .step-number {
    background: linear-gradient(135deg, var(--pm-accent), #4a90a4);
    color: var(--pm-bg-dark);
    border-color: var(--pm-accent);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(74,144,164,0.4);
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--pm-accent);
    margin-bottom: 10px;
}

.step-description {
    color: var(--pm-text-muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

/* Connecting line between steps */
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 29px;
    top: 60px;
    width: 2px;
    height: calc(100% - 10px);
    background: linear-gradient(180deg, var(--pm-primary), transparent);
    z-index: 1;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   WHO CAN USE - Cards
   ============================================ */
.who-can {
    background: var(--pm-bg-section) !important;
}

.who-can h2 {
    color: var(--pm-accent);
    margin-bottom: 35px;
    font-size: 2rem;
}

.who-can ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.who-can ul li {
    background: linear-gradient(135deg, rgba(74,144,164,0.08), rgba(32,36,43,0.6));
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
    border-left: 4px solid var(--pm-primary);
    text-align: left;
    font-weight: 600;
    color: var(--pm-text-light);
    font-size: 1.12rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.who-can ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(247,195,37,0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.who-can ul li:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(74,144,164,0.3);
    border-left-color: var(--pm-accent);
}

.who-can ul li:hover::before {
    opacity: 1;
}

.who-check {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    margin-right: 15px;
    filter: drop-shadow(0 2px 4px rgba(43,168,74,0.3));
}

.who-can ul li span {
    position: relative;
    z-index: 1;
}

/* ============================================
   CONTACT CTA - Improved Big Buttons with Icons
   ============================================ */
.contact-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    margin: 35px auto 40px;
    max-width: 900px;
}

/* Base button styles for contact section */
.contact-cta .btn-primary,
.contact-cta .btn-secondary {
    padding: 20px 40px;
    font-size: 1.15rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 260px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Ripple effect */
.contact-cta .btn-primary::before,
.contact-cta .btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-cta .btn-primary:hover::before,
.contact-cta .btn-secondary:hover::before {
    width: 400px;
    height: 400px;
}

/* Primary button - gradient */
.contact-cta .btn-primary {
    background: linear-gradient(135deg, var(--pm-accent), var(--pm-primary));
    color: #181c22;
    border: none;
    box-shadow: 0 8px 28px var(--pm-primary);
}

.contact-cta .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px var(--pm-accent);
}

/* Secondary buttons - outlined with blue */
.contact-cta .btn-secondary {
    background: rgba(74,144,164,0.08);
    color: #4a90a4;
    border: 2px solid #4a90a4;
    box-shadow: 0 6px 20px rgba(74,144,164,0.15);
}

.contact-cta .btn-secondary:hover {
    background: #4a90a4;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(74,144,164,0.35);
}

/* Icons inside buttons - using emoji for simplicity */
.contact-cta .btn-primary::after {
    content: '📝';
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.contact-cta .btn-secondary[href^="tel"]::after {
    content: '📞';
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.contact-cta .btn-secondary[href^="mailto"]::after {
    content: '✉️';
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

/* Text positioning */
.contact-cta .btn-primary,
.contact-cta .btn-secondary {
    position: relative;
    z-index: 1;
}

/* ============================================
   RESPONSIVE - Contact Buttons
   ============================================ */
@media (max-width: 768px) {
    .contact-cta {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .contact-cta .btn-primary,
    .contact-cta .btn-secondary {
        width: 100%;
        max-width: 420px;
        padding: 18px 35px;
        font-size: 1.1rem;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .contact-cta .btn-primary,
    .contact-cta .btn-secondary {
        padding: 16px 30px;
        font-size: 1.05rem;
    }
}
/* ============================================
   ADVISOR CARD - Prominent contact
   ============================================ */
.advisor-card {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 40px auto 0;
    padding: 35px;
    background: linear-gradient(135deg, rgba(74,144,164,0.12), rgba(247,195,37,0.08));
    border-radius: 16px;
    border: 2px solid rgba(74,144,164,0.25);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    max-width: 700px;
    transition: all 0.3s ease;
}

.advisor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(74,144,164,0.25);
    border-color: var(--pm-accent);
}

.advisor-logo {
    flex-shrink: 0;
}

.advisor-logo img {
    width: 180px;
    max-width: 100%;
    height: auto;
    display: block;
    filter: brightness(1.1);
}

.advisor-info {
    flex: 1;
}

.advisor-title {
    font-weight: 500;
    color: var(--pm-text-muted);
    margin-bottom: 8px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.advisor-name {
    font-weight: 700;
    color: var(--pm-accent);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.advisor-contact {
    margin: 6px 0;
    font-size: 1.05rem;
    color: var(--pm-text-light);
}

.advisor-contact a {
    color: var(--pm-primary);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 600;
}

.advisor-contact a:hover {
    color: var(--pm-accent);
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 30px 4vw;
    }

    .header-banner {
        height: 280px;
    }

    .header-banner-overlay h1 {
        font-size: 2.4rem;
    }

    .page-intro {
        padding: 35px 25px;
        margin: 40px auto 35px;
    }

    .page-intro h2 {
        font-size: 1.8rem;
    }

    .page-intro p {
        font-size: 1.05rem;
    }

    main.container > section {
        padding: 35px 25px;
        margin: 35px 0;
    }

    main.container > section h2 {
        font-size: 1.7rem;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .offers h2 {
        font-size: 1.8rem;
    }

    .btn-large {
        width: 100%;
        max-width: 400px;
        padding: 16px 35px;
        font-size: 1.1rem;
    }

    .offers-cta {
        flex-direction: column;
        gap: 15px;
    }

    .offer-docs {
        flex-direction: column;
        align-items: center;
    }

    .offer-doc-btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }

    .process-step {
        margin-bottom: 40px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-right: 18px;
    }

    .process-step:not(:last-child)::after {
        left: 24px;
    }

    .step-title {
        font-size: 1.15rem;
    }

    .step-description {
        font-size: 1rem;
    }

    .who-can ul {
        grid-template-columns: 1fr;
    }

    .who-can ul li {
        padding: 25px 20px;
    }

    .contact-cta {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 400px;
        text-align: center;
    }

    .advisor-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .advisor-info {
        text-align: center;
    }

    .advisor-logo img {
        width: 160px;
    }
}

@media (max-width: 480px) {
    .header-banner {
        height: 220px;
    }

    .header-banner-overlay h1 {
        font-size: 1.8rem;
    }

    .page-intro {
        padding: 25px 20px;
    }

    .page-intro h2 {
        font-size: 1.5rem;
    }

    main.container > section {
        padding: 25px 18px;
    }

    .advisor-logo img {
        width: 140px;
    }
}