/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    background-color: #f8f8f8;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 10px;
}

.nav-link:hover {
    color: #007bff;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 100px 0 50px;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-video {
    max-width: 100%;
    height: auto;
}

/* Content Sections */
.content {
    padding: 50px 0;
}

.content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.content p {
    margin-bottom: 15px;
}

/* Profiles Section */
.profiles {
    padding: 50px 0;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.profile-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.profile-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.rating {
    margin: 10px 0;
}

.rating i {
    color: #f4d03f;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn.call img, .btn.whatsapp img {
    width: 48px;
    height: 48px;
    background-color: white;
    object-fit: contain;
}

/* Reviews Section */
.reviews {
    padding: 50px 0;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.review-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

/* Pricing Section */
.pricing {
    padding: 50px 0;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.pricing-table th, .pricing-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.pricing-table th {
    background-color: #f8f8f8;
}

.btn.book {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.btn.book:hover {
    background-color: #0056b3;
}

/* Local Areas Section */
.local-areas {
    padding: 50px 0;
}

.local-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.local-area-item {
    text-decoration: none;
    color: #007bff;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

.local-area-item:hover {
    background-color: #f8f8f8;
}

.right-bar ul {
    list-style: none;
}

.right-bar li {
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background-color: #f8f8f8;
    padding: 50px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.faq-item {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.sticky-btn.call img, .sticky-btn.whatsapp img {
    width: 48px;
    height: 48px;
    background-color: white;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 24px;
    }

    .content h2 {
        font-size: 22px;
    }

    .profile-grid, .review-grid, .local-areas-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
}