/* =========================
   Global
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


body{

    font-family:
    Arial,
    Helvetica,
    sans-serif;

    color:#1f2933;

    background:#fff;

}


a{

    text-decoration:none;

}


img{

    max-width:100%;

    display:block;

}



.container{

    width:1200px;

    max-width:90%;

    margin:auto;

}



.section{

    padding:90px 0;

}


.title{

    text-align:center;

    font-size:40px;

    margin-bottom:50px;

}





/* =========================
 Header
========================= */

.header{

    height:82px;

    background:#fff;

    border-bottom:1px solid #eee;

    position:relative;

    z-index:1000;

}

/*
.header{

    height:82px;

    background:#fff;

    border-bottom:1px solid #eee;

    position:relative;

    z-index:1000;

}*/

/*
.header{
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;

    background: transparent;
    transition: all .3s ease;
}*/

.header.scrolled{
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
}


.header-inner{

    height:100%;

    display:flex;

    align-items:center;

}



.logo, .footer-logo{

    width:210px;

    height:82px;

    display:flex;

    align-items:center;

}


.logo img{

    height:64px;

    width:auto;

}





/* Navigation */


.navbar{

    flex:1;

    display:flex;

    justify-content:center;

}



.nav-menu{

    display:flex;

    list-style:none;

    align-items:center;

}



.nav-item{

    position:relative;

}



.nav-link{

    height:82px;

    padding:0 18px;

    display:flex;

    align-items:center;

    color:#333;

    font-weight:600;

    font-size:15px;

}



.nav-link:hover{

    color:#16834b;

}


.arrow{

    margin-left:5px;

    font-size:10px;

}





/* Mega Menu */


.mega-menu{

    position:absolute;

    top:82px;

    left:50%;

    transform:
    translateX(-50%);

    width:1100px;

    background:white;

    box-shadow:
    0 15px 40px rgba(0,0,0,.12);


    opacity:0;

    visibility:hidden;

}



.mega-dropdown:hover .mega-menu{

    opacity:1;

    visibility:visible;

}



.mega-menu-inner{

    padding:35px;

    display:grid;

    grid-template-columns:
    repeat(6,1fr);

    gap:25px;

}



.mega-column h4{

    color:#16834b;

    margin-bottom:15px;

}



.mega-column a{

    display:block;

    color:#64748b;

    margin-bottom:10px;

    font-size:14px;

}



.mega-column a:hover{

    color:#16834b;

}



.mega-footer{

    background:#f3f8f5;

    padding:18px 35px;

    display:flex;

    justify-content:space-between;

}



.mega-footer a{

    color:#16834b;

    font-weight:bold;

}





.quote-btn{

    background:#16834b;

    color:white;

    padding:13px 22px;

    border-radius:5px;

    font-weight:bold;

}




.mobile-menu-btn{

    display:none;

}





/* =========================
 Hero
========================= */


.hero{

    height:650px;

    background:

    linear-gradient(
    90deg,
    rgba(0,0,0,.65),
    rgba(0,0,0,.15)
    ),

    url("../images/hero.jpg")
    center/cover;


    display:flex;

    align-items:center;

}



.hero-content{

    color:white;

}



.hero h1{

    font-size:68px;

    line-height:1.1;

}



.hero h1 span{

    color:#72d59a;

}



.hero p{

    margin:30px 0;

    font-size:20px;

    max-width:600px;

}



.primary-btn,
.secondary-btn{

    display:inline-block;

    padding:15px 30px;

    border-radius:5px;

    margin-right:15px;

    font-weight:bold;

}



.primary-btn{

    background:#16834b;

    color:white;

}



.secondary-btn{

    border:1px solid white;

    color:white;

}





/* =========================
 Search
========================= */


.product-search{

    margin-top:-50px;

}



.search-box{

    background:white;

    padding:35px;

    border-radius:12px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.12);

    display:flex;

    gap:20px;

    align-items:center;

}



.search-box input{

    flex:1;

    padding:16px;

    border:1px solid #ddd;

    border-radius:8px 0 0 8px;

}



.search-box button{

    padding:16px 30px;

    background:#16834b;

    border:0;

    color:white;

    border-radius:0 8px 8px 0;

}





/* =========================
 Categories
========================= */


.category-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

}



.category-card{

    box-shadow:
    0 5px 20px rgba(0,0,0,.1);

}



.category-card img{

    height:280px;

    width:100%;

    object-fit:cover;

}



