*{
   box-sizing: border-box; 
   padding:0;
   margin:0;
   text-decoration:none !important;
   list-style: none;
   font-family: 'Lato', sans-serif;
}

:root{
    --primaryColor: #DD0023;
}

body{
    min-height:100vh;
    height: 100vh;
}

p{
    margin:0;
    padding:0;
}

a, a:hover,a:active{
    color:#000;
}

.clinicLogo{
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    padding: 0;
    margin: 0;
}

.navbar-brand{
    padding:0;
    margin:0 10px;
}

.navbar-nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-nav div{
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width:767px) {
    .navbar-nav div{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center
    }
}


@import url('https://fonts.googleapis.com/css2?family=Lato&family=Roboto&display=swap');

footer{
    height: auto;
    background-color: #2d2929;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    color: #fff;
}

footer div{
    font-size: 12px;
    display:flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding:10px;
}

footer div p{
    width: 100%;
    text-align: center;
}

footer div img{
    height: 100px;
    width: 100px;
    object-fit: contain;
    padding: 10px;
}

.bars-wrapper{
    width:100%;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.45);
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    padding: 10px;
}

.select{
    padding:10px;
    background-color: var(--primaryColor);
    border:0;
    border-radius: 10px;
    color:#fff;
    margin:5px;
}

.select:focus{
    outline: none;
}

.searchbar{
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 20px;
    background-color: #e0e0e0;
    border: 1px solid #e0e0e0;
    width:300px;
    margin:5px;
}

.searchbar:focus{
   outline: none;
}

.button-wrapper{
    width:100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whole-wrapper{
    height: auto;
    min-height: 100vh;
}
/* =======================================HOME */
.header{
    width:100%;
    height: 100vh;
    background-image:   linear-gradient(to bottom, rgba(255, 255, 255, 0.5)60%, rgba(117, 19, 93, 0)),
    url("../images/jb-header-img.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
}

.header h1, .header p, .header a{
    text-align: center;
    margin:0;
    padding:0;
}

.header h1{
    font-weight: 600;
    font-size: 2.5rem;
    text-shadow: 0px 0px 10px rgb(255, 255, 255);
}

.header a{
    margin-top: 30px;
    padding: 10px 15px;
    background-color: var(--primaryColor);
    color: #fff;
    border-radius: 10px;
}

/* =======================================ABOUT */
.about-container{
    width:100%;
    height:auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.about-container .carousel{
    width: 100vw;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-container{
    height: 300px;
    width: 100%;
    max-width: 500px;
    overflow: hidden !important;
    position: relative;
}

.image-container{
    display: flex;
    transition: transform .5s linear;
    width: 100%;
}

.image-container img{
    height: 300px;
    min-width:500px;
    object-fit: cover;
}

@media  screen and (max-width: 350px) {

    .image-container img{
        min-width: none;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
}

#btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 0 4px #111;
    opacity: .6;
    cursor: pointer;
}

#btn:hover{
    opacity: 1;
}
.btn-prev{
    left: 10px;
}
.btn-next{
    right: 10px;
}

.about-container .about-paragraphs{
    padding: 20px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
}

.about-container .about-paragraphs h2{
    font-weight: 600;
}

.about-veterinarians{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.about-veterinarians .veterinarian{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin:10px;
}

.title{
    font-weight: 600;
    padding:20px;
}

.about-veterinarians .veterinarian img{
    background-color: #ccc;
    height: 75px;
    width: 75px;
    border-radius: 50%;
    object-fit: cover;
    margin: 10px;
    border: 2px solid #ddd;
}

.about-veterinarians .veterinarian > div{
    padding: 10px;
}

.about-veterinarians .veterinarian > div p:nth-child(1){
   font-weight: 600;
   padding:0;
   margin:0;
}
.about-veterinarians .veterinarian > div p:nth-child(2){
    padding:0;
    margin:0;
    color: #555;
}

@media screen and (min-width:767px) {
    .about-container{
        flex-direction: row;
    }

    .about-container .carousel{
        width: 50%;
        margin:20px;
    }

    .about-container .about-paragraphs{
       width:50%;
    }

    .about-veterinarians .veterinarian{
        display: flex;
        flex-direction: column;
        padding: 10px;
        justify-content: center;
        text-align: center;
    }

    .about-veterinarians .veterinarian img{
        height: 100px;
        width: 100px;
    }
}

/* =======================================PRODUCTS */

.products-products{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding:10px;
}

.products-products .product{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.45);
    padding: 10px;
    margin: 5px;
    margin-bottom: 20px;
    width: 180px;
}

.products-products .product img{
    background-color: #ccc;
    height: 150px;
    width: 90%;
    margin: 0 auto;
    border-radius: 10px;
    object-fit: cover;
}

.products-products .product > div p{
    padding:0;
    padding-top: 5px;
    margin:0;
   color: #555;
}

.products-products .product > div p:nth-child(1){
   font-weight: 600;
   color: #000;
}

@media screen and (max-width:400px) {
    .products-products .product{
        max-width: 130px;
        margin: 10px;
        font-size: 12px;
    }
    
}

@media screen and (min-width:767px) {
    .products-products .product img{
        height: 200px;
        width: 150px;
    }
    
}

@media screen and (max-width:767px) {
    .bars-wrapper{
        justify-content:center;
        flex-wrap: wrap-reverse;
    }
    
}


/* =======================================CONTACT */
.social-links-wrapper{
    width:85%;
    max-width:800px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding:10px;
    margin: 0 auto;
    font-size: 14px
}

.social-links-wrapper li a{
    display: flex;
    align-items: center;
    font-size: 1.1  rem;
}

.social-links-wrapper li a .fa{
    font-size: 1.5rem;
    margin: 10px;   
}

.warning-textbox{
    height: fit-content;
    width:85%;
    max-width:800px;
    display: flex;
    margin: 20px auto;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding:10px;
    font-size: 1rem;
    border-radius: 10px;
    border: 1px solid #ffd600;
    background-color: #ffd50031;
    color:#555;
}

.warning-textbox p{
    padding:0;
    margin: 5px 0;
    text-align: center;
}

.warning-textbox p:nth-child(1){
    padding: 0 10px;
}
.warning-textbox p:nth-child(1) .fa{
    padding: 0 10px;
    color: #ffd600;
    font-size: 1.2rem;
}

.warning-textbox p a{
    font-weight: 600;
    text-decoration: underline !important;
    color:#333;
}


#appointment-section{
    width:85%;
    max-width: 800px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.45);
    overflow-x: hidden;
    font-size: 14px;
}

#appointment-section .firstline{
    display: flex;
    flex-wrap: wrap;
    align-items:center;
    justify-content: space-between;
    padding:10px;
}

#appointment-section .firstline h4{
    padding:0;
    margin:0;
}

#appointment-section input[type=date]{
    background-color: #e0e0e0;
    padding: 5px 10px;
    border-radius: 10px;
    border: 0;
    font-size: 12px;
    height:auto;
}

#appointment-section .available-vet{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:10px;
}

#appointment-section .available-vet:nth-child(even){
    background: #eaeaea;
}

#appointment-section .available-vet div{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#appointment-section .available-vet p{
    margin:0;
    padding: 0;
    margin-left: 10px;
}

