*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

html{
    scroll-behavior:smooth;
}

section{
    scroll-margin-top:100px;
}

body{
    background:#000;
}

/* HEADER */

header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    padding:25px 80px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    z-index:10;
}

.logo{
    color:white;
    font-size:38px;
    font-weight:700;
}

nav{
    display:flex;
    gap:40px;
}

nav a{
    color:white;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#1e88ff;
}


/* HERO */

.hero{

    height:100vh;

    background-image:url("images/hero.jpg");

    background-size:cover;

    background-position:center;

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.60);

}

.hero-content{

    position:relative;

    color:white;

    z-index:2;

    max-width:900px;

    padding:20px;

}

.hero h1{

    font-size:72px;

    margin-bottom:25px;

    line-height:1.05;

}

.hero p{

    font-size:28px;

    margin-bottom:45px;

    color:#ddd;

}

.buttons{

    display:flex;

    justify-content:center;

    gap:25px;

}

.btn{

    padding:18px 42px;

    border-radius:10px;

    text-decoration:none;

    font-weight:bold;

    font-size:20px;

    transition:.3s;

}

.blue{

    background:#1976ff;

    color:white;

}

.blue:hover{

    background:#005be0;

    transform:translateY(-3px);

}

.white{

    background:white;

    color:black;

}

.white:hover{

    background:#ddd;

    transform:translateY(-3px);

}


/* MOBILE */

@media(max-width:900px){

header{

padding:20px;

flex-direction:column;

gap:20px;

}

.logo{

font-size:28px;

}

nav{

gap:18px;

flex-wrap:wrap;

justify-content:center;

}

.hero h1{

font-size:44px;

}

.hero p{

font-size:20px;

}

.buttons{

flex-direction:column;

align-items:center;

}

.btn{

width:240px;

}

}
.why-us{
    background:#111;
    color:white;
    padding:100px 10%;
    text-align:center;
}

.why-us h2{
    font-size:42px;
    margin-bottom:20px;
}

.section-text{
    color:#bdbdbd;
    max-width:700px;
    margin:0 auto 60px;
    font-size:18px;
    line-height:1.8;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.feature-card{
    background:#1b1b1b;
    border-radius:12px;
    padding:35px;
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-8px);
    background:#222;
}

.feature-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.feature-card p{
    color:#bbb;
    line-height:1.8;
}
/* SERVICES */

.services{

    background:#0a0a0a;
    color:white;
    padding:100px 10%;

}

.services h2{

    text-align:center;
    font-size:42px;
    margin-bottom:20px;

}

.service-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    margin-top:60px;

}