.category-card h3{

    padding:20px;

}





/* =========================
 Feature
========================= */


.why-section{

    background:#f5f8f6;

}



.feature-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

}



.feature-card{

    background:white;

    padding:35px;

    text-align:center;

    border-radius:10px;

}



.feature-icon{

    width:70px;

    height:70px;

    margin:0 auto 20px;

    display:flex;

    align-items:center;

    justify-content:center;

}



.feature-icon img{

    width:80%;

    height:80%;

    object-fit:contain;

}



.feature-card h3{

    margin-bottom:15px;

}



.feature-card p{

    color:#64748b;

    line-height:1.7;

}





/* =========================
 Contact
========================= */


.page-banner{

    height:320px;

    background:

    linear-gradient(
    rgba(22,101,52,.85),
    rgba(22,101,52,.85)
    ),

    url("../images/contact-banner.jpg")
    center/cover;


    color:white;

    display:flex;

    align-items:center;

    text-align:center;

}



.page-banner h1{

    font-size:50px;

}



.contact-banner {
    background:
        linear-gradient(
            90deg,
            rgba(16, 37, 26, .90),
            rgba(22, 131, 75, .65)
        ),
        url("../images/about/contact-banner.jpg")
        center / cover no-repeat;
}

.contact-section{

    padding:90px 0;

}



.contact-grid{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:70px;

}



.contact-form{

    padding:40px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.1);

    border-radius:12px;

}



.contact-form input,
.contact-form textarea,
.contact-form select{

    width:100%;

    padding:15px;

    margin-bottom:15px;

    border:1px solid #ddd;

    border-radius:6px;

}



.contact-form button{

    width:100%;

    padding:15px;

    background:#16834b;

    color:white;

    border:0;

    border-radius:6px;

    font-weight:bold;

}




/* =========================
 Footer
========================= */


.footer{

    background:#10251a;

    color:white;

    padding:70px 0 20px;

}



.footer-grid{

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:40px;

}



.footer-column a{

    display:block;

    color:#9fb4a8;

    margin-bottom:12px;

}



.footer-bottom{

    margin-top:50px;

    padding-top:20px;

    border-top:1px solid #31483b;

    text-align:center;

    color:#9fb4a8;

}





/* =========================
 Mobile
========================= */


@media(max-width:900px){


.navbar{

    display:none;

}



.navbar.active{

    display:block;

    position:absolute;

    top:82px;

    left:0;

    width:100%;

    background:white;

}



.nav-menu{

    display:block;

}



.mobile-menu-btn{

    display:block;

    margin-left:20px;

}



.category-grid,
.feature-grid,
.contact-grid{

    grid-template-columns:1fr;

}



.hero h1{

    font-size:45px;

}


}

/*-  products -*/
/* =========================
 Product Page
========================= */


.product-banner{

height:350px;

}





.products-section{

padding:80px 0;

}



.products-layout{

display:grid;

grid-template-columns:
250px 1fr;

gap:40px;

}





/* Sidebar */


.product-filter{

border:1px solid #eee;

padding:30px;

border-radius:10px;

height:max-content;

}


.product-filter h3{

margin-bottom:20px;

}



.product-filter ul{

list-style:none;

}



.product-filter li{

padding:12px 0;

border-bottom:1px solid #eee;

cursor:pointer;

color:#64748b;

}



.product-filter li:hover{

color:#16834b;

}



.product-filter select{

width:100%;

padding:12px;

margin-top:10px;

}





/* Search */


.product-search-bar{

display:flex;

margin-bottom:30px;

}



.product-search-bar input{

flex:1;

padding:16px;

border:1px solid #ddd;

}



.product-search-bar button{

padding:0 35px;

background:#16834b;

border:0;

color:white;

}





/* Product Grid */


.product-grid{

display:grid;

grid-template-columns:
repeat(3,1fr);

gap:25px;

}




.product-card{

border:1px solid #eee;

background:white;

border-radius:10px;

overflow:hidden;

transition:.3s;

}



.product-card:hover{

box-shadow:
0 10px 30px rgba(0,0,0,.12);

transform:
translateY(-5px);

}



.product-card img{

height:260px;

width:100%;

object-fit:cover;

}



.product-info{

padding:25px;

}



.product-info span{

font-size:13px;

color:#16834b;

font-weight:bold;

}



.product-info h3{

font-size:20px;

margin:12px 0;

}



