/* ===========================================
   GOOGLE FONT & RESET
=========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#F6F8F7;
    color:#1C1C1C;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ===========================================
   COLORS
=========================================== */

:root{

    --primary:#0B2D24;

    --secondary:#145A46;

    --accent:#2E7D5B;

    --light:#F6F8F7;

    --white:#ffffff;

    --text:#1E1E1E;

    --gray:#6D6D6D;

    --border:#D9E2DE;

    --shadow:0 15px 40px rgba(0,0,0,.08);

}

/* ===========================================
   CONTAINER
=========================================== */

.container{

    width:90%;
    max-width:1200px;

    margin:auto;

}

/* ===========================================
   NAVBAR
=========================================== */

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 7%;

    z-index:999;

    transition:.35s;

}

.navbar.scrolled{

    background:rgba(11,45,36,.96);

    backdrop-filter:blur(15px);

    box-shadow:0 8px 25px rgba(0,0,0,.18);

    padding:16px 7%;

}

/* ===========================================
   LOGO
=========================================== */

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo img{

    width:60px;

    height:60px;

    border-radius:12px;

    object-fit:cover;

    background:white;

}

.logo-text h1{

    color:white;

    font-size:34px;

    font-weight:900;

    letter-spacing:4px;

    line-height:1;

}

.logo-text span{

    display:block;

    margin-top:5px;

    color:#B6E2CF;

    font-size:12px;

    letter-spacing:4px;

    font-weight:700;

}

/* ===========================================
   NAV LINKS
=========================================== */

.nav-links{

    display:flex;

    gap:38px;

}

.nav-links a{

    color:white;

    font-weight:600;

    transition:.3s;

    position:relative;

}

.nav-links a::after{

    content:"";

    position:absolute;

    bottom:-6px;

    left:0;

    width:0;

    height:2px;

    background:white;

    transition:.3s;

}

.nav-links a:hover::after{

    width:100%;

}

/* ===========================================
   QUOTE BUTTON
=========================================== */

.quote-btn{

    background:white;

    color:var(--primary);

    padding:15px 28px;

    border-radius:40px;

    font-weight:700;

    transition:.3s;

}

.quote-btn:hover{

    transform:translateY(-3px);

    background:#E9F5EF;

}

/* ===========================================
   MOBILE MENU
=========================================== */

.menu-toggle{

    display:none;

    color:white;

    font-size:28px;

    cursor:pointer;

}

/* ===========================================
   HERO SECTION
=========================================== */

.hero{

    min-height:100vh;

    background:
    linear-gradient(
    rgba(11,45,36,.80),
    rgba(11,45,36,.82)
    ),
    url("images/Hero.png");

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

}

.hero-container{

    width:90%;

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:80px;

    align-items:center;

}

.location{

    color:#D8F3E5;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:25px;

}

.location i{

    color:#78D0A9;

    margin-right:8px;

}

.hero h1{

    color:white;

    font-size:88px;

    font-weight:900;

    line-height:.95;

    margin-bottom:25px;

}

.hero h2{

    color:#DFF6EB;

    font-size:36px;

    margin-bottom:25px;

    font-weight:700;

}

.hero p{

    color:#F2F7F4;

    font-size:18px;

    line-height:1.9;

    max-width:650px;

}

/* ===========================================
   HERO BUTTONS
=========================================== */

.hero-buttons{

    margin-top:40px;

    display:flex;

    gap:20px;

}

.primary-btn{

    background:#ffffff;

    color:var(--primary);

    padding:18px 36px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

    box-shadow:var(--shadow);

}

.primary-btn:hover{

    transform:translateY(-5px);

    background:#EAF7F1;

}

.secondary-btn{

    border:2px solid white;

    color:white;

    padding:18px 36px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.secondary-btn:hover{

    background:white;

    color:var(--primary);

}

/* ===========================================
   SHARED SECTION HEADINGS
=========================================== */

.section-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;
}

