/*=== BOOK CONSULTATION HERO ===*/
.consultation-hero {
    background: #f8f6f3;
}

.consultation-wrapper {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

/*=== LEFT SIDE ===*/
.consultation-content {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sub-title {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 10px;
    font-weight: 500;
}

.consultation-content h1 {
    font-size: 55px;
    line-height: 1.08;
    font-weight: 600;
    color: #1f1f1f;
    margin: 0;
    font-family: "Cormorant Garamond", serif;
}

.title-line {
    width: 75px;
    height: 2px;
    background: #c7a264;
    margin: 20px 0;
}

.consultation-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin: 0;
    max-width: 520px;
}

/*=== FEATURES ===*/
.hero-features {
    display: flex;
    gap: 35px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
    min-width: 180px;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border: 1px solid #d8c8b0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #b88b45;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h5 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 600;
    color: #222;
}

.feature-text span {
    display: block;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/*=== RIGHT IMAGE ===*/
.consultation-image {
    width: 55%;
    overflow: hidden;
}

.consultation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*=== RESPONSIVE ===*/
@media(max-width:1200px) {
    .consultation-content {
        padding: 55px 45px;
    }

    .consultation-content h1 {
        font-size: 54px;
    }
}

@media(max-width:991px) {
    .consultation-wrapper {
        flex-direction: column;
    }

    .consultation-content,
    .consultation-image {
        width: 100%;
    }

    .consultation-image {
        height: 450px;
    }

    .consultation-content {
        padding: 50px 35px;
    }

    .consultation-content h1 {
        font-size: 46px;
    }

    .hero-features {
        gap: 25px;
    }
}

@media(max-width:767px) {
    .consultation-hero {
        padding: 40px 0;
    }

    .consultation-content {
        padding: 35px 25px;
    }

    .consultation-content h1 {
        font-size: 36px;
    }

    .consultation-content p {
        font-size: 15px;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .feature-item {
        min-width: 100%;
    }

    .consultation-image {
        height: 300px;
    }
}

/*=== BOOKING STEPS ===*/
.booking-steps {
    background: #fff;
    padding: 30px 0;
}

.steps-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.step-item {
    width: 180px;
    text-align: center;
}

.step-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid #d8d8d8;
    background: #fff;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    color: #444;
    transition: .3s;
}

.step-item h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    color: #222;
    font-family: "Cormorant Garamond", serif;
}

.step-line {
    flex: 1;
    height: 2px;
    background: #e6e6e6;
    margin: 26px 20px 0;
    max-width: 320px;
}

.step-item.active .step-circle {
    border-color: #c29b59;
    color: #c29b59;
}

.step-line.active {
    background: #d6c19a;
}

/*=== RESPONSIVE ===*/
@media(max-width:768px) {
    .booking-steps {
        padding: 15px 0;
    }

    .step-item {
        width: 110px;
    }

    .step-circle {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .step-item h4 {
        font-size: 16px;
    }

    .step-line {
        margin: 21px 10px 0;
    }
}

@media(max-width:576px) {
    .steps-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .step-line {
        width: 2px;
        height: 45px;
        margin: 0;
    }
}

/*=== STEP 1 - CONSULTATION SECTION ===*/
.consultation-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/*=== LEFT CARD ===*/
.consultation-card {
    background: #fff;
    border: 1px solid #ebe7e2;
    border-radius: 6px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}

.consultation-card h2 {
    margin: 0 0 15px;
    font-size: 34px;
    font-weight: 500;
    color: #222;
    font-family: "Cormorant Garamond", serif;
}

.section-description {
    margin: 0 0 20px;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/*=== CONSULTATION LIST ===*/
.consultation-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/*=== SINGLE ITEM ===*/
.consultation-item {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 15px 15px;
    border: 1px solid #ececec;
    border-radius: 10px;
    background: #fff;
    text-decoration: none;
    transition: .35s ease;
}

.consultation-item:hover {
    border-color: #c7a264;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}

.consultation-item.active {
    border-color: #c7a264;
    background: #fbf8f1;
}

/*=== ICON ===*/
.consultation-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid #d8c7a9;
    background: #faf7f2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.consultation-icon i {
    font-size: 24px;
    color: #b88b45;
}

/*=== CONTENT ===*/
.consultation-content {
    flex: 1;
}

.consultation-content h4 {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 600;
    color: #222;
}

.consultation-content span {
    display: block;
    font-size: 15px;
    color: #777;
    line-height: 1.7;
}

/*=== ARROW ===*/
.consultation-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    flex-shrink: 0;
}

.consultation-arrow i {
    color: #999;
    font-size: 15px;
}

.consultation-item:hover .consultation-arrow,
.consultation-item.active .consultation-arrow {
    background: #c7a264;
    border-color: #c7a264;
}

.consultation-item:hover .consultation-arrow i,
.consultation-item.active .consultation-arrow i {
    color: #fff;
}

/*=== INFO BOX ===*/
.consultation-note {
    margin-top: 35px;
    display: flex;
    gap: 18px;
    padding: 24px;
    border-radius: 10px;
    background: #faf8f4;
    border: 1px solid #ece7df;
}

.note-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #c7a264;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.note-icon i {
    font-size: 20px;
}

.consultation-note h5 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #222;
}

