/* Dil bayrakları stilleri */
.language-flags {
  display: flex;
  gap: 10px; /* Bayraklar arasındaki boşluk */
  align-items: center;
}

.language-flags a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.language-flags img {
  width: 27px; /* Bayrak genişliği */
  height: auto; /* Oranları korumak için */
  border: 3px solid #ddd; /* İsteğe bağlı: Bayraklara kenarlık ekler */
  border-radius: 15px; /* İsteğe bağlı: Köşeleri yuvarlar */
  transition: all 0.3s ease;
}

/* Hover efektleri */
.hover-effect {
  transition: transform 0.3s ease-in-out;
}

.hover-effect:hover {
  transform: scale(1.1) rotate(5deg); /* Büyür ve hafifçe döner */
}

/* Aktif dil stili */
.language-switcher.active img {
  border-color: #007bff;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
  transform: scale(1.05);
}

/* Dil değiştirici hover efekti */
.language-switcher:hover img {
  border-color: #007bff;
  transform: scale(1.1);
}

/* Mobil cihazlarda dil bayraklarını göster */
@media (max-width: 1023px) {
    .language-flags-mobil {
      border: 2px solid #fff; /* İsteğe bağlı: Bayraklara kenarlık ekler */
      border-radius: 8px; /* İsteğe bağlı: Köşeleri yuvarlar */
      display: block; /* veya inline, inline-block, flex vb. */
    }
}

/* Masaüstü cihazlarda dil bayraklarını gizle */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .language-flags-mobil {
      border: 2px solid #ddd; /* İsteğe bağlı: Bayraklara kenarlık ekler */
      border-radius: 8px; /* İsteğe bağlı: Köşeleri yuvarlar */
      display: none;
    }
}

/* Mobil dil seçenekleri stilleri */
.language-flags-mobil {
    display: flex;
    gap: 4px;
    align-items: center;
    position: relative;
    margin-left: -8px;
    margin-right: 16px;
}

/* Sadece telefonlarda göster (768px altı) */
@media (min-width: 768px) {
    .language-flags-mobil {
        display: none;
    }
}

