* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: linear-gradient(to bottom right, #1a1a1a, #0f1e2c);
    color: #fff;
    line-height: 1.6;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(0, 0, 0, 0.7);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo h1 {
    color: #ff6600;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #ff6600;
}

nav .btn {
    background-color: #ff6600;
    padding: 8px 15px;
    border-radius: 6px;
    color: #000;
    font-weight: 600;
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to bottom right, #222, #0f1e2c);
}

.hero-content h2 {
    font-size: 2.2rem;
    color: #fff;
}

.hero-content span {
    color: #ff6600;
}

.hero-content p {
    margin: 15px 0;
    color: #dcdcdc;
}

.cta {
    display: inline-block;
    background: #ff6600;
    color: #000;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta:hover {
    background: #ff8c00;
}

/* SERVICES */
.services {
    padding: 60px 20px;
    text-align: center;
}

.services h2 {
    color: #ff6600;
    margin-bottom: 30px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 165, 0, 0.1);
    transform: translateY(-4px);
}

/* ABOUT + VISION */
.about,
.vision {
    padding: 50px 30px;
    text-align: center;
}

.about p {
    max-width: 700px;
    margin: 10px auto;
    color: #ddd;
}

.vision {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.vision-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    max-width: 300px;
}

.vision-box h3 {
    color: #ff6600;
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 25px;
    font-size: 0.9rem;
    background: #0a0a0a;
}

footer a {
    color: #ff6600;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 10px;
    }

    .hero-content h2 {
        font-size: 1.6rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
}

/* HERO SMALL */
.small-hero {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(to bottom right, #1a1a1a, #0f1e2c);
}

.small-hero h2 {
    font-size: 2rem;
    color: #ff6600;
    margin-bottom: 10px;
}

.small-hero p {
    color: #ccc;
}

/* BOOKING FORM */
.booking {
    max-width: 600px;
    margin: 60px auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.booking form {
    display: flex;
    flex-direction: column;
}

.booking label {
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #ff6600;
}

.booking input,
.booking select,
.booking textarea {
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ff6600;
    font-size: 1rem;
}

.booking input:focus,
.booking select:focus,
.booking textarea:focus {
    outline: 2px solid #ff6600;
}

.booking button {
    margin-top: 25px;
    background-color: #ff6600;
    color: #000;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.booking button:hover {
    background-color: #ff6600;
}

/* ---------------- ABOUT PAGE ELEGANCE UPGRADE ---------------- */

.small-hero {
    text-align: center;
    padding: 100px 20px 60px;
    max-width: 850px;
    margin: 0 auto;
}

.small-hero h2 {
    font-size: 40px;
    font-weight: 700;
    background-color: #ff6600;
    color: #fff;
    margin-bottom: 15px;
}

.small-hero p {
    color: #ff6600;
    font-size: 18px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.about-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.about-section {
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.03);
    padding: 35px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(4px);
}

.about-section h3 {
    color: #ff6600;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

#sidebar-toggle {
    display: none;
}

.sidebar-toggle-btn {
    position: fixed;
    left: 20px;
    top: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #ff6600;
    border-radius: 8px;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.hamburger-bar {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

.services-sidebar {
    position: fixed;
    left: -280px;
    top: 0;
    width: 280px;
    height: 100vh;
    background: #1a0f08;
    transition: left 0.4s;
    z-index: 9999;
    overflow-y: auto;
}

#sidebar-toggle:checked~.services-sidebar {
    left: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    z-index: 9998;
}

#sidebar-toggle:checked~.sidebar-overlay {
    opacity: 1;
    visibility: visible;
}

.sidebar-header {
    padding: 30px 20px;
    border-bottom: 2px solid #ff6600;
    color: #ff6600;
}

.services-list {
    padding: 15px 0;
}

.service-item {
    padding: 15px 20px;
    color: #fff;
    border-left: 3px solid transparent;
}

.service-item:hover {
    background: rgba(255, 102, 0, 0.15);
    border-left-color: #ff6600;
}

.join-btn {
    display: block;
    margin: 20px;
    padding: 15px;
    background: #000;
    border: 2px solid #ff6600;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
}