#appointment-section .available-vet img{
    height:40px;
    width: 40px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 1px solid #ccc;
    background-color: #ccc;
}

#appointment-section .available-vet button{
    border-radius: 10px;
    background-color: #58c0de;
    padding:5px;
    width:80px;
    border:0;
    color:#fff;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 14px;
}

#appointment-section .available-vet button > .fa{
    display: none;
    font-size: 1.3rem;
    margin: 5px;   
}

@media screen and (max-width:600px){

    #appointment-section .firstline{
        text-align: center;
    }
}

@media screen and (max-width:440px){

    #appointment-section .firstline{
        text-align: center;
    }

    #appointment-section .firstline h4,
    #appointment-section .firstline p,
    #appointment-section .firstline input[type="date"]{
        width: 100%;
        margin: 5px auto;
    }
}

/* =======================================CONTACT-BOOK */
#appointment-section .firstline-book{
    display: flex;
    align-items: center;
    padding:10px;
    position: relative;
    width: 100%;
    height: auto;
}

#appointment-section .firstline-book a{
    font-family: 'Roboto', sans-serif;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color:#555;
    font-size: 12px;
}

#appointment-section .firstline-book a:hover{
    color: #000;
}

#appointment-section .firstline-book h4{
    margin:0;
    padding:0;
    font-size: 1rem;
}

#appointment-section .firstline-book img{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 10px;
    object-fit: cover;
    object-position: center;
}

#appointment-section .available-vet-book{
    display: flex;
    align-items: center;
    justify-content: center;
    padding:10px;
}

#appointment-section .available-vet-book div{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5px;
}

#appointment-section .available-vet-book:nth-child(even){
    background: #eaeaea;
}

#appointment-section .available-vet-book div{
    display: flex;
    align-items: center;
    justify-content: center;
}

#appointment-section .available-vet-book p{
    margin:0;
    padding: 0;
    margin-left: 10px;
}

#appointment-section .available-vet-book button{
    border-radius: 10px;
    background-color: var(--primaryColor);
    padding:10px;
    border:0;
    color:#fff;
    display: flex;
    align-items: center;
}

#appointment-section .available-vet-book button > .fa{
    display: none;
    font-size: 1.3rem;
    margin: 5px;   
}

#appointment-section .available-vet-book input{
    width:100px;
    outline: none;
    background-color: transparent;
    border: 0;
    text-align: center;
}

.darkshade{
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    max-width: 100vw;
    height: 100%;
    min-height: 100vh;
    background-color: transparent;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 1111;
    backdrop-filter: blur(1px);
    display: none;
    padding: 20px 0;
    background-color: rgba(0,0,0,0.5);
    overflow: auto;
}

.book-form{
    width: auto;
    height: auto;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.book-form div{
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 5px 0;
}

.book-form label{
    width: 100%;
}

.book-form input{
    width:100%;
    border:0;
    color: #555;
    outline: none;
}

.book-form div .address-field{
    width:100%;
    max-width: 300px;
    color: #555;
}

.book-form select{
    width: 100%;
    color: #555;
}

.book-form .button-wrapper button{
    width: 100%;
    margin:5px;
    padding:5px;
    border-radius: 10px;
    color:#fff;
}

.book-form .button-wrapper button:nth-child(1){
    background-color: #787072;
    border: 1px solid #787072;
}

.book-form .button-wrapper button:nth-child(2){
    background-color: var(--primaryColor);
    border: 1px solid var(--primaryColor);
}

.book-form.noAccount{
    border: 1px solid #ddd;
    background-color: #fff;
    color:#000;
}

.book-form.noAccount .button-wrapper a{
    width: 100%;
}

.book-form.noAccount .button-wrapper a button{
    background-color: var(--primaryColor);
}

.book-form.admin{
    width:auto;
}

.book-form.admin input,
.book-form.admin select{
    border: 1px solid #ccc;
    color: #555;
    padding: 5px 8px;
    background-color: #eaeaea;
    border-radius: 3px;
}

.book-form.admin div{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 5px 0;
}

@media screen and (min-width:767px) {
    #appointment-section .available-vet button > .fa{
        display: flex;
    }

    #appointment-section .available-vet img{
        height:50px;
        width: 50px;
    }

    #appointment-section .available-vet-book{
        justify-content: space-between;
    }

    #appointment-section .available-vet-book div{
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        padding:10px;
    }
    .book-form{
        scale:.80;
    }

    .book-form.admin div{
        flex-direction: row;
    }

    .book-form.admin{
        width:600px;
    }
}



/* =======================================LOGIN / REGISTER (shared) */
.whole-wrapper:has(.left){
    --auth-ink: #1F2430;
    --auth-ink-soft: #6B7280;
    --auth-border: #E5E7EC;
    --auth-radius: 12px;
}

