/********** Template CSS **********/
:root {
    --primary: #FEA116;
    --light: #F1F8FF;
    --dark: #0F172B;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}


/*** Modern Slider Design ***/
/* Carousel Ana Container */
#header-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

/* Carousel Item ve Resim Ayarları */
.carousel-item {
    position: relative;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item img {
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.8s ease;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9) contrast(1.1) saturate(1.05);
    will-change: transform;
}

.carousel-item:hover img {
    transform: scale(1.03);
    filter: brightness(0.95) contrast(1.15) saturate(1.1);
}

/* Modern Carousel Caption */
.carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(15, 23, 43, 0.7) 0%, 
        rgba(15, 23, 43, 0.5) 50%, 
        rgba(15, 23, 43, 0.7) 100%
    );
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modern Content Box */
.slider-content-box {
    max-width: 900px;
    padding: 40px 50px;
    text-align: center;
    position: relative;
    animation: slideInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Elegant Subtitle */
.slider-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInDown 1s ease-out 0.3s forwards;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    position: relative;
}

.slider-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* Premium Main Title */
.slider-main-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin: 25px 0;
    line-height: 1.1;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slider-title-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.slider-title-link:hover {
    transform: translateY(-3px);
}

.slider-title-link:hover .slider-main-title {
    text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.9);
    transform: scale(1.02);
}

/* Modern Button Container */
.slider-button-container {
    margin-top: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

/* Premium CTA Button */
.slider-cta-button {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, #e09200 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(254, 161, 22, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.slider-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.slider-cta-button:hover::before {
    left: 100%;
}

.slider-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(254, 161, 22, 0.6);
    background: linear-gradient(135deg, #e09200 0%, var(--primary) 100%);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.button-text {
    margin-right: 10px;
    font-weight: 700;
}

.button-icon {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.slider-cta-button:hover .button-icon {
    transform: translateX(5px);
}

/* Ultra Modern Indicators */
.carousel-indicators {
    bottom: 30px;
    z-index: 15;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 0;
}

.carousel-indicators button {
    width: 50px;
    height: 4px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    margin: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    position: relative;
    overflow: hidden;
}

.carousel-indicators button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), white, var(--primary));
    transition: left 0.8s ease;
}

.carousel-indicators button.active {
    background: rgba(255, 255, 255, 0.9);
    width: 70px;
    height: 5px;
    box-shadow: 0 4px 15px rgba(254, 161, 22, 0.4);
}

.carousel-indicators button.active::before {
    left: 0;
}

.carousel-indicators button:hover:not(.active) {
    background: rgba(255, 255, 255, 0.6);
    width: 60px;
    transform: scale(1.1);
}

/* Sleek Navigation Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    opacity: 0.7;
    transition: all 0.4s ease;
    z-index: 10;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(254, 161, 22, 0.4);
}

/* Premium Animations */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 80px, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -30px, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Responsive Design - Premium Mobile Experience */
@media (max-width: 1200px) {
    .slider-content-box {
        max-width: 80%;
        padding: 35px 40px;
    }
    
    .slider-main-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .slider-content-box {
        max-width: 90%;
        padding: 30px 35px;
    }
    
    .slider-main-title {
        font-size: 3rem;
    }
    
    .slider-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        height: 500px !important;
    }
    
    .slider-content-box {
        padding: 25px 30px;
        border-radius: 15px;
        max-width: 95%;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        margin: 0 15px;
    }
    
    .slider-main-title {
        font-size: 2.5rem;
        margin: 20px 0;
        line-height: 1.2;
    }
    
    .slider-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
    
    .slider-cta-button {
        padding: 14px 28px;
        font-size: 0.9rem;
        letter-spacing: 0.8px;
    }
    
    .carousel-indicators {
        bottom: 20px;
        gap: 10px;
    }
    
    .carousel-indicators button {
        width: 40px;
        height: 3px;
    }
    
    .carousel-indicators button.active {
        width: 60px;
        height: 4px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
    }
}

