/* Colors */
/* Functions */
html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.5;
    --gutter-x: 16px;
    --gutter-x2: -16px;
    overflow-x: hidden;
    background: #f4f4f4;
    font-family: "Poppins", sans-serif;
    color: #000;
}

body.modal-opened {
    position: fixed !important;
    overflow: hidden !important;
    width: 100%;
}

body {
    overflow-y: scroll;
}

html, body {
    overflow-x: hidden !important;
}

.w-100 {
    width: 100%;
    max-width: 100%;
}

.mobile-hamburger-menu {
    position: absolute;
    z-index: 99;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    padding: 15px;
    width: 60px;
    height: 57px;
    background-color: #fff;
    cursor: pointer;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
}

.mobile-hamburger-menu .hamburger-menu {
    position: relative;
    transform: translateY(12px);
    background: #000;
    transition: all 0ms 300ms;
    width: 30px;
    height: 3px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
}

.mobile-hamburger-menu .hamburger-menu.animate {
    background: rgba(255, 255, 255, 0);
}

.mobile-hamburger-menu .hamburger-menu.animate.animate:after {
    width: 30px;
    top: 0;
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    background: black;
}

.mobile-hamburger-menu .hamburger-menu.animate.animate:before {
    width: 30px;
    bottom: 0;
    transform: rotate(-45deg);
    background: black;
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-hamburger-menu .hamburger-menu:after,
.mobile-hamburger-menu .hamburger-menu:before {
    width: 20px;
    height: 3px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
}

.mobile-hamburger-menu .hamburger-menu:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 12px;
    background: black;
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-hamburger-menu .hamburger-menu:after {
    content: "";
    position: absolute;
    right: 0;
    top: 12px;
    background: black;
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.text-sm {
    font-size: 16px;
    color: #000;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    line-height: 1.2;
}

header {
    position: relative;
    padding: 20px 0;
}

header .h-area .h-inner {
    position: relative;
    padding-right: 90px;
}

header .h-area .h-logo-area .h-img {
    margin-right: 20px;
}

header .h-area .h-logo-area .h-img img {
    width: 120px;
    height: 120px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    object-fit: cover;
}

header .h-area .h-text-area {
    max-width: 100%;
}

header .h-area .h-text-area .h-text {
    font-size: 14px;
    margin-bottom: 10px;
}

header .h-area .h-text-area .h-buttons {
    gap: 20px;
    display: flex;
}

header .h-area .h-text-area .h-buttons .h-btn {
    display: block;
    width: max-content;
    min-width: 180px;
    padding: 8px 12px;
    font-size: 18px;
    font-weight: 600;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    border-radius: 12px;
    text-align: center;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

header .h-area .h-text-area .h-buttons .h-btn.booking-btn {
    background-color: #4CAF50;
    color: #ffffff;
}

header .h-area .h-text-area .h-buttons .h-btn.booking-btn:hover {
    background-color: #309034;
    color: #fff;
}

.h-buttons .booking-btn {
    position: relative;
    z-index: 1;
    animation: steadyGlow 6s ease-in-out infinite;
}

/* Sürekli sabit ışıma + aralıklı büyük dalga */
@keyframes steadyGlow {
    0%   { box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.25); }
    15%  { box-shadow: 0 0 0 8px rgba(76, 175, 80, 0); }
    25%  { box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.2); }
    50%  { box-shadow: 0 0 0 12px rgba(76, 175, 80, 0); }
    70%  { box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.2); }
    85%  { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.25); }
}




header .h-area .h-text-area .h-buttons .h-btn.map-btn {
    background-color: #fff;
    color: #000;
}

header .h-area .h-text-area .h-buttons .h-btn.map-btn:hover {
    background-color: #000;
    color: #fff;
}

header .h-area .h-title {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2;
}

header .nav-area {
    z-index: 9;
    position: absolute;
    background-color: #fff;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    right: 0;
    top: 25px;
    padding: 60px 40px 40px;
    transform-origin: right top;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.2);
}

