/*====================================================

 EXTERIOR CREATIONS INC
 Smart Solutions for Your Business

 Author : Axis Solutions LLC
 Version : 1.0

======================================================*/


/*==================================================
EXTERIOR CREATIONS BRAND COLORS
==================================================*/

:root{

    /* Primary Brand */

    --primary:#2E7D32;

    --primary-dark:#1B5E20;

    --primary-light:#43A047;

    --secondary:#66BB6A;

    --accent:#8BC34A;

    /* Neutral Colors */

    --white:#FFFFFF;

    --light:#F5F9F4;

    --background:#FAFCFA;

    --gray-100:#F3F5F4;

    --gray-200:#E8ECE9;

    --gray-300:#D5DBD7;

    --gray-500:#7A8680;

    --gray-700:#4E5A54;
	
	/* Extra Variables */

--gray:var(--gray-700);

--border:#E6ECE8;



    --dark:#233028;

    --black:#111111;

    /* Status */

    --success:#2E7D32;

    --warning:#F9A825;

    --danger:#D32F2F;

    /* Radius */

    --radius-sm:8px;

    --radius:14px;

    --radius-lg:24px;

    /* Shadows */

    --shadow-sm:0 4px 12px rgba(0,0,0,.08);

    --shadow:   0 12px 30px rgba(0,0,0,.10);
	
	--shadow-md:0 16px 40px rgba(0,0,0,.12);

    --shadow-lg:0 25px 60px rgba(0,0,0,.16);

    /* Animation */

    --transition:.35s ease;

}



/*==================================================
GLOBAL SECTIONS
==================================================*/

section{

    position:relative;
    padding:110px 0;

}

section:nth-of-type(even){
    background: #FAFCFA;
}

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}


html{

    scroll-behavior:smooth;
    scroll-padding-top:85px;

}


body{

    font-family:'Inter',sans-serif;
    color:var(--dark);
    background:var(--background);
    line-height:1.7;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
    padding-top:85px;

}




img{
    display: block;
    max-width: 100%;
    height: auto;
    }

.service-card img,
.fleet-card img,
.project-card img{
    transition: .45s;
}

.service-card img:hover,
.fleet-card img:hover,
.project-card img:hover{
    transform: scale(1.02);
}


ul{

    list-style:none;

}


button{

    cursor:pointer;

    border:none;

    font-family:inherit;

}


.container{

    width:min(1200px,92%);

    margin:auto;

}

.navbar{
    position:relative;
}

/*====================================================
    HOME PAGE - SECTION SPACING
======================================================*/

.home-page section{
    padding:70px 0;
}

/*====================================================
    HOME - CONTACT PREVIEW
======================================================*/

.home-page .contact-preview .contact-grid{
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:60px;
    align-items:start;
}

.home-page .contact-preview .contact-info{
    width:100%;
}

.home-page .contact-preview .contact-card{
    width:100%;
    height:auto;
}

.home-page .contact-summary{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:0;
    margin-top:40px;
}

.home-page .contact-summary .contact-item{
    min-width:0;
}


/*====================================================

TYPOGRAPHY

======================================================*/

h1,h2,h3,h4,h5{

    font-family:'Poppins',sans-serif;

    color:var(--dark);

    line-height:1.2;

}


h1{

    font-size:3.9rem;

    font-weight:700;

}


h2{

    font-size:2.8rem;

    margin-bottom:20px;

}


h3{

    font-size:1.5rem;

}


p{

    color:var(--gray-700);

}


.section-header{

    text-align:center;

    max-width:850px;

    margin:auto auto 70px;

}


.section-header span{

    display:inline-block;

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:12px;

}


.section-header p{

    margin-top:20px;

}