.language-flags-mobil .language-switcher {
    display: inline-block;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.language-flags-mobil img {
    width: 28px;
    height: 28px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(30%);
    opacity: 0.7;
}

.language-flags-mobil .language-switcher:hover img {
    border-color: #007bff;
    transform: scale(1.15) rotate(5deg);
    filter: grayscale(0%);
    opacity: 1;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.language-flags-mobil .language-switcher.active img {
    border-color: transparent;
    filter: grayscale(0%);
    opacity: 1;
    box-shadow: none;
    animation: none;
}

/* Hover durumunda tooltip benzeri efekt */
.language-flags-mobil .language-switcher::after {
    content: attr(data-lang);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: #333;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
}

.language-flags-mobil .language-switcher:hover::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

/* Responsive ayarlar */
@media (max-width: 767px) {
    .language-flags-mobil {
        gap: 3px;
    }

    .language-flags-mobil img {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 575px) {
    .language-flags-mobil {
        gap: 2px;
    }

    .language-flags-mobil img {
        width: 24px;
        height: 24px;
    }
}

/* Harita stilleri */
.map {
    width: 100%;
    height: 550px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobil cihazlarda harita yüksekliği */
@media (max-width: 768px) {
    .map {
        height: 350px;
    }
}

/* Harita marker stilleri */
.map-marker {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

/* Harita info window stilleri */
.gm-style .gm-style-iw {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.gm-style .gm-style-iw-c {
    padding: 0 !important;
}

/* Kişisel veriler checkbox stilleri */
.privacy-checkbox-container {
    position: relative;
    margin: 20px 0;
}

.privacy-checkbox-container .form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.privacy-checkbox-container .form-check-input {
    width: 16px;
    height: 16px;
    margin: 0;
    border: 2px solid #333;
    border-radius: 4px;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.privacy-checkbox-container .form-check-input:checked {
    background-color: transparent;
    border-color: #8B0000;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%238B0000' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 0 0 2px rgba(139, 0, 0, 0.3);
}

.privacy-checkbox-container .form-check-input:hover {
    border-color: #8B0000;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.2);
}

.privacy-checkbox-container .form-check-input:focus {
    border-color: #8B0000;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.4);
    outline: none;
}

.privacy-checkbox-container .form-check-label {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin: 0;
    cursor: pointer;
    user-select: none;
}

.privacy-checkbox-container .form-check-label a {
    color: #2e5584;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-checkbox-container .form-check-label a:hover {
    color: #1e7e34;
    text-decoration: underline;
}

/* Kare kutucuk icon stili */
.privacy-checkbox-container .privacy-icon {
    font-size: 16px;
    color: #2e5584;
    margin-right: 8px;
    vertical-align: middle;
    transition: all 0.3s ease;
    cursor: pointer;
}

.privacy-checkbox-container .privacy-icon:hover {
    color: #660000;
    transform: scale(1.1);
}

/* Check icon stili */
.privacy-checkbox-container .privacy-icon.checked {
    color: #28a745;
}

.privacy-checkbox-container .privacy-icon.checked:hover {
    color: #1e7e34;
}

/* Checkbox animasyonu */
.privacy-checkbox-container .form-check-input:checked {
    animation: checkboxPop 0.2s ease-in-out;
}

@keyframes checkboxPop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobil cihazlarda checkbox boyutunu artır */
@media (max-width: 768px) {
    .privacy-checkbox-container .form-check-input {
        width: 18px;
        height: 18px;
    }

    .privacy-checkbox-container .form-check-label {
        font-size: 13px;
    }
}

/* Custom Product Card Styles */
.shadow-hover {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shadow-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.transition-all {
    transition: all 0.3s ease;
}

.services-box-content a:hover {
    color: #d4af37 !important;
    text-decoration: none;
}

/* Product image styles - Perfect fit */
.services-box-img {
    overflow: hidden;
    position: relative;
    border-radius: 0 6px 6px 0;
}

.services-box-img .cover-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: all 0.3s ease;
    width: 100% !important;
    height: 100% !important;
}

/* Product image container hover effect */
.product-image-container:hover .cover-background {
    transform: scale(1.05);
}

/* Loading state */
.product-loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Loading state styles */
.text-tussock-yellow {
    color: #d4af37 !important;
}

.spinner-border.text-tussock-yellow {
    border-color: #d4af37;
    border-right-color: transparent;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-product-section .swiper-slide {
    animation: fadeInUp 0.6s ease-out;
}

.home-product-section .swiper-slide:nth-child(1) { animation-delay: 0.1s; }
.home-product-section .swiper-slide:nth-child(2) { animation-delay: 0.2s; }
.home-product-section .swiper-slide:nth-child(3) { animation-delay: 0.3s; }
.home-product-section .swiper-slide:nth-child(4) { animation-delay: 0.4s; }
.home-product-section .swiper-slide:nth-child(5) { animation-delay: 0.5s; }
.home-product-section .swiper-slide:nth-child(6) { animation-delay: 0.6s; }

/* Smooth animations */
.swiper-slide {
    transition: all 0.3s ease;
}

.swiper-slide-active {
    transform: scale(1.02);
}

/* Button hover effects */
.btn-link.text-tussock-yellow:hover {
    background-color: #d4af37;
    color: white !important;
    border-radius: 4px;
    padding: 8px 16px;
}

/* Category badge styles */
.product-category .badge {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 12px;
    background-color: #f8f9fa !important;
    color: #6c757d !important;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.product-category .badge:hover {
    background-color: #e9ecef !important;
    color: #495057 !important;
    transform: scale(1.05);
}

/* Product card enhancements */
.services-box-style-02 {
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.services-box-style-02:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

/* Responsive improvements */
@media (max-width: 576px) {
    .product-category .badge {
        font-size: 10px;
        padding: 3px 6px;
    }

    .services-box-content a.fs-19 {
        font-size: 16px !important;
    }

    .services-box-content p {
        font-size: 14px;
    }
}

/* Navigation button styles */
.swiper-button-next-style-2,
.swiper-button-prev-style-2 {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.swiper-button-next-style-2:hover,
.swiper-button-prev-style-2:hover {
    background-color: #d4af37;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.swiper-button-next-style-2 i,
.swiper-button-prev-style-2 i {
    font-size: 18px;
    color: #333;
    transition: color 0.3s ease;
}

.swiper-button-next-style-2:hover i,
.swiper-button-prev-style-2:hover i {
    color: white;
}

/* Pagination improvements */
.swiper-pagination-style-2 .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(212, 175, 55, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-style-2 .swiper-pagination-bullet-active {
    background-color: #d4af37;
    transform: scale(1.2);
}

.swiper-pagination-style-2 .swiper-pagination-bullet:hover {
    background-color: #d4af37;
    transform: scale(1.1);
}

/* Mobile responsive improvements */
@media (max-width: 767px) {
    .home-product-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .home-product-section h2 {
        font-size: 28px !important;
        line-height: 1.3;
    }

    .home-product-section .fs-17 {
        font-size: 14px !important;
    }

    .services-box-style-02 {
        margin-bottom: 20px;
    }

    .services-box-img.xs-h-300px {
        height: 200px !important;
    }

    .services-box-content a.fs-19 {
        font-size: 16px !important;
        line-height: 1.4;
    }

    .services-box-content p {
        font-size: 13px;
        line-height: 1.5;
    }

    .btn-large {
        padding: 8px 16px !important;
        font-size: 14px !important;
    }

    .product-category .badge {
        font-size: 10px;
        padding: 3px 6px;
    }

    .swiper-button-next-style-2,
    .swiper-button-prev-style-2 {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .home-product-section h2 {
        font-size: 24px !important;
    }

    .services-box-style-02 {
        border-radius: 4px;
    }

    .services-box {
        padding: 15px !important;
    }

    .services-box-icon i {
        font-size: 32px !important;
        margin-bottom: 15px !important;
    }

    .services-box-content {
        padding: 10px 0;
    }
}

/* Tablet responsive improvements */
@media (min-width: 768px) and (max-width: 991px) {
    .home-product-section h2 {
        font-size: 32px !important;
    }

    .services-box-style-02 {
        margin-bottom: 25px;
    }

    .services-box-img.xs-h-300px {
        height: 250px !important;
    }

    .swiper-button-next-style-2,
    .swiper-button-prev-style-2 {
        width: 45px;
        height: 45px;
    }
}

/* Large screen improvements */
@media (min-width: 1400px) {
    .home-product-section .container {
        max-width: 1320px;
    }

    .services-box-style-02 {
        margin-bottom: 30px;
    }

    .swiper-button-next-style-2,
    .swiper-button-prev-style-2 {
        width: 60px;
        height: 60px;
    }

    .swiper-button-next-style-2 i,
    .swiper-button-prev-style-2 i {
        font-size: 20px;
    }
}

/* Product title and button hover colors */
.services-box-content a.text-dark-gray-hover:hover {
    color: #2e5584 !important;
}

.btn-link.text-tussock-yellow:hover {
    color: #2e5584 !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

/* Product image container specific styles */
.product-image-container {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    width: 100% !important;
    height: 100% !important;
    position: relative;
    overflow: hidden;
}

.product-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: transform 0.3s ease;
}

.product-image-container:hover::before {
    transform: scale(1.05);
}

/* Responsive image adjustments */
@media (max-width: 768px) {
    .services-box-img.xs-h-300px {
        height: 200px !important;
    }

    .product-image-container:hover .cover-background {
        transform: scale(1.02);
    }
}

@media (max-width: 576px) {
    .services-box-img.xs-h-300px {
        height: 180px !important;
    }

    .product-image-container:hover .cover-background {
        transform: none;
    }
}

/* Large screen optimizations */
@media (min-width: 1400px) {
    .services-box-img.xs-h-300px {
        height: 350px !important;
    }

    .product-image-container:hover .cover-background {
        transform: scale(1.08);
    }
}

/* Mobilde background image'ı tamamen gizle */
    @media (max-width: 767.98px) {
        .mobile-bg-height {
            background-image: none !important;
            background-color: transparent !important;
            background: none !important;
            background-size: cover !important;
            background-position: center !important;
            background-repeat: no-repeat !important;
            min-height: 98px;
        }

        /* Inline style'ı da override et */
        .mobile-bg-height[style*="background-image"] {
            background-image: none !important;
            background: none !important;
        }

        /* Mobilde sağ kolonu tamamen gizle */
        .col-md-6:last-child {
            display: none !important;
        }

        /* Sol kolonu tam genişlik yap */
        .col-md-6:first-child {
            flex: 0 0 100% !important;
            max-width: 100% !important;
        }
    }

    /* PDF icon stilleri */
    .pdf-download-link {
        display: inline-block;
        text-decoration: none;
    }

    .pdf-icon {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }

    .pdf-icon:hover {
        transform: scale(1.1);
    }

    .pdf-icon:active {
        transform: scale(0.95);
    }

    /* Mobilde buttonları ortala */
    @media (max-width: 767.98px) {
        .col.text-start.text-sm-end {
            text-align: center !important;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .pdf-download-link {
            margin: 0 !important;
            text-align: center;
        }

        .btn {
            margin: 0 !important;
            text-align: center;
        }

        /* PNG'leri ortala */
        .pdf-icon {
            display: block;
            margin: 0 auto;
        }

        /* Button içeriğini ortala */
        .btn span {
            text-align: center;
            display: block;
        }
    }

    /* PDF icon stilleri */
        .pdf-download-link {
            display: inline-block;
            text-decoration: none;
        }

        .pdf-icon {
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
            transition: all 0.3s ease;
        }

        .pdf-icon:hover {
            transform: scale(1.1);
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
        }

        .pdf-icon:active {
            transform: scale(0.95);
        }

        /* Button gölge efektleri */
        .btn {
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .btn:hover {
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
        }

        .btn:active {
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
            transform: translateY(0);
        }

        /* Mobilde buttonları ortala */
        @media (max-width: 767.98px) {
            .col.text-start.text-sm-end {
                text-align: center !important;
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: center;
                gap: 15px;
            }

            .pdf-download-link {
                margin: 0 !important;
                text-align: center;
            }

            .btn {
                margin: 0 !important;
                text-align: center;
            }

            /* PNG'leri ortala */
            .pdf-icon {
                display: block;
                margin: 0 auto;
            }

            /* Button içeriğini ortala */
            .btn span {
                text-align: center;
                display: block;
            }
        }


        /* PDF icon stilleri */
        .pdf-download-link {
            display: inline-block;
            text-decoration: none;
            position: relative;
        }

        .pdf-icon {
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
            transition: all 0.3s ease;
        }

        .pdf-icon:hover {
            transform: scale(1.1);
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
        }

        .pdf-icon:active {
            transform: scale(0.95);
        }

        /* Button gölge efektleri */
        .btn {
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .btn:hover {
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
        }

        .btn:active {
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
            transform: translateY(0);
        }

        /* Tooltip stilleri */
        .tooltip {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            margin-bottom: 8px;
        }

        .tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 6px solid transparent;
            border-top-color: rgba(0, 0, 0, 0.8);
        }

        /* Hover'da tooltip göster */
        .pdf-download-link:hover .tooltip,
        .btn:hover .tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(-5px);
        }

        /* Mobilde buttonları ortala */
        @media (max-width: 767.98px) {
            .col.text-start.text-sm-end {
                text-align: center !important;
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: center;
                gap: 15px;
            }

            .pdf-download-link {
                margin: 0 !important;
                text-align: center;
            }

            .btn {
                margin: 0 !important;
                text-align: center;
            }

            /* PNG'leri ortala */
            .pdf-icon {
                display: block;
                margin: 0 auto;
            }

            /* Button içeriğini ortala */
            .btn span {
                text-align: center;
                display: block;
            }

            /* Mobilde tooltip'leri gizle */
            .tooltip {
                display: none;
            }
        }

        /* Teklif Modal Stilleri - Resimdeki Tasarıma Uygun */
        #teklifModal .modal-content {
            border-radius: 12px;
            overflow: hidden;
            border: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        #teklifModal .modal-header {
            background: white;
            padding: 1.5rem 1.5rem 1rem 1.5rem;
            border: none;
            position: relative;
        }

        #teklifModal .modal-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 0.5rem;
        }

        #teklifModal .modal-body {
            background: white;
            padding: 0 1.5rem 1.5rem 1.5rem;
        }

        #teklifModal .form-control {
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 0.75rem 1rem;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            background: white;
        }

        #teklifModal .form-control:focus {
            border-color: #0d6efd;
            border-left: none;
            box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
            outline: none;
        }

        #teklifModal .form-control::placeholder {
            color: #6c757d;
            font-size: 0.9rem;
        }

        #teklifModal .input-group-text {
            border: 1px solid #dee2e6;
            background: white;
            color: #495057;
            font-weight: 500;
            font-size: 0.9rem;
        }



        #teklifModal .input-group .form-control {
            border-left: none;
        }

        #teklifModal .input-group .form-control:focus {
            border-left: none;
        }





        #teklifModal .form-check-input:checked {
            background-color: #0d6efd;
            border-color: #0d6efd;
        }

        #teklifModal .form-check-label {
            color: #6c757d;
            font-size: 0.85rem;
            line-height: 1.4;
        }

        #teklifModal .btn-primary {
            background: #2e5584;
            border: none;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(46, 85, 132, 0.3);
            min-width: 200px;
            max-width: 100%;
        }

        #teklifModal .btn-primary:hover {
            background: #1e3a5a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(46, 85, 132, 0.4);
        }

        #teklifModal .btn-primary:active {
            transform: translateY(0);
        }

        #teklifModal .btn-close {
            opacity: 0.7;
            transition: all 0.2s ease;
            z-index: 1050;
            background-size: 1.2em;
            width: 1.2em;
            height: 1.2em;
            filter: brightness(0.8);
        }

        #teklifModal .btn-close:hover {
            opacity: 1;
            transform: scale(1.1);
            filter: brightness(1);
        }

        /* Responsive Modal */
        @media (max-width: 767.98px) {
            #teklifModal .modal-dialog {
                margin: 1rem;
            }

            #teklifModal .modal-header {
                padding: 1.25rem 1.25rem 0.75rem 1.25rem;
            }

            #teklifModal .modal-body {
                padding: 0 1.25rem 1.25rem 1.25rem;
            }

            #teklifModal .modal-title {
                font-size: 1.1rem;
            }

            #teklifModal .btn-primary {
                padding: 0.75rem 1.25rem;
                font-size: 0.95rem;
            }
        }