.section-heading p,
.section-tag{
    color:var(--secondary);
    font-size:14px;
    font-weight:800;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.section-heading h2,
.about-content h2,
.quote-info h2{
    color:var(--primary);
    font-size:48px;
    font-weight:900;
    line-height:1.15;
}

/* ===========================================
   HERO FEATURE CARD
=========================================== */

.hero-card{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.2);
    backdrop-filter:blur(16px);
    border-radius:28px;
    padding:38px;
    box-shadow:0 25px 60px rgba(0,0,0,.2);
}

.hero-card h3{
    color:white;
    font-size:27px;
    line-height:1.25;
    margin-bottom:28px;
}

.feature{
    display:flex;
    align-items:center;
    gap:14px;
    color:white;
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.14);
}

.feature:last-child{
    border-bottom:none;
}

.feature i{
    width:32px;
    height:32px;
    border-radius:50%;
    background:white;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.feature span{
    font-size:16px;
    font-weight:600;
}

/* ===========================================
   ABOUT SECTION
=========================================== */

.about{
    padding:120px 0;
    background:var(--white);
}

.about .container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:75px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image::before{
    content:"";
    position:absolute;
    width:75%;
    height:75%;
    left:-24px;
    bottom:-24px;
    background:#DCEDE5;
    border-radius:28px;
    z-index:0;
}

.about-image img{
    position:relative;
    z-index:1;
    width:100%;
    height:560px;
    object-fit:cover;
    border-radius:28px;
    box-shadow:0 25px 55px rgba(11,45,36,.16);
}

.about-content > p:not(.section-tag){
    color:var(--gray);
    font-size:17px;
    line-height:1.85;
    margin-top:22px;
}

.about-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin:32px 0 8px;
}

.about-feature{
    display:flex;
    align-items:center;
    gap:11px;
    color:var(--primary);
    font-weight:700;
}

.about-feature i{
    color:var(--secondary);
    font-size:19px;
}

.about-content .primary-btn{
    margin-top:30px;
    background:var(--primary);
    color:white;
    display:inline-block;
}

.about-content .primary-btn:hover{
    background:var(--secondary);
}

/* ===========================================
   STATS SECTION
=========================================== */

