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

html {
    scroll-behavior: smooth;
}

body {
    background: #06111f;
    color: white;
    overflow-x: hidden;
}

/* NAVBAR */

.navbar {
    width: 100%;
    height: 90px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 8%;

    position: fixed;
    top: 0;

    z-index: 1000;

    background: rgba(5, 10, 20, 0.7);

    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #1e90ff;
}

.logo i {
    margin-right: 10px;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #1e90ff;
}

.menu-btn {
    display: none;
    font-size: 28px;
}

/* HERO */

.hero {
    min-height: 100vh;

    padding: 140px 8% 80px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tag {
    display: inline-block;

    padding: 10px 20px;

    background: rgba(30, 144, 255, 0.15);

    border: 1px solid #1e90ff;

    border-radius: 50px;

    color: #1e90ff;

    margin-bottom: 25px;
}

.hero h1 {
    font-size: 70px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #1e90ff;
}

.hero p {
    font-size: 18px;
    color: #c7d3e0;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 16px 35px;

    background: #1e90ff;

    color: white;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-5px);
}

.btn-outline {
    padding: 16px 35px;

    border: 2px solid #1e90ff;

    color: white;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 600;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.1);

    padding: 20px;

    border-radius: 30px;

    backdrop-filter: blur(10px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.glass-card img {
    width: 100%;
    border-radius: 20px;
}

/* SECTION */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header span {
    color: #1e90ff;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: 45px;
    margin-top: 10px;
}

/* SERVICES */

.services {
    padding: 100px 8%;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 25px;

    padding: 40px 30px;

    transition: 0.4s;

    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #1e90ff;
}

.service-card i {
    font-size: 50px;
    color: #1e90ff;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.service-card p {
    color: #c7d3e0;
    line-height: 1.7;
}

/* STATS */

.stats {
    padding: 80px 8%;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 30px;
}

.stat-box {
    text-align: center;

    background: rgba(255, 255, 255, 0.05);

    padding: 50px;

    border-radius: 25px;
}

.stat-box h1 {
    font-size: 55px;
    color: #1e90ff;
}

/* TESTIMONIALS */

.testimonials {
    padding: 100px 8%;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);

    padding: 40px;

    border-radius: 25px;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-card p {
    line-height: 1.8;
    color: #c7d3e0;
}

.testimonial-card h4 {
    margin-top: 20px;
    color: #1e90ff;
}

/* FOOTER */

footer {
    background: #040b15;

    padding: 60px 8%;

    text-align: center;
}

.footer-content h2 {
    color: #1e90ff;
    margin-bottom: 20px;
}

.socials {
    margin-top: 25px;
}

.socials a {
    display: inline-flex;

    width: 45px;
    height: 45px;

    justify-content: center;
    align-items: center;

    background: rgba(255, 255, 255, 0.08);

    color: white;

    border-radius: 50%;

    margin: 0 10px;

    text-decoration: none;

    transition: 0.3s;
}

.socials a:hover {
    background: #1e90ff;
}

/* WHATSAPP */

.whatsapp-btn {
    position: fixed;

    bottom: 25px;
    right: 25px;

    width: 65px;
    height: 65px;

    border-radius: 50%;

    background: #25d366;

    display: flex;
    justify-content: center;
    align-items: center;

    color: white;

    font-size: 32px;

    text-decoration: none;

    z-index: 1000;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* RESPONSIVE */

@media(max-width:991px) {

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 50px;
    }

    nav {
        position: fixed;

        top: 90px;
        right: -100%;

        width: 260px;
        height: 100vh;

        background: #081321;

        flex-direction: column;

        padding: 40px;

        transition: 0.4s;
    }

    nav.active {
        right: 0;
    }

    .menu-btn {
        display: block;
        cursor: pointer;
    }
}
/* AUTH */

.auth-section {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 120px 8%;
}

.auth-card {
    width: 420px;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 25px;

    padding: 50px;

    backdrop-filter: blur(15px);
}

.auth-card h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.auth-card p {
    color: #c7d3e0;
    margin-bottom: 30px;
}

.auth-card form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-card input {
    padding: 16px;

    border: none;

    border-radius: 12px;

    background: #0d1b2d;

    color: white;
}

.auth-card button {
    padding: 16px;

    border: none;

    border-radius: 12px;

    background: #1e90ff;

    color: white;

    font-size: 16px;

    cursor: pointer;
}

.auth-link {
    margin-top: 20px;
    text-align: center;
}

.auth-link a {
    color: #1e90ff;
    text-decoration: none;
}

/* BOOKING */

.booking-section {
    min-height: 100vh;

    padding: 140px 8%;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.booking-left h1 {
    font-size: 60px;
    margin: 20px 0;
}

.booking-left p {
    color: #c7d3e0;
    line-height: 1.8;
}

.booking-form {
    background: rgba(255, 255, 255, 0.05);

    padding: 40px;

    border-radius: 25px;

    border: 1px solid rgba(255, 255, 255, 0.1);

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 16px;

    background: #0d1b2d;

    border: none;

    border-radius: 12px;

    color: white;
}

.booking-form button {
    padding: 16px;

    background: #1e90ff;

    border: none;

    border-radius: 12px;

    color: white;

    cursor: pointer;
}

/* PAYMENT */

.payment-section {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 120px 8%;
}

.payment-card {
    width: 600px;

    background: rgba(255, 255, 255, 0.05);

    border-radius: 25px;

    padding: 50px;

    text-align: center;

    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-card h1 {
    font-size: 50px;
    margin: 20px 0;
}

.payment-card p {
    color: #c7d3e0;
    line-height: 1.8;
}

.payment-options {
    display: flex;
    justify-content: center;
    gap: 20px;

    margin: 40px 0;
}

.option {
    width: 120px;
    height: 120px;

    background: #0d1b2d;

    border-radius: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 10px;
}

.option i {
    font-size: 35px;
    color: #1e90ff;
}

.pay-btn {
    padding: 18px 40px;

    border: none;

    border-radius: 12px;

    background: #1e90ff;

    color: white;

    font-size: 18px;

    cursor: pointer;
}

/* DASHBOARD */

.dashboard-section {
    padding: 140px 8%;
}

.dashboard-header {
    margin-bottom: 50px;
}

.dashboard-header h1 {
    font-size: 55px;
}

.dashboard-header p {
    color: #c7d3e0;
    margin-top: 10px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;

    margin-bottom: 60px;
}

.dash-card {
    background: rgba(255, 255, 255, 0.05);

    padding: 40px;

    border-radius: 25px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    text-align: center;
}

.dash-card i {
    font-size: 40px;
    color: #1e90ff;
    margin-bottom: 20px;
}

.dash-card h2 {
    font-size: 45px;
}

.table-section {
    background: rgba(255, 255, 255, 0.05);

    padding: 40px;

    border-radius: 25px;
}

table {
    width: 100%;

    margin-top: 30px;

    border-collapse: collapse;
}

table th,
table td {
    padding: 18px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    text-align: left;
}

table th {
    color: #1e90ff;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .booking-container {
        grid-template-columns: 1fr;
    }

    .booking-left {
        text-align: center;
    }

    .payment-options {
        flex-direction: column;
        align-items: center;
    }

    .payment-card {
        width: 100%;
    }

    .dashboard-header {
        text-align: center;
    }
}