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

.navbar{
    background: #131313;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container{
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

#logo__image{
        height: 80px;
        width: auto;
        object-fit: contain;
}


.navbar__logo--container{
    display: flex;
    z-index: 1;
    cursor: pointer;
}

.navbar__menu{
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item{
    height: 80px;
}

.navbar__links{
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

.navbar__btn{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.button{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #1199AB;
    color: white;
}

.button:hover{
    background: #ED83B5;
    transition: all 0.3s ease;
}

.navbar__links:hover{
    color: #ED83B5;
    transition: all 0.3s ease;
}

@media screen and (max-width: 960px) {
    .navbar__container{
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }
    
    .navbar__menu{
        display: grid;
        background: #131313;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease;
        height: 50vh;
        z-index: -1;
    }

    .navbar__menu.active{
        background: #131313;
        top:100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 50vh;
        font-size: 1.6rem;
    }

    #logo__image{
        height: 50px;
        width: auto;
        object-fit: contain;
    }

    .navbar__toggle .bar{
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.5s ease-in-out;
        background: #fff;
    }

    .navbar__item{
        width: 100%;
    }
    .navbar__links{
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    #mobile-menu{
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__btn{
        padding-bottom: 2rem;
    }

    .button{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80%;
        margin: 0;
    }

    .navbar__toggle .bar{
        display:block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

}

/* Hero Section CSS*/

html, body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100vw;
    background-color: #141414;
    margin-bottom: 20px;
}

.main{
    background-color: #141414;
    padding-bottom: 180px;
    flex: 1;
}

.main__container{
    display: grid;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    background-color: #141414;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 50px 50px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.main__content{
    margin-bottom: 20px;
}
.main__content form{
    width: 50%;
    margin-bottom: 20px;
}

/*grid-template-columns: 1fr 1fr;*/

.main__content h1{
    font-size: 4rem;
    background-color: #ff8177;
    background-image: linear-gradient(to top, #1199AB 0%, #4760a2 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

#password {
    height: 40px;
}

#date{
    height: 40px;
}

.main__content h2{
     font-size: 2rem;
    background-color: #1199AB;
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.main__content h3 {
    color: #ED83B5;
    font-size: 2rem;
    margin: 1rem 0;
}

.main__content p{
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
}

button[type=click]{
     font-size: 1rem;
    background-color: #1199AB;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    color: #fff;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
} 

button[type=submit]{
    font-size: 1rem;
    background-color: #1199AB;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    color: #fff;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
}


.main__btn{
    font-size: 1rem;
    background-color: #1199AB;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    color: #fff;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
}

.main__btn a{
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
}

.main__btn:after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #ED83B5;
    transition: all 0.35s;
    border-radius: 4px;
}

.main__btn:hover{
    color: #fff;
}

.main__btn:hover:after{
    width: 100%;
}

.main__img--container{
    text-align: center;
}

#main__img{
    height: 80%;
    width: 80%;
}

#int__image{
    height: 550px;
    width: 1200px;
   
}

/*Mobile Responsive */

@media screen and (max-width: 768px) {

    .bookings__footer {
        margin-top: 1.5rem;
    }

    .main{
        padding-bottom: 5px;
        margin-bottom: 5px;
    }

    .main__container{
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 100%;
        margin: 0 auto;
        height: auto;
        min-height: 50vh;
    }

    .main__content{
        text-align: center;
        margin-bottom: 4rem;
    }

    .main__content h1 {
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .main__content h2 {
        font-size: 3rem;
    }

    .main__content p{
        margin-top: 1rem;
        font-size: 1.5rem;
    }

    #int__image{
        height: 20rem;
        width: 40rem;
        margin-right: 1rem;
    }
}

@media screen and (max-width: 480px) {

    .bookings__footer {
        margin-top: 1.5rem;
    }

    .main{
        padding-bottom: 10px;
    }

    .main__container{
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 100%;
        margin: 0 auto;
        min-height: 0vh;
    }

    .main__content h1 {
        font-size: 2rem;
        margin-top: 3rem;
    }

    .main__content h2 {
        font-size: 2rem;
    }

    .main__content p{
        margin-top: 2rem;
        font-size: 1.5rem;
    }

    .main__content form{
    width: 100%;
    margin-inline: 0;
}

    .main__btn{
        padding: 12px 36px;
        margin: 2.5rem 0;
    }

    #int__image{
        height: 10rem;
        width: 30rem;
        margin-right: 1rem;
    }
}