.left{
    width: 100%;
    height: 100vh;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(155deg, var(--primaryColor) 0%, color-mix(in srgb, var(--primaryColor) 78%, #000) 100%);
    padding: 48px 40px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* Soft decorative shapes - restrained, CSS-only, no fabricated imagery */
.left::before, .left::after{
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.left::before{ width: 340px; height: 340px; top: -120px; right: -100px; }
.left::after{ width: 220px; height: 220px; bottom: -80px; left: -60px; }

.left .authLogo{
    width: 84px;
    height: 84px;
    object-fit: contain;
    background: #fff;
    border-radius: 20px;
    padding: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.left p.clinicEyebrow{
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    opacity: 0.85;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.left > h1{
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    font-size: 2.4rem;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.left .authTagline{
    font-size: 1.02rem;
    font-weight: 400;
    max-width: 340px;
    line-height: 1.5;
    opacity: 0.92;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}
.left > img{
    width: 78%;
    max-width: 260px;
    height: auto;
    object-fit: contain;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}
.left img.authIllustration{
    width: 78%;
    max-width: 260px;
    height: auto;
    object-fit: contain;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}
.left .authAddress{
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

.whole-wrapper .left .mis{
    width:100%;
    position: absolute;
    bottom:20px;
    left:50%;
    transform: translateX(-50%);
    font-size: .75rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.75;
    z-index: 1;
}

.right{
    height:auto;
    min-height: 100vh;
    width: 90%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: #fff;
    padding: 30px 20px;
    margin:0 auto;
    position: relative;
    color: var(--auth-ink, #1F2430);
}

.right .top-text{
    width:100%;
    margin: 10px 0 4px;
    text-align: left;
    color: var(--auth-ink, #1F2430);
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-size: 1.7rem;
    letter-spacing: -0.3px;
}
.right .top-subtext{
    width: 100%;
    text-align: left;
    color: var(--auth-ink-soft, #6B7280);
    font-size: 0.92rem;
    margin-bottom: 22px;
}

.right > div{
    width: 100%;
    margin: 0 auto; 
    display: flex;
    flex-direction: column;
}

.authSectionLabel{
    width: 100%;
    text-align: left;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.4px;
    color: var(--primaryColor);
    margin: 18px 0 10px;
    padding-top: 14px;
    border-top: 1px solid var(--auth-border, #E5E7EC);
}
.right > div > .authSectionLabel:first-child{
    border-top: none;
    padding-top: 0;
    margin-top: 4px;
}

.right label{
    color: var(--auth-ink, #1F2430);
    font-size: 0.83rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.right input, .right select{
    border-radius: var(--auth-radius, 12px);
    border: 1.5px solid var(--auth-border, #E5E7EC);
    background-color: #fcfcfd;
    padding: 11px 16px;
    font-size: 0.95rem;
    color: var(--auth-ink, #1F2430);
    width: 100%;
    outline:none;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.right input:focus, .right select:focus{
    border: 1.5px solid var(--primaryColor);
    background-color: #fff;
}

.right input::placeholder{
    font-size: .82rem;
    color: #9CA3AF;
}

.right > div > div{
    position: relative;
    display: block;
}

.right > div > div .fa{
    position: absolute;
    top:50%;
    right: 16px;
    transform: translateY(-50%);
    font-size: 1rem;
    color:#9CA3AF;
    cursor: pointer;
}

.authPasswordHint{
    width: 100%;
    text-align: left;
    font-size: 0.76rem;
    color: var(--auth-ink-soft, #6B7280);
    margin: 5px 0 0;
}

.right .primaryBtn{
    padding: 12px;
    border-radius: var(--auth-radius, 12px);
    border: 0;
    text-align: center;
    width: 100%;
    background-color: var(--primaryColor);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin: 18px 0 0;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--primaryColor) 30%, transparent);
    transition: filter 0.15s ease;
}
.right .primaryBtn:hover{
    filter: brightness(0.95);
}

.right .primaryBtn:disabled{
    background-color: #d1d5db !important;
    box-shadow: none !important;
    cursor: not-allowed;
    opacity: 1;
}

.right .primaryBtn.insignup{
    background-color: var(--primaryColor);
    opacity: 1;
    margin-top: 22px;
}

.right .primaryBtn.insignup.email-verificaiton{
    background-color: var(--primaryColor);
    opacity: 1;
}

.right .outlineBtn.insignup{
    margin: 10px 0 0;
}

.right .outlineBtn.inreset{
    margin: 0 auto;
}

.right a{
    width:100%;
    text-align: center;
    margin: 8px 0;
    color: var(--auth-ink-soft, #6B7280);
    font-size: .87rem;
    font-weight: 500;
}
.right a.forgot_pw_btn{
    color: var(--primaryColor);
    font-weight: 600;
}

.right .outlineBtn{
    padding: 11px;
    border-radius: var(--auth-radius, 12px);
    border: 1.5px solid var(--auth-border, #E5E7EC);
    text-align: center;
    width: 100%;
    background-color: transparent;
    color: var(--auth-ink, #1F2430);
    margin: 12px 0 0;
    font-size: 0.92rem;
    font-weight: 600;
    transition: background-color 0.15s ease;
}
.right .outlineBtn:hover{
    background-color: #f9fafb;
}

.wrapper{
    height: fit-content;
    width:100%;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.wrapper > div{
    margin-bottom: 0;
    width: 100%;
}

.close-page{
    position: absolute;
    top:16px;
    right: 16px;
    height: fit-content !important;
    width:fit-content !important;
    z-index: 2;
}

.close-page .fa{
    font-size: 1.3rem;
    color: var(--auth-ink-soft, #9CA3AF);
}



@media screen and (min-width:600px) {
   .left{
    display: flex;
   }
   
   .right{
    width:100%;
    padding: 48px;
   }

   .right input::placeholder{
    font-size: 0.85rem;
    }

    .wrapper{
        flex-direction: row;
    }
}


/* ===========================================website-contact */
.title.inContact{
    width: 85%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    margin-top: 30px;
}

/* /////////////////////////////////////////////////////////////avatar */

.avatar{
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    color:#fff;
    opacity: .9;
}

.avatar .profilePic{
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 1px solid #fff;
    object-fit: cover;
    object-position: center;
    background-color: #ccc;
    margin-left: 5px;
}

.avatar:hover{
    opacity: 1;
    color: #fff;
}

.defaultAvatar{
    height: 30px;
    width: 30px;
    background-color: #58c0de;
    color: #fff;
    border-radius: 50%;
    border: 1px solid #fff;
    margin-left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#resultContainer{
    display: flex;
    flex-direction: column;
}

#resultContainer div input{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}
/* //////////////////// */

.success-box{
    height: auto;
    width: 95%;
    padding: 12px 16px;
    margin: 0 auto;
    margin-top: 20px;
    background-color: #eafaf0;
    border: 1px solid #bfe8cf;
    border-radius: 10px;
    color: #1a7a3d;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.success-box p:nth-child(1){
    font-weight: 700;
}

.success-box p{
    padding: 2px 4px;
    font-size: 14px;
    cursor: default;
}

.forgot_pw_btn:hover{
    text-decoration: underline !important;
}

.danger-box{
    height: auto;
    width: 95%;
    padding: 12px 16px;
    margin: 0 auto;
    margin-top: 20px;
    background-color: #fdf1f0;
    border: 1px solid #f3d4d1;
    border-radius: 10px;
    color: #c0392b;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 20px !important;
}

.danger-box p{
    padding: 2px 4px;
    font-weight: 400 !important;
    font-size: 13px;
    white-space: pre-line;
}

.danger-box p:nth-child(1){
    font-weight: 700;
}

.services-container{
    width: 100%;
    padding: 20px;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.service-container{
    width:30%;
    min-width: 280px;
    height: fit-content;
    background-color: #fff;
    margin: 10px;
    border-radius: 5px;
    padding:10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
}

.service-container img{
    width: 90%;
    margin: 0 auto;
    height: 200px;
    background-color: rgba(0,0,0,0.1);
    object-fit: contain;
    border-radius: 5px;
    opacity: .8;
}

.service-container p{
    width: 100%;
    text-align: center;
    margin: 10px 0;
    font-weight: 600;
}

.service-container a{
    width: 100%;
    text-align: center;
    margin: 10px 0;
}

.service-container a button{
    padding: 5px 10px;
    background-color: var(--primaryColor);
    border:0;
    border-radius: 10px;
    color: #fff;
    font-size: 12px;
}

.service-container a button:hover{
    filter: brightness(1.5);
    transition: .3s;
}

.message-box{
    height: auto;
    width: 95%;
    padding: 3px;
    margin: 0 auto;
    margin-top: 20px;
    background-color: #cccccc85;
    border: 1px solid #ccc;
    border-radius: 10px;
    color: #000;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.message-box p:nth-child(1){
    font-weight: 600;
}

.message-box p{
    padding: 10px;
    font-size: 14px;
    cursor: default;
}

.backBtn-container{
    margin:0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 70%;
}

.backBtn-container a{
    color: #555;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
}

@media screen and (max-width:426px) {
    .backBtn-container{
        width:90%;
    }
}

#testimonial-container{
    background-color: var(--primaryColor);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow-x: auto;
    width: 100%;
}

#testimonial-container > div{
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 10px;
    height: auto;
    min-height: 150px;
    max-width: 300px;
    min-width: 300px;
    margin-right: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    cursor: default;
    position: relative;
}

#testimonial-container > div .span{
    position: absolute;
    bottom: 5px;
    left: 5px;
    color: #fff;
    font-size: 11px;
    opacity: .6;
}

#testimonial-container > div .span button{
    border:0;
    background-color: transparent;
    color: #fff;
}

#testimonial-container > div .span:hover{
    opacity: 1;
}

#testimonial-container div img{
    max-height: 50px;
    min-height: 50px;
    max-width: 50px;
    min-width: 50px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 10px;
    object-fit: cover;
}

#testimonial-container div p{
    color: #fff;
}

#testimonial-container div p{
    font-size: 14px;
    padding: 0 10px;
    padding-top: 5px;
}

.buttonAdd-container{
    width: 100%;
    display: block;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primaryColor);
}


.buttonAdd-container p{
    color: #fff;
    margin: 10px;
}

.buttonAdd-container button{
    padding: 3px 15px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
}

.book-form.testimony{
    width: 500px;
}

#testimony-textarea{
    width: 100%;
    border: 1px solid #ccc;
    margin: 10px 0;
    min-height: 200px;
    font-size: 18px;
    padding: 15px 15px;
    outline: none;
    height: auto;
    border-radius: 10px;
}

#testimony-textarea:focus{
    border:1px solid var(--primaryColor);
}
/* 
#BAPbtn{
    z-index: 11111;
}

#BAPbtn::before {
    content: "";
    height: 100px;
    width: 100px;
    position: absolute;
    background-color: rgb(0, 26, 255);
    display: none;
    transition: 2s;
    z-index: -111;
  }
  
  #BAPbtn:hover::before {
    display: block;
    transform: translateY(10%);
  }

#BAPbtn::after{
    background-color: rgb(0, 255, 0);
    height: 100px;
    width:100px;
    content: "lorem10daiuhdnjahmsgdbkujhmmb";
    bottom:-20px;
    position: absolute;
    transition: 3s;
} */



/* ===== Floating FAQ chat widget (canned answers, no AI) ===== */
#faq-widget{
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 99999;
    font-family: inherit;
}
#faq-toggle-btn{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-color: var(--primaryColor);
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.2s ease;
}
#faq-toggle-btn:hover{
    transform: scale(1.08);
}
#faq-widget.open #faq-toggle-btn{
    display: none;
}
#faq-panel{
    display: none;
    flex-direction: column;
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 340px;
    max-width: calc(100vw - 40px);
    height: 480px;
    max-height: calc(100vh - 60px);
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    overflow: hidden;
}
#faq-widget.open #faq-panel{
    display: flex;
}
#faq-header{
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primaryColor);
    color: #fff;
    padding: 14px 16px;
    flex-shrink: 0;
}
#faq-header img{
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
    background-color: #fff;
}
#faq-header p{
    margin: 0;
    font-weight: 600;
    flex-grow: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#faq-close-btn{
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    flex-shrink: 0;
    padding: 4px;
}
#faq-messages{
    flex-grow: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #f4f6f9;
}
.faq-msg{
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 14px;
    line-height: 1.5;
    white-space: pre-line;
    font-size: 0.92rem;
}
.faq-msg.faq-bot{
    align-self: flex-start;
    background-color: #fff;
    color: #333;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
    border-bottom-left-radius: 4px;
}
.faq-msg.faq-user{
    align-self: flex-end;
    background-color: var(--primaryColor);
    color: #fff;
    border-bottom-right-radius: 4px;
}
.faq-choices{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}
.faq-choice-chip{
    text-align: left;
    background-color: #fff;
    border: 1.5px solid var(--primaryColor);
    color: var(--primaryColor);
    border-radius: 30px;
    padding: 7px 14px;
    font-size: 0.82rem;
    cursor: pointer;
    transition: 0.15s ease;
    max-width: 100%;
}
.faq-choice-chip:hover{
    background-color: var(--primaryColor);
    color: #fff;
}
@media (max-width: 480px){
    #faq-panel{
        right: 20px;
        left: 20px;
        width: auto;
    }
}

