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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat', sans-serif;
    background:#111827;
    color:#f3f4f6;
    line-height:1.6;
}

/* NAVBAR */

.navbar{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    position:fixed;
    top:0;
    left:0;
    background:rgba(10,10,10,0.75);
    backdrop-filter:blur(8px);
    z-index:1000;
}

.logo{
    font-size:1.4rem;
    font-weight:700;
    color:#60a5fa;
}

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

.nav-links a{
    color:white;
    text-decoration:none;
    transition:0.3s;
}

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

/* HERO */

.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:120px 20px 50px;
}

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

.hero-content h1{
    font-size:3rem;
    margin-bottom:20px;
}

.hero-content p{
    font-size:1.2rem;
    margin-bottom:30px;
    color:#d1d5db;
}

.hero-btn,
.pricing-btn{
    display:inline-block;
    padding:14px 30px;
    background:#2563eb;
    color:white;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
}

.hero-btn:hover,
.pricing-btn:hover{
    background:#3b82f6;
    transform:translateY(-3px);
}

/* SERVICES */

.intro-section{
    padding:100px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:2.3rem;
    margin-bottom:10px;
}

.section-title p{
    color:#cbd5e1;
}

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

.service-card{
    background:#1f2937;
    padding:30px;
    border-radius:16px;
    transition:0.3s;
    border:1px solid rgba(255,255,255,0.05);
}

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

.service-card h3{
    margin-bottom:15px;
    color:#60a5fa;
}

.service-card p{
    margin-bottom:20px;
    color:#d1d5db;
}

.service-card a{
    color:#93c5fd;
    text-decoration:none;
    font-weight:600;
}

/* PRICING */

.pricing-section{
    padding:100px 8%;
    background:#0f172a;
}

.pricing-box{
    max-width:800px;
    margin:0 auto;
    background:#1f2937;
    padding:45px;
    border-radius:20px;
    text-align:center;
    border:1px solid rgba(96,165,250,0.35);
    box-shadow:0 20px 40px rgba(0,0,0,0.25);
}

.price-main{
    margin-bottom:25px;
}

.price{
    font-size:4rem;
    font-weight:700;
    color:#60a5fa;
}

.per-hour{
    font-size:1.4rem;
    color:#cbd5e1;
}

.pricing-text{
    max-width:650px;
    margin:0 auto 18px;
    color:#d1d5db;
    font-size:1.05rem;
}

.pricing-note{
    margin:35px auto;
    padding:25px;
    background:#111827;
    border-left:5px solid #f59e0b;
    border-radius:12px;
    text-align:left;
}

.pricing-note h3{
    color:#fbbf24;
    margin-bottom:10px;
}

.pricing-note p{
    color:#d1d5db;
}

/* ABOUT */

.about-section{
    padding:80px 8%;
    background:#111827;
}

.about-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.about-content h2{
    margin-bottom:25px;
    font-size:2.2rem;
}

.about-content p{
    margin-bottom:20px;
    color:#d1d5db;
}

/* FOOTER */

footer{
    padding:25px;
    text-align:center;
    background:#020617;
    color:#94a3b8;
}

/* MOBILE */

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:15px;
        padding:16px 5%;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:14px;
        font-size:0.9rem;
    }

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

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

    .pricing-box{
        padding:30px 22px;
    }

    .price{
        font-size:3rem;
    }

    .per-hour{
        font-size:1.1rem;
    }
}

/* BODY CAMERA NOTICE */

.bodycam-section{
    padding:80px 8%;
    background:#111827;
}

.bodycam-box{
    max-width:900px;
    margin:0 auto;
    display:flex;
    gap:25px;
    align-items:flex-start;
    background:#1f2937;
    padding:35px;
    border-radius:18px;
    border:1px solid rgba(96,165,250,0.35);
    box-shadow:0 18px 35px rgba(0,0,0,0.25);
}

.bodycam-icon{
    width:44px;
    height:44px;
    min-width:44px;
    border-radius:50%;
    background:#2563eb;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:1.4rem;
    box-shadow:0 0 18px rgba(96,165,250,0.7);
}

.bodycam-content h2{
    font-size:2rem;
    margin-bottom:15px;
    color:#60a5fa;
}

.bodycam-content p{
    color:#d1d5db;
    margin-bottom:15px;
}

.bodycam-content a{
    color:#93c5fd;
    font-weight:600;
    text-decoration:none;
}

.bodycam-content a:hover{
    text-decoration:underline;
}

@media(max-width:768px){

    .bodycam-box{
        flex-direction:column;
        padding:28px 22px;
    }

    .bodycam-content h2{
        font-size:1.7rem;
    }
}

/* BEFORE & AFTER SECTION */

.before-after-section{
    padding:100px 8%;
    background:#0f172a;
}

.before-after-card{
    background:#1f2937;
    border-radius:20px;
    padding:35px;
    margin-bottom:45px;
    border:1px solid rgba(255,255,255,0.06);
    box-shadow:0 18px 35px rgba(0,0,0,0.25);
}

.before-after-card h3{
    text-align:center;
    font-size:2rem;
    margin-bottom:30px;
    color:#60a5fa;
}

