/* ===============================
   RESET + GLOBAL
=============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f7fa;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.section {
    padding: 80px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===============================
   HEADER
=============================== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    background: #111;
    color: white;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

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

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

nav ul li a:hover {
    opacity: 0.8;
}

/* ===============================
   HERO
=============================== */
.hero {
    min-height: 90vh;
    background: linear-gradient(to right, #007bff, #00c6ff);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

.hero button {
    padding: 14px 30px;
    border: none;
    background: white;
    color: #007bff;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.hero button:hover {
    background: #f0f0f0;
}

/* why-us */
.why-us{
    padding: 80px 20px;
    text-align: left;
}

.live-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
    margin:0 auto 24px;
    max-width:900px;
}

.stat-box{
    background:#fff;
    border-radius:10px;
    padding:18px;
    box-shadow:0 6px 20px rgba(0,0,0,0.08);
    text-align:center;
}

.stat-box h3{
    font-size:30px;
    color:#007bff;
    margin-bottom:8px;
}

.backend-health{
    margin-top:14px;
    font-size:14px;
    background:rgba(255,255,255,0.15);
    padding:8px 12px;
    border-radius:6px;
}

/* ===============================
   SERVICES
=============================== */
/* .services {
    padding: 80px 0;
    text-align: center;
} */

.services {
    padding: 80px 20px;
    text-align: center;
}

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

.card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}
/* mobile response */

@media (max-width: 768px) {

.booking-form {
    width: 95%;
}

}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 1024px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    header {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

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

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

    .live-stats{
        grid-template-columns:1fr;
    }

    .section {
        padding: 40px 0;
    }

    .container {
        width: 100%;
        padding: 0 10px;
    }
}


/* NAVBAR */
.navbar {
    background: #111;
    color: white;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.btn-nav {
    background: #007bff;
    padding: 8px 15px;
    border-radius: 5px;
}

/* SECTION */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 28px;
}

.bg-light {
    background: #f5f7fa;
}

/* GRID */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card, .step-box, .review-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: center;
}

/* HERO */
.hero {
    min-height: 90vh;
    background: linear-gradient(to right, #007bff, #00c6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 44px;
    margin-bottom: 20px;
}

.hero-buttons {
    margin-top: 25px;
}

.primary-btn {
    background: white;
    color: #007bff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    margin-right: 10px;
}

.secondary-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
}

/* CTA */
.cta {
    background: #007bff;
    color: white;
    text-align: center;
    padding: 80px 0;
}

/* ===============================
   PAYMENT PAGE
=============================== */
.payment-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 20px auto;
}

.payment-card p {
    margin: 10px 0;
    font-size: 16px;
}

.payment-card select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.payment-card button {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.payment-card button:hover {
    background: #0b5ed7;
}

/* ===============================
   REVIEW PAGE
=============================== */
.stars span {
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s;
}

.stars span:hover,
.stars span:hover ~ span {
    color: gold;
}

#review-form button {
    background: #198754;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

#review-form button:hover {
    background: #157347;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

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

    .navbar {
        flex-direction: column;
        gap: 15px;
    }
}

/* ===============================
   FORM DESIGN
=============================== */

.booking-form {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.booking-form input,
.booking-form select,
.booking-form button {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.booking-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.booking-form button {
    background: #007bff;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.booking-form button:hover {
    background: #0056b3;
}




/* SETTINGS PAGE */

.settings-container{
max-width:700px;
margin:auto;
}

.settings-card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
margin-bottom:25px;
}

.settings-card h3{
margin-bottom:15px;
font-size:18px;
}

.settings-card input,
.settings-card select{
width:100%;
padding:12px;
margin-top:10px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}

.settings-card button{
background:#007bff;
color:white;
border:none;
padding:10px 18px;
border-radius:6px;
cursor:pointer;
}

.settings-card button:hover{
background:#0056b3;
}