/*=========================================
ROOT VARIABLES
=========================================*/

:root{

    --title-font: "Marcellus", serif;
    --body-font: "DM Sans", sans-serif;
    --icon-font: "Font Awesome 5 Pro";

    --primary-color:#173628;
    --secondary-color:#D5AA4B;
    --white:#ffffff;
    --text:#E8E8E8;
    --light-bg:#F6F1E8;
    --border:rgba(255,255,255,.12);

    --transition:.4s ease;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:var(--body-font);
    font-size:16px;
    color:#555;
    overflow-x:hidden;
    background:var(--light-bg);
}

a{
    text-decoration:none;
    transition:var(--transition);
}

img{
    max-width:100%;
    display:block;
}

ul{
    margin:0;
    padding:0;
    list-style:none;
}

/*=========================================
HEADER
=========================================*/

.main-header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    transition:.4s ease;
}

.main-header.sticky{
    background:#173628;
    box-shadow:0 8px 30px rgba(0,0,0,.15);
}

.navbar{
    padding:18px 0;
}

.navbar-brand img{
    height:42px;
}

.navbar-nav{
    gap:15px;
}

.nav-link{
    color:#fff;
    font-size:16px;
    font-weight:500;
    position:relative;
    padding:10px 12px !important;
    transition:0.3s ease;
}

/* Hover, Active & Focus */
.nav-link:hover,
.nav-link.active,
.nav-link:focus,
.navbar-nav .nav-link.show{
    color:var(--secondary-color) !important;
}

.nav-link::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    width:0;
    height:2px;
    background:var(--secondary-color);
    transition:0.3s;
    transform:translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after,
.nav-link:focus::after{
    width:70%;
}
.nav-link:hover::after{
    width:70%;
}

.navbar-toggler{
    border:0;
    box-shadow:none !important;
    padding:0;
}

.navbar-toggler:focus{
    box-shadow:none;
}

/* White Hamburger Icon */
.navbar-toggler-icon{
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/*=========================================
BUTTONS
=========================================*/

.header-btns{
    display:flex;
    gap:12px;
}

.btn-whatsapp{
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
    padding:13px 24px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    background-color: #25D366;
}

.btn-whatsapp:hover{
    background:#3ae479;
    border-color:#3ae479;
    color:#fff;
}

.btn-call{

    background:var(--secondary-color);
    color:#111;
    padding:13px 24px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-weight:700;
}

.btn-call:hover{
    background:#e6bc5c;
    color:#111;
}
/* Hide mobile buttons on desktop */
.mobile-header-btns{
    display:none;
}

/* Mobile */
@media (max-width:991.98px){

    /* Hide menu */
    .navbar-collapse,
    .navbar-toggler{
        display:none !important;
    }

    /* Show buttons */
    .mobile-header-btns{
        display:flex;
        gap:10px;
    }

    .mobile-header-btns .btn-call,
    .mobile-header-btns .btn-whatsapp{
        padding:10px 14px;
        font-size:14px;
    }

    .navbar .container{
        display:flex;
        justify-content:space-between;
        align-items:center;
    }
}
/*=========================================
HERO
=========================================*/

.hero-section{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:url("../images/banner.webp") center center;
    background-size:cover;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(18,47,35,.76);
}

.hero-content{
    position:relative;
    z-index:5;
    color:#fff;
    padding-top:140px;
}

.hero-subtitle{
    display:inline-block;
    letter-spacing:4px;
    font-size:12px;
    color:var(--secondary-color);
    margin-bottom:10px;
    font-weight:600;
}

.hero-title{
    font-family:var(--title-font);
    font-size:48px;
    line-height:54px;
    color:#fff;
    margin-bottom:30px;
    font-weight: 600;

}

.hero-title span{
    display:block;
    color:var(--secondary-color);
    font-style:italic;
}

.hero-text{
    max-width:650px;
    color:#EFEFEF;
    line-height:1.9;
    font-size:16px;
    margin-bottom:40px;
}

/*=========================================
HERO BUTTONS
=========================================*/

.hero-btns{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.theme-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 28px;
    font-weight:600;
    color:#111;
    background:var(--secondary-color);
}

.theme-btn:hover{
    transform:translateY(-4px);
}

.border-btn{
    background:transparent;
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
}

.border-btn:hover{
    background:#fff;
    color:#173628;
}

/*=========================================
INFO BOX
=========================================*/

.hero-info{
    display:flex;
    gap:60px;
    border-top:1px solid rgba(255,255,255,.12);
    padding-top:30px;
    padding-bottom: 30px;
}

.info-item h5{
    font-family:var(--title-font);
    color:#fff;
    font-size:26px;
    margin-bottom:8px;
}

.info-item span{
    color:#ddd;
    font-size:15px;
}

/*=========================================
STEAM SVG
=========================================*/

.steam{
    position:absolute;
    right:24%;
    top:24%;
    width:150px;
    height:250px;
    z-index:2;
}

.steam path{
    fill:none;
    stroke:#d7b25d;
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-dasharray:9 12;
    opacity:.75;
}

.animate path{
    animation:steamMove 5s linear infinite;
}

.animate path:nth-child(2){
    animation-delay:1s;
}

.animate path:nth-child(3){
    animation-delay:2s;
}

@keyframes steamMove{
    0%{

        stroke-dashoffset:0;

        opacity:.2;

    }

    50%{

        opacity:.8;

    }

    100%{

        stroke-dashoffset:-70;

        opacity:.15;

    }

}

/*=========================================
MOBILE
=========================================*/

@media(max-width:991px){
.hero-title{
    font-size:46px;
}

.hero-info{
    display:block;
}

.info-item{
    margin-bottom:25px;
}

.header-btns{
    margin-top:20px;
}

.navbar-collapse{
    background:#173628;
    padding:20px;
    margin-top:15px;
}

.steam{
    display:none;
}
}

@media(max-width:767px){
.hero-section{
    min-height:auto;
    padding:0px 0 0px;
}

.hero-content{
    padding: 0px 0px;
    padding-top: 90px;
}

.hero-title{
    font-size:46px;
    line-height: 54px;
}

.hero-text{
    font-size:16px;
}

.hero-btns{
    flex-direction:column;
}

.theme-btn{
    width:100%;
}

.navbar-brand img{
    height:36px;
}
}


/*=========================================
FEATURES SECTION
=========================================*/

.features-section{
    background:var(--primary-color);
    position:relative;
    overflow:hidden;
    }

.feature-box{
    min-height:170px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px 25px;
    border-right:1px solid rgba(255,255,255,.12);
    transition:all .4s ease;
}

.feature-box h3{
    font-family:var(--title-font);
    font-size:28px;
    color:var(--secondary-color);
    font-style:italic;
    font-weight:400;
    margin-bottom:8px;
}

.feature-box p{
    color:#ffffff;
    font-size:16px;
    font-weight:400;
    line-height:1.55;
    margin:0;
}

.feature-box:hover{
    background:#1b3f2f;
}

.feature-box:hover h3{
    transform:translateY(-5px);
}

.feature-box h3{
    transition:.35s;
}

/*==========================
Responsive
==========================*/

@media(max-width:991px){
.feature-box{
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.12);
    min-height:150px;
}

.feature-box h3{
    font-size:42px;
}
}