.consultation-note p {
    margin: 0;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/*=== RESPONSIVE ===*/
@media(max-width:991px) {
    .consultation-grid {
        grid-template-columns: 1fr;
    }

    .consultation-card {
        padding: 35px;
    }
}

@media(max-width:767px) {
    .consultation-section {
        padding: 15px 0;
    }

    .consultation-card {
        padding: 25px;
    }

    .consultation-card h2 {
        font-size: 28px;
    }

    .consultation-item {
        padding: 18px;
        gap: 15px;
    }

    .consultation-icon {
        width: 55px;
        height: 55px;
    }

    .consultation-icon i {
        font-size: 20px;
    }

    .consultation-content h4 {
        font-size: 17px;
    }

    .consultation-content span {
        font-size: 14px;
    }

    .consultation-arrow {
        width: 38px;
        height: 38px;
    }

    .consultation-note {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/*=== BOOKING SIDEBAR ===*/
.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/*=== CARD ===*/
.sidebar-card h3 {
    margin: 0 0 25px;
    font-size: 28px;
    font-family: "Cormorant Garamond", serif;
    color: #222;
}

/*=== SUMMARY ===*/
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item span {
    color: #777;
    font-size: 15px;
}

.summary-item strong {
    color: #222;
    font-size: 16px;
    font-weight: 600;
}

/*=== LIST ===*/
.sidebar-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.sidebar-list li:last-child {
    margin-bottom: 0;
}

.sidebar-list i {
    color: #b88b45;
    margin-top: 4px;
    font-size: 14px;
}

/*=== CONTACT CARD ===*/
.contact-card {
    text-align: center;
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #c7a264;
    color: #fff;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icon i {
    font-size: 28px;
}

.contact-card h4 {
    margin: 0 0 12px;
    font-size: 24px;
    font-family: "Cormorant Garamond", serif;
    color: #222;
}

.contact-card p {
    margin: 0 0 25px;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    background: #c7a264;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

.contact-btn:hover {
    background: #a8834d;
    color: #fff;
}

/*=== RESPONSIVE ===*/
@media(max-width:991px) {
    .booking-sidebar {
        margin-top: 35px;
    }
}

@media(max-width:767px) {
    .sidebar-card {
        padding: 22px;
    }

    .sidebar-card h3 {
        font-size: 24px;
    }

    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .contact-btn {
        height: 48px;
    }
}

/*=== RIGHT SIDEBAR ===*/
.consultation-sidebar {
    width: 100%;
}

.sidebar-card {
    background: #fff;
    border: 1px solid #ece7df;
    padding: 30px;
    border-radius: 6px;
}

.sidebar-card h2 {
    margin: 0;
    font-size: 34px;
    font-weight: 500;
    color: #222;
    font-family: "Cormorant Garamond", serif;
}

.sidebar-line {
    width: 42px;
    height: 2px;
    background: #c8a36b;
    display: block;
    margin: 15px 0 15px;
}

/*========================*/
.sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.info-icon {
    width: 46px;
    height: 46px;
    border: 1px solid #e3ddd4;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #b98d52;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 18px;
}

.info-content small {
    display: block;
    font-size: 13px;
    color: #8b8b8b;
    margin-bottom: 4px;
}

.info-content h5 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #222;
    font-weight: 600;
    line-height: 1.5;
}

.info-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/*=== ===*/
.sidebar-image {
    margin: 35px 0;
}

.sidebar-image img {
    width: 100%;
    display: block;
    border-radius: 4px;
}

/*=== ===*/
.sidebar-contact {
    border-top: 1px solid #ececec;
    padding-top: 15px;
}

.sidebar-contact h4 {
    margin: 0 0 8px;
    font-size: 24px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
}

.sidebar-contact p {
    color: #666;
    font-size: 14px;
    margin-bottom: 18px;
}

.contact-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-row a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
}

.contact-row a:hover {
    color: #b98d52;
}

.contact-row i {
    color: #b98d52;
}

/*=== ===*/
@media(max-width:991px) {
    .sidebar-card {
        margin-top: 30px;
    }
}

@media(max-width:767px) {
    .sidebar-card {
        padding: 25px;
    }

    .sidebar-card h2 {
        font-size: 34px;
    }

    .contact-row {
        flex-direction: column;
        gap: 12px;
    }
}

/*=== BOOKING INFO BAR ===*/
.booking-info-bar {
    padding: 30px 0;
}

.booking-info-wrapper {
    background: #faf8f5;
    border: 1px solid #ece7df;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.booking-info-left {
    width: 34%;
}

.booking-info-left h3 {
    margin: 0 0 12px;
    font-size: 28px;
    font-weight: 400;
    color: #222;
    font-family: "Cormorant Garamond", serif;
}

.booking-info-left p {
    margin: 0 0 8px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.booking-info-left span {
    font-size: 15px;
    color: #444;
}

/*=== ===*/
.booking-info-right {
    width: 66%;
    display: flex;
}

.booking-feature {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0 15px;
    border-left: 1px solid #ece7df;
}

.booking-feature:first-child {
    border-left: none;
}

.booking-feature-icon {
    width: 46px;
    height: 46px;
    border: 1px solid #ddd8cf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #b98d52;
}

.booking-feature-icon i {
    font-size: 18px;
}

.booking-feature-content h5 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #222;
    font-weight: 600;
}

.booking-feature-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/*=== RESPONSIVE ===*/
@media(max-width:991px) {
    .booking-info-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-info-left,
    .booking-info-right {
        width: 100%;
    }

    .booking-info-right {
        flex-direction: column;
    }

    .booking-feature {
        border-left: none;
        border-top: 1px solid #ece7df;
        padding: 20px 0;
    }

    .booking-feature:first-child {
        border-top: none;
        padding-top: 0;
    }
}

@media(max-width:767px) {
    .booking-info-wrapper {
        padding: 25px;
    }

    .booking-info-left h3 {
        font-size: 24px;
    }

    .booking-feature {
        gap: 12px;
    }

    .booking-feature-icon {
        width: 42px;
        height: 42px;
    }
}

/*=== BOOKING SECTION ===*/
.booking-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    background: #fff;
    border: 1px solid #ebe7df;
    border-radius: 4px;
    overflow: hidden;
}

/*=== LEFT PANEL ===*/
.booking-left {
    padding: 30px;
}

.booking-left h2 {
    margin: 0;
    font-size: 34px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    color: #222;
}

.booking-desc {
    margin: 10px 0 10px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

/*=== FILTERS ===*/
.booking-filter {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
}

.booking-field {
    flex: 1;
}

.booking-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/*=== CUSTOM SELECT ===*/
.custom-select {
    position: relative;
}

.custom-select i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    font-size: 16px;
}

.custom-select select {
    width: 100%;
    height: 48px;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    padding: 0 40px;
    background: #fff;
    color: #333;
    font-size: 14px;
    outline: none;
    appearance: none;
    cursor: pointer;
}

.custom-select::after {
    content: "\F282";
    font-family: "bootstrap-icons";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    pointer-events: none;
    font-size: 14px;
}

.custom-select select:focus {
    border-color: #c39b5c;
}

/*=== CALENDAR AREA ===*/
.booking-calendar-area {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 35px;
    margin-top: 15px;
}

.calendar-box,
.time-slot-box {
    border: 1px solid #ece7df;
    border-radius: 4px;
    background: #fff;
    padding: 25px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h4 {
    margin: 0;
    font-size: 22px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
}

.calendar-header i {
    font-size: 18px;
    cursor: pointer;
    color: #444;
}

.time-slot-box h4 {
    margin: 0 0 20px;
    font-size: 22px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
}

/*=== RIGHT PANEL ===*/
.booking-right {
    background: #fcfbf8;
    border-left: 1px solid #ebe7df;
    padding: 10px;
}

/*=== FOOTER ===*/
.btn-back {
    width: 140px;
    height: 50px;
    border: 1px solid #d6d6d6;
    background: #fff;
    color: #222;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

.btn-back:hover {
    border-color: #b89055;
    color: #b89055;
}

.btn-next {
    width: 170px;
    height: 50px;
    background: #1f1f1f;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

.btn-next:hover {
    background: #000;
}

.btn-next i {
    font-size: 14px;
}

/*=== RESPONSIVE ===*/
@media(max-width:1200px) {
    .booking-calendar-area {
        grid-template-columns: 1fr;
    }
}

@media(max-width:991px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-right {
        border-left: none;
        border-top: 1px solid #ebe7df;
    }
}

@media(max-width:768px) {
    .booking-left {
        padding: 25px;
    }

    .booking-filter {
        flex-direction: column;
    }

    .booking-left h2 {
        font-size: 34px;
    }

    .booking-footer {
        flex-direction: column;
        gap: 15px;
    }

    .btn-back,
    .btn-next {
        width: 100%;
    }
}

/*=== CALENDAR ===*/
.calendar {
    width: 100%;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 18px;
}

.calendar-days span {
    text-align: center;
    font-size: 13px;
    color: #777;
    font-weight: 600;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.day {
    width: 42px;
    height: 42px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    font-size: 15px;
    color: #333;
    transition: .3s;
}

.day:hover {
    background: #f6efe3;
}

.day.disabled {
    color: #d2d2d2;
    cursor: default;
}

/* .day.available::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c39b5c;
} */

.day.active {
    background: #c39b5c;
    color: #fff;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c39b5c;
}

.calendar-legend p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/*=== ===*/
@media(max-width:768px) {
    .day {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .calendar-grid {
        gap: 6px;
    }
}

/*=== TIME SLOT ===*/
.time-slot-box {
    position: relative;
}

.time-slot-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 420px;
    overflow-y: auto;
    padding-right: 12px;
}

/*=== Scrollbar ===*/
.time-slot-list::-webkit-scrollbar {
    width: 6px;
}

.time-slot-list::-webkit-scrollbar-track {
    background: #f3f3f3;
    border-radius: 20px;
}

.time-slot-list::-webkit-scrollbar-thumb {
    background: #d2d2d2;
    border-radius: 20px;
}

.time-slot-list::-webkit-scrollbar-thumb:hover {
    background: #b88b45;
}

/*=== Firefox ===*/
.time-slot-list {
    scrollbar-width: thin;
    scrollbar-color: #d2d2d2 #f3f3f3;
}

/*=== ===*/
.time-slot {
    width: 100%;
    height: 52px;
    border: 1px solid #e4e4e4;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: .30s;
}

.time-slot:hover {
    border-color: #c39b5c;
    color: #b88b45;
    background: #fcfaf5;
}

.time-slot.active {
    background: #fcfaf5;
    border: 2px solid #c39b5c;
    color: #222;
    font-weight: 600;
}

.time-slot:focus {
    outline: none;
}

/*=== ===*/
@media(max-width:768px) {
    .time-slot-list {
        height: 350px;
    }

    .time-slot {
        height: 48px;
        font-size: 14px;
    }
}

/*=== RIGHT SIDEBAR ===*/
.booking-summary {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/*=== ===*/
.summary-card {
    background: #fff;
    border: 1px solid #ebe7df;
    padding: 30px;
}

.summary-card h3 {
    margin: 0;
    font-size: 34px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    color: #222;
}

.summary-line {
    width: 45px;
    height: 2px;
    background: #c39b5c;
    margin: 10px 0 20px;
}

/*=== ===*/
.summary-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #efefef;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-icon {
    width: 48px;
    height: 48px;
    border: 1px solid #e4ddd3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #b88b45;
    flex-shrink: 0;
}

.summary-icon i {
    font-size: 18px;
}

.summary-content {
    flex: 1;
}

.summary-content span {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 5px;
}

.summary-content h5 {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 600;
    color: #222;
}

/*=== SECURITY CARD ===*/
.security-card {
    background: #faf8f4;
    border: 1px solid #ece7df;
    text-align: center;
    padding: 25px 25px;
}

.security-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #c39b5c;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-icon i {
    font-size: 28px;
}

.security-card h4 {
    margin: 0 0 10px;
    font-size: 26px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    color: #222;
}

.security-card p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

/*=== ===*/
@media(max-width:991px) {
    .booking-summary {
        margin-top: 35px;
    }
}

@media(max-width:767px) {

    .summary-card,
    .security-card {
        padding: 25px;
    }

    .summary-card h3 {
        font-size: 28px;
    }

    .security-card h4 {
        font-size: 22px;
    }
}

/*=== BOOKING FOOTER ===*/
.booking-footer {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-top: 1px solid #ebe7df;
    background: #fff;
}

.btn-back {
    width: 130px;
    height: 48px;
    border: 1px solid #bfc9d5;
    background: #fff;
    color: #222;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.btn-back:hover {
    border-color: #c39b5c;
    color: #c39b5c;
}

.btn-next {
    width: 170px;
    height: 48px;
    border: none;
    background: #222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.btn-next:hover {
    background: #000;
}

.btn-next i {
    font-size: 13px;
}

@media (max-width:768px) {
    .booking-footer {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .btn-back,
    .btn-next {
        width: 100%;
    }
}

/*=== STEP 3 SECTION ===*/
.step3-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    background: #fff;
    border: 1px solid #ebe7df;
}

/*=== ===*/
.step3-left {
    padding: 30px;
}

.step3-card h2 {
    margin: 0;
    font-size: 34px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    color: #222;
}

.step3-desc {
    margin: 10px 0 10px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

/*=== ===*/
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.form-group label span {
    color: #d55;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #e4e4e4;
    background: #fff;
    border-radius: 4px;
    padding: 14px 18px;
    font-size: 15px;
    color: #333;
    outline: none;
    transition: .3s;
}

.form-group input {
    height: 50px;
}

.form-group select {
    height: 50px;
}

.form-group textarea {
    resize: none;
    min-height: 140px;
    padding-top: 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #c79b55;
}

.text-counter {
    position: absolute;
    right: 15px;
    bottom: 12px;
    font-size: 13px;
    color: #888;
}

/*=== ===*/
.step3-right {
    border-left: 1px solid #ebe7df;
    background: #fcfbf9;
    padding: 10px;
}

/*=== ===*/
@media(max-width:991px) {
    .step3-wrapper {
        grid-template-columns: 1fr;
    }

    .step3-right {
        border-left: none;
        border-top: 1px solid #ebe7df;
    }
}

@media(max-width:768px) {
    .step3-left {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .step3-card h2 {
        font-size: 34px;
    }
}

/*=== PRIVACY CHECKBOX ===*/
.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    line-height: 1.7;
    color: #555;
}

.privacy-check input {
    display: none;
}

.checkmark {
    width: 18px;
    min-width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-top: 3px;
    position: relative;
    flex-shrink: 0;
}

.privacy-check input:checked+.checkmark {
    background: #c79b55;
    border-color: #c79b55;
}

.privacy-check input:checked+.checkmark:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Wrap all text properly */
.privacy-check {
    flex-wrap: nowrap;
}

.privacy-check a {
    color: #c79b55;
    text-decoration: none;
}

.privacy-check a:hover {
    text-decoration: underline;
}

.required {
    color: #d9534f;
}

/*=== FORM FOOTER ===*/
.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #ece7df;
}

/*=== ===*/
.btn-back {
    width: 140px;
    height: 48px;
    background: #fff;
    border: 1px solid #bcc6d2;
    color: #222;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.btn-back:hover {
    border-color: #c79b55;
    color: #c79b55;
}

/*=== ===*/
.btn-submit {
    width: 180px;
    height: 50px;
    background: #1f1f1f;
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .4px;
    cursor: pointer;
    transition: .3s;
}

.btn-submit:hover {
    background: #000;
}

/*=== RESPONSIVE ===*/
@media(max-width:768px) {
    .form-footer {
        flex-direction: column;
        gap: 15px;
    }

    .btn-back,
    .btn-submit {
        width: 100%;
    }

    .privacy-check {
        font-size: 13px;
    }
}

/*=== ===*/
.consultation-sidebar {
    width: 100%;
}

.consultation-card {
    background: #fff;
    border: 1px solid #ece6dd;
    padding: 30px;
}

.consultation-card h3 {
    font-size: 34px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    margin: 0;
    color: #1d1d1d;
}

.sidebar-line {
    width: 42px;
    height: 2px;
    background: #c89a4d;
    display: block;
    margin: 10px 0 20px;
}

/*=== ===*/
.consultation-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 15px;
}

.consultation-item:last-of-type {
    margin-bottom: 40px;
}

.consultation-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #f7f4ef;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.consultation-icon i {
    font-size: 19px;
    color: #222;
}

.consultation-content small {
    display: block;
    font-size: 13px;
    color: #8d8d8d;
    margin-bottom: 4px;
}

.consultation-content h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    line-height: 1.5;
}

.consultation-content p {
    margin-top: 5px;
    font-size: 14px;
    color: #7d7d7d;
    line-height: 1.7;
}

/*=== ===*/
.sidebar-security {
    background: #fbf9f6;
    border: 1px solid #efebe4;
    padding: 10px 15px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.security-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #efe6d5;
}

.security-icon i {
    color: #c89a4d;
    font-size: 20px;
}

.security-right h4 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 600;
    color: #222;
}