.product-info p{

color:#64748b;

font-size:14px;

margin-bottom:15px;

}



.product-info a{

color:#16834b;

font-weight:bold;

}







@media(max-width:900px){


.products-layout{

grid-template-columns:1fr;

}


.product-grid{

grid-template-columns:
1fr;

}

}

/* Products detail */
/* =========================
 Product Detail
========================= */


.product-detail-section{

padding:90px 0;

}




.product-detail{

display:grid;

grid-template-columns:
1fr 1fr;

gap:70px;

}





/* Gallery */


.main-image{

border:1px solid #eee;

border-radius:12px;

overflow:hidden;

}



.main-image img{

width:100%;

height:550px;

object-fit:cover;

}





.thumbnail-list{

display:flex;

gap:15px;

margin-top:20px;

}



.thumbnail-list img{

width:90px;

height:90px;

object-fit:cover;

border:1px solid #ddd;

border-radius:8px;

cursor:pointer;

}





/* Information */


.product-category{

color:#16834b;

font-weight:bold;

font-size:14px;

}



.product-detail-info h1{

font-size:45px;

margin:15px 0;

}



.product-number{

color:#64748b;

}





.description{

margin:25px 0;

line-height:1.8;

color:#475569;

}





.product-options{

border-top:1px solid #eee;

padding-top:25px;

}



.product-options h4{

margin-bottom:15px;

}





.colors{

display:flex;

gap:12px;

}



.colors span{

width:32px;

height:32px;

border-radius:50%;

border:1px solid #ddd;

}



.black{

background:#000;

}


.white{

background:#fff;

}



.blue{

background:#2563eb;

}






.product-options ul{

padding-left:20px;

line-height:2;

}





.product-meta{

display:grid;

grid-template-columns:
repeat(3,1fr);

gap:20px;

margin:35px 0;

}



.product-meta div{

background:#f5f8f6;

padding:20px;

border-radius:8px;

text-align:center;

}





.quote-box{

background:#f5f8f6;

padding:30px;

border-radius:12px;

}



.quantity input{

width:120px;

padding:12px;

margin:10px 0;

}





.quote-btn-large{

display:block;

background:#16834b;

color:white;

text-align:center;

padding:15px;

border-radius:6px;

font-weight:bold;

}





.related-products{

padding:80px 0;

background:#fafafa;

}




@media(max-width:900px){


.product-detail{

grid-template-columns:1fr;

}



.product-detail-info h1{

font-size:35px;

}

}

.product-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    transform: translateY(-5px);
}

.product-card h3 {
    color: #1f2933;
}

.product-card:hover h3 {
    color: #16834b;
}

/* =========================
   Common Section Heading
========================= */

.section-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading h2 {
    margin: 12px 0 18px;
    font-size: 40px;
    line-height: 1.2;
}

.section-heading p {
    color: #64748b;
    font-size: 17px;
    line-height: 1.7;
}

.section-label {
    color: #16834b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}


/* =========================
   Services Page
========================= */

.services-banner {
    background:
        linear-gradient(
            90deg,
            rgba(16, 37, 26, .88),
            rgba(22, 131, 75, .68)
        ),
        url("../images/services/services-banner.jpg")
        center / cover no-repeat;
}

.page-banner p {
    max-width: 680px;
    margin: 20px auto 0;
    font-size: 18px;
    line-height: 1.7;
}

.services-intro {
    padding: 90px 0;
}

.services-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.services-intro-content h2 {
    margin: 15px 0 25px;
    font-size: 44px;
    line-height: 1.2;
}

.services-intro-content p {
    margin-bottom: 20px;
    color: #64748b;
    line-height: 1.8;
}

.services-intro-content .primary-btn {
    margin-top: 15px;
}

.services-intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.services-section {
    padding: 90px 0;
    background: #f5f8f6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    padding: 40px 35px;
    background: #ffffff;
    border-radius: 12px;
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf6ef;
    border-radius: 50%;
}

.service-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.service-card p {
    color: #64748b;
    line-height: 1.7;
}

.service-process {
    padding: 90px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-item {
    position: relative;
    padding: 30px;
}

.process-item span {
    display: block;
    margin-bottom: 20px;
    color: #16834b;
    font-size: 40px;
    font-weight: 700;
}

.process-item h3 {
    margin-bottom: 15px;
    font-size: 21px;
}

.process-item p {
    color: #64748b;
    line-height: 1.7;
}

.service-cta,
.ideas-cta {
    padding: 80px 20px;
    background: #16834b;
    color: #ffffff;
    text-align: center;
}

.service-cta h2,
.ideas-cta h2 {
    margin-bottom: 15px;
    font-size: 42px;
}

.service-cta p,
.ideas-cta p {
    margin-bottom: 30px;
    font-size: 18px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #ffffff;
    color: #16834b;
    border-radius: 6px;
    font-weight: 700;
}


/* =========================
   Ideas Page
========================= */

.ideas-banner {
    background:
        linear-gradient(
            90deg,
            rgba(16, 37, 26, .88),
            rgba(22, 131, 75, .65)
        ),
        url("../images/ideas/ideas-banner.jpg")
        center / cover no-repeat;
}

.ideas-intro {
    padding: 90px 0 40px;
}

.idea-categories {
    padding: 20px 0 100px;
}

.ideas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.idea-card {
    display: block;
    overflow: hidden;
    background: #ffffff;
    color: inherit;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    transition: .3s;
}

.idea-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .1);
}

