/* Page Basic Style */
*{
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

body{
    color: #333;
    background-color: #ffffff;
    line-height: 1.8;
}

/* Navbar*/
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding: 15px 12px;
    background: #ffffff;
}

.logo{
    font-size: 22px;
    font-weight: bold;
    color: #3c8eb4;
    display: inline-block;
    margin-bottom: 10px;
}
.nav-links{
    list-style: none;
    display: flex;
    gap: 18px;
}
.nav-links a{
    color: #444;
    font-size: 16px;
    transition: 0.3s;
    text-decoration: none;
}
.nav-links a:hover{
    color: #0ea5e9;
}

/* Username */

.username{
    color: #0284c7;
    background-color: #ddd;
    padding: 7px 14px;
    border-radius: 4px;
    font-size: 14px;
    border: 1px solid #bae6fd;
}

/* Hero Section */
.hero-section{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    padding: 50px 20px;
    background-color: #fff;
    margin-left: 40px;
}

.hero-left h1{
    font-size: 38px;
    color: #111;
    margin-bottom: 12px;
}
.hero-left span {
    color: #0ea5e9;
}
.hero-left p{
    border: none;
    margin-bottom: 20px;
    color: #555;
}
/* Hero button */
.hero-left button {
    background: #0ea5e9;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
}

.hero-left button:hover {
    background: #0284c7;
}


/* Hero image */
.hero-right img {
    width: 100%;
    max-width: 480px;
    border-radius: 10px;
}

/* Service Section*/
.services {
    background: #0ea5e9;
    padding: 35px 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.service-box{
    flex: 1;
    padding: 10px;
}
/* Booking section */
.booking-section {
    display: flex;
    gap: 25px;
    padding: 50px 7%;
}

/* Service list */
.booking-left {
    flex: 1.4;
    background: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

/* Add/remove button */
.toggle-btn {
    padding: 5px 12px;
    border: 1px solid #0ea5e9;
    background: transparent;
    color: #0ea5e9;
    cursor: pointer;
}

.toggle-btn:hover {
    background: #0ea5e9;
    color: white;
}

/* Cart section */
.booking-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart, .booking-form {
    background: white;
    padding: 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* Cart header */
.cart-header {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    font-weight: bold;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

/* Cart items */
.cart-item-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
}

/* Total price */
.total-section {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-weight: bold;
    color: #0ea5e9;
}

/* Booking form */
#booking-form-element {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#booking-form-element input {
    padding: 9px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#booking-form-element input.invalid {
    border: 1px solid red;
}

/* Form button */
#booking-form-element button {
    background: #0ea5e9;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Quality section */
.quality-section {
    background: #ffffff;
    display: flex;
    justify-content: space-around;
    padding: 60px 7%;
    text-align: center;
    gap: 20px;
}

/* Quality card */
.quality-card {
    flex: 1;
}

.quality-card img {
    width: 65px;
    height: auto;
    margin-bottom: 15px;
    padding: 5px;
}

.quality-card h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

.quality-card p {
    font-size: 14px;
    color: #666;
}

/* Newsletter */
.newsletter-section {
    background: #e0f2fe;
    padding: 50px 10%;
    text-align: center;
    border-top: 1px solid #bae6fd;
    border-bottom: 1px solid #bae6fd;
}

.newsletter-section h2 {
    color: #0369a1;
    margin-bottom: 8px;
}

/* Input row */
.inputs-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.newsletter-section input {
    padding: 11px;
    border: 1px solid #bae6fd;
    border-radius: 5px;
    width: 280px;
}

/* Subscribe button */
.newsletter-section button {
    padding: 11px 28px;
    background: #0ea5e9;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
}

.newsletter-section button:hover {
    background: #0284c7;
}

/* Footer */
.site-footer {
    background: #fcfcfc;
    padding: 40px 7%;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-col ul {
    list-style: none;
    margin-top: 8px;
}
.footer-col ul li:hover{
    color: #0ea5e9;
}
.footer-col i:hover{
    color: #0ea5e9;
}
/* Mobile responsive */

@media( max-width: 768px){
    .navbar{
        flex-direction: column;
        gap: 10px;
    }
    .hero-section{
        grid-template-columns: 1fr ;
        text-align: center;
        gap: 20px
    }
    .hero-right{
        order: -1;
    }
    .booking-section{
        flex-direction: column;
    }
    .services, .quality-section, .inputs-row{
        flex-direction: column;
        gap: 20px;
    }
    .footer-grid{
        flex-direction: column;
        align-items: center;
    }
}