body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f5f5f5;
}

/* NAVBAR */
.navbar {
    background: #0B3D2E;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

.logo img {
    height: 60px;
    background: rgba(255,255,255,0.1);
    padding: 5px;
    border-radius: 5px;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.book-btn {
    background: #E67E22;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* HERO */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('../images/hero.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 3.5em;
}

.hero p {
    font-size: 1.3em;
}

/* FEATURES */
.features {
    display: flex;
    justify-content: space-around;
    background: #0B3D2E;
    color: white;
    padding: 30px;
    flex-wrap: wrap;
}

.feature {
    width: 200px;
    text-align: center;
}

/* BUTTON */
.btn {
    background: #D4AF37;
    padding: 12px 25px;
    color: black;
    text-decoration: none;
    border-radius: 5px;
}

/* CARDS */
.section {
    padding: 60px 40px;
    text-align: center;
}

.cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    width: 280px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
}

.card h3 {
    padding: 10px;
}

/* BOOKING FORM */
.booking {
    background: #0B3D2E;
    color: white;
    padding: 50px;
}

.booking form {
    max-width: 600px;
    margin: auto;
}

.booking input, .booking select, .booking textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

.booking button {
    background: #E67E22;
    border: none;
    padding: 12px;
    color: white;
    cursor: pointer;
}

/* FOOTER */
.footer {
    background: #0B3D2E;
    color: white;
    padding: 50px 20px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    width: 220px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 10px;
}

.footer h3 {
    color: #D4AF37;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin: 8px 0;
}

.footer ul li a {
    color: white;
    text-decoration: none;
}

.footer ul li a:hover {
    color: #E67E22;
}

.whatsapp-footer {
    display: inline-block;
    margin-top: 10px;
    background: #25D366;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    font-size: 14px;
}
.section-divider {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: "";
    display: inline-block;
    width: 40%;
    height: 1px;
    background: #D4AF37;
    vertical-align: middle;
    margin: 0 10px;
}

.section-divider span {
    color: #D4AF37;
    font-size: 18px;
}
.about-director {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.about-director img {
    width: 250px;
    border-radius: 10px;
}
.reviews {
    background: #f9f9f9;
}

.review-box {
    max-width: 600px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    font-style: italic;
}
.reviews-social-wrapper {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Make both sections equal */
.reviews-social-wrapper .section {
    flex: 1;
    min-width: 320px;
}

/* Optional styling for cleaner look */
.reviews, .social {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.facebook-box {
    display: flex;
    justify-content: center;
}