/* Telefon ikonu animasyonları */
.phone-icon-animation {
    position: relative;
    transition: all 0.3s ease;
}

.phone-icon-animation:hover {
    transform: scale(1.1) rotate(5deg);
    animation: phoneRing 0.6s ease-in-out;
}

.phone-icon-animation:hover::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(0, 128, 0, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: phonePulse 1.5s infinite;
}

/* Telefon çalma animasyonu */
@keyframes phoneRing {
    0%,
    100% {
        transform: scale(1.1) rotate(5deg);
    }

    25% {
        transform: scale(1.15) rotate(-5deg);
    }

    50% {
        transform: scale(1.2) rotate(5deg);
    }

    75% {
        transform: scale(1.15) rotate(-5deg);
    }
}

/* Dalga efekti */
@keyframes phonePulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Sürekli hafif titreşim */
.phone-icon-animation {
    animation: gentleShake 3s ease-in-out infinite;
}

@keyframes gentleShake {
    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(1deg);
    }

    75% {
        transform: rotate(-1deg);
    }
}

/* Hover'da titreşimi durdur */
.phone-icon-animation:hover {
    animation: phoneRing 0.6s ease-in-out;
}

/* Counter animasyonları */
.counter {
    transition: all 0.3s ease;
}

.counter.counter-animated {
    animation: counterPulse 0.5s ease-out;
}