@media(max-width:767px){
.feature-box{
    padding:20px 20px;
}

.feature-box h3{
    font-size:32px;
}

.feature-box p{
    font-size:16px;
}
}



/*=========================================
ABOUT SECTION
=========================================*/


img{
    border-radius: 8px;
}
.about-section{
    padding:40px 0;
    background:#F7F2E8;
}

.about-image{
    position:relative;
}

.about-image img{

    width:100%;
    height:650px;
    object-fit:cover;
    display:block;
    border-radius: 15px;
}

.experience-box{

    position:absolute;
    left:-25px;
    bottom:-25px;
    width:230px;
    background:var(--primary-color);
    padding:28px;
}

.experience-box h3{
    font-family:var(--title-font);
    color:var(--secondary-color);
    font-size:52px;
    margin-bottom:10px;
}

.experience-box p{
    color:#fff;
    line-height:1.8;
    font-size:16px;
    margin:0;
}

.about-content{
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.subtitle{
    display:inline-block;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:4px;
    color:var(--secondary-color);
    font-weight:700;
    margin-bottom:18px;
}

.about-content h2{
    font-family:var(--title-font);
    font-size:52px;
    line-height:1.1;
    color:#1B1B1B;
    margin-bottom:25px;
    max-width:620px;
}

.about-content p{
    font-size:18px;
    line-height:1.9;
    color:#4B4B4B;
    margin-bottom:22px;
}

/*=========================================
Responsive
=========================================*/

@media (max-width:991px){
.about-section{
    padding:80px 0;
}

.about-image{
    margin-bottom:70px;
}
.about-image img{
    height:420px;
}

.experience-box{
    left:20px;
    bottom:-20px;
}

.about-content h2{
    font-size:40px;
}

.about-content{
    margin-top:30px;
}

}

@media (max-width:767px){
.about-section{
    padding:60px 0;
}

.about-image img{
    height:320px;
}

.experience-box{
    position:relative;
    left:0;
    bottom:0;
    width:100%;
    margin-top:20px;
}

.about-content h2{
    font-size:32px;
}

.about-content p{
    font-size:16px;
}

}


/*=========================================
SERVICES
=========================================*/

.services-section{
    background:#ece5d6;
    padding:40px 0;
}

.section-heading{
    max-width:800px;
    margin-bottom:60px;
}

.section-subtitle{
    display:inline-block;
    font-size:12px;
    letter-spacing:4px;
    color:var(--secondary-color);
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:0px;
}

.section-heading h2{
    font-family:var(--title-font);
    font-size:58px;
    color:#222;
    line-height:1.1;
    margin-bottom:20px;
}

.section-heading p{
    color:#555;
    font-size:17px;
    line-height:1.8;
}

/* Cards */
.service-card{
    border:1px solid #E3DDD0;
    padding:18px;
    height:100%;
    transition:.4s;
    background:#F7F2E8;
}
.service-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    margin-bottom:22px;
}