.idea-image {
    overflow: hidden;
}

.idea-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .4s;
}

.idea-card:hover .idea-image img {
    transform: scale(1.05);
}

.idea-content {
    padding: 30px;
}

.idea-content span {
    color: #16834b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.idea-content h3 {
    margin: 12px 0 15px;
    font-size: 23px;
}

.idea-content p {
    min-height: 82px;
    margin-bottom: 20px;
    color: #64748b;
    line-height: 1.7;
}

.idea-content strong {
    color: #16834b;
}

.featured-idea {
    padding: 90px 0;
    background: #f5f8f6;
}

.featured-idea-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

.featured-idea-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 12px;
}

.featured-idea-content h2 {
    margin: 15px 0 25px;
    font-size: 44px;
    line-height: 1.2;
}

.featured-idea-content p {
    margin-bottom: 20px;
    color: #64748b;
    line-height: 1.8;
}

.featured-idea-content .primary-btn {
    margin-top: 15px;
}


/* =========================
   Services / Ideas Mobile
========================= */

@media (max-width: 900px) {

    .services-intro-grid,
    .featured-idea-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid,
    .ideas-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-intro-content h2,
    .featured-idea-content h2,
    .section-heading h2 {
        font-size: 34px;
    }

    .services-intro-image img,
    .featured-idea-image img {
        height: 400px;
    }

}


@media (max-width: 600px) {

    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-cta h2,
    .ideas-cta h2 {
        font-size: 32px;
    }

    .idea-image img {
        height: 240px;
    }

}

/* =========================
   About Page
========================= */


/* Banner */

.about-banner {
    background:
        linear-gradient(
            90deg,
            rgba(16, 37, 26, .90),
            rgba(22, 131, 75, .65)
        ),
        url("../images/about/about-banner.jpg")
        center / cover no-repeat;
}


/* =========================
   About Intro
========================= */

.about-intro {
    padding: 100px 0;
}

.about-intro-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}


.about-intro-content h2 {
    margin: 15px 0 25px;

    font-size: 46px;

    line-height: 1.2;
}


.about-intro-content p {
    margin-bottom: 20px;

    color: #64748b;

    font-size: 16px;

    line-height: 1.8;
}


.about-intro-image img {
    width: 100%;

    height: 550px;

    object-fit: cover;

    border-radius: 12px;
}


/* =========================
   Brand Statement
========================= */

.brand-statement {
    padding: 100px 20px;

    background: #10251a;

    color: #ffffff;

    text-align: center;
}


.brand-statement .section-label {
    color: #72d59a;
}


.brand-statement h2 {
    margin: 20px 0;

    font-size: 56px;

    line-height: 1.2;
}


.brand-statement p {
    max-width: 720px;

    margin: auto;

    color: #c4d3ca;

    font-size: 19px;

    line-height: 1.8;
}


/* =========================
   Mission
========================= */

.mission-section {
    padding: 100px 0;

    background: #f5f8f6;
}


.mission-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 35px;
}


.mission-card {
    padding: 50px;

    background: #ffffff;

    border-radius: 12px;
}


.mission-card span {
    color: #16834b;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;
}


.mission-card h2 {
    margin: 20px 0 25px;

    font-size: 32px;

    line-height: 1.3;
}


.mission-card p {
    margin-bottom: 18px;

    color: #64748b;

    line-height: 1.8;
}