header .nav-area .nav-menu li a {
    padding: 5px 40px;
    border-bottom: 1px solid #e2e6eb;
    text-align: end;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    display: block;
    text-align: center;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

header .nav-area .nav-menu li a:hover {
    color: #545454;
}

header .nav-area.opened {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

main {
    overflow-x: clip;
}

#gallery-area {
    --gutter-x: 5px;
    --gutter-x2: -5px;
    padding: 20px 0 20px;
}

#gallery-area .gallery-mb {
    margin-bottom: 10px;
}

#gallery-area .gallery-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    border-radius: 24px;
}

#gallery-area .gallery-wrapper .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    border-radius: 24px;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#gallery-area .gallery-wrapper .zoom-icon {
    color: #fff;
    pointer-events: none;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    scale: 0;
}

#gallery-area .gallery-wrapper .zoom-icon svg {
    width: 80px;
    aspect-ratio: 80px;
}

#gallery-area .gallery-wrapper:hover .gallery-overlay {
    opacity: 1;
}

#gallery-area .gallery-wrapper:hover .gallery-overlay .zoom-icon {
    scale: 1;
}

#gallery-area .gallery-wrapper .gallery-img {
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    border-radius: 24px;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .gallery-img {
        height: 223px !important;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .col-6.gallery-mb .gallery-img {
        width: 100% !important;
        height: 180px !important;
        object-fit: cover;
    }

    .col-6.gallery-mb .gallery-wrapper {
        display: block;
        max-width: 100%;
    }
}

#about-us {
    --gutter-x: 32px;
    --gutter-x2: -32px;
    padding: 40px 0;
}

#about-us .section-title-area {
    width: 50%;
    padding-right: 32px;
}

#about-us .section-title-area .line {
    margin-top: 20px;
    width: 100%;
    height: 4px;
    background-color: #e2e6eb;
}

#about-us .about-text-area .about-text {
    font-size: 18px;
    color: #000;
}

#about-us .about-text-area .about-text p {
    margin: 25px 0;
}

#about-us .about-contact-area {
    padding: 16px 24px 32px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    border-radius: 24px;
    background-color: #fff;
    border: 1px solid #e2e6eb;
}

#about-us .about-contact-area .area-title {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

#about-us .about-contact-area .contact-address {
    font-size: 18px;
    text-decoration: underline;
    color: #000;
    display: block;
}

#about-us .about-contact-area .social-medias {
    gap: 15px;
    margin-top: 30px;
}

#about-us .about-contact-area .social-medias li a {
    background-color: #e2e6eb;
    color: #545454;
    display: block;
    padding: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    border-radius: 12px;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#about-us .about-contact-area .social-medias li a svg {
    width: 36px;
    height: 36px;
}

#about-us .about-contact-area .social-medias li a:hover {
    background-color: #545454;
    color: #fff;
}

#booking-area {
    padding: 20px 0;
}

#booking-area .section-title-area {
    margin-bottom: 20px;
}

#booking-area .section-title-area .line {
    margin-top: 20px;
    width: 100%;
    height: 4px;
    background-color: #e2e6eb;
}

#booking-area .booking-box {
    --gutter-x: 0px;
    --gutter-x2: 0px;
    background-color: #fff;
    border: 1px solid #e2e6eb;
    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    -ms-border-radius: 32px;
    border-radius: 32px;
}

#booking-area .booking-box #back-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: #fff;
    border: 2px solid #e2e6eb;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: none;
    opacity: 0;
    padding: 5px;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#booking-area .booking-box #back-btn svg {
    width: 40px;
    height: 40px;
}

#booking-area .booking-box #back-btn.show {
    pointer-events: all;
    opacity: 1;
}

#booking-area .booking-box #back-btn:hover {
    background-color: #e2e6eb;
}

#booking-area .booking-box .box-info-area {
    height: 100%;
    min-height: 560px;
    padding: 24px 48px;
    border-right: 2px solid #e2e6eb;
}

#booking-area .booking-box .box-info-area .box-img {
    margin-bottom: 20px;
}

#booking-area .booking-box .box-info-area .box-img img {
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    border-radius: 12px;
}

#booking-area .booking-box .box-info-area #info-list {
    list-style: none;
    gap: 6px;
}

#booking-area .booking-box .box-info-area #info-list li {
    font-size: 16px;
}

#booking-area .booking-box .box-form-area {
    height: 100%;
    padding: 24px 48px;
    position: relative;
}