.security-right p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}







.calendar-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.calendar-header button{
    width:40px;
    height:40px;
    border:none;
    background:#fff;
    cursor:pointer;
    border-radius:50%;
}

.calendar-header button:hover{
    background:#f4f4f4;
}

.day.disabled{
    color:#ccc;
    pointer-events:none;
    cursor:not-allowed;
}

.day.available{
    cursor:pointer;
}

.day.active{
    background:#c79b55;
    color:#fff;
    border-radius:50%;
}



/* ==========================================
   LARGE DESKTOP (1400px)
==========================================*/
@media (max-width:1400px) {

    .booking-calendar-area {
        grid-template-columns: 1fr 350px;
        gap: 25px;
    }

    .consultation-wrapper {
        min-height: auto;
    }

}

/* ==========================================
   LAPTOP (1200px)
==========================================*/
@media (max-width:1199px) {

    .consultation-content h1 {
        font-size: 48px;
    }

    .consultation-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 25px;
    }

    .booking-calendar-area {
        grid-template-columns: 1fr;
    }

    .calendar-box,
    .time-slot-box {
        width: 100%;
    }

    .time-slot-list {
        height: 300px;
    }

    .booking-calendar-area {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .calendar-box,
    .time-slot-box {
        width: 100%;
    }

    .time-slot-list {
        height: 300px;
    }

    .step3-wrapper {
        grid-template-columns: 1.5fr 1fr;
        gap: 20px;
    }

    .step3-left {
        padding: 25px;
    }

    .step3-card h2 {
        font-size: 30px;
    }
}

