/*==================================================
BOOK-APPOINTMENT.CSS
PART 1
Hero + Booking Form + Information Cards
==================================================*/


/*==================================================
HERO
==================================================*/

.appointment-hero{

    position:relative;

    min-height:760px;

    display:flex;

    align-items:center;

    background:
    linear-gradient(
    rgba(0,0,0,.78),
    rgba(0,0,0,.88)
    ),
    url("../img/appointment-bg.jpg")
    center/cover no-repeat;

    overflow:hidden;

}


.appointment-hero::after{

    content:"";

    position:absolute;

    right:-200px;

    top:120px;

    width:700px;

    height:700px;

    border-radius:50%;

    background:

    radial-gradient(
    circle,
    rgba(212,167,75,.18),
    transparent 70%
    );

    filter:blur(70px);

}



.appointment-hero .hero-content{

    position:relative;

    z-index:2;

    max-width:760px;

}


.appointment-hero span{

    color:#d4a74b;

    letter-spacing:4px;

    font-size:14px;

    font-weight:600;

}


.appointment-hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:85px;

    line-height:1.05;

    margin:25px 0;

}


.appointment-hero p{

    color:#d0d0d0;

    font-size:18px;

    line-height:1.9;

    max-width:650px;

}



/*==================================================
BOOKING SECTION
==================================================*/


.booking-section{

    padding:120px 0;

    background:#050505;

}


.booking-grid{

    display:grid;

    grid-template-columns:1.3fr .7fr;

    gap:60px;

    align-items:start;

}



/*==================================================
FORM CARD
==================================================*/


.booking-form{

    background:#111;

    padding:55px;

    border-radius:30px;

    border:

    1px solid rgba(212,167,75,.18);

}


.gold-label{

    color:#d4a74b;

    letter-spacing:4px;

    font-size:13px;

    font-weight:600;

}


.booking-form h2{

    font-family:'Cormorant Garamond',serif;

    font-size:60px;

    margin:22px 0;

}


.booking-form .line{

    margin-bottom:35px;

}



.input-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

    margin-bottom:25px;

}



.booking-form input,
.booking-form select,
.booking-form textarea{

    width:100%;

    background:#0b0b0b;

    border:1px solid rgba(212,167,75,.2);

    border-radius:18px;

    padding:20px;

    color:#fff;

    outline:none;

    font-family:'Inter',sans-serif;

    transition:.3s;

}



.booking-form select{

    appearance:none;

}



.booking-form textarea{

    resize:none;

    margin-bottom:25px;

}



.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus{

    border-color:#d4a74b;

    box-shadow:

    0 0 0 4px rgba(212,167,75,.08);

}


.form-heading{

    font-family:'Cormorant Garamond',serif;

    color:#d4a74b;

    font-size:32px;

    margin:35px 0 20px;

}


.booking-form button{

    border:none;

    cursor:pointer;

}



/*==================================================
BOOKING INFORMATION
==================================================*/


.booking-info{

    display:flex;

    flex-direction:column;

    gap:30px;

}


.info-card{

    background:#111;

    padding:38px;

    border-radius:25px;

    border:

    1px solid rgba(212,167,75,.18);

    transition:.35s;

}


.info-card:hover{

    transform:translateY(-8px);

    border-color:#d4a74b;

    box-shadow:

    0 20px 50px rgba(0,0,0,.45);

}



.info-card h3{

    font-family:'Cormorant Garamond',serif;

    color:#d4a74b;

    font-size:35px;

    margin-bottom:20px;

}



.info-card p{

    color:#c6c6c6;

    line-height:1.9;

}



.info-card ul{

    display:flex;

    flex-direction:column;

    gap:20px;

}



.info-card li{

    display:flex;

    justify-content:space-between;

    color:#ddd;

    padding-bottom:15px;

    border-bottom:

    1px solid rgba(255,255,255,.06);

}



.info-card li:last-child{

    border:none;

}



.info-card span{

    color:#d4a74b;

    font-weight:600;

}

/*==================================================
BOOK-APPOINTMENT.CSS
PART 2
Experience + Process + FAQ + CTA + Responsive
==================================================*/


/*==================================================
EXPERIENCE SECTION
==================================================*/

.experience{

    padding:120px 0;

    background:#090909;

}


.experience-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}


.experience-image img{

    width:100%;

    height:620px;

    object-fit:cover;

    border-radius:30px;

    border:1px solid rgba(212,167,75,.18);

    box-shadow:

    0 30px 70px rgba(0,0,0,.55);

}


