/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global image responsiveness */
img {
    max-width: 100%;
    height: auto;
}

:root {
    --primary-blue: #0066cc;
    --secondary-red: #cc0000;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #cccccc;
    --dark-gray: #333333;
    --placeholder-bg: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.btn-primary:hover {
    background-color: #0052a3;
}
.btn-outline {
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
}

/* Logo and title in hero */
.logo-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.hero-logo {
    height: 100px;
    width: auto;
}
@media (max-width: 768px) {
    .hero-logo {
        height: 80px;
    }
}
.hero-content {
    max-width: 800px;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.hero .tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.hero-image {
    display: none; /* Hidden in hero, but keeping structure */
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: var(--light-gray);
}
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}
.about h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}
.about p {
    flex: 1 1 400px;
    margin-bottom: 1rem;
}
.about-image {
    flex: 1 1 400px;
    max-width: 500px;
}
   .about-image img {
     width: 100%;
     height: auto;
     border-radius: 8px;
     box-shadow: 0 4px 8px rgba(0,0,0,0.1);
     filter: blur(0.3px);
   }

/* Services Section */
.services {
    padding: 4rem 0;
}
.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.service-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}
.service-card p {
    color: var(--dark-gray);
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background-color: var(--light-gray);
}
.gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background-color: var(--placeholder-bg);
    position: relative;
}
.gallery-image::after {
    content: 'Image Placeholder';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--dark-gray);
    font-size: 0.9rem;
    text-align: center;
    width: 80%;
}

/* Booking Section */
.booking {
    padding: 4rem 0;
}
.booking h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}
.booking-form {
    display: grid;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.25);
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background-color: var(--light-gray);
}
.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.contact-item {
    text-align: center;
    flex: 1 1 200px;
}
.contact-item h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}
.contact-item p {
    margin-bottom: 0.5rem;
}
.contact-link {
    color: var(--primary-blue);
    text-decoration: none;
}
.contact-link:hover {
    text-decoration: underline;
}
.contact-links {
    text-align: center;
}

/* Footer Section */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    text-align: center;
    border-radius: 8px;
    position: relative;
}
.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.modal-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.modal-btn:hover {
    opacity: 0.9;
}
#call-btn {
    background-color: #28a745;
    color: white;
}
#whatsapp-btn {
    background-color: #25d366;
    color: white;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.footer p {
    margin: 0;
    font-size: 0.9rem;
}
.footer-links {
    display: flex;
    gap: 1.5rem;
}
.footer-links a {
    color: var(--white);
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Tablet adjustments */
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero .tagline {
        font-size: 1.3rem;
    }
    .about,
    .services,
    .gallery,
    .booking,
    .contact {
        padding: 3rem 0;
    }
    .about h2,
    .services h2,
    .gallery h2,
    .booking h2,
    .contact h2 {
        margin-bottom: 2rem;
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero .tagline {
        font-size: 1.2rem;
    }
    .about-content {
        flex-direction: column;
    }
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 15px;
    }
    .hero-logo {
        margin-bottom: 10px;
    }
    .logo-title {
        flex-direction: column;
        align-items: center;
    }
    .logo-title h1 {
        text-align: center;
        line-height: 1.2;
        max-width: 90%;
        word-break: normal;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero .tagline {
        font-size: 1rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .about,
    .services,
    .gallery,
    .booking,
    .contact {
        padding: 2rem 0;
    }
    .about h2,
    .services h2,
    .gallery h2,
    .booking h2,
    .contact h2 {
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }
    .footer-content {
        gap: 1rem;
    }
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}