/*====================================================

BUTTONS

======================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 36px;

    background:var(--primary);

    color:#fff;

    border-radius:999px;

    font-weight:600;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.btn:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

    box-shadow:var(--shadow);

}


.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 22px;

    background:transparent;
    color:var(--primary);

    border:2px solid var(--primary);
    border-radius:50px;

    font-size:14px;
    font-weight:600;
    line-height:1;

    text-decoration:none;
    white-space:nowrap;

    transition:var(--transition);
}

.btn-outline:hover{
    background:var(--primary);
    color:var(--white);
    text-decoration:none;
}


.back-top{

    width:55px;
    height:55px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;

    position:fixed;
    right:30px;
    bottom:30px;

    border:none;
    cursor:pointer;

    opacity:0;
    visibility:hidden;

    transform:translateY(20px);

    transition:.35s;

    z-index:9999;

    box-shadow:var(--shadow);

}

.back-top.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.back-top:hover{

    background:var(--primary-dark);

    transform:translateY(-5px);

}

.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    border:2px solid var(--primary);
    border-radius:50px;

    background:transparent;
    color:var(--primary);

    font-weight:600;
    text-decoration:none;

    transition:var(--transition);
}

.btn-secondary:hover{
    background:var(--primary);
    color:var(--white);
    transform:translateY(-2px);
}

/*====================================================

HEADER

======================================================*/


.top-bar{

    height:42px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:.85rem;

    color:#fff;

    background:var(--primary-dark);

    padding:0 25px;

}

.top-bar-left,
.top-bar-right{

    display:flex;

    gap:30px;

    align-items:center;

}

.top-bar i{

    margin-right:8px;

    color:#AEEA00;

}

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    background:rgba(255,255,255,.97);

    backdrop-filter:blur(14px);

    transition:var(--transition);

}

.header.scrolled{

    height:75px;

    box-shadow:0 8px 25px rgba(0,0,0,.12);

}

.header.sticky{

    box-shadow:0 12px 35px rgba(0,0,0,.10);

}

.header.sticky .top-bar{

    height:0;

    opacity:0;

    overflow:hidden;

    padding:0 25px;

}

.header.sticky .navbar{

    height:75px;

}

.header.sticky .logo img{

    height:48px;

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    max-width:1200px;

    margin:auto;

    height:85px;

}


.logo img{
    height:65px;
    width:auto;
}


.menu{

    display:flex;

    gap:35px;

}

.menu a{

    color:var(--dark);
	text-decoration:none;

    font-weight:600;

    position:relative;

    transition:.3s;

}

.menu a::after{

    display:none;

}

.menu a:hover{

    color:var(--primary);

}


/* Página activa */

.menu a.active{

    color:var(--primary);

    font-weight:700;

}



.header-right{

    display:flex;

    align-items:center;

    gap:18px;

}
.btn-header{

    background:var(--primary);

    color:#fff;

    padding:14px 28px;

    border-radius:999px;

    font-weight:600;

    transition:.35s;

}

.btn-header:hover{

    background:var(--primary-dark);

    transform:translateY(-2px);

}
.language-btn{

    width:44px;

    height:44px;

    border-radius:50%;

    background:#f3f4f6;

    font-weight:700;

}


.language-btn:hover{

    background:var(--primary);

    color:#fff;

}


.mobile-menu{

    display:none;

    background:none;

    font-size:2rem;

    color:var(--primary);

}

/*==================================================
FLEET - RESOURCES
==================================================*/

.fleet{

    padding:100px 0;
	background:#fff;

}

.fleet-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.fleet-image img{

    width:100%;

    border-radius:25px;

    box-shadow:var(--shadow-lg);

    transition:var(--transition);

}

.fleet-content p{

    margin-bottom:20px;

}

.fleet-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:35px;

}

.fleet-features div{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

}

.fleet-features i{

    color:var(--primary);

    font-size:1.1rem;

}

/*====================================================
    RESOURCES PAGE - SECTION SPACING
======================================================*/

.resources-page section{
    padding:70px 0;
}

.resources-page .page-header{
    padding-bottom:40px;
}

/*==================================================
SERVICE AREAS
==================================================*/