.experience-content span{

    color:#d4a74b;

    font-size:13px;

    letter-spacing:4px;

    font-weight:600;

}


.experience-content h2{

    font-family:'Cormorant Garamond',serif;

    font-size:62px;

    line-height:1.1;

    margin:25px 0;

}


.experience-content p{

    color:#c7c7c7;

    line-height:1.9;

    font-size:17px;

    margin-bottom:30px;

}


.experience-list{

    display:flex;

    flex-direction:column;

    gap:25px;

}


.experience-item{

    background:#111;

    padding:25px;

    border-radius:18px;

    border:1px solid rgba(212,167,75,.15);

}


.experience-item h3{

    color:#d4a74b;

    font-size:20px;

    margin-bottom:10px;

}


.experience-item p{

    margin:0;

    font-size:15px;

}




/*==================================================
PROCESS
==================================================*/


.appointment-process{

    padding:120px 0;

    background:#050505;

}



.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}



.process-card{

    background:#111;

    padding:40px 30px;

    border-radius:24px;

    border:1px solid rgba(212,167,75,.18);

    text-align:center;

    transition:.35s;

}



.process-card:hover{

    transform:translateY(-10px);

    border-color:#d4a74b;

    box-shadow:

    0 25px 60px rgba(0,0,0,.45);

}



.step-number{

    width:70px;

    height:70px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:

    linear-gradient(
    #f6d98c,
    #d4a74b
    );

    color:#111;

    font-size:22px;

    font-weight:700;

}



.process-card h3{

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    margin-bottom:15px;

}



.process-card p{

    color:#bdbdbd;

    line-height:1.8;

}



/*==================================================
FAQ
==================================================*/


.faq{

    padding:120px 0;

    background:#090909;

}


.faq-wrapper{

    max-width:900px;

    margin:auto;

}



.faq-item{

    background:#111;

    border-radius:22px;

    margin-bottom:20px;

    border:1px solid rgba(212,167,75,.15);

    overflow:hidden;

}



.faq-question{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:28px 35px;

    cursor:pointer;

}



.faq-question h3{

    font-family:'Cormorant Garamond',serif;

    font-size:26px;

}



.faq-question span{

    color:#d4a74b;

    font-size:34px;

}



.faq-answer{

    padding:0 35px 30px;

}



.faq-answer p{

    color:#c3c3c3;

    line-height:1.9;

}




/*==================================================
CTA
==================================================*/


.cta{

    padding:140px 0;

    text-align:center;

    position:relative;

    overflow:hidden;

    background:

    linear-gradient(
    rgba(0,0,0,.8),
    rgba(0,0,0,.9)
    ),
    url("../img/luxury-bg.jpg")
    center/cover;

}



.cta::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(
    circle,
    rgba(212,167,75,.14),
    transparent 70%
    );

}



.cta .container{

    position:relative;

    z-index:2;

}



.cta h2{

    font-family:'Cormorant Garamond',serif;

    font-size:72px;

    margin-bottom:25px;

}



.cta p{

    max-width:700px;

    margin:0 auto 40px;

    color:#ccc;

    font-size:18px;

    line-height:1.9;

}



/*==================================================
ANIMATION
==================================================*/


.info-card,
.process-card,
.experience-item{

    animation:

    luxuryFade .8s ease both;

}



@keyframes luxuryFade{

from{

opacity:0;

transform:translateY(30px);

}

to{

opacity:1;

transform:translateY(0);

}

}



/*==================================================
RESPONSIVE
==================================================*/


@media(max-width:1200px){


.booking-grid{

grid-template-columns:1fr;

}


.process-grid{

grid-template-columns:repeat(2,1fr);

}


.experience-grid{

grid-template-columns:1fr;

}


.experience-image{

max-width:650px;

margin:auto;

}


}



@media(max-width:768px){


.appointment-hero h1{

font-size:55px;

}


.booking-form{

padding:35px;

}


.booking-form h2{

font-size:42px;

}


.input-grid{

grid-template-columns:1fr;

}


.process-grid{

grid-template-columns:1fr;

}


.experience-content h2{

font-size:45px;

}


.experience-image img{

height:420px;

}


.cta h2{

font-size:45px;

}


}



@media(max-width:480px){


.appointment-hero h1{

font-size:42px;

}


.booking-form{

padding:25px;

}


.info-card{

padding:28px;

}


.cta{

padding:100px 0;

}


}
