﻿.fade-in-down {
	animation: fadeInDown 0.3s ease-out both;
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-10px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.list-group-item.active {
	background-color: #f0f0f0;
	font-weight: bold;
}

/* ======================================
   TOP BAR
   ====================================== */
.topbar {
    background: linear-gradient(90deg, #1a1a2e 0%, #16213e 100%);
    padding: 8px 0;
    font-size: 0.82rem;
}

.topbar-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.topbar-link:hover {
    color: #ffc107;
}

.topbar-link-whatsapp {
    color: #25d366 !important;
}

.topbar-link-whatsapp:hover {
    color: #20c45e !important;
}

.topbar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
}

.topbar-text {
    color: rgba(255, 255, 255, 0.65);
}

.topbar-badge {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
}

.topbar-social {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.topbar-social:hover {
    background: #ffc107;
    color: #000;
}

/* ======================================
   SITE HEADER / NAVBAR
   ====================================== */
.site-header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1030;
}

.site-header .navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.nav-link-custom {
    font-weight: 500;
    font-size: 0.95rem;
    color: #333 !important;
    padding: 0.6rem 1rem !important;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: #d4a006 !important;
    background: rgba(255, 193, 7, 0.06);
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffc107;
    transition: all 0.25s ease;
    transform: translateX(-50%);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    width: 60%;
}

.nav-link-custom.active {
    font-weight: 600;
}

/* Dropdown toggle (separate from nav-link-custom to preserve Bootstrap caret) */
.nav-dropdown-custom {
    font-weight: 500;
    font-size: 0.95rem;
    color: #333 !important;
    padding: 0.6rem 1rem !important;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-dropdown-custom:hover,
.nav-dropdown-custom.active {
    color: #d4a006 !important;
    background: rgba(255, 193, 7, 0.06);
}

.nav-dropdown-custom.active {
    font-weight: 600;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #ffc107;
    color: #000;
}

.navbar-cta-btn {
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.navbar-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.45);
}

.header-location {
    display: none;
}

/* Notice Top Bar */
.notice-top-bar {
	top: 0;
	left: 0;
	width: 100%;
	background: #d01a34;
	z-index: -1;
}

.notice-top-bar .notice-button {
	background: rgba(235, 34, 63, 0.7);
	color: var(--light);
	border-radius: 35px;
	transition: ease background 300ms;
	text-decoration: none;
}

.notice-top-bar .notice-button:hover {
	background: #eb223f;
}

.notice-top-bar .notice-top-bar-close {
	position: absolute;
	top: 7px;
	right: 7px;
}
.btn-close-white {
  --bs-btn-close-color: #fff;
  --bs-btn-close-bg: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23020617' viewBox='0 0 16 16'%3E%3Cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3E%3C/svg%3E");
  --bs-btn-close-opacity: 0.5;
  --bs-btn-close-hover-opacity: 0.75;
  --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(139, 61, 255, 0.25);
  --bs-btn-close-focus-opacity: 1;
  --bs-btn-close-disabled-opacity: 0.25;
  --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
  background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
  border: 0;
  border-radius: 0.5rem;
  box-sizing: content-box;
  height: 1em;
  opacity: var(--bs-btn-close-opacity);
  padding: 0.25em;
  width: 1em;
}
.list-group-item {
	padding: 10px 15px;
	border: none;
	cursor: pointer;
}

.list-group-item:hover {
	background-color: #f8f9fa;
}

.form-control {
	border-radius: 25px;
	padding-right: 30px;
}

ul.list-group {
	border-radius: 0 0 10px 10px;
	border: 1px solid #ddd;
}

.input-group-text.cursor-pointer {
	color: #aaa;
}

.input-group-text.cursor-pointer:hover {
	color: #000;
}

.customscroll::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

.customscroll::-webkit-scrollbar-track {
	background: #fff;
	border-radius: 5px;
}

.customscroll::-webkit-scrollbar-thumb {
	background: #ffc107;
	border-radius: 5px;
	border: 2px solid #fff;
}

.customscroll::-webkit-scrollbar-thumb:hover {
	background: #555;
}

.customscroll {
	scrollbar-width: thin;
	scrollbar-color: #ffc107 #fff;
}
.customscroll {
	width: 300px;
	height: 400px;
	overflow-y: scroll;
	overflow-x: hidden;
	background: #fff;
	border: 1px solid #ccc;
	padding: 10px;
}
input::placeholder,
textarea::placeholder {
	color: inherit !important;
	opacity: 0.5 !important;
}

/* ======================================
   PAGE HEADER (shared across pages)
   ====================================== */
.page-header {
    background: linear-gradient(135deg, #fffdf5 0%, #fff8e1 50%, #f5f5f5 100%);
    padding: 1.5rem 0;
}

.page-header .breadcrumb {
    margin-bottom: 0;
}

.page-header .breadcrumb-item a {
    text-decoration: none;
    color: #6c757d;
}

.page-header .breadcrumb-item a:hover {
    color: #ffc107;
}

.page-header-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto;
}

/* ======================================
   HERO SECTION
   ====================================== */
.hero-section {
    background: linear-gradient(135deg, #fffdf5 0%, #fff8e1 50%, #f5f5f5 100%);
    padding: 4rem 0 3rem;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-badge {
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    animation: fadeInDown 0.6s ease-out;
}

.hero-title {
    line-height: 1.15;
    letter-spacing: -0.5px;
    animation: fadeInDown 0.7s ease-out 0.1s both;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    animation: fadeInDown 0.7s ease-out 0.2s both;
}

.hero-image {
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.trust-micro-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.9);
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #444;
    backdrop-filter: blur(4px);
}

.btn-cta-primary {
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.btn-cta-secondary {
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.btn-cta-secondary:hover {
    transform: translateY(-2px);
    background: #212529;
    color: #fff;
}

/* ======================================
   STATS / SOCIAL PROOF SECTION
   ====================================== */
.stats-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.2rem;
    color: #ffc107;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.85;
}

.star-rating i {
    font-size: 0.75rem;
}

/* ======================================
   HOME REVIEWS
   ====================================== */
.home-reviews-section {
    position: relative;
    background: #fff4cc;
    border-top: 1px solid rgba(212, 160, 6, 0.18);
    border-bottom: 1px solid rgba(212, 160, 6, 0.18);
    overflow: hidden;
}

.home-reviews-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 1;
    pointer-events: none;
}

.home-reviews-section .container {
    position: relative;
    z-index: 1;
}

.home-reviews-shell {
    position: relative;
}

.home-reviews-swiper {
    padding: 0.25rem 0 3rem;
}

.home-review-card {
    background: linear-gradient(180deg, #ffffff 0%, #fffdf7 100%);
    border: 1px solid rgba(255, 193, 7, 0.16);
    min-height: 100%;
}

.home-review-stars {
    letter-spacing: 1px;
    font-size: 1rem;
}

.home-review-date {
    white-space: nowrap;
    font-weight: 500;
}

.home-review-comment {
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-reviews-pagination {
    bottom: 0 !important;
}

.home-reviews-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(33, 37, 41, 0.2);
    opacity: 1;
}

.home-reviews-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 999px;
    background: #ffc107;
}

.home-reviews-nav {
    position: absolute;
    top: -4px;
    right: 0;
    z-index: 2;
    gap: 0.75rem;
}

.home-reviews-prev,
.home-reviews-next {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #212529;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.home-reviews-prev:hover,
.home-reviews-next:hover {
    background: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(255, 193, 7, 0.25);
}

.home-reviews-single .home-reviews-swiper {
    max-width: 760px;
    margin: 0 auto;
}

.home-reviews-single .swiper-wrapper {
    justify-content: center;
}

.home-reviews-single .swiper-slide {
    display: flex;
    justify-content: center;
}

.home-reviews-single .home-review-card {
    width: min(100%, 760px);
}

.home-reviews-single .home-reviews-nav,
.home-reviews-single .home-reviews-pagination {
    display: none !important;
}

/* ======================================
   PRICE CALCULATOR SECTION
   ====================================== */
.price-calc-card {
    border: none;
    transition: transform 0.3s ease;
}

.price-calc-card:hover {
    transform: translateY(-4px);
}

.address-dropdown {
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    margin-top: 50px;
    width: 100%;
}

#fiyat-hesapla .form-control:focus,
#fiyat-hesapla .form-select:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

/* ======================================
   HOW IT WORKS SECTION
   ====================================== */
.how-it-works-step {
    padding: 2rem 1rem;
    transition: all 0.3s ease;
    border-radius: 1rem;
}

.how-it-works-step:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.step-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: #ffc107;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* ======================================
   SERVICES SECTION
   ====================================== */
.service-card {
    border: none;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.service-icon-box {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ======================================
   TRUST / WHY US SECTION
   ====================================== */
.trust-card {
    background: #f8f9fa;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.trust-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: #ffc107;
}

.trust-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ======================================
   CTA BOTTOM SECTION
   ====================================== */
.cta-bottom-section {
    background: linear-gradient(135deg, #ffc107 0%, #ffca28 50%, #ffd54f 100%);
}

/* ======================================
   FAQ SECTION
   ====================================== */
.accordion-button:not(.collapsed) {
    background: #fff8e1;
    color: #000;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
    border-color: #ffc107;
}

.accordion-item {
    border: none;
}

/* ======================================
   MOBILE STICKY CTA
   ====================================== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
    border-top: 2px solid #ffc107;
}

.mobile-sticky-cta.cta-hidden {
    display: none !important;
}

.mobile-cta-main {
    font-size: 0.95rem;
    padding: 11px 0;
    letter-spacing: 0.3px;
}

.mobile-cta-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
    font-size: 1.05rem;
}

@media (max-width: 991.98px) {
    .mobile-sticky-cta {
        display: block;
    }

    .hero-section {
        padding: 2rem 0 1.5rem;
    }

    .min-vh-75 {
        min-height: auto;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    footer {
        padding-bottom: 80px;
    }
    #cookieConsent {
        bottom: 62px !important;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .trust-micro-badge {
        font-size: 0.72rem;
        padding: 5px 10px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .mobile-cta-main {
        font-size: 0.88rem;
        padding: 10px 0;
    }

    .mobile-cta-icon {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
    #cookieConsent {
        bottom: 55px !important;
    }
}

@media (max-width: 767.98px) {
    .home-review-date {
        white-space: normal;
        text-align: right;
    }

    .home-review-comment {
        -webkit-line-clamp: 6;
    }
}

/* ======================================
   PRICE RESULT MODAL
   ====================================== */
.delivery-option-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef !important;
    transition: all 0.2s ease;
}

.delivery-option-card:hover {
    border-color: #ffc107 !important;
    background: #fffdf5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.15);
}

/* ======================================
   CORE WEB VITALS - CLS PREVENTION
   ====================================== */
img {
    max-width: 100%;
    height: auto;
    content-visibility: auto;
}

img[loading="lazy"] {
    transition: opacity 0.3s ease;
}

img:not([width]):not([style*="width"]) {
    aspect-ratio: auto;
}

/* ======================================
   GENERAL UTILITIES
   ====================================== */
.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-8 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

section[data-cue] {
    opacity: 0;
}

section[data-cue][data-show="true"],
section[data-cue].is-visible {
    opacity: 1;
}
.footerlogo-text {
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    color: #cfcfcf; /* hafif gri */
}

    .footerlogo-text .main {
        font-size: 28px;
        font-weight: 800;
        letter-spacing: 2px;
    }

    .footerlogo-text .sub {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 2px;
        opacity: 0.85;
    }

.hero-copy-slider {
    position: relative;
}

.hero-badge,
.hero-title,
.hero-subtitle {
    transition: opacity .28s ease, transform .28s ease;
}

.hero-copy-slider.is-changing .hero-badge,
.hero-copy-slider.is-changing .hero-title,
.hero-copy-slider.is-changing .hero-subtitle {
    opacity: .35;
    transform: translateY(6px);
}

.hero-slider-controls {
    margin-top: 1.5rem;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 0;
    background: rgba(33, 37, 41, 0.2);
    padding: 0;
    transition: all .2s ease;
}

    .hero-slider-dot.active {
        width: 36px;
        background: var(--bs-warning);
    }

#whatsapp-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

@media (max-width: 991.98px) {
    #whatsapp-widget {
        display: none !important;
    }
}

#whatsapp-button {
    display: block;
}

    #whatsapp-button img {
        width: 60px;
        height: 60px;
        cursor: pointer;
        transition: transform 0.3s;
    }

        #whatsapp-button img:hover {
            transform: scale(1.1);
        }

#whatsapp-popup {
    display: none;
    width: 280px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}

    #whatsapp-popup .header {
        background: #075e54;
        color: white;
        padding: 10px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        #whatsapp-popup .header span {
            font-weight: bold;
        }

        #whatsapp-popup .header small {
            font-size: 12px;
        }

        #whatsapp-popup .header button {
            background: transparent;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
        }

    #whatsapp-popup .message {
        padding: 10px;
        background: #f0f0f0;
        font-size: 14px;
    }

    #whatsapp-popup a#start-chat {
        display: block;
        background: #25d366;
        color: white;
        text-align: center;
        text-decoration: none;
        padding: 10px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        font-weight: bold;
    }

.blog-filter-pills {
    gap: .75rem;
}

.blog-filter-pill {
    border: 1px solid var(--bs-border-color);
    transition: all .2s ease;
}

    .blog-filter-pill.active {
        background-color: var(--bs-warning);
        border-color: var(--bs-warning);
        color: #fff !important;
    }

    .blog-filter-pill:hover {
        border-color: var(--bs-warning);
        color: var(--bs-dark) !important;
    }

.blog-card-link {
    text-decoration: none;
}

    .blog-card-link:hover {
        color: inherit;
    }

.blog-card-summary {
    color: #6c757d;
    line-height: 1.7;
}

.blog-pagination .page-link {
    border-radius: 999px;
    margin: 0 .2rem;
    border: 0;
    color: var(--bs-dark);
    background: #f8f9fa;
    min-width: 42px;
    text-align: center;
}

.blog-pagination .page-item.active .page-link {
    background: var(--bs-warning);
    color: var(--bs-dark);
}

.blog-pagination .page-item.disabled .page-link {
    background: #f1f3f5;
    color: #adb5bd;
}