.photo-comparison{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin-bottom:30px;
}

.photo-box{
    background:#111827;
    padding:18px;
    border-radius:16px;
}

.photo-box h4{
    text-align:center;
    margin-bottom:15px;
    color:#cbd5e1;
    font-size:1.1rem;
}

.photo-box img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:12px;
    display:block;
}

.project-description{
    max-width:850px;
    margin:0 auto;
    text-align:center;
    color:#d1d5db;
    font-size:1.05rem;
    line-height:1.7;
}

/* MOBILE */

@media(max-width:768px){

    .before-after-card{
        padding:25px 18px;
    }

    .before-after-card h3{
        font-size:1.6rem;
    }

    .photo-comparison{
        grid-template-columns:1fr;
    }

    .photo-box img{
        height:240px;
    }
}


/* AVAILABILITY PAGE */

.availability-hero{
    min-height:55vh;
    background:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
    url('https://images.unsplash.com/photo-1506784365847-bbad939e9335?q=80&w=1600&auto=format&fit=crop')
    center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:120px 20px 60px;
}

.availability-hero-content{
    max-width:850px;
}

.availability-hero-content h1{
    font-size:3rem;
    margin-bottom:18px;
}

.availability-hero-content p{
    color:#d1d5db;
    font-size:1.15rem;
}

.schedule-section{
    padding:80px 8%;
    background:#0f172a;
}

.schedule-legend{
    max-width:1000px;
    margin:0 auto 40px;
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    color:#d1d5db;
}

.schedule-legend span{
    display:flex;
    align-items:center;
    gap:8px;
}

.legend-box{
    width:18px;
    height:18px;
    border-radius:4px;
    display:inline-block;
}

.schedule-container{
    max-width:1400px;
    margin:0 auto;
}

.week-section{
    margin-bottom:70px;
}

.week-section h2{
    text-align:center;
    color:#60a5fa;
    font-size:2rem;
    margin-bottom:30px;
}

.week-grid{
    display:grid;
    grid-template-columns:repeat(7, 1fr);
    gap:18px;
}

.day-card{
    background:#1f2937;
    padding:18px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,0.06);
    box-shadow:0 12px 25px rgba(0,0,0,0.22);
}

.day-card h3{
    text-align:center;
    color:#f3f4f6;
    font-size:1.05rem;
    margin-bottom:4px;
}

.date-label{
    text-align:center;
    color:#94a3b8;
    font-size:0.9rem;
    margin-bottom:15px;
}

.time-slot{
    padding:9px 8px;
    margin-bottom:8px;
    border-radius:8px;
    text-align:center;
    font-size:0.85rem;
    font-weight:600;
    text-transform:capitalize;
}

.time-slot.available,
.legend-box.available{
    background:#14532d;
    color:#dcfce7;
}

.time-slot.unavailable,
.legend-box.unavailable{
    background:#7f1d1d;
    color:#fee2e2;
}

.time-slot.booked,
.legend-box.booked{
    background:#92400e;
    color:#ffedd5;
}

/* MOBILE AVAILABILITY */

@media(max-width:1100px){

    .week-grid{
        grid-template-columns:repeat(3, 1fr);
    }
}

@media(max-width:700px){

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

    .week-grid{
        grid-template-columns:1fr;
    }

    .day-card{
        padding:20px;
    }

    .time-slot{
        font-size:0.95rem;
    }
}

/* CONTACT PAGE */

.contact-hero{
    min-height:55vh;
    background:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1600&auto=format&fit=crop')
    center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:120px 20px 60px;
}

.contact-hero-content{
    max-width:850px;
}

.contact-hero-content h1{
    font-size:3rem;
    margin-bottom:18px;
}

.contact-hero-content p{
    color:#d1d5db;
    font-size:1.15rem;
}

.contact-section{
    padding:90px 8%;
    background:#0f172a;
}

.contact-grid{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
}

.contact-card,
.about-me-card{
    background:#1f2937;
    padding:40px;
    border-radius:20px;
    border:1px solid rgba(96,165,250,0.25);
    box-shadow:0 18px 35px rgba(0,0,0,0.25);
}

.contact-card h2,
.about-me-card h2{
    color:#60a5fa;
    font-size:2rem;
    margin-bottom:20px;
}

.contact-card p,
.about-me-card p{
    color:#d1d5db;
    margin-bottom:18px;
    line-height:1.7;
}

.contact-info{
    margin:30px 0;
    padding:20px;
    background:#111827;
    border-radius:14px;
}

.contact-info p{
    margin-bottom:12px;
}

.contact-info p:last-child{
    margin-bottom:0;
}

.contact-info a{
    color:#93c5fd;
    text-decoration:none;
    font-weight:600;
}

.contact-info a:hover{
    text-decoration:underline;
}

.contact-btn{
    display:inline-block;
    padding:14px 28px;
    background:#2563eb;
    color:white;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
}

.contact-btn:hover{
    background:#3b82f6;
    transform:translateY(-3px);
}

/* MOBILE CONTACT */

@media(max-width:800px){

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

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-card,
    .about-me-card{
        padding:30px 22px;
    }
}