.stats{
    background:var(--primary);
    padding:55px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.stat-box{
    text-align:center;
    padding:20px 30px;
    border-right:1px solid rgba(255,255,255,.16);
}

.stat-box:last-child{
    border-right:none;
}

.stat-box h2{
    color:white;
    font-size:43px;
    font-weight:900;
    line-height:1.1;
}

.stat-box p{
    color:#CFE8DD;
    margin-top:9px;
    font-size:15px;
    font-weight:600;
}

/* ===========================================
   SERVICES SECTION
=========================================== */

.services{
    padding:120px 7%;
    background:var(--light);
}

.services-grid{
    max-width:1240px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.service-card{
    background:var(--white);
    border:1px solid var(--border);
    border-radius:24px;
    padding:38px 32px;
    position:relative;
    overflow:hidden;
    transition:.35s ease;
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,var(--primary),var(--accent));
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s ease;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 22px 50px rgba(11,45,36,.13);
    border-color:transparent;
}

.service-card:hover::before{
    transform:scaleX(1);
}

.service-card > i{
    width:62px;
    height:62px;
    border-radius:18px;
    background:#E4F1EB;
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:27px;
    margin-bottom:26px;
    transition:.35s ease;
}

.service-card:hover > i{
    background:var(--primary);
    color:white;
    transform:rotate(-4deg) scale(1.05);
}

.service-card h3{
    color:var(--primary);
    font-size:23px;
    margin-bottom:14px;
    line-height:1.3;
}

.service-card p{
    color:var(--gray);
    font-size:16px;
    line-height:1.75;
}

/* ===========================================
   WHY CHOOSE US
=========================================== */

.why-us{
    padding:120px 7%;
    background:var(--white);
}

.why-grid{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.why-card{
    background:var(--light);
    padding:40px 30px;
    border-radius:24px;
    transition:.35s;
    border:1px solid var(--border);
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(11,45,36,.12);
}

.why-card .icon{
    width:65px;
    height:65px;
    border-radius:18px;
    background:var(--primary);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:22px;
}

.why-card h3{
    color:var(--primary);
    margin-bottom:15px;
    font-size:23px;
}

.why-card p{
    color:var(--gray);
    line-height:1.8;
}

/* ===========================================
   GALLERY
=========================================== */

.gallery{
    padding:120px 7%;
    background:var(--light);
}

.gallery-grid{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    height:380px;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        transparent,
        rgba(11,45,36,.88)
    );
    display:flex;
    align-items:flex-end;
    padding:30px;
    opacity:0;
    transition:.4s;
}

.gallery-overlay h3{
    color:white;
    font-size:26px;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

/* ===========================================
   CTA
=========================================== */

.cta{
    padding:110px 7%;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    text-align:center;
    color:white;
}

.cta h2{
    font-size:32px;
    margin-bottom:18px;
}

.cta h1{
    font-size:72px;
    line-height:1;
    margin-bottom:25px;
}

.cta p{
    max-width:720px;
    margin:0 auto 35px;
    font-size:18px;
    line-height:1.8;
}

/* ===========================================
   QUOTE SECTION
=========================================== */

.quote-section{
    padding:120px 7%;
    background:white;
}

.quote-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:start;
}

.quote-info p:not(.section-tag){
    color:var(--gray);
    margin:25px 0;
    line-height:1.9;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
    color:var(--primary);
    font-weight:600;
}

.contact-item i{
    width:45px;
    height:45px;
    background:#E5F1EB;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--secondary);
}

.quote-form-wrapper{
    background:var(--light);
    padding:40px;
    border-radius:28px;
    box-shadow:var(--shadow);
}

.quote-form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.quote-form input,
.quote-form select,
.quote-form textarea{
    width:100%;
    padding:17px;
    border:1px solid var(--border);
    border-radius:14px;
    font-size:15px;
    outline:none;
}

.quote-form textarea{
    grid-column:span 2;
    resize:none;
}

.quote-form button{
    grid-column:span 2;
    background:var(--primary);
    color:white;
    border:none;
    padding:18px;
    border-radius:50px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.quote-form button:hover{
    background:var(--secondary);
}

/* ===========================================
   CONTACT
=========================================== */

.contact{
    padding:110px 7%;
    background:var(--light);
}

.contact-grid{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.contact-card{
    background:white;
    text-align:center;
    padding:45px 30px;
    border-radius:22px;
    box-shadow:var(--shadow);
}

.contact-card i{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    background:#E8F2ED;
    color:var(--primary);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

.contact-card h3{
    margin-bottom:12px;
    color:var(--primary);
}

.contact-card p{
    color:var(--gray);
}

/* ===========================================
   FOOTER
=========================================== */

footer{
    background:#081E18;
    color:white;
    padding:80px 7%;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.footer-brand{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
}

.footer-brand img{
    width:70px;
    border-radius:12px;
}

.footer-text h2{
    font-size:42px;
    font-weight:900;
    line-height:1;
}

.footer-text span{
    color:#B8E3D1;
    letter-spacing:4px;
    font-size:12px;
    font-weight:700;
}

footer h3{
    margin:30px 0 15px;
    font-size:30px;
}

.footer-description{
    max-width:600px;
    margin:0 auto;
    color:#D2DDD8;
    line-height:1.8;
}

.social-icons{
    margin:35px 0;
}

.social-icons a{
    width:48px;
    height:48px;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:white;
    margin:0 8px;
    transition:.3s;
}

.social-icons a:hover{
    background:var(--secondary);
    transform:translateY(-4px);
}

footer hr{
    border:none;
    height:1px;
    background:rgba(255,255,255,.15);
    margin:35px 0;
}

.copyright{
    color:#BFD2CA;
    font-size:14px;
}

/* ===========================================
   ANIMATIONS
=========================================== */

.service-card,
.why-card,
.gallery-item,
.stat-box{
    transition:.35s;
}

/* ===========================================
   RESPONSIVE
=========================================== */

@media(max-width:992px){

.hero-container,
.about .container,
.quote-container{
    grid-template-columns:1fr;
}

.services-grid,
.why-grid{
    grid-template-columns:repeat(2,1fr);
}

.gallery-grid{
    grid-template-columns:1fr 1fr;
}

.contact-grid{
    grid-template-columns:1fr;
}

.stats-grid{
    grid-template-columns:repeat(2,1fr);
}

.nav-links{
    display:none;
}

.menu-toggle{
    display:block;
}

.quote-btn{
    display:none;
}

.hero h1{
    font-size:60px;
}

.hero-card{
    margin-top:30px;
}

}

@media(max-width:768px){

.services-grid,
.why-grid,
.gallery-grid,
.stats-grid{
    grid-template-columns:1fr;
}

.quote-form{
    grid-template-columns:1fr;
}

.quote-form textarea,
.quote-form button{
    grid-column:span 1;
}

.hero-buttons{
    flex-direction:column;
    align-items:flex-start;
}

.hero h1{
    font-size:46px;
}

.hero h2{
    font-size:28px;
}

.section-heading h2,
.about-content h2,
.quote-info h2{
    font-size:36px;
}

.cta h1{
    font-size:48px;
}

.footer-brand{
    flex-direction:column;
}
}

/* ===========================================
   JAVASCRIPT EFFECTS
=========================================== */

.about-image,
.about-content,
.stat-box,
.service-card,
.why-card,
.gallery-item,
.quote-info,
.quote-form-wrapper,
.contact-card{
    opacity:0;
    transform:translateY(30px);
    transition:opacity .7s ease, transform .7s ease;
}

.about-image.visible,
.about-content.visible,
.stat-box.visible,
.service-card.visible,
.why-card.visible,
.gallery-item.visible,
.quote-info.visible,
.quote-form-wrapper.visible,
.contact-card.visible{
    opacity:1;
    transform:translateY(0);
}

.quote-form button:disabled{
    opacity:.75;
    cursor:not-allowed;
}


/* MOBILE MENU */

@media(max-width:992px){

    .nav-links{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        padding:30px 7%;
        background:#0B2D24;
        flex-direction:column;
        align-items:center;
        gap:24px;
        display:none;
    }

    .nav-links.active{
        display:flex;
    }

}

/* ===========================================
   MOBILE LAYOUT FIX
   Keep this at the bottom of style.css
=========================================== */

@media (max-width: 992px){

    /* Navbar */
    .navbar{
        padding:14px 5%;
        background:rgba(11,45,36,.96);
        backdrop-filter:blur(14px);
    }

    .navbar.scrolled{
        padding:12px 5%;
    }

    .logo{
        gap:10px;
        min-width:0;
    }

    .logo img{
        width:48px;
        height:48px;
        border-radius:9px;
        flex-shrink:0;
    }

    .logo-text h1{
        font-size:27px;
        letter-spacing:3px;
        white-space:nowrap;
    }

    .logo-text span{
        margin-top:4px;
        font-size:8px;
        letter-spacing:2.5px;
        white-space:nowrap;
    }

    .menu-toggle{
        display:block;
        margin-left:auto;
        font-size:28px;
        line-height:1;
    }

    .quote-btn{
        display:none;
    }

    /* Mobile navigation */
    .nav-links{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        padding:28px 5%;
        background:rgba(11,45,36,.98);
        flex-direction:column;
        align-items:center;
        gap:22px;
        display:none;
        box-shadow:0 15px 25px rgba(0,0,0,.18);
    }

    .nav-links.active{
        display:flex;
    }

    /* Hero */
    .hero{
        min-height:auto;
        align-items:flex-start;
        padding:135px 0 75px;
        background-position:center;
    }

    .hero-container{
        width:90%;
        grid-template-columns:1fr;
        gap:38px;
        align-items:start;
    }

    .hero-left{
        width:100%;
    }

    .location{
        margin:0 0 20px;
        font-size:14px;
        letter-spacing:1.5px;
    }

    .hero h1{
        font-size:clamp(48px, 13vw, 68px);
        line-height:.95;
        letter-spacing:-2px;
        margin-bottom:24px;
        overflow-wrap:normal;
        word-break:normal;
    }

    .hero h2{
        max-width:650px;
        font-size:clamp(25px, 6.5vw, 34px);
        line-height:1.25;
        margin-bottom:22px;
    }

    .hero p{
        max-width:650px;
        font-size:16px;
        line-height:1.7;
    }

    .hero-buttons{
        margin-top:32px;
        flex-wrap:wrap;
    }

    .primary-btn,
    .secondary-btn{
        padding:16px 28px;
    }

    /* Keep the feature panel below the hero text */
    .hero-right{
        width:100%;
    }

    .hero-card{
        width:100%;
        margin:0;
        padding:28px;
    }

    /* Remaining page grids */
    .about .container,
    .quote-container{
        grid-template-columns:1fr;
    }

    .services-grid,
    .why-grid,
    .gallery-grid,
    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .contact-grid{
        grid-template-columns:1fr;
    }
}


@media (max-width: 600px){

    /* Smaller navbar */
    .navbar{
        padding:12px 4%;
    }

    .logo img{
        width:44px;
        height:44px;
    }

    .logo-text h1{
        font-size:23px;
        letter-spacing:2px;
    }

    .logo-text span{
        font-size:7px;
        letter-spacing:1.8px;
    }

    /* Mobile hero */
    .hero{
        padding:118px 0 65px;
        background-position:58% center;
    }

    .hero-container{
        width:90%;
        gap:30px;
    }

    .location{
        font-size:13px;
        margin-bottom:18px;
    }

    .hero h1{
        font-size:clamp(43px, 13vw, 56px);
        line-height:.98;
        letter-spacing:-1.5px;
        margin-bottom:22px;
    }

    .hero h2{
        font-size:25px;
        line-height:1.28;
        margin-bottom:20px;
    }

    .hero p{
        font-size:15px;
        line-height:1.65;
    }

    .hero-buttons{
        width:100%;
        flex-direction:column;
        gap:14px;
        margin-top:28px;
    }

    .hero-buttons .primary-btn,
    .hero-buttons .secondary-btn{
        width:100%;
        max-width:360px;
        text-align:center;
        padding:15px 22px;
    }

    /* Hide the large feature card on small phones.
       Its information appears elsewhere on the page. */
    .hero-right{
        display:none;
    }

    /* One-column page layout */
    .services-grid,
    .why-grid,
    .gallery-grid,
    .stats-grid{
        grid-template-columns:1fr;
    }

    .about{
        padding:85px 0;
    }

    .about-image img{
        height:380px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .quote-form{
        grid-template-columns:1fr;
    }

    .quote-form textarea,
    .quote-form button{
        grid-column:span 1;
    }

    .section-heading h2,
    .about-content h2,
    .quote-info h2{
        font-size:34px;
    }

    .cta h1{
        font-size:45px;
    }

    .footer-brand{
        flex-direction:column;
    }
}

/*=================================
        COMPANY TAGLINE
=================================*/

.tagline{

    background:#0B2D24;

    padding:90px 20px;

    text-align:center;

}

.tagline h2{

    color:white;

    font-size:56px;

    font-weight:900;

    line-height:1.2;

    max-width:1000px;

    margin:auto;

}

.tagline h2 span{

    color:#7ED8B3;

}

.tagline p{

    margin-top:30px;

    font-size:28px;

    color:white;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

}

@media(max-width:768px){

.tagline{

    padding:70px 20px;

}

.tagline h2{

    font-size:34px;

}

.tagline p{

    font-size:20px;

}

}