/**
 * EasyLease Theme - Main Stylesheet (Clean Version)
 * 
 * @package easylease
 */

/* ==========================================================================
   Fonts & Typography
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=MuseoModerno:wght@400;500;600;700;800;900&display=swap');

/* ==========================================================================
   Base Styles
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #191919;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #ffa500;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover,
a:focus {
    color: #ff8c00;
    text-decoration: none;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'MuseoModerno', sans-serif;
    font-weight: 700;
    color: #3c3c3c;
    margin: 0 0 25px;
    line-height: 1.2;
}

h1 { font-size: 80px; }
h2 { font-size: 60px; }
h3 { font-size: 35px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
    margin: 0 0 20px;
    line-height: 1.8;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-big {
    max-width: 1520px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 60px;
    margin-bottom: 50px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn,
a.btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px 40px;
    border: 2px solid #fff;
    border-radius: 0;
    background-image: linear-gradient(to right, #ffa500 49%, #134c80 50%);
    background-size: 205% 105%;
    background-position: right bottom;
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.btn:hover,
.btn:focus {
    background-position: left bottom;
    color: #fff !important;
}

.btn-primary {
    background-image: linear-gradient(to right, #ffa500 49%, transparent 50%);
}

.btn-primary:hover {
    border-color: #ffa500;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    padding: 20px 0;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo img {
    max-width: 250px;
    height: auto;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.primary-menu li {
    list-style: none;
}

.primary-menu a {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    display: block;
    transition: color 0.3s ease;
}

.primary-menu a:hover {
    color: #ffa500;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-icon span {
    width: 30px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ==========================================================================
   Hero Banner Section
   ========================================================================== */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-banner::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #ffa500;
    clip-path: polygon(0% 100%, 100% 70%, 100% 100%, 0% 100%);
    z-index: 1;
}

.hero-banner::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255, 165, 0, 0.35);
    clip-path: polygon(0% 100%, 100% 63%, 100% 100%, 0% 100%);
    z-index: 1;
}

.hero-car-image {
    position: absolute;
    right: 50px;
    bottom: 50px;
    max-width: 50%;
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 20;
    width: 100%;
}

.hero-inner {
    max-width: 900px;
    color: #fff;
}

.hero-inner h1 {
    font-size: 110px;
    line-height: 0.9;
    color: #fff;
    margin-bottom: 50px;
}

.hero-inner p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
}

/* Gray angled transition band below hero (from old design) */
.bnn_bg {
    position: relative;
    height: 175px;
}

.bnn_bg::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background-color: #ebebeb;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 76%);
    z-index: 1;
}

.bnn_bg::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(235, 235, 235, 0.51);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%);
    z-index: 1;
}

/* ==========================================================================
   Why Lease Section
   ========================================================================== */
.why-lease-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.why-lease-image {
    position: relative;
    padding-top: 125px;
}

.why-lease-image img {
    max-width: 90%;
    margin: 0 auto;
}

.why-lease-image::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 380px;
    background-color: #ffa500;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.why-lease-content ul {
    margin: 0;
    padding-left: 22px;
    list-style: none;
}

.why-lease-content ul li {
    font-size: 28px;
    padding: 10px 0;
    position: relative;
}

.why-lease-content ul li::before {
    content: '•';
    color: #ffa500;
    font-weight: bold;
    position: absolute;
    left: -22px;
}

/* Keep image and content side-by-side on larger screens */
@media (min-width: 992px) {
    .why-lease-section .row.align-items-center {
        display: flex;
        flex-wrap: nowrap;
    }
}

/* ==========================================================================
   Easy Lease Process Section
   ========================================================================== */
.easy-lease-section {
    position: relative;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.easy-lease-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(15, 71, 123, 0.82);
    z-index: -1;
}

.easy-lease-section .section-title {
    color: #fff;
    margin-bottom: 60px;
}

