* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', 'Cairo', Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: right;
    background: linear-gradient(135deg, #87ceeb, #f0e68c);
    color: #2c3e50;
    overflow-x: hidden;
}
/* navbar */
header {
    background: linear-gradient(90deg, #2c3e50, #3498db);
    color: #fff;
    padding: 20px;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 10;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background: transparent;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 12px;
    display: block;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: #f1c40f;
    transform: translateY(-3px);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #f1c40f;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 30px;
    height: 2px;
    background-color: #fff;
    display: block;
    margin: 6px auto;
    transition: all 0.3s ease-in-out;
}

.hamburger-active {
    transform: rotate(45deg);
}

.hamburger-active .line:nth-child(2) {
    width: 0;
}

.hamburger-active .line:nth-child(1) {
    transform: translateY(12px);
}

.hamburger-active .line:nth-child(3) {
    transform: translateY(-8px) rotate(90deg);
}

.menubar {
    position: fixed;
    top: 0;
    left: -60%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 60%;
    height: 100vh;
    padding: 20% 0;
    background: rgba(44, 62, 80, 0.95);
    transition: all 0.5s ease-in-out;
    z-index: 2;
}

.menubar.active {
    left: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.menubar ul {
    padding: 0;
    list-style: none;
    text-align: center;
}

.menubar ul li {
    margin-bottom: 40px;
}

.menubar ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    display: block;
    background: rgba(255, 255, 255, 0.1);
}

.menubar ul li a:hover {
    background: #f1c40f;
    color: #2c3e50;
}
/* hero */
.hero-content h1 {
    text-align: center;
    font-size: 50px;
    color: #fff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}
.hero-banner a {
    color: #757575;
    text-decoration: none;
    transition: color 0.3s ease;
}
.hero-banner a:hover {
    color: #3498db;
}
.hero-content {
    margin-left: 20px;
    text-align: start;
    padding: 20px;
    border-radius: 10px;
}
main {
    margin-left: 20px;
    text-align: start;
    line-height: 1;
    padding: 20px;
}
.container {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
h2 {
    color: #0e0e0e;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
/* contact form (adapted for booking) */
.contact-form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 70px;
}
.booking-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 12000px;
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin: auto;
    margin-bottom: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    color: #333;
    margin-top: 5px;
}
.form-group input,
.form-group select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    margin-top: 10px;
}
.submit-btn {
 display: inline-block;
    background: linear-gradient(45deg, #e74c3c, #e67e22);
    color: #fff;
    padding: 12px 25px;
    margin-top: 10px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}
.submit-btn:hover {
   transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.6);
    background: linear-gradient(45deg, #c0392b, #d35400);
}

/* trust section */
.trust-section {
    text-align: center;
    margin-bottom: 2rem;
}
.trust-section h2 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}
.trust-item {
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.trust-item i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 0.5rem;
}
.trust-item p {
    font-size: 0.9rem;
    color: #333;
}
/* map section */
.map-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.map-section:hover {
    transform: translateY(-5px);
}
.map-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #2c3e50;
}
.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}
.footer {
    background: linear-gradient(90deg, #2c3e50, #34495e);
    color: #fff;
    padding: 40px 20px;
    margin-top: 60px;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
}
.footer-column h3 {
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
    text-align: center;
    color: #fff;
}
.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #4da8da;
}
.footer-column p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ccc;
    font-size: 16px;
    text-align: center;
}
.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #000000;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: #f1c40f;
    transform: rotate(360deg);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    color: #bdc3c7;
}
/* responsive design */
@media (min-width: 768px) {
    .contact-form {
        flex-direction: row;
        align-items: flex-start;
    }
    .booking-form {
        width: 65%;
    }
    #contactcard {
        width: 30%;
        margin: 0;
    }
}
@media (max-width: 767px) {
    nav ul {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    .booking-form, #contactcard {
        padding: 15px;
    }
    h2 {
        font-size: 22px;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .footer-column {
        min-width: 100%;
    }
}