/*=========================================
Google Font & Reset
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f7f7;
    color:#222;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 15px;
}

/*=========================================
Hero
=========================================*/

.hero{

    position:relative;

    background:url("../images/FORESTIA MASTER.jpg.jpeg") center center/cover no-repeat;

    min-height:470px;

    display:flex;

    align-items:flex-start;

    padding:40px 0 170px;

}

.hero-overlay{

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:100%;

    background:linear-gradient(
    to right,
    rgba(255,255,255,.95),
    rgba(255,255,255,.55),
    rgba(255,255,255,.10)
    );

}

.hero .container{

    position:relative;
    z-index:2;

}

.logo-area{

    margin-bottom:50px;

}

.logo{

    width:300px;

}

.hero-content{

    display:flex;
    align-items:center;

}

.left-content{

    width:520px;

}

.rentometer-title{

    display:flex;
    align-items:center;
    gap:25px;

}

.meter-icon{

    width:90px;
    height:90px;

    border-radius:50%;

    background:#ffffff;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#0c4b2f;

    font-size:45px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.rentometer-title h1{

    font-size:58px;

    line-height:1;

    color:#0d4b30;

    font-weight:800;

    letter-spacing:1px;

}

.rentometer-title p{

    margin-top:15px;

    font-size:22px;

    color:#444;

    line-height:1.5;

}

/*=========================================
Form Section
=========================================*/

.form-section{

    margin-top:-120px;

    position:relative;

    z-index:50;

}

.form-wrapper{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:30px;

    align-items:stretch;

}

.form-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

    box-shadow:0 18px 45px rgba(0,0,0,.10);

}

.form-card h2{

    color:#0d4b30;

    font-size:36px;

    margin-bottom:35px;

    font-weight:700;

}

.row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;

}

.form-group{

    margin-bottom:25px;

}

.form-group label{

    display:block;

    margin-bottom:10px;

    font-size:16px;

    color:#333;

    font-weight:500;

}

.input-box{

    height:64px;

    border:1px solid #d8d8d8;

    border-radius:12px;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:#fff;

    transition:.3s;

}

.input-box:hover{

    border-color:#0d4b30;

}

.input-box:focus-within{

    border-color:#0d4b30;

    box-shadow:0 0 0 3px rgba(13,75,48,.08);

}

.input-box span{

    width:60px;

    display:flex;

    justify-content:center;

    align-items:center;

    height:100%;

    border-right:1px solid #ececec;

    font-size:22px;

    color:#0d4b30;

    flex-shrink:0;

}

.input-box input{

    flex:1;

    border:none;

    outline:none;

    background:none;

    padding:0 18px;

    font-size:16px;

    color:#222;

    font-family:'Poppins',sans-serif;

}

.input-box input::placeholder{

    color:#999;

}

.input-box select{

    flex:1;

    border:none;

    outline:none;

    background:none;

    padding:0 18px;

    font-size:16px;

    font-family:'Poppins',sans-serif;

    appearance:none;

    cursor:pointer;

}

.full{

    width:100%;

}

.calculate-btn{

    width:100%;

    height:68px;

    border:none;

    border-radius:12px;

    background:#0d4b30;

    color:#fff;

    font-size:20px;

    font-weight:700;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    cursor:pointer;

    transition:.3s;

}

.calculate-btn:hover{

    background:#06361f;

    transform:translateY(-2px);

}

.calculate-btn i{

    font-size:20px;

}

/*=========================================
Right Card
=========================================*/