.service-areas{

    padding:100px 0;

}

.areas-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:60px;

}

.area-card{

    padding:30px;

    background:#fff;

    border-radius:18px;

    text-align:center;

    font-weight:700;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.area-card:hover{

    transform:translateY(-8px);

    background:var(--primary);

    color:#fff;

    box-shadow:var(--shadow-lg);

}

.area-card:hover *{

    color:#fff;

}
/*==================================================
HERO
==================================================*/

.hero{

    position:relative;
    overflow:hidden;

    min-height:calc(100vh - 85px);

    display:flex;
    align-items:center;

    padding:170px 0 120px;

    background:
        linear-gradient(
            rgba(18,55,28,.78),
            rgba(18,55,28,.70)
        ),
        url("../images/hero-commercial.jpg")
        center center/cover no-repeat;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top right,

    rgba(255,255,255,.08),

    transparent 45%);

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:70px;

}

.hero-content{

    color:#fff;

}

.hero-content h1{

    color:#fff;

    font-size:4.5rem;

    font-weight:800;

    line-height:1.08;

    margin-bottom:20px;

}

.hero-content h2{

    color:#9CCC65;

    margin-bottom:25px;

}

.hero-content p{

    color:rgba(255,255,255,.92);

    max-width:650px;

    font-size:1.1rem;
	margin-bottom:35px;

}

.hero-tag{

    display:inline-block;

    margin-bottom:25px;

    padding:10px 18px;

    background:rgba(255,255,255,.14);

    border:1px solid rgba(255,255,255,.20);

    border-radius:999px;

    color:#fff;

    letter-spacing:2px;

    font-size:.80rem;

    font-weight:700;

}

.hero-buttons{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    margin-bottom:45px;
	gap:18px;

}

.hero-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:45px;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:12px;

    color:#fff;

    font-weight:600;

}

.hero-features i{

    color:#AEEA00;

    font-size:1.2rem;

}
.hero-image{

    display:flex;

    justify-content:center;

}

.hero-image img{

    display:block;

    max-width:100%;

    border-radius:28px;

    box-shadow:var(--shadow-lg);

    transition:var(--transition);

}

.hero-image img:hover{

    transform:scale(1.02);

}


/*====================================================

ABOUT

======================================================*/

.about-preview{

    background:var(--white);

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
	
	
	
}

.about-image img{

    width:100%;
    border-radius:16px;
    box-shadow:var(--shadow-lg);
    transition:var(--transition);

}

.about-content h3{

    font-size:2rem;

    margin-bottom:25px;

}

.about-content p{

    margin-bottom:20px;

}

.about-list{

    margin-top:35px;

    display:grid;

    gap:18px;

}

.about-list div{

    display:flex;

    align-items:center;

    gap:15px;

    font-weight:600;

}

.about-list i{

    color:var(--primary);

    font-size:1.2rem;

}
/*====================================================
    ABOUT PAGE - SECTION SPACING
======================================================*/

.about-page section{
    padding:70px 0;
}

/* Primera sección / Page Header */
.about-page .page-header{
    padding-bottom:40px;
}

/* Sección siguiente de About */
.about-page .about-preview{
    padding-top:40px;
}


/*====================================================

WHY CHOOSE EXTERIOR CREATIONS

======================================================*/

.why-us{

    background:var(--light);

}

.features-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.feature-card{

    background:var(--white);

    padding:40px;

    border-radius:20px;

    text-align:center;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.feature-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.feature-card i{

    color:var(--primary);

    font-size:2.6rem;

    margin-bottom:25px;

}

.feature-card h3{

    margin-bottom:18px;

}


/*====================================================

STATISTICS

======================================================*/

.statistics{

    background:var(--primary);

    color:var(--white);

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-box{

    background:var(--white);

    padding:45px 30px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}
.stat-box h2{

    color:var(--primary);

    font-size:3rem;

}

.stat-box span{

    font-weight:600;

    color:var(--gray-700);

}

.stat-box:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow);

}