.service-card{

    background:#171717;
    border-radius:15px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.service-card:hover{

    transform:translateY(-10px);

}

.service-card img{

    width:100%;
    height:240px;
    object-fit:cover;

}

.service-content{

    padding:30px;

}

.service-content h3{

    font-size:28px;
    margin-bottom:15px;

}

.service-content p{

    color:#bfbfbf;
    line-height:1.8;
    margin-bottom:25px;

}

.service-content a{

    text-decoration:none;
    color:#2196F3;
    font-weight:bold;

}

/* =========================
   PRICING SECTION
========================= */

.pricing{
    background:#050505;
    color:white;
    padding:110px 10%;
    text-align:center;
}

.pricing h2{
    font-size:42px;
    margin-bottom:20px;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:40px;
    margin-top:60px;
    align-items:stretch;
}

.price-card{
    background:#121212;
    border:1px solid #1f1f1f;
    border-radius:22px;
    padding:45px 35px;
    position:relative;
    transition:.35s ease;
    box-shadow:0 18px 40px rgba(0,0,0,.35);
}

.price-card:hover{
    transform:translateY(-10px);
    border-color:#2b2b2b;
}

.price-card.featured{
    border:2px solid #1976ff;
    box-shadow:0 24px 60px rgba(25,118,255,.18);
}

.popular{
    position:absolute;
    top:18px;
    left:50%;
    transform:translateX(-50%);
    background:#1976ff;
    color:white;
    padding:8px 16px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
}

.price-card h3{
    font-size:32px;
    margin:18px 0 12px;
}

.price{
    color:#cfcfcf;
    margin-bottom:28px;
    font-size:16px;
}

.price span{
    display:block;
    font-size:54px;
    font-weight:800;
    color:white;
    margin-top:10px;
    line-height:1;
}

.price-card ul{
    list-style:none;
    margin:0 0 34px;
    padding:0;
    text-align:left;
}

.price-card li{
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    color:#d8d8d8;
}

.price-card li:last-child{
    border-bottom:none;
}

.price-card .btn{
    width:100%;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    margin-top:auto;
}

/*====================================
REVIEWS
====================================*/

.reviews-section{
    background:#0c0c0c;
    padding:120px 8%;
    overflow:hidden;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(13,110,253,.15);
    color:#4aa3ff;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.section-title h2{
    color:#fff;
    font-size:52px;
    margin-bottom:18px;
}

.section-title p{
    color:#bdbdbd;
    font-size:20px;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* Desktop */

.reviews-carousel{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.review-slide{
    display:block;
}

.review-card{
    background:#171717;
    border:1px solid #262626;
    border-radius:18px;
    padding:40px;
    height:100%;
    transition:.35s;
}

.review-card:hover{
    transform:translateY(-8px);
    border-color:#1f7cff;
    box-shadow:0 20px 45px rgba(0,0,0,.35);
}

.review-card.featured{
    border:2px solid #1f7cff;
    box-shadow:0 0 35px rgba(31,124,255,.25);
}

.google-review{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
}

.google-review img{
    width:36px;
    height:36px;
    border-radius:50%;
}

.google-review span{
    color:#fff;
    font-size:15px;
    font-weight:700;
}

.stars{
    color:#ffc107;
    font-size:28px;
    margin-bottom:20px;
}

.review-card p{
    color:#d6d6d6;
    font-size:17px;
    line-height:1.9;
}

.review-card h4{
    margin-top:28px;
    color:#fff;
    font-size:18px;
    font-weight:700;
}

.carousel-dots{
    display:none;
}

.reviews-button{
    text-align:center;
    margin-top:60px;
}

.google-btn{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:18px 42px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.google-btn:hover{
    background:#2380ff;
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(13,110,253,.4);
}

/*==========================
MOBILE
==========================*/

@media(max-width:991px){

    .reviews-section{
        padding:80px 20px;
    }

    .section-title h2{
        font-size:38px;
    }

    .section-title p{
        font-size:17px;
    }

    .reviews-carousel{
        position:relative;
        display:block;
        min-height:360px;
    }

    .review-slide{
        display:none;
        animation:fade .45s ease;
    }

    .review-slide.active{
        display:block;
    }

    .carousel-dots{
        display:flex;
        justify-content:center;
        gap:12px;
        margin-top:25px;
    }

    .dot{
        width:12px;
        height:12px;
        border-radius:50%;
        background:#555;
        cursor:pointer;
        transition:.3s;
    }

    .dot.active{
        background:#0d6efd;
        transform:scale(1.2);
    }

}

@keyframes fade{

    from{
        opacity:0;
        transform:translateY(10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/*==================================================*
 * CONTACT
 *==================================================*/

.contact{
    background:#0d0d0d;
    padding:120px 8%;
    text-align:center;
}

.contact h2{
    font-size:58px;
    font-weight:800;
    margin-bottom:20px;
    background:linear-gradient(90deg,#4aa3ff,#ffffff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.contact .section-text{
    max-width:750px;
    margin:0 auto 60px;
    color:#bdbdbd;
    font-size:20px;
    line-height:1.8;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin:60px 0;
}

.contact-card{
    background:#171717;
    padding:40px;
    border-radius:18px;
    border:1px solid #222;
    transition:.35s;
}

.contact-card:hover{
    transform:translateY(-8px);
    border-color:#1f7cff;
    box-shadow:0 20px 45px rgba(0,0,0,.35);
}

.contact-icon{
    font-size:42px;
    margin-bottom:20px;
}

.contact-card h3{
    color:#fff;
    margin-bottom:15px;
    font-size:24px;
}

.contact-card a{
    color:#4aa3ff;
    text-decoration:none;
    font-size:20px;
    font-weight:600;
    transition:.3s;
    word-break:break-word;
}

.contact-card a:hover{
    color:#fff;
}

.contact-card p{
    color:#c8c8c8;
    line-height:1.8;
    font-size:18px;
}

.contact-buttons{
    margin-top:40px;
}

/*==============================
  Mobile
==============================*/

@media (max-width:768px){

    .contact{
        padding:80px 20px;
    }

    .contact h2{
        font-size:42px;
    }

    .contact .section-text{
        font-size:17px;
    }

    .contact-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .contact-card{
        padding:30px 25px;
    }

    .contact-card h3{
        font-size:22px;
    }

    .contact-card a{
        font-size:18px;
    }

    .contact-card p{
        font-size:16px;
    }
}

/* Prevent horizontal scrolling */
html,
body{
    overflow-x:hidden;
    width:100%;
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

img{
    max-width:100%;
    height:auto;
}

/*====================================
GALLERY
====================================*/

.gallery-section{
    padding:120px 8%;
    background:#111;
}

.gallery-title{
    text-align:center;
    margin-bottom:70px;
}

.gallery-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(13,110,253,.15);
    color:#4aa3ff;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.gallery-title h2{
    color:#fff;
    font-size:56px;
    margin-bottom:20px;
}

.gallery-title p{
    color:#bdbdbd;
    max-width:700px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
}

/* Gallery Grid */

.gallery{
    padding:120px 8%;
}

.gallery .container{
    max-width:1400px;
    margin:0 auto;
}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    cursor:pointer;

    background:#1a1a1a;

}

.gallery-item img{

    width:100%;

    height:320px;

    object-fit:cover;

    display:block;

    transition:transform .5s ease;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.82),
        rgba(0,0,0,.15)
    );

    opacity:0;

    transition:.35s;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:28px;

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-overlay h3{

    color:#fff;

    font-size:24px;

    margin-bottom:8px;

}

.gallery-overlay p{

    color:#d6d6d6;

    font-size:16px;

    line-height:1.6;

}

/* View More Button */

.gallery-button{

    text-align:center;

    margin-top:60px;

}

.gallery-btn{

    display:inline-block;

    padding:18px 44px;

    background:#0d6efd;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-size:18px;

    font-weight:700;

    transition:.35s;

}

.gallery-btn:hover{

    background:#2380ff;

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(13,110,253,.35);

}

/* Mobile */

@media(max-width:991px){

    .gallery-section{

        padding:90px 20px;

    }

    .gallery-title h2{

        font-size:40px;

    }

    .gallery-title p{

        font-size:17px;

    }

    .gallery-grid{

        grid-template-columns:1fr;

        gap:18px;

    }

    .gallery-item img{

        height:250px;

    }

}

/* ==========================
   GALLERY LIGHTBOX
========================== */

.gallery-item{
    display:block;
    cursor:pointer;
}

.gallery-item img{
    display:block;
    width:100%;
    transition:.35s;
}

.gallery-item:hover img{
    transform:scale(1.02);
}

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:99999;
}

.lightbox.active{
    opacity:1;
    visibility:visible;
}

.lightbox img{
    max-width:95%;
    max-height:90%;
    border-radius:10px;
    box-shadow:0 20px 60px rgba(0,0,0,.6);
}

.lightbox-close{
    position:absolute;
    top:20px;
    right:35px;
    color:#fff;
    font-size:48px;
    cursor:pointer;
    user-select:none;
}

.gallery-overlay{
    pointer-events: none;
}