.service-content span{
    display:block;
    font-size:11px;
    letter-spacing:2px;
    color:#A36E28;
    font-weight:700;
    margin-bottom:10px;
}

.service-content h3{
    font-family:var(--title-font);
    font-size:30px;
    color:#222;
    margin-bottom:15px;
}

.service-content p{
    color:#555;
    font-size:15px;
    line-height:1.8;
}

.service-card:hover{
    background:#fff;
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.service-card:hover img{
    transform:scale(1.05);
}

.service-card img{
    transition:.5s;
}

/*=========================================
Responsive
=========================================*/

@media(max-width:991px){
.services-section{
    padding:80px 0;
}

.section-heading h2{
    font-size:44px;
}
}

@media(max-width:767px){
.services-section{
    padding:60px 0;
}

.section-heading{
    margin-bottom:40px;
}

.section-heading h2{
    font-size:34px;
}

.service-card{
    padding:15px;
}

.service-card img{
    height:200px;
}

.service-content h3{
    font-size:26px;
}
}

/*=========================================
GALLERY SECTION
=========================================*/

.gallery-section{
    padding-top:40px;
    padding-bottom:100px;
    background:#F7F2E8;
}

.gallery-section .section-heading{
    margin-bottom:40px;
}
.gallery-section h2{
    font-family:var(--title-font);
    font-size:52px;
    color:#222;
    margin-top:10px;
}
.gallery-img{
    width:100%;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.gallery-large{
    height:430px;
}
.gallery-small{
    height:205px;
}

.gallery-medium{
    height:210px;
}
.gallery-bottom{
    height:140px;
}
.gallery-bottom-large{
    height:140px;
}
.gallery-img:hover{
    transform:scale(1.04);
}
/*==========================
Responsive
==========================*/

@media(max-width:991px){
.gallery-large{
    height:350px;
}
.gallery-small,
.gallery-medium{
    height:180px;
}

.gallery-bottom-large{
    height:140px;
}
}

@media(max-width:767px){
.gallery-section{
    padding-top:40px;
    padding-bottom:60px;
}
.gallery-section h2{
    font-size:34px;
}

.gallery-large,
.gallery-small,
.gallery-medium,
.gallery-bottom,
.gallery-bottom-large{
    height:140px;
}
}

/*=========================================
CTA SECTION
=========================================*/

.cta-section{
    padding-top:40px;
    padding-bottom:40px;
    background:var(--primary-color);
}
.cta-wrapper{
    position:relative;
    text-align:center;
    padding:70px 20px;
}

.cta-steam{
    position:absolute;
    left:20px;
    top:15px;
    width:70px;
    height:140px;
}

.cta-steam path{
    fill:none;
    stroke:var(--secondary-color);
    stroke-width:2;
    stroke-dasharray:10 12;
    opacity:.6;
    animation:steamFlow 5s linear infinite;
}

.cta-steam path:nth-child(2){
    animation-delay:1.5s;
}

.cta-section .section-subtitle{
    display:block;
    margin-bottom:18px;
    color:var(--secondary-color);
    font-size:12px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
}

.cta-section h2{
    font-family:var(--title-font);
    font-size:60px;
    line-height:1.15;
    color:#fff;
    margin-bottom:35px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

@keyframes steamFlow{
    from{
        stroke-dashoffset:0;
    }
    to{
        stroke-dashoffset:-60;
    }
}

/*=========================================
Responsive
=========================================*/

@media(max-width:991px){
.cta-section h2{
    font-size:42px;
}
}

@media(max-width:767px){
.cta-section{
    padding-top:40px;
    padding-bottom:60px;
}

.cta-wrapper{
    padding:50px 20px;
}

.cta-section h2{
    font-size:32px;
}

.cta-buttons{
    flex-direction:column;
    align-items:center;
}

.cta-buttons .theme-btn{
    width:100%;
    max-width:280px;
}

.cta-steam{
    display:none;
}
}

/*=========================================
CONTACT SECTION
=========================================*/

.contact-section{
    padding:40px 0 100px;
    background:#F7F2E8;
}

.contact-wrapper{
    background:#fff;
    border:1px solid #E7E0D2;
}
.contact-info{
    padding:50px;
    height:100%;
}
.contact-info h3{
    font-family:var(--title-font);
    font-size:38px;
    color:#222;
    margin-bottom:35px;
}
.contact-list{
    margin:0;
    padding:0;
    list-style:none;
}

.contact-list li{
    display:flex;
    gap:25px;
    padding:18px 0;
    border-bottom:1px solid #ECE5D9;
}
.contact-list li:last-child{
    border-bottom:none;
}
.contact-list span{
    width:90px;
    color:var(--secondary-color);
    font-size:12px;
    letter-spacing:2px;
    font-weight:700;
    flex-shrink:0;
}

.contact-list p{
    margin:0;
    color:#444;
    line-height:1.7;
}
.contact-buttons{
    display:flex;
    gap:15px;
    margin-top:35px;
    flex-wrap:wrap;
}

.contact-map{
    height:100%;
    min-height:520px;
}

.contact-map iframe{
    width:100%;
    height:100%;
    border:0;
}

/*=========================================
Responsive
=========================================*/

@media(max-width:991px){
.contact-info{
    padding:35px;
}

.contact-info h3{
    font-size:30px;
}

.contact-map{
    min-height:400px;
}
}

@media(max-width:767px){
.contact-section{
    padding:40px 0 60px;
}

.contact-info{
    padding:25px;
}

.contact-list li{
    flex-direction:column;
    gap:8px;
}
.contact-buttons{
    flex-direction:column;
}
.contact-buttons .theme-btn{
    width:100%;
}
.contact-map{
    min-height:300px;
}
}

/*=========================================
FOOTER
=========================================*/

.main-footer{
    background:var(--primary-color);
    color:rgba(255,255,255,.85);
    padding:60px 0 30px;
}

.footer-top{
    padding-bottom:35px;
    border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-logo{
    font-family:var(--title-font);
    font-size:30px;
    color:#fff;
    margin:0;
}
.footer-address{
    text-align:center;
    font-size:16px;
    color:rgba(255,255,255,.75);
    margin:0;
}
.footer-contact{
    color:rgba(255,255,255,.8);
    font-size:17px;
    transition:.35s;
}
.footer-contact:hover{
    color:var(--secondary-color);
}
.footer-dot{
    margin:0 10px;
    color:rgba(255,255,255,.4);
}
.footer-bottom{
    padding-top:28px;
}
.footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.75);
    font-size:17px;
}
/*=========================================
Responsive
=========================================*/

@media(max-width:991px){
.footer-logo{
    text-align:center;
    font-size:34px;
}

.footer-address{
        text-align:center;
}

.text-lg-end{
    text-align:center !important;
}
}
@media(max-width:767px){
.main-footer{
    padding:45px 0 25px;
}
.footer-logo{
    font-size:30px;
}

.footer-address,
.footer-contact,
.footer-bottom p{
    font-size:15px;
}

.footer-contact{
    display:block;
    margin:6px 0;
}
.footer-dot{
    display:none;
}
.footer-bottom{
    text-align:center;
}
}


/* ==============================
   MOBILE STICKY CTA
============================== */

.mobile-sticky-cta{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    display:none;
    gap:12px;
    padding:12px 16px;
    background:#11251a;
    border-top:1px solid rgba(255,255,255,.08);
    z-index:9999;
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
}

.mobile-sticky-cta a{
    flex:1;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    border-radius:6px;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.sticky-call{
    background:#C89B3C;
    color:#0d2418;
}

.sticky-call:hover{
    background:#d7aa48;
    color:#0d2418;
}

.sticky-whatsapp{
    background:#25D366;
    color:#fff;
    border:1px solid rgba(255,255,255,.15);
}

.sticky-whatsapp:hover{
    background:#20442f;
    color:#fff;
}

.mobile-sticky-cta i{
    font-size:20px;
}

/* Show only on mobile */
@media (max-width:991px){

    .mobile-sticky-cta{
        display:flex;
    }

    /* Prevent content from hiding behind sticky bar */
    body{
        padding-bottom:84px;
    }
}

/* Hide on desktop */
@media (min-width:992px){
    .mobile-sticky-cta{
        display:none;
    }
}