/* --------------------------
   General Styles
-------------------------- */
html, body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background: #f9f9f9;
    color: #333;
    text-align: center;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

h1, h2, h3, p {
    margin: 0;
}

a {
    text-decoration: none;
}

/* --------------------------
   Header
-------------------------- */
header {
    background: linear-gradient(135deg, #ff7b00, #ff3c8b);
    padding: 40px 20px;
    text-align: center;
    color: white;
}

header img.logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 10px;
}

header h1 {
    font-size: 3rem;
    animation: fadeIn 1s ease;
}

header p {
    font-size: 1.3rem;
    animation: fadeIn 1.5s ease;
}

/* --------------------------
   Navigation
-------------------------- */
nav {
    background: white;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    position: sticky;
    top: 0;
    border-bottom: 1px solid #eee;
    z-index: 10;
}

nav a {
    color: #444;
    font-weight: 600;
    padding: 8px 12px;
}

nav a:hover {
    color: #ff3c8b;
}

/* --------------------------
   Sections
-------------------------- */
.section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* --------------------------
   Services Grid
-------------------------- */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.2s;
    flex: 1 1 260px;
    max-width: 350px;
    box-sizing: border-box;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card i {
    font-size: 45px;
    color: #ff7b00;
    margin-bottom: 15px;
}

/* --------------------------
   Prices Grid
-------------------------- */
.prices {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.price-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex: 1 1 260px;
    max-width: 320px;
    box-sizing: border-box;
}

.price-card h3 {
    margin-bottom: 10px;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #e63946;
}

.price-card ul {
    list-style: none;
    padding: 0;
}

.price-card ul li {
    margin: 5px 0;
}

/* --------------------------
   Book Now Buttons
-------------------------- */
.book-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.book {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    transition: 0.2s;
}

.book i {
    font-size: 1.1rem;
}

.book.whatsapp {
    background: #25D366;
}

.book.phone {
    background: #1D4ED8;
}

.book:hover {
    opacity: 0.85;
}

/* --------------------------
   Gallery
-------------------------- */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.gallery img {
    width: 100%;
    max-width: 320px;
    border-radius: 10px;
    height: auto;
    object-fit: cover;
}

/* --------------------------
   Forms
-------------------------- */
form {
    display: grid;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    box-sizing: border-box;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}

button, .btn {
    background: #ff3c8b;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

button:hover, .btn:hover {
    background: #ff7b00;
}

/* --------------------------
   Contact Buttons
-------------------------- */
.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.contact-buttons a {
    flex: 1 1 150px;
    max-width: 300px;
    text-align: center;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    color: #fff;
    background: #ff7b00;
    text-decoration: none;
}

.contact-buttons a:hover {
    background: #ff3c8b;
}

/* --------------------------
   Footer
-------------------------- */
footer {
    text-align: center;
    padding: 25px;
    background: #222;
    color: white;
    margin-top: 40px;
}

/* --------------------------
   Animations
-------------------------- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --------------------------
   Mobile Optimisations
-------------------------- */
@media (max-width: 768px) {
    header {
        padding: 20px 10px;
    }

    header img.logo {
        width: 160px;
    }

    header p {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 10px 0;
    }

    nav a {
        font-size: 0.95rem;
        padding: 8px 12px;
    }

    .services, .prices, .gallery {
        flex-direction: column;
        align-items: center;
    }

    .service-card, .price-card {
        width: 90%;
        max-width: 320px;
    }

    .book-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .book-buttons a {
        width: 90%;
        max-width: 280px;
    }

    form {
        width: 95%;
        padding: 15px;
    }

    .gallery img {
        width: 95%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    header img.logo {
        width: 140px;
    }

    nav a {
        font-size: 0.85rem;
        padding: 6px 8px;
    }

    .price-card .price {
        font-size: 1.1rem;
    }
}