/*==================================================
TRUSTED SECTION
==================================================*/

.trusted-section{

    padding:110px 0;

    background:var(--light);

}

/*====================================================

PROCESS

======================================================*/

.process{

    background:var(--white);

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

.step{

    background:var(--white);

    border-radius:16px;

    padding:40px 30px;

    box-shadow:var(--shadow-sm);

    text-align:center;

    transition:var(--transition);

}

.step:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.step-number{

    width:70px;

    height:70px;

    border-radius:50%;

    background:var(--primary);

    color:var(--white);
	
    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 25px;

    font-weight:700;

    font-size:1.5rem;

}

.step h3{

    margin-bottom:18px;

}


/*====================================================

FLOAT ANIMATION

======================================================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

/*====================================================

SERVICES

======================================================*/

.services{

    background:var(--light);

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.service-card{

    position:relative;

    overflow:hidden;

    background:var(--white);

    border-radius:22px;

    padding:40px;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

    border:1px solid rgba(0,0,0,.05);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:var(--primary);

}



.service-icon{

    width:80px;
    height:80px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#EDF7ED;
    color:var(--primary);
    font-size:2.2rem;
    margin-bottom:25px;

}

.service-card h3{

    margin-bottom:18px;

}

.service-card p{

    margin-bottom:25px;

}

.service-card a{

    color:var(--primary);
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:10px;
    transition:var(--transition);

}

.service-card a:hover{

    gap:16px;

}

/*====================================================
    SERVICES PAGE - SECTION SPACING
======================================================*/

.services-page section{
    padding:70px 0;
}

.services-page .page-header{
    padding-bottom:40px;
}

.services-page .services{
    padding-top:40px;
}


/*====================================================
    TECHNOLOGY PAGE
======================================================*/

.technology-page section{
    padding:70px 0;
}

.technology-page .page-header{
    padding-bottom:40px;
}

.technology-page .technology-intro{
    padding-top:40px;
    padding-bottom:60px;
}

.technology-grid{
    display:grid;
    grid-template-columns:0.85fr 1.15fr;
    gap:70px;
    align-items:center;
}
/*====================================================
    TECHNOLOGY IMAGE
======================================================*/

.technology-image{
    width:100%;
    max-width:none;
    margin:0;
}

.technology-image img{
    display:block;
    width:100%;
    max-width:100%;
    height:auto;
    object-fit:contain;
    border-radius:20px;
}

/*====================================================

PROJECTS - OUR WORK

======================================================*/

.projects-preview{

    background:var(--light);

}

.projects-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    align-items:stretch;
}

.project-card{
    width:100%;
    height:100%;
}

.project-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.project-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
}

.project-content{

    padding:30px;

}

.project-content h3{

    margin-bottom:15px;

}

/*====================================================
    OUR WORK PAGE - SECTION SPACING
======================================================*/

.our-work-page section{
    padding:70px 0;
}

.our-work-page .page-header{
    padding-bottom:40px;
}

.our-work-page .projects-showcase{
    padding-top:40px;
}


/*====================================================

TESTIMONIALS

======================================================*/

.testimonials{

    
    background:var(--white);

}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    align-items:stretch;
}

.testimonial-card{
    background:var(--white);
    border-radius:18px;
    padding:35px;
    height:auto;
    min-height:0;
    box-shadow:var(--shadow-sm);
}

.testimonial-card i{
    font-size:2rem;
    color:var(--primary);
    margin-bottom:15px;
}

.testimonial-card h3{
    margin-bottom:15px;
}

.testimonial-card p{
    margin:0;
    line-height:1.7;
}

.service-area-list{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:8px 20px;
    line-height:1.5;
}

/*==================================================
CALL TO ACTION
==================================================*/

