* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #111;
    color: white;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    background: #000;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 20;
}

.navbar a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
}

.nav-right a:hover {
    color: #ff8800;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=60') no-repeat center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    text-align: center;
    padding-top: 100px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ff7700;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    margin-right: 10px;
    font-weight: 600;
}

.btn-secondary {
    background: #444;
}

/* SECTIONS */
.section {
    padding: 80px 30px;
    text-align: center;
    background: #111;
}

.section.dark {
    background: #000;
}

.title {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 800;
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    background: #222;
    padding: 25px;
    border-radius: 8px;
    font-size: 18px;
}

/* PRODUCTS */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background: #222;
    border-radius: 10px;
    padding-bottom: 20px;
}

.product-card img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 8px;
}

/* PRICING */
.pricing-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.price-box {
    background: #222;
    padding: 25px;
    width: 220px;
    border-radius: 10px;
}

.price {
    font-size: 32px;
    margin: 10px 0;
}

.recommended {
    border: 3px solid #ff7700;
}

/* TESTIMONIALS */
.testimonials {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.testi {
    background: #222;
    padding: 20px 30px;
    border-radius: 8px;
}

/* MODAL LOGIN */
.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #222;
    padding: 30px;
    width: 350px;
    border-radius: 10px;
    text-align: center;
}

.input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 6px;
    border: none;
}

.close {
    float: right;
    cursor: pointer;
    font-size: 22px;
}

/* FOOTER */
.footer {
    padding: 20px;
    text-align: center;
    background: #000;
    margin-top: 40px;
}