/* ==========================================
   TABLET (991px)
==========================================*/
@media (max-width:991px) {
    .consultation-wrapper {
        flex-direction: column;
    }

    .consultation-content,
    .consultation-image {
        width: 100%;
    }

    .consultation-content {
        padding: 40px 20px;
    }

    .consultation-image {
        height: 420px;
    }

    .consultation-content h1 {
        font-size: 42px;
    }

    .hero-features {
        gap: 20px;
    }

    .feature-item {
        min-width: calc(50% - 10px);
    }

    /* Step 1 */

    .consultation-grid {
        grid-template-columns: 1fr;
    }

    .consultation-sidebar {
        margin-top: 25px;
    }

    /* Booking */

    .booking-wrapper,
    .step3-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-right,
    .step3-right {
        border-left: none;
        border-top: 1px solid #ebe7df;
    }

    .booking-filter {
        flex-direction: column;
    }

    .booking-calendar-area {
        grid-template-columns: 1fr;
    }

    .calendar-box,
    .time-slot-box {
        padding: 20px;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-right {
        border-left: none;
        border-top: 1px solid #ebe7df;
        padding: 20px;
    }

    .booking-left {
        padding: 25px;
    }

    .booking-filter {
        flex-direction: column;
        gap: 15px;
    }

    .booking-field {
        width: 100%;
    }

    .booking-calendar-area {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .calendar-box,
    .time-slot-box {
        padding: 20px;
    }

    .summary-card,
    .security-card {
        padding: 20px;
    }

    .step3-wrapper {
        display: block;
    }

    .step3-left {
        padding: 25px;
    }

    .step3-right {
        margin-top: 30px;
        border-left: none;
        border-top: 1px solid #ebe7df;
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .consultation-card {
        padding: 25px;
    }

}

/* ==========================================
   TABLET PORTRAIT (768px)
==========================================*/
@media (max-width:767px) {

    h1 {
        line-height: 1.2;
    }

    .consultation-content h1 {
        font-size: 36px;
    }

    .consultation-content p {
        font-size: 15px;
    }

    .hero-features {
        flex-direction: column;
    }

    .feature-item {
        min-width: 100%;
    }

    /* cards */

    .consultation-card,
    .sidebar-card,
    .summary-card,
    .security-card {
        padding: 20px;
    }

    .consultation-card h2,
    .sidebar-card h2,
    .summary-card h3 {
        font-size: 28px;
    }

    .consultation-item {
        gap: 15px;
        padding: 15px;
    }

    .consultation-icon {
        width: 50px;
        height: 50px;
    }

    .consultation-content h4 {
        font-size: 17px;
    }

    .consultation-content span {
        font-size: 14px;
    }

    .consultation-arrow {
        width: 36px;
        height: 36px;
    }

    /* booking */

    .booking-left,
    .step3-left {
        padding: 20px;
    }

    .booking-left h2,
    .step3-card h2 {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-footer,
    .form-footer {
        flex-direction: column;
        gap: 15px;
    }

    .btn-back,
    .btn-next,
    .btn-submit {
        width: 100%;
    }

    .contact-row {
        flex-direction: column;
    }

    .booking-left {
        padding: 20px;
    }

    .booking-left h2 {
        font-size: 28px;
    }

    .booking-desc {
        font-size: 14px;
    }

    .calendar-header h4,
    .time-slot-box h4 {
        font-size: 20px;
    }

    .calendar-grid {
        gap: 6px;
    }

    .day {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .calendar-days span {
        font-size: 11px;
    }

    .time-slot {
        height: 46px;
        font-size: 14px;
    }

    .time-slot-list {
        height: 250px;
    }

    .summary-card h3 {
        font-size: 28px;
    }

    .summary-item {
        gap: 12px;
    }

    .summary-icon {
        width: 42px;
        height: 42px;
    }

    .summary-content h5 {
        font-size: 15px;
    }

    .booking-footer {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .btn-back,
    .btn-next {
        width: 100%;
    }

    .step3-left,
    .step3-right {
        padding: 20px;
    }

    .step3-card h2 {
        font-size: 28px;
    }

    .step3-desc {
        font-size: 14px;
        line-height: 1.7;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group select {
        height: 48px;
        font-size: 14px;
    }

    .form-group textarea {
        min-height: 130px;
        font-size: 14px;
    }

    .privacy-check {
        font-size: 13px;
        line-height: 1.7;
    }

    .form-footer {
        flex-direction: column;
        gap: 15px;
    }

    .btn-back,
    .btn-submit {
        width: 100%;
    }

    /* Sidebar */

    .consultation-card {
        padding: 20px;
    }

    .consultation-card h3 {
        font-size: 28px;
    }

    .consultation-item {
        gap: 12px;
        margin-bottom: 5px;
    }

    .consultation-icon {
        width: 44px;
        height: 44px;
    }

    .consultation-icon i {
        font-size: 18px;
    }

    .consultation-content h5 {
        font-size: 16px;
    }

    .consultation-content p {
        font-size: 13px;
    }

    .sidebar-security {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }



}

/* ==========================================
   MOBILE (575px)
==========================================*/
@media (max-width:575px) {

    section {
        overflow: hidden;
    }

    .consultation-hero {
        padding: 5px 0;
    }

    .consultation-content {
        padding: 10px 0;
    }

    .consultation-content h1 {
        font-size: 30px;
    }

    .consultation-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .title-line {
        margin: 15px 0;
    }

    .hero-features {
        margin-top: 25px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .feature-text h5 {
        font-size: 16px;
    }

    .feature-text span {
        font-size: 13px;
    }

    .consultation-image {
        height: 250px;
    }

    /* Consultation Card */

    .consultation-card {
        padding: 15px;
    }

    .consultation-card h2 {
        font-size: 24px;
    }

    .section-description {
        font-size: 14px;
    }

    .consultation-item {
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 12px;
    }

    .consultation-icon {
        width: 46px;
        height: 46px;
    }

    .consultation-icon i {
        font-size: 18px;
    }

    .consultation-content {
        flex: 1;
        min-width: 0;
    }

    .consultation-content h4 {
        font-size: 16px;
        line-height: 1.4;
    }

    .consultation-content span {
        font-size: 13px;
        line-height: 1.5;
    }

    .consultation-arrow {
        margin-left: auto;
        width: 34px;
        height: 34px;
    }

    .consultation-note {
        margin-top: 10px;
        padding: 15px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    /* Sidebar */

    .sidebar-card {
        padding: 18px;
    }

    .sidebar-card h2 {
        font-size: 26px;
    }

    .info-item {
        gap: 12px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }

    .info-content h5 {
        font-size: 16px;
    }

    .info-content p {
        font-size: 13px;
    }

    .sidebar-contact h4 {
        font-size: 22px;
    }

    .contact-row a {
        font-size: 14px;
    }

    /* Calendar */

    .calendar-grid {
        gap: 4px;
    }

    .day {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .calendar-days span {
        font-size: 11px;
    }

    .calendar-box,
    .time-slot-box {
        padding: 15px;
    }

    .time-slot {
        height: 44px;
        font-size: 14px;
    }

    .time-slot-list {
        height: 250px;
    }

    .booking-left {
        padding: 7px;
    }

    .calendar-box,
    .time-slot-box {
        padding: 15px;
    }

    .summary-card,
    .security-card {
        padding: 15px;
    }

    .booking-left h2 {
        font-size: 24px;
    }

    .calendar-header {
        margin-bottom: 15px;
    }

    .calendar-header h4 {
        font-size: 18px;
    }

    .calendar-days {
        margin-bottom: 12px;
    }

    .calendar-days span {
        font-size: 10px;
    }

    .calendar-grid {
        gap: 4px;
    }

    .day {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .calendar-legend {
        margin-top: 20px;
    }

    .time-slot-list {
        height: 220px;
    }

    .time-slot {
        height: 42px;
        font-size: 13px;
    }

    .summary-card h3 {
        font-size: 24px;
    }

    .summary-icon {
        width: 38px;
        height: 38px;
    }

    .summary-icon i {
        font-size: 16px;
    }

    .summary-content h5 {
        font-size: 14px;
        line-height: 1.5;
    }

    .security-card h4 {
        font-size: 20px;
    }

    .security-card p {
        font-size: 13px;
    }

    .step3-left,
    .step3-right {
        padding: 15px;
    }

    .step3-card h2 {
        font-size: 24px;
    }

    .consultation-card {
        padding: 15px;
    }

    .consultation-card h3 {
        font-size: 24px;
    }

    .consultation-item {
        align-items: flex-start;
        gap: 10px;
    }

    .consultation-icon {
        width: 40px;
        height: 40px;
    }

    .consultation-icon i {
        font-size: 16px;
    }

    .consultation-content small {
        font-size: 11px;
    }

    .consultation-content h5 {
        font-size: 15px;
        line-height: 1.5;
    }

    .consultation-content p {
        font-size: 12px;
        line-height: 1.6;
    }

    .security-icon {
        width: 42px;
        height: 42px;
    }

    .security-right h4 {
        font-size: 18px;
    }

    .security-right p {
        font-size: 13px;
        line-height: 1.7;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
    }

    .text-counter {
        font-size: 12px;
    }

    .privacy-check {
        display: grid;
        grid-template-columns: 20px 1fr;
        column-gap: 12px;
        row-gap: 0;
        align-items: start;
        font-size: 13px;
        line-height: 1.7;
    }

    .privacy-check input,
    .privacy-check .checkmark {
        grid-row: 1;
    }

    .privacy-check .checkmark {
        margin-top: 2px;
    }

    .form-footer {
        flex-direction: column;
        gap: 15px;
    }

    .btn-back,
    .btn-submit {
        width: 100%;
    }

    .consultation-item:last-of-type {
        margin-bottom: 10px;
    }

    .sidebar-card {
        margin-top: 0px;
    }
}

