.cta{

    position:relative;

    overflow:hidden;

    padding:100px 0;

    background:linear-gradient(135deg,
        var(--primary-dark),
        var(--primary));

    color:var(--white);

}

.cta::before{

    content:"";

    position:absolute;

    top:-150px;
    right:-120px;

    width:350px;
    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

}

.cta::after{

    content:"";

    position:absolute;

    bottom:-120px;
    left:-100px;

    width:260px;
    height:260px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

}

.cta .container{

    position:relative;

    z-index:2;

}

.cta h2{

    color:var(--white);

    font-size:3rem;

    margin-bottom:20px;

}

.cta p{

    color:rgba(255,255,255,.90);

    font-size:1.1rem;

    max-width:700px;

    margin:0 auto 40px;

}

/*==================================
GOOGLE MAP
==================================*/

.office-location{
    padding:100px 0;
}

.map-wrapper{
    width:100%;
    height:550px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--shadow-lg);
    margin-top:50px;
}

.map-wrapper iframe{
    width:100%;
    height:100%;
    border:none;
}



/*====================================================

SECTION SPACING HELPERS

======================================================*/
/*====================================================
UTILITY CLASSES
======================================================*/

.text-center{
    text-align:center;
}

.mt-1{ margin-top:20px; }
.mt-2{ margin-top:40px; }
.mt-3{ margin-top:60px; }

.mb-1{ margin-bottom:20px; }
.mb-2{ margin-bottom:40px; }
.mb-3{ margin-bottom:60px; }
/*==================================================
CONTACT PREMIUM
==================================================*/

.contact-section{

    padding:100px 0;

    background:var(--light);

}

.contact-box{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:60px;

    align-items:start;

}

.contact-info{

    color:var(--dark);

}

.contact-info h2{

    margin:20px 0;

    font-size:42px;

    line-height:1.2;

}

.contact-info p{

    color:var(--gray-700);

    line-height:1.8;

    margin-bottom:40px;

}

.contact-benefits{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.benefit{

    display:flex;

    gap:18px;

    align-items:flex-start;

}

.benefit i{

    width:55px;

    height:55px;

    border-radius:50%;

    background:rgba(43,122,73,.12);

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    flex-shrink:0;

}

.benefit h4{

    margin-bottom:6px;

}

.benefit p{

    margin:0;

    font-size:15px;

}

/*====================================================
    CONTACT PAGE - SECTION SPACING
======================================================*/

.contact-page section{
    padding:70px 0;
}

.contact-page .page-header{
    padding-bottom:40px;
}

/*====================================================
    CONTACT INFORMATION
======================================================*/

.contact-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:25px;
    align-items:stretch;
}

.contact-card{
    width:100%;
    height:100%;
    padding:30px 25px;
}

/*==================================================
CONTACT SUMMARY
==================================================*/

.contact-summary{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    margin:45px 0;

    border-top:1px solid #E8E8E8;

    border-bottom:1px solid #E8E8E8;

}

.contact-summary .contact-item{

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    padding:35px 25px;

    margin:0;

}

.contact-summary .contact-item:not(:last-child){

    border-right:1px solid #E8E8E8;

}

.contact-summary .contact-item i{

    width:68px;

    height:68px;

    border-radius:50%;

    background:rgba(43,122,73,.10);

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin-bottom:18px;

}

.contact-summary .contact-item strong{

    display:block;

    font-size:1.2rem;

    color:var(--dark);

    margin-bottom:10px;

}

.contact-summary .contact-item p{

    margin:0;

    color:var(--gray-700);

    line-height:1.7;

}

.contact-summary + .btn{

    display:inline-flex;

    margin-top:10px;

}
/*==================================================
FORM CARD
==================================================*/

.contact-form-card{

    background:var(--white);

    border-radius:24px;

    padding:45px;

    box-shadow:var(--shadow-lg);

}

.form-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:22px;

}

.form-group{

    display:flex;

    flex-direction:column;

    margin-bottom:22px;

}