@keyframes counterPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Counter hover efekti */
.counter:hover {
    transform: scale(1.02);
    transition: transform 0.2s ease;
}

/* Counter sayı değişimi sırasında renk geçişi */
.counter.counter-animated {
    color: #007bff !important;
    transition: color 0.3s ease;
}

/* Counter animasyonu tamamlandıktan sonra normal renge dön */
.counter.counter-animated:not(:hover) {
    color: inherit !important;
}

/* WhatsApp butonu stilleri */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 70px;
    height: 70px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsappWave 2s infinite;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsappWave2 2s infinite 0.5s;
    pointer-events: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-button:active {
    transform: scale(0.95);
}

/* Dalgalı animasyon */
@keyframes whatsappWave {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0.3);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

/* İkinci dalga animasyonu (gecikmeli) */
@keyframes whatsappWave2 {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0.2);
        transform: scale(1.03);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

/* Mobil cihazlarda gizle */
@media (max-width: 768px) {
    .whatsapp-button {
        display: none;
    }
}

/* QR kod modal stilleri */
.whatsapp-qr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    backdrop-filter: blur(5px);
}

.whatsapp-qr-modal.show {
    display: flex;
}

.whatsapp-qr-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.whatsapp-qr-header {
    margin-bottom: 25px;
}