/* Free-text input row */
#faq-input-row{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-top: 1px solid #eee;
    flex-shrink: 0;
    background-color: #fff;
}
#faq-text-input{
    flex-grow: 1;
    border: 1.5px solid #ddd;
    border-radius: 30px;
    padding: 9px 16px;
    font-size: 0.9rem;
    outline: none;
}
#faq-text-input:focus{
    border-color: var(--primaryColor);
}
#faq-send-btn{
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    border: none;
    background-color: var(--primaryColor);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
#faq-send-btn:disabled,
#faq-text-input:disabled{
    opacity: 0.6;
    cursor: not-allowed;
}

/* "Typing..." bubble shown while the bot is "thinking" */
.faq-typing-indicator{
    align-self: flex-start;
    display: flex;
    gap: 4px;
    background-color: #fff;
    padding: 14px 16px;
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
.faq-typing-indicator span{
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #aaa;
    animation: faq-typing-bounce 1.2s infinite ease-in-out;
}
.faq-typing-indicator span:nth-child(2){ animation-delay: 0.2s; }
.faq-typing-indicator span:nth-child(3){ animation-delay: 0.4s; }
@keyframes faq-typing-bounce{
    0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* ===== Booking form: category-grouped services + product picker =====
   NOTE: .book-form div{display:flex;flex-direction:row} already exists and
   applies to every div in this form. These selectors are written specifically
   to out-specificity that rule (two classes beats one class + one element),
   rather than relying on the plain class names alone. */
.book-form .services-section-wrapper,
.book-form .products-section-wrapper,
.book-form .pet-block{
    display: block;
    width: 100%;
}
/* display:block on the wrapper itself doesn't cascade to its children - each
   child div independently still matches .book-form div unless overridden.
   This catches every direct child, of any element type, in one rule instead
   of needing a dedicated override per child class. */
.book-form .pet-block > *{
    display: block;
    width: 100%;
}
.book-form .pet-block > div[style*="justify-content"]{
    display: flex;
}
.book-form .booking-category-title{
    display: block;
    width: 100%;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primaryColor);
    margin: 14px 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.book-form .booking-category-block{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 6px;
}
.book-form .booking-item-row{
    display: block;
    width: 100%;
    font-weight: 400;
    padding: 6px 10px;
    border-radius: 6px;
    background-color: #f7f8fa;
}
.booking-item-meta{
    color: #888;
    font-size: 0.85rem;
}
.book-form .booking-products-list{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 260px;
    overflow-y: auto;
    gap: 8px;
    padding: 4px 2px;
}
.book-form .booking-product-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #f7f8fa;
    border-radius: 8px;
    padding: 8px 12px;
    gap: 10px;
}
.booking-product-name{
    margin: 0;
    font-weight: 600;
    font-size: 0.88rem;
}
.booking-product-meta{
    margin: 2px 0 0;
    font-size: 0.75rem;
    color: #888;
}
.book-form .booking-product-stepper{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    gap: 6px;
    flex-shrink: 0;
}
.book-form .booking-product-info{
    display: flex;
    flex-direction: column;
    width: auto;
}
.qtyBtn{
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: none;
    background-color: var(--primaryColor);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}
.product-qty-input{
    width: 36px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 4px;
}

/* ===== Client time slots + GCash payment box ===== */
.book-form #clientTimeSlotsContainer{
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
    max-height: 180px;
    overflow-y: auto;
    padding: 4px 2px;
}
.book-form #clientTimeSlotsContainer .bookAptBtn{
    flex: 0 0 auto;
    margin: 0;
}
.book-form .gcash-payment-box{
    display: block;
    width: 100%;
    background-color: #f7f8fa;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 14px;
    margin: 8px 0;
}
.book-form .gcash-payment-box > div{
    display: block;
    width: 100%;
    margin-bottom: 10px;
}
.book-form .gcash-send-to{
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
}
.book-form .gcash-input{
    width: 100%;
    background-color: #fff;
    border: 1.5px solid #ccc !important;
    border-radius: 8px;
    padding: 8px 12px;
    color: #333;
    outline: none;
}
.book-form .gcash-input:focus{
    border-color: var(--primaryColor) !important;
}