.form-group.full{

    grid-column:1/-1;

}

.form-group label{

    font-weight:600;

    margin-bottom:8px;

    color:var(--dark);

}

.form-group input,

.form-group select,

.form-group textarea{

    padding:15px 18px;

    border:1px solid #D8E1DB;

    border-radius:12px;

    font-size:15px;

    transition:var(--transition);

    background:#fff;

}

.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus{

    border-color:var(--primary);

    outline:none;

    box-shadow:0 0 0 4px rgba(43,122,73,.12);

}

/*==================================================
SERVICES
==================================================*/

.service-box{

    margin:25px 0 35px;

}

.service-box label{

    display:block;

    margin-bottom:15px;

    font-weight:600;

}

.checkbox-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

}

.checkbox-grid label{

    display:flex;

    align-items:center;

    gap:10px;

    background:#F7F9F8;

    padding:12px 15px;

    border-radius:10px;

    cursor:pointer;

    transition:var(--transition);

}

.checkbox-grid label:hover{

    background:#EAF5EE;

}

.checkbox-grid input{

    accent-color:var(--primary);

}

/*==================================================
UPLOAD
==================================================*/

.upload-box{

    margin:35px 0;

    padding:30px;

    border:2px dashed #BCD5C4;

    border-radius:15px;

    text-align:center;

    background:#F9FBFA;

    transition:var(--transition);

}

.upload-box:hover{

    border-color:var(--primary);

    background:#F0F8F3;

}

.upload-box input{

    margin:15px 0;

}

/*==================================================
BUTTON
==================================================*/

.submit-btn{

    width:100%;

    justify-content:center;

    font-size:18px;

    padding:18px;

    border-radius:50px;

}

.submit-btn i{

    margin-right:10px;

}

/*==================================================
RESPONSIVE
==================================================*/
@media (max-width:992px){

    .map-wrapper{
        height:450px;
    }

}

@media (max-width:768px){

    .map-wrapper{
        height:350px;
        border-radius:15px;
    }
	
	/*==================================================
    MOBILE MENU
==================================================*/

.mobile-menu{

    display:flex !important;

    align-items:center;

    justify-content:center;

    width:42px;

    height:42px;

    margin-left:8px;

    padding:0;

    background:transparent;

    border:none;

    color:var(--primary);

    font-size:32px;

    cursor:pointer;

    flex-shrink:0;

    z-index:1001;

}

.mobile-menu i{

    font-size:32px;

    line-height:1;

}

}


@media(max-width:992px){

.contact-box{

grid-template-columns:1fr;

gap:50px;

}

}

@media(max-width:768px){

.contact-form-card{

padding:30px;

}

.form-grid{

grid-template-columns:1fr;

}

.checkbox-grid{

grid-template-columns:1fr;

}

.contact-info h2{

font-size:34px;

}

}

@media(max-width:480px){

.contact-form-card{

padding:22px;

border-radius:18px;

}

.submit-btn{

font-size:16px;

}

}

.valid{

border-color:#2E8B57 !important;

}

.invalid{

border-color:#dc3545 !important;

}

.upload-preview{

margin-top:20px;

display:flex;

flex-wrap:wrap;

gap:10px;

}

.upload-item{

padding:10px 15px;

background:#F5F7F6;

border-radius:8px;

font-size:14px;

display:flex;

align-items:center;

gap:8px;

}

.success-modal{

position:fixed;

inset:0;

background:rgba(0,0,0,.45);

display:flex;

align-items:center;

justify-content:center;

z-index:99999;

}

.success-box{

background:var(--white);

padding:50px;

border-radius:20px;

text-align:center;

max-width:500px;

width:90%;

box-shadow:var(--shadow-lg);

}

.success-box i{

font-size:70px;

color:#2E8B57;

margin-bottom:20px;

}