@media (max-width: 576px) {
    #header-carousel .carousel-item img {
        height: 600px !important;
    }
    
    .slider-content-box {
        padding: 20px 25px;
        max-width: 90%;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin: 0 20px;
    }
    
    .slider-main-title {
        font-size: 2rem;
        margin: 15px 0;
        line-height: 1.1;
    }
    
    .slider-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.8px;
        margin-bottom: 10px;
    }
    
    .slider-subtitle::after {
        width: 40px;
        height: 1px;
    }
    
    .slider-cta-button {
        padding: 12px 24px;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
    
    .slider-button-container {
        margin-top: 20px;
    }
    
    .carousel-indicators {
        bottom: 15px;
        gap: 8px;
    }
    
    .carousel-indicators button {
        width: 30px;
        height: 2px;
    }
    
    .carousel-indicators button.active {
        width: 45px;
        height: 3px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 12%;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media (max-width: 400px) {
    .slider-content-box {
        padding: 15px 20px;
        margin: 0 15px;
    }
    
    .slider-main-title {
        font-size: 1.7rem;
        margin: 12px 0;
    }
    
    .slider-subtitle {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }
    
    .slider-cta-button {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: .5s;
}

.service-item i,
.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF !important;
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
    padding: 30px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: #FFFFFF;
}


/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: .5s;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Footer ***/
.newsletter {
    position: relative;
    z-index: 1;
}

.footer {
    position: relative;
    margin-top: -110px;
    padding-top: 180px;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


/*** Mobile Contact Buttons ***/
.mobile-contact-buttons {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    height: auto !important;
    z-index: 999999 !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.98)) !important;
    backdrop-filter: blur(15px) !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 12px 20px 12px 20px !important;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12) !important;
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
}

.mobile-contact-buttons .d-flex {
    gap: 12px !important;
    width: 100% !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.mobile-contact-btn {
    font-weight: 700 !important;
    font-size: 16px !important;
    padding: 16px 20px !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 60px !important;
    height: 60px !important;
    border: none !important;
    position: relative !important;
    overflow: hidden !important;
    text-transform: none !important;
    letter-spacing: 0.3px !important;
    color: white !important;
    flex: 1 !important;
    text-align: center !important;
}

.mobile-contact-btn:hover {
    transform: translateY(-2px) !important;
    text-decoration: none !important;
    opacity: 0.9 !important;
}

.mobile-contact-btn:active {
    transform: translateY(0px) !important;
}

.mobile-contact-btn i {
    font-size: 20px !important;
    margin-right: 8px !important;
    display: inline-block !important;
}

.mobile-contact-btn span {
    font-weight: 700 !important;
    position: relative !important;
    z-index: 2 !important;
    color: white !important;
    display: inline-block !important;
}

/* WhatsApp buton - Gradient yeşil */
.mobile-contact-btn.btn-whatsapp,
a[style*="25D366"] {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
    border: 2px solid #25D366 !important;
}

.mobile-contact-btn.btn-whatsapp:hover,
a[style*="25D366"]:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #1ea854 100%) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5) !important;
    color: white !important;
    border-color: #20BA5A !important;
    transform: translateY(-2px) !important;
    opacity: 0.9 !important;
}

.mobile-contact-btn.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.mobile-contact-btn.btn-whatsapp:hover::before {
    left: 100%;
}

/* Telefon buton - Gradient mavi/mor */
.mobile-contact-btn.btn-phone,
a[style*="667eea"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
    border: 2px solid #667eea !important;
}

.mobile-contact-btn.btn-phone:hover,
a[style*="667eea"]:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5) !important;
    color: white !important;
    border-color: #5a6fd8 !important;
    transform: translateY(-2px) !important;
    opacity: 0.9 !important;
}

.mobile-contact-btn.btn-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.mobile-contact-btn.btn-phone:hover::before {
    left: 100%;
}

/* Mobil butonlar için ekstra sabitlik */
.mobile-contact-buttons {
    will-change: transform !important;
    contain: layout style paint !important;
}

/* Tüm ekran boyutları için mobil buton görünürlüğü */
@media screen and (max-width: 767.98px) {
    .mobile-contact-buttons {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        z-index: 999999 !important;
        display: block !important;
    }
}

@media screen and (max-width: 576px) {
    .mobile-contact-buttons {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 999999 !important;
    }
}

/* Mobil butonlar için body padding ekle */
@media (max-width: 767.98px) {
    body {
        padding-bottom: 90px !important;
        margin-bottom: 0 !important;
    }
    
    .back-to-top {
        bottom: 180px !important;
        right: 20px !important;
        z-index: 99999 !important;
    }
    
    /* Mobil butonların kesinlikle en altta kalması için */
    .mobile-contact-buttons {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        z-index: 999999 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateZ(0) !important;
        -webkit-transform: translateZ(0) !important;
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
    }
    
    /* HTML ve BODY için genel ayarlar */
    html, body {
        overflow-x: hidden;
    }
}