.info-card{

    background:#fff;

    border-radius:22px;

    padding:45px 35px;

    text-align:center;

    box-shadow:0 18px 45px rgba(0,0,0,.10);

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.info-card img{

    width:95px;

    margin:0 auto 30px;

}

.info-card h3{

    font-size:34px;

    line-height:1.4;

    font-weight:600;

    color:#222;

}

.divider{

    width:90px;

    height:2px;

    background:#0d4b30;

    margin:35px auto;

    position:relative;

}

.divider::before{

    content:"";

    position:absolute;

    width:14px;

    height:14px;

    background:#0d4b30;

    border-radius:50%;

    left:50%;

    transform:translateX(-50%);

    top:-6px;

}

.info-card p{

    font-size:22px;

    color:#333;

    line-height:1.8;

}

.info-card strong{

    color:#0d4b30;

}
/*=========================================
COMPARISON SECTION
=========================================*/

.comparison{
    padding:70px 0;
    background:#f7f7f7;
}

.comparison h2{
    text-align:center;
    font-size:38px;
    font-weight:700;
    color:#0d4b30;
    margin-bottom:50px;
    text-transform:uppercase;
}

.comparison h2 span{
    color:#666;
    font-size:28px;
    margin:0 15px;
    text-transform:lowercase;
}

.comparison-wrapper{
    display:grid;
    grid-template-columns:1fr 120px 1fr;
    align-items:center;
    gap:25px;
}

/*==========================
Cards
==========================*/

.compare-card{

    position:relative;

    background:#fff;

    border-radius:22px;

    padding:40px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    min-height:470px;

    transition:.35s;
}

.compare-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.compare-card.left{

    border-top:6px solid #d65d5d;

}

.compare-card.right{

    border-top:6px solid #0d4b30;

}

/*==========================
Icon Circle
==========================*/

.icon-circle{

    width:110px;

    height:110px;

    border-radius:50%;

    background:#fafafa;

    border:2px solid #efefef;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 30px;

}

.icon-circle img{

    width:60px;

}

.compare-card h3{

    text-align:center;

    font-size:30px;

    margin-bottom:20px;

    font-weight:700;

}

.compare-card.left h3{

    color:#a23b3b;

}

.compare-card.right h3{

    color:#0d4b30;

}

.compare-card h4{

    text-align:center;

    font-size:34px;

    font-weight:700;

    margin-bottom:12px;

}

.compare-card h4 span{

    color:#0d4b30;

}

.compare-card h5{

    text-align:center;

    font-size:28px;

    font-weight:600;

    margin-bottom:35px;

    line-height:1.5;

}

.compare-card h5 span{

    display:block;

    color:#0d4b30;

    font-size:40px;

    font-weight:800;

    margin-top:12px;

}

.compare-card p{

    text-align:center;

    color:#666;

    margin-bottom:35px;

    font-size:18px;

}

.compare-card ul{

    margin-top:25px;

}

.compare-card ul li{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:20px;

    font-size:17px;

    line-height:1.7;

    color:#444;

}

.compare-card.left ul li i{

    color:#d25b5b;

    font-size:20px;

    margin-top:4px;

}

.compare-card.right ul li i{

    color:#0d4b30;

    font-size:20px;

    margin-top:4px;

}

/*==========================
VS Circle
==========================*/

.vs-circle{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    font-weight:800;

    color:#0d4b30;

    margin:auto;

    box-shadow:0 12px 35px rgba(0,0,0,.12);

}

/*=========================================
CTA SECTION
=========================================*/

.cta{

    padding-bottom:60px;

}

.cta-wrapper{

    background:#0d4b30;

    border-radius:18px;

    padding:35px 40px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:25px;

}

.cta-text h3{

    color:#fff;

    font-size:30px;

    font-weight:700;

    margin-bottom:8px;

}

.cta-text p{

    color:#d7eadf;

    font-size:18px;

}

.cta-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.cta-btn{

    height:60px;

    padding:0 28px;

    border:2px solid rgba(255,255,255,.35);

    color:#fff;

    border-radius:12px;

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

    transition:.3s;

}

.cta-btn:hover{

    background:#fff;

    color:#0d4b30;

}

.cta-btn i{

    font-size:18px;

}

/*=========================================
FOOTER
=========================================*/

footer{

    padding:15px 0 40px;

}

footer p{

    text-align:left;

    color:#666;

    font-size:14px;

}

/*=========================================
Utility
=========================================*/

.text-center{

    text-align:center;

}

.mt-20{

    margin-top:20px;

}

.mt-30{

    margin-top:30px;

}

.mt-40{

    margin-top:40px;

}

.mb-20{

    margin-bottom:20px;

}

.mb-30{

    margin-bottom:30px;

}

.mb-40{

    margin-bottom:40px;

}

/*=========================================
Animations
=========================================*/

.calculate-btn,
.cta-btn,
.compare-card,
.form-card,
.info-card{

    transition:all .35s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.form-card{

    animation:fadeUp .8s ease;

}

.info-card{

    animation:fadeUp 1s ease;

}

.compare-card{

    animation:fadeUp 1.2s ease;

}

/*=========================================
Selection
=========================================*/

::selection{

    background:#0d4b30;

    color:#fff;

}