/* ===== Dog size picker ===== */
.book-form .dog-size-picker{
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 100%;
    margin: 6px 0 12px;
}
.dog-size-btn{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 6px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background-color: #f7f8fa;
    cursor: pointer;
    transition: border-color .15s, background-color .15s;
}
.dog-size-btn-label{
    font-weight: 700;
    font-size: 0.9rem;
    color: #333;
}
.dog-size-btn-range{
    font-size: 0.75rem;
    color: #888;
}
.dog-size-btn:hover{
    border-color: var(--primaryColor);
}
.dog-size-btn.selected{
    border-color: var(--primaryColor);
    background-color: color-mix(in srgb, var(--primaryColor) 12%, white);
}
.dog-size-btn.selected .dog-size-btn-label{
    color: var(--primaryColor);
}
.pet-booking-summary{
    background-color: #f4f8ff;
    border-radius: 8px;
    padding: 8px 10px;
    margin-top: 8px;
}

/* ===== Wide booking modal for multi-pet layout ===== */
.book-form.wide-book-form{
    max-height: 90vh;
    overflow-y: auto;
    justify-content: flex-start;
}
.book-form .pets-columns{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    width: 100%;
    align-items: flex-start;
}
.book-form .pets-columns .pet-block{
    flex: 1 1 280px;
    min-width: 260px;
    max-width: 100%;
}
@media (max-width: 700px){
    .book-form .pets-columns{
        flex-direction: column;
    }
    .book-form .pets-columns .pet-block{
        flex: 1 1 auto;
        width: 100%;
    }
}


/* ===== Guided month/date picker (contact.php entry point) - full redesign ===== */
.date-picker-wrapper{
    max-width: 640px;
    width: 92%;
    margin: 0 auto;
    padding: 32px 28px;
    background-color: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.date-picker-month-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 6px;
}
.date-picker-month-nav h4{
    margin: 0;
    min-width: 200px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    letter-spacing: 0.3px;
}
.date-picker-month-nav button{
    background-color: var(--primaryColor);
    color: #fff;
    border: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, opacity 0.15s ease;
}
.date-picker-month-nav button:hover:not(:disabled){
    transform: scale(1.08);
}
.date-picker-month-nav button:disabled{
    background-color: #e2e2e2;
    color: #aaa;
    cursor: not-allowed;
}

.date-picker-intro{
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    max-width: 480px;
    margin: 4px auto 18px;
}

/* Legend - explicit labels + shape/border differences, not color alone */
.date-picker-legend{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eee;
}
.legend-item{
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #555;
    font-weight: 600;
}
.legend-swatch{
    width: 16px;
    height: 16px;
    border-radius: 6px;
    display: inline-block;
}
.legend-available{
    background-color: #eafaf0;
    border: 2px solid #1a9d54;
}
.legend-unavailable{
    background-color: #f2f2f2;
    border: 2px dashed #ccc;
}
.legend-today{
    background-color: #fff;
    border: 2px solid var(--primaryColor);
}
.legend-selected{
    background-color: var(--primaryColor);
    border: 2px solid var(--primaryColor);
}

.date-picker-weekdays{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 10px;
}

.date-picker-grid{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.date-picker-loading{
    grid-column: 1 / -1;
    text-align: center;
    color: #888;
    padding: 30px 0;
    font-size: 0.9rem;
}

.date-picker-cell{
    aspect-ratio: 1;
    border-radius: 12px;
    border: 2px solid transparent;
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    position: relative;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
}

.date-picker-daynum{
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1;
}

.date-picker-today-label{
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.date-picker-blank{
    background: transparent;
    border: 0;
}

/* Available: clearly clickable - soft green fill, solid green border */
.date-picker-available{
    background-color: #eafaf0;
    border-color: #bfe8cf;
    color: #1a7a3d;
    cursor: pointer;
}
.date-picker-available:hover{
    background-color: #1a9d54;
    border-color: #1a9d54;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(26,157,84,0.3);
}

/* Today: distinct ring border regardless of available/unavailable state, so
   it never depends on color alone to be recognized */
.date-picker-is-today{
    border-color: var(--primaryColor) !important;
    border-width: 2px !important;
}
.date-picker-is-today .date-picker-today-label{
    color: var(--primaryColor);
}
.date-picker-is-today.date-picker-unavailable .date-picker-today-label{
    color: #999;
}

/* Selected: strong, unmistakable filled state */
.date-picker-selected{
    background-color: var(--primaryColor) !important;
    border-color: var(--primaryColor) !important;
    color: #fff !important;
    transform: scale(1.05);
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

/* Unavailable: dashed border + muted fill, clearly non-interactive */
.date-picker-unavailable{
    background-color: #fafafa;
    border: 2px dashed #e0e0e0;
    color: #c2c2c2;
    cursor: not-allowed;
}

@media (max-width: 500px){
    .date-picker-wrapper{
        padding: 20px 14px;
        border-radius: 14px;
    }
    .date-picker-month-nav h4{
        font-size: 1.1rem;
        min-width: 140px;
    }
    .date-picker-daynum{
        font-size: 0.9rem;
    }
    .date-picker-grid{
        gap: 6px;
    }
    .legend-item{
        font-size: 0.7rem;
    }
}

/* ============================================================
   Modernized client booking flow (contact.php intro + contact-book.php form)
   Scoped to .modern-booking-page and #clientBookForm specifically so the
   admin booking form, testimonials, and every other .book-form usage on
   the site are completely unaffected. Extends the color/interaction
   language already established on contact.php's date picker (soft green
   for available/success, primary blue for selected, gentle translateY/
   scale micro-interactions) for visual continuity across the same journey,
   rather than a disconnected new look bolted onto the next page.
   ============================================================ */

.modern-booking-page{
    --booking-accent: #E8A33D;
    --booking-accent-dark: #C77C00;
    --booking-bg: #F5F6FA;
    --booking-surface: #FFFFFF;
    --booking-ink: #1F2430;
    --booking-ink-soft: #6B7280;
    --booking-success: #1a9d54;
    --booking-success-bg: #eafaf0;
    --booking-border: #E5E7EC;
    font-family: 'Plus Jakarta Sans', 'Lato', sans-serif;
    color: var(--booking-ink);
}

/* ===== Intro / CTA section (#appointment-section) ===== */
.modern-booking-page .title.inContact{
    font-family: 'Plus Jakarta Sans', 'Lato', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.modern-booking-page #appointment-section{
    max-width: 760px;
    margin: 0 auto;
}
.modern-booking-page .firstline-book{
    background: var(--booking-surface);
    border: 1px solid var(--booking-border);
    border-radius: 16px;
    padding: 18px 22px;
    margin-bottom: 14px;
    box-shadow: 0 2px 10px rgba(17,24,39,0.04);
}
.modern-booking-page .firstline-book h4{
    font-weight: 700;
    color: var(--booking-ink);
    margin: 0;
}
.modern-booking-page .firstline-book img{
    border-radius: 50%;
}
.modern-booking-page .firstline-book a{
    color: var(--primaryColor);
    font-weight: 600;
    font-size: 0.85rem;
}
.modern-booking-page > p{
    color: var(--booking-ink-soft);
    line-height: 1.6;
}
.modern-booking-page .bookAptBtn{
    background: var(--primaryColor);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 26px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--primaryColor) 35%, transparent);
}
.modern-booking-page .bookAptBtn:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 18px color-mix(in srgb, var(--primaryColor) 45%, transparent);
}