.easy-lease-steps {
    margin-top: 40px;
}

@media (min-width: 992px) {
    /* Force 4 Easy Lease steps to sit in one row */
    .easy-lease-steps {
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .easy-lease-steps > [class*="col-"] {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.step-box {
    padding: 0 20px 30px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 110px;
    height: 110px;
    margin: 0 auto 50px;
    padding: 5px;
    background: linear-gradient(to right, #fea400 0%, #96660e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number span {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    font-weight: 700;
    font-family: 'MuseoModerno', sans-serif;
}

.step-title {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin: 0;
}

/* Decorative dotted connector between Easy Lease steps (desktop) */
@media (min-width: 992px) {
    .step-box {
        position: relative;
    }

    .easy-lease-steps > [class*="col-"]:not(:last-child) .step-box::after {
        content: '';
        position: absolute;
        top: 52px;
        right: -139px;
        width: 243px;
        height: 13px;
        background: url('../images/bg_dott.png') no-repeat center;
        background-size: cover;
        z-index: -1;
    }
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-section {
    background: #f1f1f1;
    padding-top: 100px;
    padding-bottom: 100px;
}

.pricing-options {
    padding-right: 30px;
}

.pricing-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px 65px;
    background: #fff;
    margin: 10px 0;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-item:hover {
    background: #ffa500;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.pricing-item:hover .pricing-number,
.pricing-item:hover h3,
.pricing-item:hover p {
    color: #fff;
}

.pricing-number {
    font-size: 60px;
    font-weight: 700;
    color: #ffa500;
    line-height: 1;
    min-width: 80px;
}

.pricing-content h3 {
    font-size: 35px;
    color: #0e4677;
    margin-bottom: 10px;
}

.pricing-content p {
    font-size: 18px;
    margin: 0;
}

.pricing-visual {
    position: relative;
    z-index: 99;
    text-align: center;
}

.pricing-visual::after {
    content: '';
    position: absolute;
    width: 455px;
    height: 495px;
    background-color: #fff;
    bottom: 0;
    right: 0;
    z-index: 0;
}

.pricing-visual img {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    max-width: 550px;
}

.pricing-visual .section-title {
    position: relative;
    z-index: 1;
    padding-bottom: 30px;
    padding-left: 40px;
    text-align: center;
}

/* Match legacy pricing layout alignment */
.pricing-section .row.align-items-center {
    align-items: unset;
}

@media (max-width: 1599px) {
    .pricing-visual::after {
        width: 534px;
        height: 554px;
    }
}

@media (max-width: 1299px) {
    .pricing-visual img {
        max-width: 500px;
    }

    .pricing-visual .section-title {
        padding-top: 20px;
        padding-bottom: 30px;
        padding-left: 190px;
        text-align: left;
    }
}

/* Responsive tweaks for Pricing */
@media (max-width: 1199px) {
    .pricing-content h3 {
        font-size: 28px;
    }

    .pricing-visual::after {
        width: 420px;
    }
}

@media (max-width: 991px) {
    .pricing-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .pricing-options {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .pricing-visual::after {
        display: none;
    }
}

/* ==========================================================================
   Corporate Section
   ========================================================================== */
.corporate-section {
    position: relative;
    padding: 180px 0 140px;
    background-size: cover;
    background-position: center;
}

.corporate-section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(15, 71, 123, 0.86);
    z-index: 1;
}

.corporate-section .container {
    position: relative;
    z-index: 2;
}

.corporate-section .section-title {
    color: #fff;
    margin-bottom: 60px;
}

.corporate-content {
    color: #fff;
}

.corporate-content ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.corporate-content ul li {
    font-size: 18px;
    color: #fff;
    position: relative;
    padding-left: 55px;
    width: 33.33%;
    margin-bottom: 30px;
    padding-right: 25px;
}

.corporate-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 42px;
    height: 42px;
    background: #ffa500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
}

.corporate_top,
.corporate_btm {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2;
}

.corporate_top {
    top: 0;
}

.corporate_btm {
    bottom: 0;
}

.corporate_top img,
.corporate_btm img {
    display: block;
    width: 100%;
}

/* ==========================================================================
   Requirements Section
   ========================================================================== */
.requirements-section {
    padding: 100px 0;
}

.requirements-list {
    margin-top: 50px;
}

@media (min-width: 768px) {
    /* Show requirement boxes in a grid, side by side (3 in a row) */
    .requirements-list {
        display: flex;
        flex-wrap: wrap;
    }

    .requirements-list > [class*="col-"] {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

.requirement-box {
    padding: 30px 25px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ebebeb;
    border-radius: 5px;
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .requirements-list > [class*="col-"]:not(:last-child) {
        margin-bottom: 5px;
    }
}

.requirement-box:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.requirement-box h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    position: relative;
    padding-bottom: 80px;
    background-image: linear-gradient(rgba(255, 165, 0, 0.95), rgba(255, 165, 0, 0.95));
}

.contact-section .section-title {
    color: #3c3c3c;
    margin-bottom: 40px;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper textarea {
    width: 100%;
    border: none;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 3px;
}

.contact-form-wrapper textarea {
    height: 120px;
    resize: vertical;
}

.contact-form-wrapper input[type="submit"] {
    width: 200px;
    margin: 20px auto 0;
    display: block;
}

.contact-address {
    margin-top: 40px;
    color: #fff;
}

.contact-address i {
    font-size: 24px;
    width: 44px;
    height: 44px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fff;
}

.contact-address p {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: #fff;
}

.footer-top {
    padding: 50px 0;
    text-align: center;
}

.footer-logo {
    max-width: 315px;
    margin: 0 auto 30px;
}

.footer-menu {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 20px 0;
    border-top: 1px solid #f4f4f4;
    border-bottom: 1px solid #f4f4f4;
    gap: 40px;
}

.footer-menu a {
    color: #9c9b9b;
    font-size: 14px;
    text-transform: capitalize;
}

.footer-menu a:hover {
    color: #000;
}

.footer-bottom {
    background: #134c80;
    padding: 20px 0;
    text-align: center;
}

.copyright {
    color: #fff;
    font-size: 14px;
}

.copyright p {
    margin: 0;
    color: #fff;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1599px) {
    .container-big {
        max-width: 1230px;
    }
    
    h1 { font-size: 60px; }
    h2 { font-size: 50px; }
    .section-title { font-size: 50px; }
    .hero-inner h1 { font-size: 80px; }
    .hero-car-image { max-width: 600px; }
}

@media (max-width: 1199px) {
    .hero-inner h1 { font-size: 60px; }
    .why-lease-content ul li { font-size: 22px; }
    .pricing-item { padding: 20px 30px; }
    .corporate-content ul li { width: 50%; }
}

@media (max-width: 991px) {
    .section-padding { padding: 60px 0; }
    .hero-banner { min-height: 70vh; }
    .hero-inner h1 { font-size: 48px; }
    .hero-car-image { display: none; }
    
    .menu-toggle { display: block; }
    .primary-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .primary-menu.active {
        right: 0;
    }
    
    .corporate-content ul li { width: 100%; }
}

@media (max-width: 767px) {
    h1 { font-size: 36px; }
    h2 { font-size: 32px; }
    .section-title { font-size: 32px; }
    .hero-inner h1 { font-size: 36px; }
    .why-lease-content ul li { font-size: 18px; }
    .step-box { margin-bottom: 30px; }
    .pricing-item { flex-direction: column; text-align: center; }
    .pricing-number { min-width: auto; }
    .requirement-box { margin-bottom: 15px; }
}

@media (max-width: 575px) {
    .section-padding { padding: 40px 0; }
    .btn { padding: 12px 30px; font-size: 14px; }
}