#booking-area .booking-box .box-form-area #step-form {
    position: relative;
    height: 100%;
    overflow-y: auto;
}

#booking-area .booking-box .box-form-area .step {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    overflow: auto;
    left: 0;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

#booking-area .booking-box .box-form-area .step.active {
    display: block;
    opacity: 1;
}

#booking-area .booking-box .box-form-area .services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 0px;
}

#booking-area .booking-box .box-form-area .services .service-box {
    padding: 12px 16px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    background-color: #e2e6eb;
    border: 2px solid transparent;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin-right: 15px;
    margin-left: 15px;
}

#booking-area .booking-box .box-form-area .services .service-box .service-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

#booking-area .booking-box .box-form-area .services .service-box .service-time {
    font-size: 15px;
    display: inline-block;
}

#booking-area .booking-box .box-form-area .services .service-box .service-price {
    display: inline-block;
    padding: 2px 8px;
    font-size: 15px;
    background-color: #c7cbcf;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    margin-left: 12px;
}

#booking-area .booking-box .box-form-area .services .service-box:hover {
    border-color: #545454;
}

#booking-area .booking-box .box-form-area .step-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 40px;
}

#booking-area .booking-box .box-form-area .expert-options {
    gap: 20px;
}

#booking-area .booking-box .box-form-area .expert-options .expert-label {
    cursor: pointer;
    text-align: center;
    padding: 16px 16px 8px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    border-radius: 16px;
    border: 2px solid #e2e6eb;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#booking-area .booking-box .box-form-area .expert-options .expert-label .label-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    border-radius: 12px;
    transition: 0.3s;
    margin-bottom: 8px;
}

#booking-area .booking-box .box-form-area .expert-options .expert-label .label-title {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

#booking-area .booking-box .box-form-area .expert-options .expert-label:hover {
    background-color: #e2e6eb;
}

#booking-area .booking-box .box-form-area .inner-form {
    width: 50%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    #booking-area .booking-box .box-form-area .inner-form {
        width: 80%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

#booking-area .booking-box .box-form-area .inner-form .form-label {
    font-size: 18px;
    display: block;
    width: 100%;
}

#booking-area .booking-box .box-form-area .inner-form .form-label span {
    margin-bottom: 4px;
}

#booking-area .booking-box .box-form-area .inner-form .form-input {
    height: 48px;
    padding: 0 12px;
    display: block;
    width: 100%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    border: 1px solid #e2e6eb;
    font-size: 16px;
    margin-bottom: 12px;
}

#booking-area .booking-box .box-form-area .inner-form .generate-box {
    margin-bottom: 12px;
    text-align: center;
}

#booking-area .booking-box .box-form-area .inner-form .generate-box .generate-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
}

#booking-area .booking-box .box-form-area .inner-form .generate-box .generate-text {
    font-size: 18px;
    font-weight: 500;
}

#booking-area .booking-box .box-form-area .form-button {
    background-color: #58c073;
    width: 100%;
    padding: 8px;
    height: 48px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
}

#booking-area .booking-box .box-form-area .calendar-time-container .calendar-side {
    position: sticky;
    top: 0;
    width: max-content;
}

#booking-area .booking-box .box-form-area .calendar-time-container .flatpickr-calendar.inline {
    left: 30px;
    top: 5px;
}

@media (max-width: 768px) {
    #booking-area .booking-box .box-form-area .calendar-time-container .flatpickr-calendar.inline {
        left: 0px;
        top: 5px;
    }
}

#booking-area .booking-box .box-form-area .calendar-time-container .times-side {
    overflow-y: auto;
}

#booking-area .booking-box .box-form-area .calendar-time-container .times-side .time-slot {
    font-size: 18px;
    font-weight: 600;
    border: 2px solid #e2e6eb;
    background-color: #fff;
    cursor: pointer;
    text-align: center;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    padding: 4px;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#booking-area .booking-box .box-form-area .calendar-time-container .times-side .time-slot:hover {
    background-color: #e2e6eb;
    color: #000000;
}

#booking-area .booking-box .box-form-area .flatpickr-months .flatpickr-month {
    height: 60px;
}

#booking-area .booking-box .box-form-area .confirmation-area {
    height: 100%;
    width: 50%;
    margin: 0 auto;
}