@media (max-width:768px){

.contact-summary{
    grid-template-columns:1fr;
}

.contact-summary .contact-item{
    border-right:none;
    border-bottom:1px solid #EAEAEA;
    padding:30px 0;
}

.contact-summary .contact-item:last-child{
    border-bottom:none;
}

}


/*==================================================
FOOTER
==================================================*/

.footer{
    background:#16231B;
    color:#DCE6DE;
}

.footer h3{
    color:#fff;
    margin-bottom:22px;
}

.footer a{

    color:#DCE6DE;

    transition:var(--transition);

}

.footer a:hover{

    color:var(--secondary);

}

.footer-logo{
    width:160px;
    max-width:100%;
    height:auto;
    margin-bottom:25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.2fr;
    gap:50px;
}

.footer-column{
    display:flex;
    flex-direction:column;
}

.footer-social{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.footer-social a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    transition:var(--transition);
}

.footer-social a:hover{
    background:var(--secondary);
    color:#fff;
}

.footer-contact{
    list-style:none;
    padding:0;
}

.footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
}

.footer-contact i{
    color:var(--secondary);
    margin-top:4px;
    flex-shrink:0;
}

.footer-bottom-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.footer-links{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.footer ul{

    list-style:none;

    padding:0;

}

.footer li{

    margin-bottom:12px;

}

.footer-bottom{

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.10);

    text-align:center;

    color:#A7B5AA;

}

/*====================================================

ANIMATIONS

======================================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:.8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

.zoom{

    overflow:hidden;

}

.zoom img{

    transition:.5s;

}

.zoom:hover img{

    transform:scale(1.08);

}

.shadow-hover{

    transition:var(--transition);;

}

.shadow-hover:hover{

    box-shadow:var(--shadow-lg);

}

/*==================================================
SCROLL PROGRESS
==================================================*/

.scroll-progress{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:var(--primary);

    z-index:99999;

    transition:width .15s linear;

}

/*==================================================
BUTTON RIPPLE
==================================================*/

.btn,
.btn-header,
.btn-outline{

    position:relative;

    overflow:hidden;

}

.ripple{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.45);

    transform:scale(0);

    animation:ripple .6s linear;

    pointer-events:none;

}

@keyframes ripple{

    to{

        transform:scale(4);

        opacity:0;

    }

}

/*==================================================
TOAST
==================================================*/

.toast-message{

    position:fixed;

    top:30px;

    right:30px;

    min-width:280px;

    padding:18px 24px;

    border-radius:10px;

    color:#fff;

    font-weight:600;

    z-index:99999;

    opacity:0;

    transform:translateX(50px);

    transition:.35s;

}

.toast-message.show{

    opacity:1;

    transform:translateX(0);

}

.toast-message.success{

    background:var(--success);

}

.toast-message.error{

    background:var(--danger);

}
/*==================================================
PAGE LOADER
==================================================*/

.page-loader{

    position:fixed;

    inset:0;

    background:rgba(255,255,255,.95);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    z-index:999999;

}

.loader-spinner{

    width:65px;

    height:65px;

    border:6px solid #E8ECE9;

    border-top:6px solid var(--primary);

    border-radius:50%;

    animation:spin 1s linear infinite;

    margin-bottom:20px;

}

@keyframes spin{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}


/*====================================================

RESPONSIVE

======================================================*/

@media(max-width:1100px){

.hero-grid,

.about-grid,

.contact-grid{

grid-template-columns:1fr;

}

.features-grid,

.process-grid,

.stats-grid,

.services-grid,

.projects-grid,

.technology-grid{

grid-template-columns:repeat(2,1fr);

}

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}


.btn-outline:hover,
.btn-outline:focus,
.btn-outline:focus-visible,
.btn-outline:active{
    background:var(--primary) !important;
    color:#fff !important;
    border-color:var(--primary) !important;
    outline:none !important;
    box-shadow:none !important;
}


/*====================================================

END OF FILE

Exterior Creations, Inc.
Commercial Landscape Maintenance & Irrigation

======================================================*/