.whatsapp-qr-header h3 {
    color: #25d366;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.whatsapp-qr-header p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

.whatsapp-qr-code {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px dashed #25d366;
}

.whatsapp-qr-code img {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}



.whatsapp-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f8f9fa;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-close:hover {
    background: #e9ecef;
    color: #333;
}

/* Mobil bottom banner stilleri */
.mobile-bottom-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #5f8b6000;
    padding: 0px 0;
    display: none;
    z-index: 999;
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 8px 8px 0 0;
}

.mobile-bottom-banner .banner-buttons {
    display: flex;
    gap: 0;
    align-items: stretch;
    position: relative;
}

.mobile-bottom-banner .banner-button {
    flex: 1;
    border: none;
    border-radius: 0;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
    position: relative;
}

/* HEMEN ARAYIN butonu - Yeşil */
.mobile-bottom-banner .banner-button.call-button {
    background: #609464;
}

/* FİYAT AL butonu - Mavi */
.mobile-bottom-banner .banner-button.price-button {
    background: #2e5584;
}

/* Hover efektleri - Yeşil buton */
.mobile-bottom-banner .banner-button.call-button:hover {
    background: #6fa570;
    color: white;
    text-decoration: none;
}

.mobile-bottom-banner .banner-button.call-button:active {
    background: #609464;
}