#booking-area .booking-box .box-form-area .confirmation-area .confirmation-icon svg {
    width: 50px;
    height: 50px;
}

#booking-area .booking-box .box-form-area .confirmation-area .confirmation-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 8px;
}

#booking-area .booking-box .box-form-area .confirmation-area .confirmation-text {
    font-size: 20px;
    text-align: center;
}

#experts-area {
    --gutter-x: 32px;
    --gutter-x2: -32px;
    padding: 40px 0;
}

#experts-area .section-content-area .section-title-area {
    margin-bottom: 20px;
}

#experts-area .section-content-area .section-title-area .line {
    margin-top: 20px;
    width: 100%;
    height: 4px;
    background-color: #e2e6eb;
}

#experts-area .section-content-area .expertises-list {
    --gutter-x: 12px;
    --gutter-x2: -12px;
}

#experts-area .section-content-area .expertises-list .col-mb {
    margin-bottom: 24px;
}

#experts-area .section-content-area .expertises-list .expert-box {
    background-color: #fff;
    border: 1px solid #e2e6eb;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    border-radius: 12px;
    padding: 16px 16px 8px;
}

#experts-area .section-content-area .expertises-list .expert-box .box-img {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #e2e6eb;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1;
}

#experts-area .section-content-area .expertises-list .expert-box .box-title {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

#experts-area .hours-info-table {
    background-color: #fff;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    border-radius: 24px;
    border: 1px solid #e2e6eb;
}

#experts-area .hours-info-table .table-title {
    font-size: 28px;
    font-weight: bold;
    padding: 12px 24px;
    border-bottom: 1px solid #e2e6eb;
}

#experts-area .hours-info-table .table-list li {
    padding: 8px 24px;
    border-bottom: 1px solid #e2e6eb;
    display: flex;
    justify-content: space-between;
}

#experts-area .hours-info-table .table-list li .red {
    color: #FF0000;
}

#experts-area .hours-info-table .table-list li:last-child {
    border: none;
}

#experts-area .hours-info-table .table-list li span {
    font-size: 18px;
}

#experts-area .hours-info-table .table-list li span:last-child {
    width: 120px;
    text-align: center;
}

footer {
    background-color: #e2e6eb;
}

footer .footer-top {
    padding: 60px 0 20px;
}

footer .footer-top .col-mb {
    margin-bottom: 20px;
}

footer .footer-top .footer-map {
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #545454;
}

footer .footer-top .footer-map iframe {
    height: 200px;
    width: 100%; /* Sadece bu yeterli */
    margin-left: 0; /* Ekstra offset yoksa */
}


footer .footer-top .footer-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

footer .footer-top .footer-socials {
    gap: 10px;
}

