/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0f0f0f;
    color: #fff;
    overflow-x: hidden;
}

/* ============================================
   HEADER
============================================ */
.header {
    height: 80px;
    backdrop-filter: blur(12px);
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-inner {
    width: 90%;
    max-width: 1500px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 90px;
}

/* NAV (DESKTOP) */
.nav a {
    margin-left: 24px;
    text-decoration: none;
    color: #fff;
    opacity: 0.8;
    font-size: 0.95rem;
    font-weight: 500;
    transition: .2s;
}

.nav a:hover {
    opacity: 1;
}

@media (max-width: 850px) {
    .nav {
        display: none;
    }
}

/* ============================================
   MOBILE NAVIGATION
============================================ */
.menu-btn {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 850px) {
    .menu-btn {
        display: block;
    }
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 65%;
    height: 100vh;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(12px);
    padding: 70px 30px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    transition: 0.35s ease;
    z-index: 99999;
}

.mobile-nav.active {
    right: 0;
}

.close-btn {
    font-size: 32px;
    color: #fff;
    margin-left: auto;
    margin-bottom: 20px;
    cursor: pointer;
}

.mobile-nav a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    opacity: 0.9;
}

.mobile-nav a:hover {
    opacity: 1;
}

/* DARK OVERLAY */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
    z-index: 9990;
    display: none;
}

.nav-overlay.active {
    display: block;
}


/* ============================================
   SECTION BASE
============================================ */
.section {
    width: 90%;
    max-width: 1500px;
    margin: auto;
    padding: 110px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 35px;
}

/* ============================================
   HERO
============================================ */
.hero {
    height: 100vh;
    background: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=1920&q=85")
    center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 600;
    letter-spacing: 3px;
}

.hero-content p {
    font-size: 1.05rem;
    margin-top: 12px;
    opacity: 0.85;
}

@media (max-width: 650px) {
    .hero-content h1 {
        font-size: 2.1rem;
        letter-spacing: 1px;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
}

/* ============================================
   SERVICES
============================================ */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 22px;
}

.service-card {
    background: #1a1a1a;
    padding: 22px;
    border-radius: 8px;
    text-align: center;
    transition: .25s;
}

.service-card:hover {
    background: #222;
}

.service-card i {
    font-size: 28px;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.service-card p {
    opacity: 0.75;
    font-size: 0.9rem;
}

/* ============================================
   PRICING
============================================ */
.price-cards {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.price-card {
    flex: 1;
    min-width: 240px;
    background: #1b1b1b;
    padding: 24px;
    border-radius: 8px;
    transition: .25s;
}

.price-card:hover {
    background: #232323;
}

.price-icon {
    font-size: 26px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.price-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.price-card .price {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 10px 0 5px 0;
}

.price-card .desc {
    font-size: 0.9rem;
    opacity: 0.75;
}

/* ============================================
   PORTFOLIO
============================================ */
.portfolio-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.portfolio-scroll img {
    height: 300px;
    border-radius: 6px;
    opacity: 0.92;
    transition: .25s;
    scroll-snap-align: start;
}

.portfolio-scroll img:hover {
    opacity: 1;
    transform: scale(1.03);
}

@media (max-width: 650px) {
    .portfolio-scroll img {
        height: 200px;
    }
}

/* ============================================
   ABOUT
============================================ */
.about-container {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    gap: 45px;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.85;
}

.equipment h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.equipment li {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 6px;
}

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONTACT
============================================ */
.contact-section {
    background: #0f0f0f;
    text-align: center;
}

.contact-grid {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1a1a1a;
    padding: 16px 20px;
    border-radius: 10px;
    min-width: 240px;
}

.contact-item i {
    font-size: 26px;
}

.contact-item h4 {
    font-size: 1.05rem;
}

.contact-sub {
    font-size: 0.85rem;
    opacity: 0.6;
}

.contact-btn {
    margin-top: 10px;
    display: inline-block;
    padding: 12px 26px;
    background: #fff;
    color: #000;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: .25s;
}

.contact-btn:hover {
    opacity: .75;
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
============================================ */
.footer {
    margin-top: 50px;
    padding: 30px 0;
    background: #121212;
    text-align: center;
}

.footer-inner p {
    opacity: 0.6;
    font-size: 0.85rem;
}

.footer-links a {
    margin: 0 10px;
    color: #fff;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-links a:hover {
    opacity: 1;
}

/* ============================================
   COOKIE BANNER
============================================ */
.cookie-banner {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(8px);
    padding: 14px 18px;
    border-radius: 10px;
    color: #eee;
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 99999;
    display: none;
    width: 90%;
    max-width: 420px;
}

.cookie-box {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cookie-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.cookie-buttons button {
    padding: 6px 14px;
    font-size: 0.8rem;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.07);
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}

.cookie-buttons .primary {
    background: #fff;
    color: #000;
    border: none;
}

@media (max-width: 480px) {
    .cookie-banner {
        font-size: 0.8rem;
        padding: 12px 15px;
    }
    .cookie-buttons button {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}