/* =========================
   Values
========================= */

.about-values {
    padding: 100px 0;
}


.values-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}


.value-card {
    padding: 40px 30px;

    text-align: center;

    border: 1px solid #eeeeee;

    border-radius: 12px;

    transition: .3s;
}


.value-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .08);
}


.value-icon {
    width: 70px;

    height: 70px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #eaf6ef;

    border-radius: 50%;
}


.value-icon img {
    width: 42px;

    height: 42px;

    object-fit: contain;
}


.value-card h3 {
    margin-bottom: 15px;

    font-size: 22px;
}


.value-card p {
    color: #64748b;

    line-height: 1.7;
}


/* =========================
   How We Work
========================= */

.about-work {
    padding: 100px 0;

    background: #f5f8f6;
}


.about-work-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}


.about-work-image img {
    width: 100%;

    height: 620px;

    object-fit: cover;

    border-radius: 12px;
}


.about-work-content > h2 {
    margin: 15px 0 25px;

    font-size: 44px;

    line-height: 1.2;
}


.about-work-content > p {
    margin-bottom: 35px;

    color: #64748b;

    line-height: 1.8;
}


.about-work-item {
    display: flex;

    gap: 25px;

    margin-bottom: 30px;
}


.about-work-item strong {
    color: #16834b;

    font-size: 26px;
}


.about-work-item h3 {
    margin-bottom: 8px;

    font-size: 20px;
}


.about-work-item p {
    color: #64748b;

    line-height: 1.7;
}


/* =========================
   About CTA
========================= */

.about-cta {
    padding: 90px 20px;

    background: #16834b;

    color: #ffffff;

    text-align: center;
}


.about-cta h2 {
    margin-bottom: 18px;

    font-size: 46px;
}


.about-cta p {
    margin-bottom: 30px;

    font-size: 18px;
}


/* =========================
   About Mobile
========================= */

@media (max-width: 900px) {

    .about-intro-grid,
    .mission-grid,
    .about-work-grid {
        grid-template-columns: 1fr;
    }


    .values-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .about-intro-content h2,
    .about-work-content > h2 {
        font-size: 36px;
    }


    .brand-statement h2 {
        font-size: 44px;
    }


    .about-intro-image img {
        height: 450px;
    }


    .about-work-image img {
        height: 500px;
    }

}


@media (max-width: 600px) {

    .values-grid {
        grid-template-columns: 1fr;
    }


    .mission-card {
        padding: 35px 25px;
    }


    .brand-statement h2 {
        font-size: 36px;
    }


    .about-cta h2 {
        font-size: 34px;
    }


    .about-intro-image img,
    .about-work-image img {
        height: 350px;
    }

}

/* =========================
   Quote Page
========================= */

.quote-banner {
    background:
        linear-gradient(
            90deg,
            rgba(16, 37, 26, .92),
            rgba(22, 131, 75, .68)
        ),
        url("../images/quote/quote-banner.jpg")
        center / cover no-repeat;
}


/* =========================
   Quote Layout
========================= */

.quote-page {
    padding: 100px 0;
    background: #f5f8f6;
}


.quote-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 50px;
    align-items: start;
}


/* =========================
   Form Wrapper
========================= */

.quote-form-wrapper {
    padding: 50px;
    background: #ffffff;
    border-radius: 14px;
}


.quote-form-heading {
    margin-bottom: 45px;
}


.quote-form-heading h2 {
    margin: 15px 0;
    font-size: 40px;
    line-height: 1.2;
}


.quote-form-heading p {
    color: #64748b;
    line-height: 1.7;
}


/* =========================
   Form Section
========================= */

.form-section {
    padding: 0 0 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #e5e7eb;
}


.form-section h3 {
    margin-bottom: 25px;
    font-size: 22px;
}


.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}


.form-group {
    display: flex;
    flex-direction: column;
}


.form-full {
    grid-column: 1 / -1;
}


.form-group label {
    margin-bottom: 9px;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;

    color: #1e293b;
    font-family: inherit;
    font-size: 15px;

    background: #ffffff;

    border: 1px solid #dbe1e8;
    border-radius: 7px;

    outline: none;

    transition: .2s;
}


.form-group input,
.form-group select {
    height: 52px;
}


.form-group textarea {
    resize: vertical;
    line-height: 1.7;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #16834b;

    box-shadow:
        0 0 0 3px rgba(22, 131, 75, .10);
}