footer .footer-top .footer-socials li a {
    background-color: #fff;
    color: #545454;
    padding: 6px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    display: block;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

footer .footer-top .footer-socials li a svg {
    width: 28px;
    height: 28px;
}

footer .footer-top .footer-socials li a:hover {
    background-color: #545454;
    color: #fff;
}

footer .footer-top .footer-contacts .footer-contact {
    font-size: 16px;
    color: #000;
    text-decoration: underline;
}

footer .footer-bottom {
    padding: 15px 0;
}

@media (max-width: 1440px) {
    header .h-area .h-logo-area .h-img img {
        width: 100px;
        height: 100px;
    }

    header .h-area .h-title {
        font-size: 36px;
    }

    header .h-area .h-text-area .h-buttons {
        gap: 15px;
    }

    header .h-area .h-text-area .h-buttons .h-btn {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    #gallery-area {
        padding: 20px 0 60px;
    }

    #about-us {
        padding: 30px 0;
        --gutter-x: 16px;
        --gutter-x2: -16px;
    }

    #about-us .about-text-area .about-text p {
        font-size: 16px;
        margin: 15px 0;
    }

    #about-us .about-contact-area .area-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    #about-us .about-contact-area .contact-address {
        font-size: 16px;
    }

    #about-us .about-contact-area .social-medias li a {
        padding: 8px;
    }

    #about-us .about-contact-area .social-medias li a svg {
        width: 32px;
        height: 32px;
    }

    #booking-area .booking-box .box-info-area {
        padding: 24px 32px;
    }

    #booking-area .booking-box .box-info-area .box-img img {
        width: 100px;
        height: 100px;
    }

    #booking-area .booking-box .box-form-area {
        padding: 24px 32px;
    }

    #booking-area .booking-box .box-form-area .step-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    #booking-area .booking-box .box-form-area .services {
        gap: 15px 20px;
    }

    #booking-area .booking-box .box-form-area .services .service-box .service-title {
        font-size: 22px;
    }

    #booking-area .booking-box .box-form-area .services .service-box .service-time {
        font-size: 18px;
    }

    #booking-area .booking-box .box-form-area .services .service-box .service-price {
        font-size: 16px;
    }

    #booking-area .booking-box .box-form-area .expert-options {
        gap: 16px;
    }

    #booking-area .booking-box .box-form-area .expert-options .expert-label .label-img {
        width: 100px;
        height: 100px;
    }

    #booking-area .booking-box .box-form-area .confirmation-area {
        width: 60%;
    }

    #experts-area .section-content-area .expertises-list {
        --gutter-x: 8px;
        --gutter-x2: -8px;
    }

    #experts-area .section-content-area .expertises-list .col-mb {
        margin-bottom: 16px;
    }

    #experts-area .section-content-area .expertises-list .expert-box {
        padding: 12px 12px 6px;
    }

    #experts-area .section-content-area .expertises-list .expert-box .box-title {
        font-size: 16px;
    }

    #experts-area .hours-info-table .table-title {
        font-size: 24px;
    }

    #experts-area .hours-info-table .table-list li span {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .mobile-hamburger-menu {
        padding: 12px;
        width: 48px;
        height: 46px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        border-radius: 8px;
    }

    .mobile-hamburger-menu .hamburger-menu {
        transform: translateY(10px);
        width: 24px;
        height: 2px;
    }

    .mobile-hamburger-menu .hamburger-menu.animate.animate:after {
        width: 24px;
    }

    .mobile-hamburger-menu .hamburger-menu.animate.animate:before {
        width: 24px;
    }

    .mobile-hamburger-menu .hamburger-menu:after,
    .mobile-hamburger-menu .hamburger-menu:before {
        width: 14px;
        height: 2px;
    }

    .mobile-hamburger-menu .hamburger-menu:before {
        bottom: 10px;
    }

    .mobile-hamburger-menu .hamburger-menu:after {
        top: 10px;
    }

    header .h-area .h-logo-area .h-img {
        margin-right: 15px;
    }

    header .h-area .h-logo-area .h-img img {
        width: 80px;
        height: 80px;
    }

    header .h-area .h-title {
        font-size: 26px;
    }

    header .h-area .h-text-area .h-buttons .h-btn {
        min-width: 160px;
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    #gallery-area {
        padding: 5px 0;
    }

    #gallery-area .gallery-img {
        height: auto;
    }

    #about-us {
        padding: 20px 0;
    }

    #about-us .section-title-area {
        width: 100%;
        padding-right: 0;
    }

    #about-us .about-text-area {
        margin-bottom: 30px;
    }

    #booking-area .booking-box #back-btn {
        top: unset;
        right: unset;
        bottom: 8px;
        left: 8px;
    }

    #booking-area .booking-box #back-btn svg {
        width: 30px;
        height: 30px;
    }

    #booking-area .booking-box .box-info-area {
        min-height: 90px;
        display: flex;
        gap: 20px;
        border: none;
        border-bottom: 2px solid #e2e6eb;
    }

    #booking-area .booking-box .box-info-area .box-img {
        margin-bottom: 0;
    }

    #booking-area .booking-box .box-form-area {
        height: 480px;
    }

    #booking-area .booking-box .box-form-area .step-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    #booking-area .booking-box .box-form-area .services {
        gap: 10px 20px;
    }

    #booking-area .booking-box .box-form-area .services .service-box .service-title {
        font-size: 20px;
    }

    #booking-area .booking-box .box-form-area .services .service-box .service-time {
        font-size: 16px;
    }

    #booking-area .booking-box .box-form-area .services .service-box .service-price {
        font-size: 14px;
    }

    #booking-area .booking-box .box-form-area .expert-options .expert-label .label-img {
        width: 80px;
        height: 80px;
    }

    #booking-area .booking-box .box-form-area .confirmation-area {
        width: 80%;
    }

    #experts-area .section-content-area .expertises-list {
        margin-bottom: 40px;
    }
}