/* ===== Modal shell ===== */
#clientBookForm.book-form.wide-book-form{
    font-family: 'Plus Jakarta Sans', 'Lato', sans-serif;
    background: var(--booking-bg);
    border-radius: 20px;
    padding: 28px 28px 24px;
    max-width: 880px;
}
#clientBookForm h5{
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--booking-ink);
    margin-bottom: 4px;
}
#clientBookForm > b > p,
#clientBookForm > b{
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--booking-ink);
    margin: 22px 0 12px;
}

/* ===== Step-card treatment: each major section becomes its own numbered,
   clearly delineated card rather than one continuous wall of fields.
   Uses CSS counters so numbering never has to be hand-maintained if a
   section is reordered. ===== */
#clientBookForm{
    counter-reset: booking-step;
}
#clientBookForm > b{
    counter-increment: booking-step;
    position: relative;
    padding-left: 38px;
}
#clientBookForm > b::before{
    content: counter(booking-step);
    position: absolute;
    left: 0;
    top: -2px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primaryColor);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

#clientBookForm > div:not(.button-wrapper),
#clientBookForm .services-section-wrapper,
#clientBookForm .products-section-wrapper,
#clientBookForm .gcash-payment-box{
    background: var(--booking-surface);
    border: 1px solid var(--booking-border);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 10px;
}

#clientBookForm label{
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--booking-ink-soft);
    margin-bottom: 4px;
}
#clientBookForm input[type="text"],
#clientBookForm input[type="number"],
#clientBookForm input[type="file"],
#clientBookForm textarea,
#clientBookForm select{
    font-family: inherit;
    border: 1.5px solid var(--booking-border) !important;
    border-radius: 10px;
    padding: 9px 12px;
    background: #fcfcfd;
    color: var(--booking-ink);
    transition: border-color 0.15s ease;
}
#clientBookForm input:focus,
#clientBookForm select:focus,
#clientBookForm textarea:focus{
    border-color: var(--primaryColor) !important;
    outline: none;
    background: #fff;
}
#clientBookForm input[readonly]{
    background: #f1f2f5;
    color: var(--booking-ink-soft);
}
#clientBookForm .address-field{
    color: var(--booking-ink-soft);
    font-size: 0.9rem;
}

/* ===== Pet(s) & Services ===== */
#clientBookForm #addPetBtn.outlineBtn{
    background: #fff;
    border: 1.5px dashed var(--primaryColor);
    color: var(--primaryColor);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: background-color 0.15s ease;
}
#clientBookForm #addPetBtn.outlineBtn:hover{
    background: color-mix(in srgb, var(--primaryColor) 8%, white);
}
#clientBookForm .pet-block{
    background: var(--booking-bg) !important;
    border: 1.5px solid var(--booking-border) !important;
    border-radius: 14px !important;
}
#clientBookForm .pet-block label[style*="font-weight:600"]{
    font-size: 0.95rem;
    color: var(--booking-ink);
}

/* Service rows: from plain checkbox rows to clearly selectable cards -
   the checkbox itself stays functionally identical (same name/onchange),
   only its visual container changes. */
#clientBookForm .booking-item-row{
    background: #fff;
    border: 1.5px solid var(--booking-border);
    border-radius: 10px;
    padding: 10px 12px;
    cursor: pointer;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}
#clientBookForm .booking-item-row:has(:checked){
    border-color: var(--primaryColor);
    background: color-mix(in srgb, var(--primaryColor) 6%, white);
}

/* Per-day services (Confinement, Treatment, ...): the "Number of Days"
   stepper revealed inside a checked row (.pet-service-days-wrap for pets
   2/3 built client-side by buildPetBlockHTML(), .booking-days-wrap for
   pet 1's server-rendered copy - same markup shape, both unstyled until
   now) used to render with zero custom CSS: a bare browser-default
   number input with no width constraint stretched to fill the entire row
   on its own line, and the plain +/- buttons had no sizing either. Next
   to every other carefully-styled control on this page, that made a
   checked per-day service look like a completely different, broken
   component rather than the same kind of row as everything else. This
   gives it the same rounded/bordered visual language as the rest of the
   form and, just as importantly, constrains the number input's width so
   it stops stretching full-width. */
#clientBookForm .pet-service-days-wrap,
#clientBookForm .booking-days-wrap{
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
    margin: 8px 0 0 !important;
    padding-top: 8px;
    border-top: 1px dashed var(--booking-border);
    font-size: 0.85rem;
    color: var(--booking-ink-soft);
}
#clientBookForm .pet-service-days-wrap strong,
#clientBookForm .booking-days-wrap strong{
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--booking-ink);
}
#clientBookForm .pet-service-days-wrap button,
#clientBookForm .booking-days-wrap button{
    width: 24px;
    height: 24px;
    padding: 0;
    line-height: 1;
    border: 1px solid var(--booking-border);
    border-radius: 6px;
    background: #fff;
    color: var(--primaryColor);
    font-weight: 700;
    cursor: pointer;
}
#clientBookForm .pet-service-days-wrap button:hover,
#clientBookForm .booking-days-wrap button:hover{
    background: color-mix(in srgb, var(--primaryColor) 10%, white);
}
#clientBookForm .pet-service-days-wrap input[type="number"],
#clientBookForm .booking-days-wrap input[type="number"]{
    width: 48px;
    padding: 4px 2px;
    text-align: center;
    border: 1px solid var(--booking-border);
    border-radius: 6px;
    font-size: 0.85rem;
}
#clientBookForm .booking-category-title{
    color: var(--primaryColor);
    font-weight: 700;
}

/* Dog size picker: larger, friendlier touch targets */
#clientBookForm .dog-size-btn{
    border-radius: 12px;
    border-width: 1.5px;
    padding: 12px 8px;
}
#clientBookForm .dog-size-btn.selected{
    box-shadow: 0 2px 8px color-mix(in srgb, var(--primaryColor) 25%, transparent);
}
#clientBookForm .pet-booking-summary{
    background: color-mix(in srgb, var(--primaryColor) 7%, white);
    border-radius: 10px;
}

/* ===== Products ===== */
#clientBookForm .booking-product-row{
    background: #fff;
    border: 1px solid var(--booking-border);
}
#clientBookForm .qtyBtn{
    box-shadow: 0 1px 4px color-mix(in srgb, var(--primaryColor) 30%, transparent);
}

