/* ================= RESET ================= */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f8f9fa;
}

/* ================= HEADER ================= */
.main-header {
    background: #000;
    color: #fff;
    padding: 15px 0;
}

.main-header .container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

.navbar a {
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
}

.navbar a:hover {
    color: #f39c12;
}

/* ================= FOOTER ================= */
footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 10px;
}

/* ================= SECTIONS ================= */
section {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    background-size: cover;
    background-position: center;
}

section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

section > * {
    position: relative;
    z-index: 1;
}

/* ================= HERO ================= */
.home-section {
    position: relative;
    height: 100vh;
    background: url('../images/sl1.jpg') no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.content {
    position: relative;
    color: #fff;
    text-align: center;
    max-width: 800px;
}

.content h1 {
    font-size: 48px;
}

.subtitle {
    font-size: 18px;
}

/* ================= SERVICES ================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-info {
    padding: 15px;
    text-align: center;
    color: #333;
}

/* ================= GALLERY ================= */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery img {
    width: 30%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* ================= CONTACT ================= */
.contact-section {
    background: url('../images/contact.jpg') center/cover;
    padding: 80px 20px;
    color: #fff;
}

.contact-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    width: 45%;
    margin: 10px;
    display: inline-block;
    color: #000;
}

.contact-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

/* ================= BUTTONS ================= */
.whatsapp-button {
    background: #25D366;
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
}

.call-button {
    background: #007BFF;
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
}

/* FLOAT BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
}

/* ================= OWNER CARD ================= */
.owner-card {
    display: flex;
    gap: 20px;
    max-width: 500px;
    margin: auto;
}

.owner-left img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

/* ================= SLIDER ================= */
.gallery-container {
    max-width: 900px;
    margin: auto;
}

.slides img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .main-header .container {
        flex-direction: column;
    }

    .gallery img {
        width: 100%;
    }

    .contact-card {
        width: 100%;
    }

    .content h1 {
        font-size: 26px;
    }
}