@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }

    .mobile-hamburger-menu {
        top: 0;
        transform: none;
    }

    header .h-area .h-inner {
        padding: 0;
    }

    header .h-area .h-logo-area {
        padding-right: 60px;
    }

    header .h-area .h-img {
        margin-right: 10px;
    }

    header .h-area .h-title {
        font-size: 22px;
    }

    header .h-area .h-text {
        margin-top: 12px;
    }

    header .nav-area {
        top: 0;
    }

    #booking-area .booking-box {
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        border-radius: 20px;
    }

    #booking-area .booking-box #back-btn svg {
        width: 24px;
        height: 24px;
    }

    #booking-area .booking-box .box-info-area {
        padding: 24px;
        gap: 10px;
    }

    #booking-area .booking-box .box-info-area .box-img img {
        width: 80px;
        height: 80px;
    }

    #booking-area .booking-box .box-form-area {
        padding: 10px;
        margin-top: 12px;
    }

    #booking-area .booking-box .box-form-area .services {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    #booking-area .booking-box .box-form-area .services .service-box .service-title {
        font-size: 18px;
    }

    #booking-area .booking-box .box-form-area .services .service-box .service-time {
        font-size: 16px;
    }

    #booking-area .booking-box .box-form-area .services .service-box .service-price {
        font-size: 12px;
    }

    #booking-area .booking-box .box-form-area .expert-options .expert-label {
        padding: 12px 12px 8px;
    }

    #booking-area .booking-box .box-form-area .expert-options .expert-label .label-img {
        width: 70px;
        height: 70px;
    }

    #booking-area .booking-box .box-form-area .expert-options .expert-label .label-title {
        font-size: 16px;
    }

    #booking-area .booking-box .box-form-area .calendar-time-container .calendar-side {
        margin: 0 auto 20px;
    }

    #booking-area .booking-box .box-form-area .inner-form {
        width: 100%;
    }

    #booking-area .booking-box .box-form-area .confirmation-area {
        width: 100%;
    }

    #experts-area .section-content-area .expertises-list {
        --gutter-x: 6px;
        --gutter-x2: -6px;
    }

    #experts-area .section-content-area .expertises-list .col-mb {
        margin-bottom: 12px;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 22px;
    }
}


@media (max-width: 768px) {
    .box-img {
        flex-direction: column;
        align-items: center;
    }

    .box-img img {
        margin-right: 0 !important;
        margin-bottom: 10px;
    }
}


/* hata durumunda kırmızıya dönsün istersen JS ile .error sınıfı koyup: */


/* —— CONFIRMATION ICON OVERRIDES —— */
#step5 .confirmation-icon {
    background: none !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    display: inline-flex; /* svg’nin ortalanması için */
    align-items: center;
    justify-content: center;
}

#step5 .confirmation-icon svg {
    width: 64px; /* istediğiniz büyüklüğe göre ayarlayın */
    height: 64px;
}


#timeSlots .no-times {
    padding: 16px;
    text-align: center;
    color: #c00;
    font-weight: bold;
}

.sm-text {
    font-size: 0.85rem;
    color: #000000;
    text-align: center;
    padding: 10px 15px;
}

.sm-text .randevizyon-link {
    font-weight: 600;
    color: #284368;
    text-decoration: none;
}

#step1 .services {
    max-height: 500px;           /* Taşma olasılığı olan yükseklik */
    overflow-y: scroll;          /* Scroll çubuğu her zaman görünsün */
}

#step1 .services::-webkit-scrollbar {
    width: 8px;
}

#step1 .services::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 4px;
}

#step1 .services::-webkit-scrollbar-track {
    background: #f1f1f1;
}

@media (max-width: 768px) {
    #step1 .services {
        max-height: 450px;
        overflow-y: scroll;
    }

}
/* Desktop: Başka Gün Seç butonunu kesinlikle gizle */
@media (min-width: 769px) {
    #show-calendar-btn {
        display: none !important;
    }
    /* masaüstünde takvim her zaman görünsün */
    .calendar-side {
        display: block !important;
    }
    .times-side {
        width: auto !important;
    }
}