/* =========================
   GLOBAL STYLES
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#111111;
    color:#F5F5F5;
    line-height:1.6;
}

/* =========================
   HEADER
========================= */

header{
    position:fixed;
    top:0;
    width:100%;
    background:rgba(17,17,17,.95);
    backdrop-filter:blur(8px);
    z-index:1000;
    border-bottom:1px solid #333;
}

.navbar{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 25px;
}

.logo img{
    height:60px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links a{
    color:#F5F5F5;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.nav-links a:hover{
    color:#E86A17;
}

/* ==========================
   HERO SECTION
========================== */

.hero {
    background: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
                url("images/hero/hero.jpg") center center/cover no-repeat;
    min-height: 55vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
}

.hero-content {
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.35rem;
    color: #ddd;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s ease;
}

/* Call Button */

.btn-primary {
    background: #d35400;
    color: #fff;
}

.btn-primary:hover {
    background: #b34700;
    transform: translateY(-2px);
}

/* Quote Button */

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #d35400;
}

.btn-secondary:hover {
    background: #d35400;
    color: #fff;
    transform: translateY(-2px);
}

/* Mobile */

@media (max-width: 768px) {

    .hero {
        min-height: 45vh;
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}
/* ===========================
   HERO BUTTONS
=========================== */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

.navbar{
    flex-direction:column;
}

.nav-links{
    margin-top:15px;
    gap:15px;
    flex-wrap:wrap;
    justify-content:center;
}

.hero h1{
    font-size:2.5rem;
}

.hero p{
    font-size:1.05rem;
}

}
/* ==========================
   ABOUT SECTION
========================== */

.about {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.about-content {
    max-width: 1100px;
    margin: auto;
}

.about h2 {
    font-size: 2.5rem;
    color: #d35400;
    margin-bottom: 25px;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
    max-width: 850px;
    margin: 0 auto 50px;
}

/* About Boxes */

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.about-box {
    background: #252525;
    padding: 30px 20px;
    border-radius: 10px;
    border-top: 4px solid #d35400;
    transition: .3s ease;
}

.about-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,.35);
}

.about-box h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.about-box p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Mobile */

@media (max-width:768px) {

    .about {
        padding: 60px 20px;
    }

    .about h2 {
        font-size: 2rem;
    }

    .about p {
        font-size: 1rem;
    }

}
/*=========================
    SERVICES
==========================*/

.services{
    padding:80px 20px;
    background:#161616;
    text-align:center;
}

.services h2{
    font-size:2.5rem;
    color:#E86A17;
    margin-bottom:15px;
}

.section-text{
    max-width:700px;
    margin:0 auto 50px;
    color:#cccccc;
    font-size:1.1rem;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.service-card{
    background:#222;
    border-radius:15px;
    overflow:hidden;
    transition:.3s;
    border:1px solid #333;
}

.service-card:hover{
    transform:translateY(-8px);
    border-color:#E86A17;
}

.service-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.service-card h3{
    color:#E86A17;
    margin:20px 0 10px;
}

.service-card p{
    padding:0 20px 25px;
    color:#cccccc;
    line-height:1.6;
}
/* ==========================
   Partner Section
========================== */

.partner {
    padding: 80px 20px;
    background: #f8f8f8;
}

.partner-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-container img {
    flex: 1;
    max-width: 420px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

.partner-text {
    flex: 1;
}

.partner-text h2 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 10px;
}

.partner-text h3 {
    color: #0b8a2a;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.partner-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.partner-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.partner-text ul li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #333;
}

.partner .btn {
    display: inline-block;
    padding: 14px 28px;
    background: #0b8a2a;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: .3s;
}

.partner .btn:hover {
    background: #08661f;
}

/* Mobile */

@media (max-width:768px){

    .partner-container{
        flex-direction:column;
        text-align:center;
    }

    .partner-container img{
        max-width:350px;
    }

    .partner-text ul{
        text-align:left;
        display:inline-block;
    }

}
/*==============================
        GALLERY
==============================*/

.gallery{
    padding:80px 20px;
    background:#111;
    text-align:center;
}

.gallery h2{
    color:#E86A17;
    font-size:2.5rem;
    margin-bottom:15px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
    margin-top:40px;
}

.gallery-item{
    overflow:hidden;
    border-radius:12px;
    border:2px solid #333;
    background:#222;
}

.gallery-item img{
    width:100%;
    height:250px;
    display:block;
    object-fit:cover;
    transition:.35s ease;
}

.gallery-item:hover img{
    transform:scale(1.05);
}
/*==============================
        CONTACT
==============================*/

.contact{
    padding:80px 20px;
    background:#181818;
    text-align:center;
}

.contact h2{
    color:#E86A17;
    font-size:2.5rem;
    margin-bottom:20px;
}

.contact-info{
    margin-top:30px;
}

.contact-info p{
    color:#ddd;
    font-size:1.1rem;
    margin:15px 0;
}

.contact .btn{
    display:inline-block;
    margin-top:30px;
}
/*=========================
        FOOTER
=========================*/

.footer{
    background:#0b0b0b;
    color:#bbb;
    text-align:center;
    padding:50px 20px;
    border-top:2px solid #E86A17;
}

.footer-logo{
    width:70px;
    margin-bottom:15px;
}

.footer p{
    margin:10px 0;
    line-height:1.6;
}

.developer{
    margin-top:20px;
    font-size:.95rem;
}

.developer a{
    color:#E86A17;
    text-decoration:none;
    font-weight:bold;
}

.developer a:hover{
    color:#fff;
}