* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }
body { background-color: #f4f4f4; color: #333; line-height: 1.6; }

/* Header & Nav */
header { background: #222; color: #fff; padding: 1rem 5%; position: fixed; width: 100%; top: 0; z-index: 1000; }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo span { color: #ff8c00; }
nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 20px; }
nav ul li a { color: white; text-decoration: none; font-weight: bold; }

/* Hero Section */
.hero { 
    height: 100vh; 
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?auto=format&fit=crop&w=1200') no-repeat center center/cover;
    display: flex; flex-direction: column; justify-content: center; align-items: center; color: white; text-align: center;
}
.btn { background: #ff8c00; color: white; padding: 10px 25px; text-decoration: none; border-radius: 5px; margin-top: 20px; transition: 0.3s; }
.btn:hover { background: #e07b00; }

/* Services */
#services { padding: 80px 5%; text-align: center; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 40px; }
.card { background: white; padding: 30px; border-radius: 8px; border-bottom: 5px solid #ff8c00; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }

/* Contact Section */
#contact { padding: 80px 5%; background: #222; color: white; text-align: center; }
#callBtn { background: #ff8c00; border: none; color: white; padding: 15px 30px; font-size: 1.1rem; cursor: pointer; border-radius: 5px; margin-top: 15px; }
footer { text-align: center; padding: 20px; background: #111; color: #777; font-size: 0.9rem; }
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 2px 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

/* Hide text on very small screens to keep it clean */
@media (max-width: 480px) {
    .whatsapp-float span {
        display: none;
    }
    .whatsapp-float {
        padding: 12px;
        border-radius: 50%;
    }
    .whatsapp-icon {
        margin-right: 0;
    }
}
.call-link-btn {
    display: inline-block;
    background: #ff8c00;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    font-weight: bold;
    transition: 0.3s;
}

.call-link-btn:hover {
    background: #e07b00;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
#location {
    padding: 60px 5%;
    background: #fff;
    text-align: center;
}

.location-container {
    margin-top: 20px;
}

.map-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background-color: #4285F4; /* Google Maps Blue */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.map-btn:hover {
    background-color: #357ae8;
}
#gallery { padding: 60px 5%; text-align: center; background: #eee; }
.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 15px; 
    margin-top: 20px; 
}
.gallery-item img { 
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
    border-radius: 8px; 
    transition: 0.3s;
}
.gallery-item img:hover { transform: scale(1.05); }
#inquiry { padding: 60px 5%; background: #fff; text-align: center; }
.contact-form { 
    max-width: 500px; 
    margin: 30px auto; 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}
.contact-form input, .contact-form select, .contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}
.submit-btn {
    background: #222;
    color: #ff8c00;
    padding: 15px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}
.submit-btn:hover { background: #000; color: #fff; }