/* =========================
   File Upload
========================= */

.file-upload {
    display: block !important;
    margin: 0 !important;
    cursor: pointer;
}


.file-upload input {
    display: none;
}


.file-upload-content {
    padding: 45px 20px;

    text-align: center;

    background: #f8faf9;

    border: 2px dashed #cbd5e1;
    border-radius: 10px;

    transition: .3s;
}


.file-upload:hover .file-upload-content {
    background: #f0f8f3;
    border-color: #16834b;
}


.upload-icon {
    width: 55px;
    height: 55px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    font-size: 28px;

    background: #16834b;

    border-radius: 50%;
}


.file-upload-content strong {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
}


.file-upload-content p {
    margin-bottom: 8px;
    color: #64748b;
}


.file-upload-content small {
    color: #16834b;
}


/* =========================
   Submit
========================= */

.quote-submit {
    text-align: center;
}


.quote-submit-btn {
    width: 100%;
    padding: 17px 30px;

    color: #ffffff;
    font-size: 16px;
    font-weight: 700;

    background: #16834b;

    border: 0;
    border-radius: 7px;

    cursor: pointer;

    transition: .3s;
}


.quote-submit-btn:hover {
    background: #106b3c;
    transform: translateY(-2px);
}


.quote-submit p {
    margin-top: 15px;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.6;
}


/* =========================
   Sidebar
========================= */

.quote-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}


.quote-help-card,
.quote-info-card,
.quote-response-card {
    padding: 35px;

    background: #ffffff;

    border-radius: 12px;
}


.quote-help-card h3 {
    margin: 15px 0;

    font-size: 25px;

    line-height: 1.3;
}


.quote-help-card p {
    margin-bottom: 20px;

    color: #64748b;

    line-height: 1.7;
}


.quote-help-card a {
    color: #16834b;
    font-weight: 700;
}


.quote-info-card h3 {
    margin-bottom: 30px;

    font-size: 24px;
}


/* =========================
   Quote Steps
========================= */

.quote-step {
    display: flex;

    gap: 18px;

    margin-bottom: 28px;
}


.quote-step:last-child {
    margin-bottom: 0;
}


.quote-step > span {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #16834b;

    font-size: 13px;
    font-weight: 700;

    background: #eaf6ef;

    border-radius: 50%;
}


.quote-step strong {
    display: block;

    margin-bottom: 7px;

    color: #1e293b;
}


.quote-step p {
    color: #64748b;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================
   Response Card
========================= */

.quote-response-card {
    color: #ffffff;

    background: #10251a;
}


.quote-response-card h3 {
    margin-bottom: 15px;

    font-size: 23px;
}


.quote-response-card p {
    color: #c4d3ca;

    line-height: 1.7;
}


/* =========================
   Quote Responsive
========================= */

@media (max-width: 1000px) {

    .quote-page-grid {
        grid-template-columns: 1fr;
    }


    .quote-sidebar {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);
    }


    .quote-response-card {
        grid-column: 1 / -1;
    }

}


@media (max-width: 700px) {

    .quote-page {
        padding: 60px 0;
    }


    .quote-form-wrapper {
        padding: 30px 20px;
    }


    .form-grid {
        grid-template-columns: 1fr;
    }


    .form-full {
        grid-column: auto;
    }


    .quote-sidebar {
        display: flex;
    }


    .quote-form-heading h2 {
        font-size: 32px;
    }

}

/* ===============================
   Announcement Bar
=================================*/
/*
.announcement-bar{

    background:#0B5ED7;

    color:#fff;

    font-size:14px;

    width:100%;

    padding:10px 20px;

    box-sizing:border-box;

}*/
	

.announcement-bar{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    height: 60px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: Red;

    z-index: 9999;
}

.announcement-container{

    max-width:1200px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.announcement-content{

    display:flex;

    align-items:center;

    gap:10px;

}

.announcement-icon{

    font-size:18px;

}

.announcement-text{

    line-height:1.5;

}

/*
.announcement-close{

    background:none;

    border:none;

    color:#fff;

    cursor:pointer;

    font-size:24px;

    padding:0 5px;

    transition:.3s;

}
*/
.announcement-close{

    /*position:absolute;*/

    right:20px;

    background:none;

    border:none;

    color:#fff;

    font-size:28px;

    cursor:pointer;

}

.announcement-close:hover{

    opacity:.7;

}