.admin__main__container{
    display: grid;
    align-items: center;
    justify-self: center;
    min-height: 100vh;
    background-color: #141414;
    z-index: 1;
    max-width: 1390px;
    
}

.admin__main__content{
    background-image: url('/static/images/512clear.png');
    min-height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.admin__main__content::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);  /* Black at 50% opacity */
    z-index: 1;
}

.admin__main__content h1{
    font-size: 4rem;
    z-index: 5;
    margin-left: 1rem;
    position: relative;
    background-color: #ff8177;
    background-image: linear-gradient(to top, #1199AB 0%, #4760a2 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.admin__main__content h2{
    font-size: 2rem;
    margin-left: 1rem;
    z-index: 5;
    position: relative;
    background-color: #1199AB;
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.admin__main__content p{
    margin-top: 1rem;
    z-index: 5;
    margin-left: 2rem;
    position: relative;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
}

/*SERVICES SECTION CSS*/

.index__services{
    background: #141414;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    
}

.index__services h1{
    margin-bottom: 100px;
    font-size: 4rem;
    background-color: #ff8177;
    background-image: linear-gradient(to top, #1199AB 0%, #4760a2 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.services{
    background: #141414;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding-bottom: 3rem;
}

.services__card{
     margin: 1rem;
    height: 300px;
    width: 400px;
    border-radius: 4px;
    background-image: linear-gradient(to bottom, rgba(163, 159, 159, 0.908) 0%,
    rgba(157, 154, 154, 0.6) 100%);
    background-size: cover;
    position: relative;
    color: #fff;
}

.base_services__card{
    margin: 1rem;
    height: 300px;
    width: 400px;
    border-radius: 4px;
    background-image: linear-gradient(to bottom, #1199AB 0%,
    #23232300 100%);
    background-size: cover;
    position: relative;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem 1.5rem;
}

.base_services__card:hover{
    transform: scale(1.075);
    transition: 0.2s ease-in;
    cursor: pointer;
}

.base_services__card p{
    position:static;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.base_services__card button{
    color: #fff;
    padding: 10px 20px;
    width: fit-content;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #1199AB;
    position: static;
    top: 240px;
    left: 30px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
}

.base_services__card button:hover{
    background-color:#ED83B5;
    transition: all 0.35s;
}

.services__card p{
    position:absolute;
    top: 200px;
    left: 30px;
}

.services__card button{
    color: #fff;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #1199AB;
    position: absolute;
    top: 240px;
    left: 30px;
    font-size: 1rem;
    cursor: pointer;
}

.eli_services__card{
     margin: 1rem;
    height: 300px;
    width: 400px;
    border-radius: 4px;
    background-image: linear-gradient(to bottom, #ED83B5 0%,
    #23232300 100%);
    background-size: cover;
    position: relative;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem 1.5rem;
}

.eli_services__card:hover{
    transform: scale(1.075);
    transition: 0.2s ease-in;
    cursor: pointer;
}

.eli_services__card p{
    position:static;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.eli_services__card button{
    color: #fff;
    padding: 10px 20px;
    border: none;
    width: fit-content;
    outline: none;
    border-radius: 4px;
    background: #1199AB;
    position: static;
    top: 240px;
    left: 30px;
    font-size: 1rem;
    cursor: pointer;
}

.eli_services__card button:hover{
    background-color:#ED83B5;
    transition: all 0.35s;
}

.pres_services__card{
    margin: 1rem;
    height: 300px;
    width: 400px;
    border-radius: 4px;
    background-image: linear-gradient(to bottom, #857603 0%,
    #23232300 100%);
    background-size: cover;
    position: relative;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem 1.5rem;
}

.pres_services__card:hover{
    transform: scale(1.075);
    transition: 0.2s ease-in;
    cursor: pointer;
}

.pres_services__card p{
    position:static;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.pres_services__card button{
    color: #fff;
    padding: 10px 20px;
    border: none;
    width: fit-content;
    outline: none;
    border-radius: 4px;
    background: #1199AB;
    position: static;
    top: 240px;
    left: 30px;
    font-size: 1rem;
    cursor: pointer;
}

.pres_services__card button:hover{
    background-color:#ED83B5;
    transition: all 0.35s;
}

.package__button{
    position: static;
    text-align: center;
    width: 100%;
    margin: 2rem 0;
}


.package__button button{
    margin-bottom: 0;
    color: #fff;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #1199AB;
    font-size: 1rem;
    cursor: pointer;
}

.package__button button:hover{
    background-color:#ED83B5;
    transition: all 0.35s;
}

.int__description{
    background: #141414;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.int__description h2{
    background-color: #ff8177;
    background-image: linear-gradient(to right, #1199AB 0%, #7ad3ff 0%,
    #7fe3ff 21%, #85ccf9 52%, hsl(226, 56%, 57%) 78%);
    background-size: 100%;
    margin-top: 1rem;
    margin-bottom: 5rem;
    margin-right: 5rem;
    margin-left: 5rem;
    font-size:1.5rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.int__description h4{
    color: white;
}

.int__list{
    background-color: #7ad3ff;
    background-size: 100%;
    margin-top: 1rem;
    margin-bottom: 5rem;
    margin-right: 5rem;
    margin-left: 5rem;
    font-size:1.5rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color:#e9e9e9;
    -moz-text-fill-color: transparent;
}

.int__btn{
    font-size: 1rem;
    background-color: #1199AB;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    color: #f1ecec;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
}
.int__btn a{
     position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
}

.services h1{
    background-color: #ff8177;
    background-image: linear-gradient(to right, #1199AB 0%, #7ad3ff 0%,
    #7fe3ff 21%, #85ccf9 52%, #5572cf 78%, #2a49b1 100%);
    background-size: 100%;
    margin-top: 5rem;
    margin-bottom: 5rem;
    font-size:2.5rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.services__container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.extra-services__container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/*<option value="hatchback">SUV</option>*/

/*SERVICES PAGE SERVICE CARDS*/

.int__detail{
    margin: 1rem;
    height: 525px;
    width: 400px;
    border-radius: 4px;
    background-image: linear-gradient(to top, rgba(186, 21, 21, 0) 0%,
    rgba(0, 0, 0, 0.6) 100%);
    background-size: cover;
    position: relative;
    color: #fff;
}

.int__detail p{
    position:absolute;
    top: 200px;
    left: 30px;
}

.int__detail button{
    color: #fff;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #1199AB;
    position: absolute;
    top: 440px;
    left: 30px;
    font-size: 1rem;
    cursor: pointer;
}

.int__detail:hover{
    transform: scale(1.075);
    transition: 0.2s ease-in;
    cursor: pointer;
}

.int__detail button:hover{
    background-color:#ED83B5;
    transition: all 0.35s;
}


.maint__detail{
    margin: 1rem;
    height: 525px;
    width: 400px;
    border-radius: 4px;
    background-image: linear-gradient(to top, rgba(186, 21, 21, 0) 0%,
    rgba(20, 149, 63, 0.6) 100%);
    background-size: cover;
    position: relative;
    color: #fff;
}

.maint__detail p{
    position:absolute;
    margin-right: 0.5rem;
    top: 200px;
    left: 30px;
}

.maint__detail button{
    color: #fff;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #1199AB;
    position: absolute;
    top: 440px;
    left: 30px;
    font-size: 1rem;
    cursor: pointer;
}
.main .main__container .main__content .maint__heading h1{
    font-size: 4rem;
    background-color: #ff8177;
    background-image: linear-gradient(to top, #999d9d 0%, #1c1d1f 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.maint__detail:hover{
    transform: scale(1.075);
    transition: 0.2s ease-in;
    cursor: pointer;
}

.maint__detail button:hover{
    background-color:#ED83B5;
    transition: all 0.35s;
}

.baseline__valet{
    margin: 1rem;
    height: 525px;
    width: 400px;
    border-radius: 4px;
    background-image: linear-gradient(to top, rgba(186, 21, 21, 0) 0%,
    #1199AB 100%);
    background-size: cover;
    position: relative;
    color: #fff;
}

.baseline__valet p{
    position:absolute;
    margin-right: 0.5rem;
    top: 200px;
    left: 30px;
}

.baseline__valet button{
    color: #fff;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #1199AB;
    position: absolute;
    top: 440px;
    left: 30px;
    font-size: 1rem;
    cursor: pointer;
}

.baseline__valet:hover{
    transform: scale(1.075);
    transition: 0.2s ease-in;
    cursor: pointer;
}

.baseline__valet button:hover{
    background-color:#ED83B5;
    transition: all 0.35s;
}

.elite__detail{
    margin: 1rem;
    height: 525px;
    width: 400px;
    border-radius: 4px;
    background-image: linear-gradient(to top, rgba(186, 21, 21, 0) 0%,
    #ED83B5 100%);  
    background-size: cover;
    position: relative;
    color: #fff;
}

.elite__detail p{
    position:absolute;
    margin-right: 0.5rem;
    top: 200px;
    left: 30px;
}

.elite__detail button{
    color: #fff;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #1199AB;
    position: absolute;
    top: 440px;
    left: 30px;
    font-size: 1rem;
    cursor: pointer;
}

.elite__detail:hover{
    transform: scale(1.075);
    transition: 0.2s ease-in;
    cursor: pointer;
}

.elite__detail button:hover{
    background-color:#ED83B5;
    transition: all 0.35s;
}

.presi__detail{
    margin: 1rem;
    height: 525px;
    width: 400px;
    border-radius: 4px;
    background-image: linear-gradient(to top, rgba(186, 21, 21, 0) 0%,
    #857603 100%);
    background-size: cover;
    position: relative;
    color: #fff;
}

.presi__detail p{
    position:absolute;
    margin-right: 0.5rem;
    top: 200px;
    left: 30px;
}

.presi__detail button{
    color: #fff;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #1199AB;
    position: absolute;
    top: 440px;
    left: 30px;
    font-size: 1rem;
    cursor: pointer;
}

.presi__detail:hover{
    transform: scale(1.075);
    transition: 0.2s ease-in;
    cursor: pointer;
}

.presi__detail button:hover{
    background-color:#ED83B5;
    transition: all 0.35s;
}


.int__detail:nth-child(2){
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%,
    rgba(17,17,17,0.6) 100%), url('../images/image4.jpg');

}

.extra-services__card{
    margin: 1rem;
    height: 300px;
    width: 400px;
    border-radius: 4px;
    background-image: linear-gradient(to bottom, rgba(163, 159, 159, 0.908) 0%,
    rgba(157, 154, 154, 0.6) 100%);
    background-size: cover;
    position: relative;
    color: #fff;
}

.extra-services__card:nth-child(2){
    background-image: linear-gradient(to bottom, rgba(163, 159, 159, 0.908) 0%,
    rgba(157, 154, 154, 0.6) 100%);
}

.extra-services__container h2{
    position:absolute;
    top: 350px;
    left: 30px;
}

.extra-services__card button{
    color: #fff;
    padding: 10px 10px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #1199AB;
    position: absolute;
    top: 240px;
    left: 30px;
    font-size: 1rem;
    cursor: pointer;
}

.extra-services__container h2{
    position:absolute;
    top: 10px;
    left: 30px;
}

.extra-services__container p{
    position:absolute;
    top: 200px;
    left: 30px;
}

.extra-services__card:hover{
    transform: scale(1.075);
    transition: 0.2s ease-in;
    cursor: pointer;
}

.extra-services__card button:hover{
    background-color:#ED83B5;
    transition: all 0.35s;
}


.services__container h2{
    position:absolute;
    top: 10px;
    left: 30px;
}

@media screen and (max-width: 960px) {
    
    .index__services{
        height: 100%;
    }
    
    .services{
        height: 100%;
    }
    
    .services h1{
        font-size:2rem;
        margin-top: 12rem;
    }

    .package__button{
        top:2670px;
        left: 250px;
    }
}

@media screen and (max-width: 480px) {
    .services{
        height: auto;
    }
    
    .services h1{
        font-size:1.2rem;
    }

    .services__card{
        width: 300px;
    }

     .package__button{
        bottom:1000;
        left: 100;
    }

}


/*FOOTER CSS*/

.footer__container{
    background-color: #14141435;
    margin-top: 1rem;
    padding: 1rem 0 0 0 ;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#footer__logo{
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

#footer__logo img{
    width: 100px;
    height: auto;
}

.footer__links{
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content:center;
}

.footer__link--wrapper{
    display: flex;
}

.footer__link--items{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px;
    text-align: left;
    width: 160px;
    box-sizing: border-box;
}

.footer__link--items h2{
    margin-bottom: 16px;
}

.footer__link--items > h2{
    color:#fff;
}

.footer__link--items a{
    color:#fff;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer__link--items a:hover{
    color: #e9e9e9;
    transition: 0.3s ease-out;
}

/*SOCIAL ICONS*/

.social__icon--link{
    color: #fff;
    font-size: 24px;
}

.social__media{
    max-width: 1000px;
    width: 100%
}

.social__media--wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 40px auto 0 auto;
}

.website__rights{
    color:#fff;
}

/* Form Styling */
form {
    font-family: "Days One", sans-serif;
    position:relative;
    margin-top: 50px;
    margin-inline: 20px;
}

/* Submit Button Styling */
button.submit {
    background-color: #ef8215;
    border: none;
    color: rgb(246, 243, 243);
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 120px;
    cursor: pointer;
    border-radius: 16px;
}

.submit:hover {
    background-color: chocolate;
}

/* Input and Textarea Styling */
input[type="text"], select, textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}
input[type = "email"]{
    width: 50%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
}

label{
    color: #ccc;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.bookings__table{
    background-color: #f9f9f9;
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;

}

.bookings__table h3{
    color: #131313;
    margin-bottom: 1rem;
}

.bookings__table p{
    margin: 0.5rem 0;
    color: #666;
}

.confirmation__details {
    background-color: #f9f9f9;
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.confirmation__details:last-child {
    border-bottom: none;
}

.confirmation__details h4{
    color: #131313;
    margin-bottom: 1rem;
}

.confirmation__details p {
    margin: 0.5rem 0;
    color: #666;
}

/* Flash Messages with your brand colors */
.alert {
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
}

.alert-success {
    background-color: #1199AB;  /* Your teal color */
    color: #fff;
}

.alert-danger {
    background-color: #ED83B5;  /* Your pink color */
    color: #fff;
}

/* Legal Documents Styling */
.legal-document {
    max-width: 900px;
    margin: 3rem auto;
    padding: 3rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    color: #333;
    text-align: left;
    line-height: 1.8;
    
}

.legal-document h1 {
    color: #1199AB;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 3px solid #1199AB;
    padding-bottom: 1rem;
}

.legal-document .last-updated {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.legal-document .intro {
    background: #f9f9f9;
    padding: 1.5rem;
    border-left: 4px solid #1199AB;
    margin: 2rem 0;
    border-radius: 4px;
}

.legal-document h2 {
    color: #131313;
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #eee;
}

.legal-document h3 {
    color: #1199AB;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-document p {
    margin-bottom: 1rem;
    color: #444;
}

.legal-document ul {
    margin: 1rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.legal-document li {
    margin-bottom: 0.8rem;
    color: #444;
}

.legal-document strong {
    color: #131313;
    font-weight: 600;
}

.legal-document a {
    color: #1199AB;
    text-decoration: underline;
}

.legal-document a:hover {
    color: #ED83B5;
}

.contact-box {
    background: #f9f9f9;
    border: 2px solid #1199AB;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contact-box p {
    margin: 0.5rem 0;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .legal-document {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .legal-document h1 {
        font-size: 2rem;
    }
    
    .legal-document h2 {
        font-size: 1.5rem;
    }
    
    .legal-document ul {
        margin-left: 1rem;
        padding-left: 0.5rem;
    }
}

.step1,
.step2,
.step3,
.step4,
.step5 {
    margin: 2rem auto;
    padding: 3rem;
    background: #f9f9f9;
    border-radius: 8px;
    
}

.how-it-works__container {
    background: #141414;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    margin-bottom: 0;
    padding-bottom: 3rem;
}

.how-it-works__container h1{
    margin-bottom: 50px;
    font-size: 4rem;
    background-color: #ff8177;
    background-image: linear-gradient(to top, #1199AB 0%, #4760a2 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.how-it-works__container h2{
        font-size: 2rem;
        background-color: #1199AB;
        background-size: 100%;
        -webkit-background-clip: text;
        -moz-background-clip: text;
        -webkit-text-fill-color: transparent;
        -moz-text-fill-color: transparent;
}

.how-it-works__container h4{
    font-size: 1rem;
    color: #fff;
}

.step1 p,
.step2 p,
.step3 p {
    margin: 0;
    padding: 0.5rem 0;
}

.instructions-box {
    margin: auto auto;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.user-details-card {
    margin: auto auto;
    padding: 1.7rem;
    background: #f9f9f9;
    border-radius: 8px;
}


/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   ============================================ */

/* Tablets and Small Laptops (768px - 960px) */
@media screen and (max-width: 960px) {
    /* Footer Adjustments */
    .footer__link--wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .footer__link--items {
        width: 100%;
        text-align: center;
        align-items: center;
        
    }
    
    .social__media--wrap {
        flex-direction: column;
        text-align: center;
    }
    
    #footer__logo img {
        width: 80px;
    }
    
    /* Admin Sections */
    .admin__main__container {
        padding: 1rem;
    }
    
    .admin__main__content h1 {
        font-size: 3rem;
        margin-left: 0.5rem;
    }
    
    .admin__main__content h2 {
        font-size: 1.5rem;
        margin-left: 0.5rem;
    }
    
    .admin__main__content p {
        font-size: 1.5rem;
        margin-left: 0.5rem;
    }
    
    /* Forms */
    .main__content form {
        width: 100%;
        align-items: center;
    }
    
    input[type="email"] {
        width: 100%;
    }
    
    /* Tables */
    .bookings__table,
    .users__table {
        overflow-x: auto;
        display: block;
    }
    
    .bookings__table table,
    .users__table table {
        font-size: 0.9rem;
    }
    
    .bookings__table th,
    .bookings__table td,
    .users__table th,
    .users__table td {
        padding: 0.5rem;
    }
    
    /* Service Cards */
    .services__card,
    .base_services__card,
    .eli_services__card,
    .pres_services__card,
    .extra-services__card {
        width: 350px;
        
    }

    .services__container{
        align-items: center;
    }
    
    .int__detail,
    .maint__detail,
    .baseline__valet,
    .elite__detail,
    .presi__detail {
        width: 350px;
        height: 500px;
    }
    
    /* How It Works Section */
    .how-it-works__container {
        height: auto;
        padding-bottom: 3rem;
        margin-bottom: 100px;
    }
    
    .how-it-works__container h1 {
        font-size: 3rem;
    }
    
    .step1, .step2, .step3, .step4, .step5 {
        padding: 2rem;
        margin: 1rem;
    }
}

/* Mobile Devices (481px - 768px) */
@media screen and (max-width: 768px) {
    /* Typography Adjustments */
    h1 {
        font-size: 2.5rem !important;
    }
    
    h2 {
        font-size: 1.8rem !important;
    }
    
    h3 {
        font-size: 1.5rem !important;
    }
    
    /* Navbar Logo */
    #logo__image {
        height: 60px;
    }
    
    /* Main Container */
    .main__container {
        padding: 25px 25px;
    }
    
    /* Admin Sections */
    .admin__main__content h1 {
        font-size: 2.5rem;
    }
    
    .admin__main__content h2 {
        font-size: 1.3rem;
    }
    
    .admin__main__content p {
        font-size: 1.2rem;
    }
    
    /* Service Cards */
    .services__card,
    .base_services__card,
    .eli_services__card,
    .pres_services__card,
    .extra-services__card {
        width: 320px;
        height: 280px;
    }

    .services__container{
        align-items: center;
    }

    .services__card button,
    .base_services__card button,
    .eli_services__card button,
    .pres_services__card button,
    .extra-services__card button {
        top: 220px;
    }
    
    .int__detail,
    .maint__detail,
    .baseline__valet,
    .elite__detail,
    .presi__detail {
        width: 320px;
        height: 480px;
    }
    
    .int__detail button,
    .maint__detail button,
    .baseline__valet button,
    .elite__detail button,
    .presi__detail button {
        top: 400px;
    }
    
    /* Service Descriptions */
    .int__description h2 {
        font-size: 1.2rem;
        margin: 1rem;
    }
    
    .int__list {
        font-size: 1.2rem;
        margin: 1rem;
    }
    
    /* Forms */
    input[type="text"],
    input[type="email"],
    select,
    textarea {
        font-size: 16px; /* Prevents zoom on mobile */
    }
    
    button[type="submit"],
    .main__btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    /* Tables - Make scrollable */
    .bookings__table,
    .users__table,
    .bookings__table--container,
    .users__table--container {
        width: 100%;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    .bookings__table th,
    .bookings__table td {
        white-space: nowrap;
        font-size: 0.85rem;
        padding: 0.4rem;
    }
    
    /* Booking Details Grid */
    .details__grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Confirmation Details */
    .confirmation__details {
        padding: 1.5rem;
    }
    
    /* Footer */
    .footer__container {
        padding-top: 3rem;
    }
    
    .footer__link--wrapper {
        flex-wrap: wrap;
    }
    
    .footer__link--items {
        width: 50%;
        margin-bottom: 2rem;
    }
    
    .social__media--wrap {
        padding-bottom: 2rem;
    }
    
    /* How It Works */
    .how-it-works__container h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .step1, .step2, .step3, .step4, .step5 {
        padding: 1.5rem;
    }
    
    /* Instructions Box */
    .instructions-box,
    .user-details-card {
        padding: 1rem;
    }
    
    /* Alert Messages */
    .alert {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
}

/* Small Mobile Devices (320px - 480px) */
@media screen and (max-width: 480px) {
    /* Base Typography */
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
    
    h3 {
        font-size: 1.2rem !important;
    }
    
    /* Navbar */
    .navbar__container {
        padding: 0 20px;
    }
    
    #logo__image {
        height: 50px;
    }
    
    /* Main Container */
    .main__container {
        padding: 15px 15px;
    }
    
    .main__content p {
        font-size: 1.2rem !important;
    }
    
    /* Admin Sections */
    .admin__main__content h1 {
        font-size: 2rem;
        margin-left: 0.3rem;
    }
    
    .admin__main__content h2 {
        font-size: 1.1rem;
        margin-left: 0.3rem;
    }
    
    .admin__main__content p {
        font-size: 1rem;
        margin-left: 0.3rem;
    }
    
    /* Buttons */
    .main__btn,
    button[type="submit"],
    button[type="click"] {
        font-size: 0.9rem;
        padding: 10px 20px;
        width: 100%;
    }
    
    /* Service Cards */
    .services__card,
    .base_services__card,
    .eli_services__card,
    .pres_services__card,
    .extra-services__card {
        width: 280px;
        height: 260px;
    }
    
    .services__card button,
    .base_services__card button,
    .eli_services__card button,
    .pres_services__card button {
        top: 200px;
        left: 20px;
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .services__container{
        align-items: center;
    }
    
    .services__container h2,
    .extra-services__container h2 {
        font-size: 1.2rem;
        top: 5px;
        left: 20px;
    }
    
    .services__card p,
    .extra-services__card p {
        top: 180px;
        left: 20px;
        font-size: 0.9rem;
    }
    
    /* Detail Cards */
    .int__detail,
    .maint__detail,
    .baseline__valet,
    .elite__detail,
    .presi__detail {
        width: 280px;
        height: 450px;
    }
    
    .int__detail button,
    .maint__detail button,
    .baseline__valet button,
    .elite__detail button,
    .presi__detail button {
        top: 380px;
        left: 20px;
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    .int__detail p,
    .maint__detail p,
    .baseline__valet p,
    .elite__detail p,
    .presi__detail p {
        top: 180px;
        left: 20px;
        font-size: 0.9rem;
    }
    
    /* Service Descriptions */
    .int__description h2 {
        font-size: 1rem;
        margin: 0.5rem;
    }
    
    .int__list {
        font-size: 1rem;
        margin: 0.5rem;
    }
    
    /* Package Button */
    .package__button {
        position: relative;
        top: 50px;
        left: 0;
        text-align: center;
        width: 100%;
    }
    
    .package__button button {
        width: 90%;
        margin: 1rem auto;
    }
    
    /* Forms */
    form {
        margin-inline: 10px;
        width: 100%;
    }
    
    input[type="text"],
    input[type="email"],
    select,
    textarea {
        padding: 10px 15px;
        font-size: 16px;
    }
    
    label {
        font-size: 0.9rem;
    }
    
    /* Tables */
    table {
        font-size: 0.75rem;
    }
    
    .bookings__table th,
    .bookings__table td {
        padding: 0.3rem;
    }
    
    .details__btn,
    .main__btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    /* Booking/User Details */
    .booking__details,
    .user__details {
        padding: 1rem;
    }
    
    .booking__details h3,
    .user__details h3 {
        font-size: 1.2rem;
    }
    
    .detail__section h4 {
        font-size: 1rem;
    }
    
    .detail__section p {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer__link--items {
        width: 100%;
        margin: 10px 0;
    }
    
    .footer__link--items h2 {
        font-size: 1.2rem;
    }
    
    .footer__link--items a {
        font-size: 0.9rem;
    }
    
    #footer__logo {
        font-size: 1.5rem;
    }
    
    #footer__logo img {
        width: 60px;
    }
    
    .social__icon--link {
        font-size: 20px;
    }
    
    .website__rights {
        font-size: 0.8rem;
        text-align: center;
    }
    
    /* Legal Documents */
    .legal-document {
        padding: 1rem;
        margin: 0.5rem;
    }
    
    .legal-document h1 {
        font-size: 1.8rem;
    }
    
    .legal-document h2 {
        font-size: 1.3rem;
    }
    
    .legal-document h3 {
        font-size: 1.1rem;
    }
    
    .legal-document p,
    .legal-document li {
        font-size: 0.9rem;
    }
    
    .contact-box {
        padding: 1rem;
    }
    
    /* How It Works */
    .how-it-works__container {
        padding: 1rem;
        margin-bottom: 50px;
    }
    
    .how-it-works__container h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .step1, .step2, .step3, .step4, .step5 {
        padding: 1rem;
        margin: 0.5rem auto;
    }
    
    .instructions-box,
    .user-details-card {
        padding: 0.8rem;
    }
    
    /* Image Adjustments */
    #int__image {
        height: auto;
        width: 100%;
        max-width: 280px;
    }
    
    #main__img {
        height: auto;
        width: 90%;
    }
    
    /* Alert Messages */
    .alert {
        font-size: 0.85rem;
        padding: 10px 12px;
        margin: 15px 5px;
    }
    
    /* Confirmation Details */
    .confirmation__details {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .confirmation__details h4 {
        font-size: 1rem;
    }
    
    .confirmation__details p {
        font-size: 0.85rem;
    }
}

/* Extra Small Devices (< 320px) */
@media screen and (max-width: 320px) {
    .services__card,
    .base_services__card,
    .eli_services__card,
    .pres_services__card,
    .extra-services__card,
    .int__detail,
    .maint__detail,
    .baseline__valet,
    .elite__detail,
    .presi__detail {
        width: 260px;
    }
    
    .navbar__container {
        padding: 0 10px;
    }
    
    .main__container {
        padding: 10px;
    }
    
    .footer__link--items {
        font-size: 0.85rem;
    }
}

/* Landscape Mode Fixes for Mobile */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .main {
        padding-bottom: 50px;
    }
    
    .main__container {
        min-height: auto;
    }
    
    .navbar {
        position: relative;
    }
}

/* Print Styles (Bonus) */
@media print {
    .navbar,
    .footer__container,
    .main__btn,
    button {
        display: none;
    }
    
    .legal-document {
        box-shadow: none;
    }
}