/* ===== Date & Time ===== */
#clientBookForm #clientTimeSlotsContainer .bookAptBtn{
    background: var(--booking-success-bg);
    color: var(--booking-success);
    border: 1.5px solid #bfe8cf;
    box-shadow: none;
    padding: 9px 16px;
    font-size: 0.85rem;
}
#clientBookForm #clientTimeSlotsContainer .bookAptBtn:hover{
    background: var(--booking-success);
    color: #fff;
    transform: translateY(-2px);
}
#clientSelectedTime{
    color: var(--primaryColor);
}

/* ===== GCash Payment: the final, most consequential step - given its
   own distinct visual weight via the accent color rather than blending in
   as just another card. ===== */
#clientBookForm .gcash-payment-box{
    background: color-mix(in srgb, var(--booking-accent) 6%, white) !important;
    border: 1.5px solid color-mix(in srgb, var(--booking-accent) 35%, white) !important;
}
#clientBookForm .gcash-payment-box:last-of-type{
    background: var(--booking-surface) !important;
    border: 1px solid var(--booking-border) !important;
}
#clientBookForm .gcash-send-to{
    border: 1px solid var(--booking-border);
}
#clientBookForm #grandTotal,
#clientBookForm #requiredDownPayment{
    color: var(--booking-accent-dark);
    font-size: 1.1rem;
}

/* ===== Submit ===== */
#clientBookForm .button-wrapper button[name="book"]{
    background: var(--primaryColor);
    box-shadow: 0 4px 14px color-mix(in srgb, var(--primaryColor) 35%, transparent);
    font-weight: 700;
    border-radius: 10px;
}
#clientBookForm .button-wrapper button.cancelBtn{
    border-radius: 10px;
}

@media (max-width: 700px){
    #clientBookForm.book-form.wide-book-form{
        padding: 20px 16px 18px;
        border-radius: 14px;
    }
    #clientBookForm h5{
        font-size: 1.25rem;
    }
}

/* ======================================================================
   PUBLIC LANDING PAGE (index.php) — Section 3-13 modernization
   All classes prefixed .lp- to avoid any collision with existing public
   page styles (login/register/booking/etc. above this point are untouched).
   ====================================================================== */

.lp-page{
    font-family: 'Public Sans', sans-serif;
    color: var(--lp-ink);
    background: var(--lp-cream);
    overflow-x: hidden;
}
.lp-page{
    --lp-cream: #FBF7EF;
    --lp-surface: #FFFFFF;
    --lp-ink: #23293A;
    --lp-ink-soft: #5C6478;
    --lp-border: #E7E1D3;
    --lp-accent: #E2A03F;
    --lp-accent-soft: #FBEBD1;
}
.lp-page h1, .lp-page h2, .lp-page h3{
    font-family: 'Fraunces', serif;
    color: var(--lp-ink);
    line-height: 1.15;
    margin: 0;
}
.lp-page p{ margin: 0; }
.lp-container{
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}
.lp-section{
    padding: 84px 0;
}
.lp-eyebrow{
    font-family: 'Public Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primaryColor);
    margin-bottom: 10px;
}

/* ===== Nav ===== */
.lp-nav{
    position: sticky;
    top: 0;
    z-index: 500;
    background: rgba(251,247,239,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--lp-border);
}
.lp-nav-inner{
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.lp-nav-brand{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--lp-ink);
}
.lp-nav-brand img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.lp-nav-brand span{
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.15rem;
}
.lp-nav-links{
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.lp-nav-links a{
    text-decoration: none;
    color: var(--lp-ink-soft);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.15s ease;
}
.lp-nav-links a:hover{ color: var(--lp-ink); }
.lp-nav-actions{
    display: flex;
    align-items: center;
    gap: 12px;
}
.lp-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}
.lp-btn-primary{
    background: var(--primaryColor);
    color: #fff;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--primaryColor) 30%, transparent);
}
.lp-btn-primary:hover{ filter: brightness(1.06); transform: translateY(-1px); }
.lp-btn-outline{
    background: transparent;
    border-color: var(--lp-border);
    color: var(--lp-ink);
}
.lp-btn-outline:hover{ border-color: var(--primaryColor); color: var(--primaryColor); }
.lp-nav-avatar{
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--lp-ink);
    font-weight: 600;
    font-size: 0.92rem;
}
.lp-nav-avatar img, .lp-nav-avatar-default{
    width: 34px; height: 34px;
    border-radius: 50%;
    object-fit: cover;
}
.lp-nav-avatar-default{
    background: var(--primaryColor);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
}
.lp-nav-toggle{
    display: none;
    background: none; border: none;
    font-size: 1.4rem;
    color: var(--lp-ink);
    cursor: pointer;
}

/* ===== Hero ===== */
.lp-hero{
    padding: 64px 0 80px;
}
.lp-hero-inner{
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}
.lp-hero-text h1{
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    font-weight: 600;
    margin-bottom: 20px;
}
.lp-hero-text p{
    font-size: 1.1rem;
    color: var(--lp-ink-soft);
    max-width: 46ch;
    line-height: 1.6;
    margin-bottom: 30px;
}
.lp-hero-actions{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.lp-hero-visual{
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 4/3.4;
    background: var(--lp-accent-soft);
    box-shadow: 0 24px 60px -20px rgba(35,41,58,0.25);
}
.lp-hero-visual img{
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.lp-hero-visual-placeholder{
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem;
}
.lp-hero-badge{
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--lp-surface);
    border-radius: 14px;
    padding: 12px 18px;
    box-shadow: 0 10px 30px -12px rgba(35,41,58,0.3);
    display: flex; align-items: center; gap: 10px;
}
.lp-hero-badge-dot{
    width: 10px; height: 10px; border-radius: 50%;
    background: #34A853;
}
.lp-hero-badge p{ font-size: 0.85rem; font-weight: 600; }

/* ===== About ===== */
.lp-about-inner{
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
}
.lp-about-gallery{
    position: relative;
}
.lp-about-gallery img{
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 5/4;
    object-fit: cover;
    box-shadow: 0 20px 50px -18px rgba(35,41,58,0.28);
}
.lp-about-gallery-nav{
    display: flex;
    gap: 10px;
    margin-top: 14px;
    justify-content: center;
}
.lp-about-gallery-nav button{
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid var(--lp-border);
    background: var(--lp-surface);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--lp-ink);
}
.lp-about-gallery-nav button:hover{ border-color: var(--primaryColor); color: var(--primaryColor); }
.lp-about-text h2{
    font-size: 2rem;
    margin-bottom: 18px;
}
.lp-about-text p{
    color: var(--lp-ink-soft);
    line-height: 1.75;
    font-size: 1.02rem;
}
.lp-about-text p + p{ margin-top: 14px; }
.lp-team{
    margin-top: 40px;
}
.lp-team h3{
    font-size: 1.3rem;
    margin-bottom: 18px;
}
.lp-team-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.lp-team-card{
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    padding: 12px 16px;
}
.lp-team-card img, .lp-team-card-default{
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: cover;
}
.lp-team-card-default{
    background: var(--primaryColor);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600;
}
.lp-team-card p:first-child{ font-weight: 600; font-size: 0.92rem; }
.lp-team-card p:last-child{ font-size: 0.8rem; color: var(--lp-ink-soft); }