/* Hover efektleri - Mavi buton */
.mobile-bottom-banner .banner-button.price-button:hover {
    background: #3a6290;
    color: white;
    text-decoration: none;
}

.mobile-bottom-banner .banner-button.price-button:active {
    background: #2e5584;
}

.mobile-bottom-banner .banner-button i {
    font-size: 16px;
    color: white;
}

/* Ayırıcı çizgi */
.mobile-bottom-banner .banner-buttons::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: #a0b8a0;
    transform: translateX(-50%);
}

/* Sadece mobil cihazlarda göster */
@media (max-width: 768px) {
    .mobile-bottom-banner {
        display: block;
    }

    /* WhatsApp butonunu banner'ın üstüne taşı */
    .whatsapp-button {
        bottom: 100px;
    }
}

/* Tablet ve üstünde gizle */
@media (min-width: 769px) {
    .mobile-bottom-banner {
        display: none;
    }
}

/* Hafif oval slider buton stilleri */
.btn.btn-rounded.btn-extra-large {
    border-radius: 3px !important;
}

.btn.btn-rounded.btn-large {
    border-radius: 3px !important;
}

.btn.btn-rounded.btn-medium {
    border-radius: 3px !important;
}

.btn.btn-rounded.btn-small {
    border-radius: 3px !important;
}

.btn.btn-rounded.btn-very-small {
    border-radius: 3px !important;
}

/* Tüm rounded butonları hafif oval yap */
.btn-rounded {
    border-radius: 3px !important;
}

/* Slider butonları için özel hafif oval stil */
.slider-item .btn,
.home-slider .btn {
    border-radius: 3px !important;
    box-shadow: none !important;
}

/* Hover efektlerini koru ama hafif oval yap */
.btn:hover {
    border-radius: 3px !important;
}
