/* Tema turuncu butonlarını kırmızıya çeviren override'lar */

/* 1) Turuncu tema değişkenini kırmızı yap */
:root {
	--theme-color2: #dc3545;
	--bg-theme-color2: var(--theme-color2);
	--border-theme-color2: var(--theme-color2);
}

/* 2) Çekirdek buton stillerini zorla */
.theme-btn.btn-style-one,
.btn-style-one {
	background: var(--bg-theme-color2) !important;
}

.btn-style-one.light:before,
.btn-style-one.light:after {
	background: var(--bg-theme-color2) !important;
}

.btn-style-two {
	border-color: var(--bg-theme-color2) !important;
	color: var(--bg-theme-color2) !important;
}

.btn-style-two:before {
	background: var(--bg-theme-color2) !important;
}

.btn-style-two:hover {
	color: #fff !important;
}

.btn-style-three {
	background: var(--bg-theme-color2) !important;
	border-color: var(--bg-theme-color2) !important;
}

.btn-style-three:before {
	background: var(--bg-theme-color2) !important;
}

.btn-style-three:hover {
	color: #fff !important;
}
.mobile-contact-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    display: none;
}

.mobile-contact-button {
    flex: 1;
    padding: 12px 8px;
    text-align: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
    margin: 0;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-top: none;
    height: 55px;
    position: relative;
    overflow: hidden;
}

.mobile-contact-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-100%);
    transition: all 0.3s ease;
}

.mobile-contact-button:hover:before,
.mobile-contact-button:active:before {
    transform: translateY(0);
}

.mobile-contact-button:hover,
.mobile-contact-button:active {
    color: white;
    transform: translateY(-3px);
}

.call-button {
    background-color: #007C91;
    background-image: linear-gradient(135deg, #005a6b, #007C91);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-button {
    background-color: #25D366;
    background-image: linear-gradient(135deg, #128C7E, #25D366);
}

.mobile-contact-button i {
    font-size: 18px;
    margin-right: 6px;
    margin-bottom: 0;
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.mobile-contact-button span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .mobile-contact-buttons {
        display: flex;
    }

    body {
        padding-bottom: 55px;
    }
}


@media (min-width: 769px) {
    .mobile-contact-buttons {
        display: none !important;
    }
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.preloader__content {
    text-align: center;
    width: 90%;
    max-width: 300px;
    padding: 20px;
}

.preloader__logo {
    margin-bottom: 20px;
    width: 200px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.preloader__logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.preloader__title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    word-wrap: break-word;
}

.preloader__spinner {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.spinner-grow {
    width: 1.5rem;
    height: 1.5rem;
    animation-delay: calc(var(--bs-spinner-animation-speed) * 0.15);
}

.spinner-grow:nth-child(2) {
    animation-delay: calc(var(--bs-spinner-animation-speed) * 0.3);
}

.spinner-grow:nth-child(3) {
    animation-delay: calc(var(--bs-spinner-animation-speed) * 0.45);
}

@media (max-width: 768px) {
    .preloader__content {
        padding: 15px;
        max-width: 250px;
    }

    .preloader__logo {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }

    .preloader__title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .spinner-grow {
        width: 1.2rem;
        height: 1.2rem;
    }
}

@media (max-width: 320px) {
    .preloader__content {
        padding: 10px;
        max-width: 200px;
    }

    .preloader__logo {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .preloader__title {
        font-size: 16px;
    }

    .spinner-grow {
        width: 1rem;
        height: 1rem;
    }
}

@media (max-width: 768px) {
  .page-title .title {
    font-size: 58px;
    color: #ffffff;
    margin-bottom: 17px;
  }
}