/* ===== Services ===== */
.lp-services{ background: var(--lp-surface); }
.lp-section-head{
    text-align: left;
    max-width: 560px;
    margin-bottom: 44px;
}
.lp-section-head h2{ font-size: 2rem; margin-bottom: 12px; }
.lp-section-head p{ color: var(--lp-ink-soft); font-size: 1.02rem; line-height: 1.6; }
.lp-services-grid{
    display: grid;
    /* auto-fill (not auto-fit): auto-fit collapses unused tracks and lets
       the 1fr on a lone remaining item absorb the whole row - that's what
       was stretching a single-service category's card to full width with
       a giant image and no readable name/price. auto-fill keeps the empty
       tracks in place instead, so a lone card sizes the same as it would
       in a multi-item row. */
    grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr));
    gap: 20px;
}
.lp-service-card{
    background: var(--lp-cream);
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    padding: 26px;
    text-decoration: none;
    color: var(--lp-ink);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.lp-service-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 16px 34px -16px rgba(35,41,58,0.25);
}
.lp-service-card-img{
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 12px;
    object-fit: cover;
    background: var(--lp-accent-soft);
}
.lp-service-card h3{ font-size: 1.15rem; }
.lp-service-card-link{
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primaryColor);
    display: flex; align-items: center; gap: 6px;
    margin-top: auto;
}

/* ===== Products ===== */
.lp-products-grid{
    display: grid;
    /* auto-fill, not auto-fit - see .lp-services-grid above. products.php
       filters this same grid down to one category via AJAX, so a category
       left with a single active product would hit the identical
       full-width-stretch bug without this. */
    grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
    gap: 20px;
    margin-bottom: 36px;
}
.lp-product-card{
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.lp-product-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 16px 34px -16px rgba(35,41,58,0.22);
}
.lp-product-card img{
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.lp-product-card-body{ padding: 16px; }
.lp-product-card-body p:first-child{ font-weight: 600; font-size: 0.98rem; margin-bottom: 4px; }
.lp-product-card-body p.lp-product-cat{ font-size: 0.78rem; color: var(--lp-ink-soft); margin-bottom: 8px; }
.lp-product-card-body p.lp-product-price{ font-weight: 700; color: var(--primaryColor); font-size: 1.02rem; }
.lp-product-card-body p.lp-product-desc{ font-size: 0.85rem; color: var(--lp-ink-soft); margin-top: 8px; line-height: 1.5; }
.lp-filter-bar{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.lp-filter-bar select, .lp-filter-bar input[type="search"]{
    padding: 11px 16px;
    border-radius: 10px;
    border: 1px solid var(--lp-border);
    background: var(--lp-surface);
    font-family: 'Public Sans', sans-serif;
    font-size: 0.92rem;
    color: var(--lp-ink);
}
.lp-filter-bar input[type="search"]{ flex: 1; min-width: 220px; }
.lp-empty-note{ color: var(--lp-ink-soft); padding: 30px 0; }
.lp-section-foot{
    text-align: center;
}

/* ===== Testimonials ===== */
.lp-testimonials{ background: var(--lp-surface); }
.lp-testimonials-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 340px));
    gap: 20px;
    justify-content: center;
}
.lp-testimonial-card{
    background: var(--lp-cream);
    border-radius: 18px;
    padding: 26px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.lp-testimonial-card p.lp-quote{
    font-size: 1rem;
    color: var(--lp-ink);
    line-height: 1.65;
    margin-bottom: 18px;
}
.lp-testimonial-author{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}
.lp-testimonial-author img, .lp-testimonial-author-default{
    width: 38px; height: 38px;
    border-radius: 50%;
    object-fit: cover;
}
.lp-testimonial-author-default{
    background: var(--primaryColor);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 0.85rem;
}
.lp-testimonial-author p:first-child{ font-weight: 600; font-size: 0.9rem; }
.lp-testimonial-author p:last-child{ font-size: 0.78rem; color: var(--lp-ink-soft); }
.lp-write-testimony{
    margin-top: 30px;
    text-align: center;
}
.lp-write-testimony button{
    background: none;
    border: 1.5px dashed var(--lp-border);
    border-radius: 12px;
    padding: 14px 26px;
    color: var(--lp-ink-soft);
    font-weight: 600;
    cursor: pointer;
    font-family: 'Public Sans', sans-serif;
}
.lp-write-testimony button:hover{ border-color: var(--primaryColor); color: var(--primaryColor); }

/* ===== Contact ===== */
.lp-contact-inner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.lp-contact-card{
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 20px;
    padding: 36px;
}
.lp-contact-row{
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--lp-border);
}
.lp-contact-row:last-child{ border-bottom: none; }
.lp-contact-row i{
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--lp-accent-soft);
    color: var(--lp-accent);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 0.95rem;
}
.lp-contact-row p:first-child{ font-size: 0.78rem; color: var(--lp-ink-soft); margin-bottom: 3px; }
.lp-contact-row p:last-child{ font-weight: 600; font-size: 0.96rem; }
.lp-contact-row a{ color: var(--lp-ink); text-decoration: none; }
.lp-contact-row a:hover{ color: var(--primaryColor); }
.lp-hours-card{
    background: var(--primaryColor);
    border-radius: 20px;
    padding: 36px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.lp-hours-card h3{ color: #fff; font-size: 1.4rem; margin-bottom: 6px; }
.lp-hours-card .lp-hours-status{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
    width: fit-content;
}
.lp-hours-dot{ width: 8px; height: 8px; border-radius: 50%; background: #34D058; }
.lp-hours-time{ font-family: 'Fraunces', serif; font-size: 2.1rem; margin-bottom: 14px; }
.lp-hours-closed{ font-size: 0.9rem; opacity: 0.85; line-height: 1.5; }
.lp-hours-card .lp-btn-primary{
    background: #fff;
    color: var(--primaryColor);
    box-shadow: none;
    margin-top: 24px;
    width: fit-content;
}
.lp-hours-card .lp-btn-primary:hover{ filter: brightness(0.96); }

/* ===== Footer ===== */
.lp-footer{
    background: var(--lp-ink);
    color: #C9CCD6;
    padding: 60px 0 26px;
}
.lp-footer-grid{
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.lp-footer-brand{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.lp-footer-brand img{ width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.lp-footer-brand span{ font-family: 'Fraunces', serif; color: #fff; font-size: 1.1rem; font-weight: 600; }
.lp-footer p{ font-size: 0.9rem; line-height: 1.6; color: #9CA1AF; }
.lp-footer h4{
    font-family: 'Public Sans', sans-serif;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.lp-footer-links{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.lp-footer-links a{ color: #9CA1AF; text-decoration: none; font-size: 0.9rem; }
.lp-footer-links a:hover{ color: #fff; }
.lp-footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.82rem;
    color: #7D8290;
}

/* ===== Responsive ===== */
@media (max-width: 900px){
    .lp-hero-inner, .lp-about-inner, .lp-contact-inner{
        grid-template-columns: 1fr;
    }
    .lp-hero-visual{ order: -1; }
    .lp-footer-grid{ grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 760px){
    .lp-nav-links{
        position: fixed;
        top: 68px; left: 0; right: 0;
        background: var(--lp-cream);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
        border-bottom: 1px solid var(--lp-border);
        display: none;
        gap: 16px;
    }
    .lp-nav-links.lp-open{ display: flex; }
    .lp-nav-toggle{ display: block; }
    .lp-nav-actions .lp-btn-outline{ display: none; }
    .lp-section{ padding: 56px 0; }
}
