@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;1,100;1,300&display=swap");

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
    text-rendering: optimizeLegibility;
    font-weight: initial;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

html::-webkit-scrollbar {
    width: 1rem;
}

html::-webkit-scrollbar-track {
    background: #fff;
}

html::-webkit-scrollbar-thumb {
    background: #10221b;
}

section {
    padding: 5rem 9%;
}

.btn {
    margin-top: 1rem;
    display: inline-block;
    border: 0.2rem solid #10221b;
    color: #10221b;
    cursor: pointer;
    background: none;
    font-size: 1.7rem;
    padding: 1rem 3rem;
}

.btn:hover {
    background: #10221b;
    color: #fff;
}

.heading {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 4rem;
    color: #10221b;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 9%;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.header.active {
    background: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.header .logo {
    text-decoration: none;
    margin-right: auto;
    font-size: 2.5rem;
    color: #10221b;
    font-weight: bolder;
}

.header .logo i {
    color: #219150;
}

.header .navbar a {
    text-decoration: none;
    margin-left: 2rem;
    font-size: 1.7rem;
    color: #10221b;
}

.header .navbar a:hover {
    color: #219150;
}

.header .navbar #nav-close {
    font-size: 5rem;
    cursor: pointer;
    color: #10221b;
    display: none;
}

.header .icons a,
.header .icons div {
    font-size: 2.5rem;
    margin-left: 2rem;
    cursor: pointer;
    color: #10221b;
}

.header .icons a:hover,
.header .icons div:hover {
    color: #219150;
}

.header #menu-btn {
    display: none;
}

/* Search Form */
.search-form {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transform: translateY(-110%);
}

.search-form.active {
    transform: translateY(0%);
}

.search-form #close-search {
    position: absolute;
    top: 1.5rem;
    right: 2.5rem;
    cursor: pointer;
    color: #fff;
    font-size: 6rem;
}

.search-form #close-search:hover {
    color: #219150;
}

.search-form form {
    width: 70rem;
    margin: 0 2rem;
    padding-bottom: 2rem;
    border-bottom: 0.2rem solid #fff;
    display: flex;
    align-items: center;
}

.search-form form input {
    width: 100%;
    font-size: 2rem;
    color: #fff;
    text-transform: none;
    background: none;
    padding-right: 2rem;
}

.search-form form input::placeholder {
    color: #aaa;
}

.search-form form label {
    font-size: 3rem;
    cursor: pointer;
    color: #fff;
}

.search-form form label:hover {
    color: #219150;
}

/* Banner Area */
.banner-area {
    height: 60vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(https://images.unsplash.com/photo-1469474968028-56623f02e42e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80) no-repeat;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.banner-content h1 {
    font-size: 5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.banner-content p {
    font-size: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Booking Form Styles */
.booking-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.booking-form {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.form-section {
    border-bottom: 2px solid #f8f9fa;
    padding: 30px 0;
    margin-bottom: 30px;
}

.form-section:last-child {
    border-bottom: none;
}

.service-card {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #219150;
    transform: translateY(-2px);
}

.service-card.selected {
    border-color: #219150;
    background-color: #f8f9ff;
}

.price-tag {
    background: #219150;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.4rem;
}

.summary-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    position: sticky;
    top: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
    font-size: 1.4rem;
}

.total-price {
    font-size: 2rem;
    font-weight: bold;
    color: #219150;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    font-size: 1.6rem;
}

.step.active .step-number {
    background: #219150;
    color: white;
}

.step.completed .step-number {
    background: #198754;
    color: white;
}

/* Form Elements */
.form-label {
    font-size: 1.6rem;
    font-weight: 500;
    color: #10221b;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    font-size: 1.4rem;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #219150;
    box-shadow: 0 0 0 0.2rem rgba(33, 145, 80, 0.25);
}

.btn-primary {
    background: #219150;
    border: 2px solid #219150;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1a7a40;
    border-color: #1a7a40;
    transform: translateY(-2px);
}

.btn-outline-secondary {
    border: 2px solid #6c757d;
    color: #6c757d;
    background: transparent;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background: #6c757d;
    color: white;
}

.btn-success {
    background: #198754;
    border: 2px solid #198754;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background: #157347;
    border-color: #157347;
}

/* Footer Styles */
.footer {
    background: linear-gradient(rgba(255,255,255,.7), rgba(255,255,255,.7)), url(../images/footer-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 5rem 9%;
}

.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}

.footer .box-container .box h3 {
    color: #10221b;
    font-size: 2.2rem;
    padding-bottom: 2rem;
}

.footer .box-container .box a {
    color: #666;
    font-size: 1.4rem;
    padding-bottom: 1.5rem;
    display: block;
    text-decoration: none;
}

.footer .box-container .box a i {
    color: #219150;
    padding-right: .5rem;
    transition: .2s linear;
}

.footer .box-container .box a:hover i {
    padding-right: 2rem;
}

.footer .box-container .box a:hover {
    color: #219150;
}

.footer .credit {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: .1rem solid #ccc;
    font-size: 2rem;
    color: #10221b;
}

.footer .credit span {
    color: #219150;
}

/* Scroll to Top */
.to-top {
    background: #10221b;
    position: fixed;
    bottom: 16px;
    right: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all .4s;
    cursor: pointer;
    z-index: 1000;
}

.to-top.active {
    bottom: 32px;
    pointer-events: auto;
    opacity: 1;
}

.to-top:hover {
    background: #219150;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header {
        padding: 2rem;
    }
    section {
        padding: 3rem 2rem;
    }
}

@media (max-width: 991px) {
    html {
        font-size: 55%;
        scroll-padding-top: 7rem;
    }
    
    .header #menu-btn {
        display: inline-block;
    }
    
    .header .navbar {
        position: fixed;
        top: 0;
        left: -110%;
        background: #fff;
        z-index: 10000;
        width: 35rem;
        height: 100%;
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
        transition: left 0.5s linear;
    }
    
    .header .navbar.active {
        left: 0;
        /* Shadow removed from here */
    }
    
    .header .navbar a {
        margin: 1rem 0;
        font-size: 3rem;
    }
    
    .header .navbar #nav-close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 2rem;
    }
}

@media (max-width: 768px) {
    .booking-form {
        margin-top: -30px;
        padding: 20px;
    }
    
    .to-top {
        font-size: 18px;
        width: 40px;
        height: 40px;
    }
    
    .banner-content h1 {
        font-size: 4rem;
    }
    
    .banner-content p {
        font-size: 1.8rem;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }
    
    .banner-content h1 {
        font-size: 3.5rem;
    }
    
    .banner-content p {
        font-size: 1.6rem;
    }
    
    .header .navbar {
        width: 100%;
    }
}
