 /* Code by: @mceylanofficial
	Theme for Royal Property Alanya  */
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: white;
            color: #333;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: 700;
            cursor: default;
            transition: all 0.3s ease;
            border: 1px solid #ddd;
        }

        .btn-primary {
            background-color: #2c3e50;
            color: white;
            border: none;
        }

        .btn-primary:hover {
            background-color: #1a252f;
        }

        .btn-blue {
            background-color: #3498db;
            color: white;
            border: none;
        }

        .btn-blue:hover {
            background-color: #2980b9;
        }

         .top-bar {
            background-color: #2c3e50;
            color: white;
            padding: 10px 0;
            font-size: 14px;
            transition: transform 0.3s ease;
        }

        .top-bar.hidden {
            transform: translateY(-100%);
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info {
            display: flex;
            gap: 20px;
        }

        .social-media {
            display: flex;
            gap: 15px;
        }

        .social-media a {
            color: white;
            font-size: 16px;
            transition: color 0.3s;
        }

        .social-media a:hover {
            color: #1abc9c;
        }

        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 40px;
            z-index: 1000;
            transition: top 0.3s ease;
        }

        .navbar.top {
            top: 0;
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 90px;
        }

        .nav-links {
            display: flex;
            gap: 25px;
        }

        .nav-links a {
            font-weight: 600;
            color: #2c3e50;
            font-size: 18px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #1abc9c;
        }

        .nav-links li {
            position: relative;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            padding: 10px 0;
            min-width: 180px;
            z-index: 1001;
        }

        .nav-links li:hover > .dropdown-menu {
            display: block;
        }

        .dropdown-menu a {
            padding: 12px 20px;
            display: block;
            transition: background-color 0.3s, color 0.3s;
        }

        .dropdown-menu a:hover {
            background-color: #f5f5f5;
            color: #1abc9c;
        }

        .nav-links .has-dropdown > a {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-links .has-dropdown > a i {
            margin-left: auto;
            font-size: 14px;
            transition: transform 0.3s ease;
        }

        .nav-links .has-dropdown:hover > a i {
            transform: rotate(180deg);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .language-selector,
        .currency-selector {
            position: relative;
        }

        .language-btn,
        .currency-btn {
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            font-weight: 600;
            font-size: 16px;
            color: #2c3e50;
            padding: 5px 10px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .language-btn:hover,
        .currency-btn:hover {
            background-color: #f0f0f0;
        }

        .language-btn img,
        .currency-btn img {
            width: 24px;
            height: 16px;
            border: 1px solid #ddd;
            vertical-align: middle;
        }

        .language-dropdown,
        .currency-dropdown {
            position: absolute;
            right: 0;
            top: 100%;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            padding: 10px 0;
            min-width: 120px;
            display: none;
            z-index: 1001;
        }

        .language-dropdown a,
        .currency-dropdown a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 15px;
            transition: background-color 0.3s;
        }

        .language-dropdown a:hover,
        .currency-dropdown a:hover {
            background-color: #f5f5f5;
        }

        .language-selector:hover .language-dropdown,
        .currency-selector:hover .currency-dropdown {
            display: block;
        }

        .action-buttons {
            display: flex;
            gap: 10px;
        }

        .action-btn {
            width: 40px;
            height: 40px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            transition: all 0.3s;
        }

        .whatsapp-btn {
            background-color: #1abc9c;
        }

        .whatsapp-btn:hover {
            background-color: #16a085;
        }

        .phone-btn {
            background-color: #3498db;
        }

        .phone-btn:hover {
            background-color: #2980b9;
        }

        .menu-toggle {
            display: none;
        }

        .close-btn {
            display: none;
        }

        .header-section {
            height: 200px;
            background-color: #2c3e50;
            position: relative;
            margin-top: 40px;
            display: flex;
            align-items: center;
            justify-content: left;
        }

        .header-section h1 {
            color: white;
            font-size: 28px;
            font-weight: 700;
            text-align: left;
            padding: 0 35px;
            margin-top: 70px;
            margin-left: 320px;
        }

        .breadcrumb {
            margin-top: 150px;
            padding: 0 35px;
			margin-left:-240px;
            
        }  
  @media (max-width: 768px) {
          

		.breadcrumb {
            margin-top: 60px;
            padding: 0 35px;
			
            
        }
   }
   
     @media (min-width: 769px) and (max-width: 1280px) {
            .header-section h1 {
                color: white;
                font-size: 28px;
                font-weight: 700;
                text-align: left;
                padding: 0 35px;
                margin-top: 70px;
                margin-left: 5px;
            }
        } 

        .breadcrumb a, .breadcrumb span {
            color: #bdc3c7;
            font-size: 14px;
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb a:hover {
            color: #1abc9c;
        }

        .breadcrumb span {
            margin: 0 5px;
        }

        
        footer {
            background: linear-gradient(135deg, #2c3e50, #3498db);
            color: white;
            padding: 70px 0 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-logo img {
            height: 90px;
        }

        .footer-about p {
            color: #bdc3c7;
            margin-bottom: 20px;
            font-size: 18px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social a {
            color: white;
            font-size: 22px;
            transition: color 0.3s, transform 0.3s;
        }

        .footer-social a:hover {
            color: #1abc9c;
            transform: scale(1.2);
        }

        .footer-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #bdc3c7;
            font-size: 18px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-contact-item {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
            color: #bdc3c7;
            font-size: 18px;
        }

        .footer-contact-item i {
            color: #1abc9c;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
            text-align: center;
            color: #bdc3c7;
            font-size: 16px;
        }

        
        .property-listing-page {
            padding: 50px 0;
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 40px;
            align-items: start;
        }

        .sidebar {
            position: sticky;
            top: 100px;
            z-index: 900;
            padding-bottom: 20px;
        }

        .filter-section {
            border: 1px solid #ccc;
            border-radius: 10px;
            padding: 30px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .filter-section h3 {
            font-size: 28px;
            color: #2c3e50;
            margin-bottom: 20px;
            border-bottom: 2px solid #eee;
            padding-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .filter-section h3 i {
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .filter-section.collapsed h3 i {
            transform: rotate(-180deg);
        }

        .filter-group {
            margin-bottom: 20px;
        }

        .filter-group label {
            display: block;
            font-size: 15px;
            color: #555;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .search-container {
            display: flex;
            align-items: center;
        }

        .filter-group input {
            width: calc(100% - 40px);
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px 0 0 8px;
            font-size: 16px;
            transition: border-color 0.3s, box-shadow 0.3s;
            display: inline-block;
            vertical-align: middle;
        }

        .filter-group input:focus {
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
            outline: none;
        }

        .filter-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s, box-shadow 0.3s;
            margin-top: 10px; /* Çizgiden uzaklaştırma */
        }

        .filter-group select:focus {
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
            outline: none;
        }

        .price-range {
            display: flex;
            gap: 10px;
            align-items: center;
            margin-top: 10px;
            margin-bottom: 20px;
        }

        .price-range input[type="number"] {
            width: 50%;
            padding: 10px 12px;
            text-align: center;
        }

        
        #price-slider {
            margin-top: 25px;
            margin-bottom: 15px;
        }
        .noUi-connect {
            background: #3498db;
        }
        .noUi-handle {
            border: 1px solid #3498db;
            background: #fff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
            border-radius: 50%;
            cursor: grab;
            width: 22px;
            height: 22px;
            top: -6px;
        }
        .noUi-handle:hover {
            cursor: grab;
        }
        .noUi-horizontal .noUi-handle {
            right: -11px;
        }
        .noUi-horizontal {
            height: 10px;
        }
        .noUi-handle:after, .noUi-handle:before {
            display: none;
        }

        .search-button {
            padding: 12px 15px;
            background-color: #1abc9c;
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.3s;
            vertical-align: middle;
            display: inline-block;
        }

        .search-button:hover {
            background-color: #16a085;
        }

        .filter-group .search-button {
            border-radius: 0 8px 8px 0;
        }

        .filter-submit-button {
            width: 100%;
            padding: 15px;
            background-color: #1abc9c;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-top: 10px;
        }

        .filter-submit-button:hover {
            background-color: #16a085;
        }

        .main-content {
            width: 100%;
        }

        .property-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .property-card {
            display: flex;
            align-items: flex-start;
            background-color: white;
            border: 1px solid #ccc;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .property-card:hover {
            transform: translateY(-5px);
        }

        .property-image-container {
            width: 400px;
            height: 250px;
            position: relative;
        }

        .property-image .swiper {
            width: 100%;
            height: 100%;
        }

        .property-image .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .property-image .swiper-button-prev,
        .property-image .swiper-button-next {
            color: #fff;
            background-color: #3498db;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            transition: background-color 0.3s;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .property-image .swiper-button-prev:hover,
        .property-image .swiper-button-next:hover {
            background-color: #2980b9;
        }

        .property-image .swiper-button-prev {
            left: 10px;
        }
        .property-image .swiper-button-next {
            right: 10px;
        }
        .swiper-button-prev::after,
        .swiper-button-next::after {
            font-size: 14px !important;
        }

        .listing-no,
        .furnished-tag,
        .video-tag {
            position: absolute;
            z-index: 10;
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .listing-no {
            top: 10px;
            left: 10px;
            background-color: #3498db;
        }

        .furnished-tag {
            bottom: -10px;
            left: 10px;
            background-color: rgba(0, 0, 0, 0.7);
        }

        .video-tag {
            top: 10px;
            right: 10px;
            background-color: #e74c3c;
        }

        .property-content {
            padding: 20px;
            flex-grow: 1;
        }

        .property-title {
            font-size: 22px;
            color: #2c3e50;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .property-price {
            font-size: 24px;
            color: #CC3300;
            font-weight: 800;
            margin-bottom: 15px;
            text-align: center;
        }

        .property-details {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 20px;
        }

        .property-detail {
            font-size: 15px;
            color: #555;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .property-detail i {
            color: #3498db;
            font-size: 16px;
        }

        .property-actions {
            display: flex;
            gap: 15px;
        }

        .info-btn,
        .whatsapp-btn {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 5px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            width: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .info-btn:hover {
            background-color: #2980b9;
        }

        .whatsapp-btn {
            background-color: #1abc9c;
        }

        .whatsapp-btn:hover {
            background-color: #16a085;
        }

        .info-btn i {
            font-size: 18px;
        }

        .whatsapp-btn i {
            font-size: 18px;
        }

        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
            gap: 10px;
        }

        .pagination a,
        .pagination span {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 50px;
            height: 50px;
            padding: 0 18px;
            border-radius: 15px;
            background-color: #f0f0f0;
            color: #555;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .pagination a:hover {
            background-color: #1abc9c;
            color: white;
            box-shadow: 0 6px 12px rgba(26, 188, 156, 0.3);
            transform: translateY(-2px);
        }

        .pagination .current-page {
            background-color: #3498db;
            color: white;
            box-shadow: 0 6px 12px rgba(52, 152, 219, 0.3);
            transform: translateY(-2px);
        }

        
        @media (max-width: 992px) {
            .property-listing-page {
                grid-template-columns: 1fr;
                padding: 50px 15px;
            }

            .sidebar {
                width: 100%;
                position: static;
                top: auto;
                padding-top: 0;
            }

            .filter-section {
                padding: 30px 20px;
            }

            .main-content {
                order: 2;
            }

            .sidebar {
                order: 1;
            }

            .property-image-container {
                width: 100%;
                height: 200px;
            }

            .property-card {
                flex-direction: column;
                align-items: stretch;
            }

            .property-content {
                padding: 15px;
            }

            .property-title {
                font-size: 20px;
                margin-top: 50px;
                text-align: left;
                position: inline;
            }

            .property-price {
                font-size: 28px;
                text-align: center;
                margin-bottom: 15px;
            }

            .property-details {
                gap: 25px;
            }

            .property-actions {
                flex-direction: column;
                gap: 10px;
            }

            .info-btn,
            .whatsapp-btn {
                width: 100%;
                padding: 12px 20px;
                gap: 6px;
            }

            .info-btn i,
            .whatsapp-btn i {
                font-size: 16px;
            }

            .property-image .swiper-button-prev,
            .property-image .swiper-button-next {
                color: #fff;
                background-color: #3498db;
                width: 30px;
                height: 30px;
                border-radius: 50%;
                transition: background-color 0.3s;
                font-size: 14px;
            }

            .property-image .swiper-button-prev:hover,
            .property-image .swiper-button-next:hover {
                background-color: #2980b9;
            }

            .listing-no {
                top: 10px;
                left: 10px;
                background-color: #3498db;
            }

            .furnished-tag {
                bottom: -110px;
                left: 10px;
                background-color: rgba(0, 0, 0, 0.7);
            }

            .video-tag {
                top: 10px;
                right: 10px;
                background-color: #e74c3c;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                top: 0;
                position: fixed;
                width: 100%;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            }


  .furnished-tag {
                bottom: -40px;
                left: 10px;
                background-color: rgba(0, 0, 0, 0.7);
            }

            .navbar-container {
                flex-wrap: nowrap;
                padding: 10px 15px;
                justify-content: space-between;
                align-items: center;
            }

            .logo img {
                height: 70px;
            }

            .nav-links {
                display: block;
                position: fixed;
                top: 0;
                right: -300px;
                width: 280px;
                max-width: 80%;
                height: 100%;
                background-color: white;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
                transition: right 0.3s ease-in-out;
                overflow-y: auto;
                flex-direction: column;
                align-items: flex-start;
                z-index: 1001;
            }

            .nav-links.active {
                right: 0;
                padding: 70px 20px 20px 20px;
            }

            .nav-links li {
                width: 100%;
                text-align: left;
                margin-bottom: 10px;
            }

            .nav-links li a {
                padding: 10px 0;
                display: block;
            }

            .dropdown-menu {
                position: static;
                box-shadow: none;
                padding: 0;
                margin-top: 5px;
                width: 100%;
                display: none !important;
            }

            .nav-links li.active-dropdown > .dropdown-menu {
                display: block !important;
            }

            .nav-links .has-dropdown > a i {
                display: inline-block;
                transform: rotate(0deg);
                margin-left: auto;
            }

            .nav-links .has-dropdown.active-dropdown > a i {
                transform: rotate(180deg);
            }

            .menu-toggle {
                display: block;
                cursor: pointer;
            }

            .close-btn {
                display: none;
                align-items: center;
                justify-content: center;
                position: absolute;
                top: 15px;
                right: 15px;
                font-size: 20px;
                color: white;
                background-color: #7f8c8d;
                width: 38px;
                height: 38px;
                border-radius: 50%;
                cursor: pointer;
                box-shadow: 0 2px 5px rgba(0,0,0,0.2);
                z-index: 1002;
                transition: background-color 0.3s;
            }

            .nav-links.active .close-btn {
                display: flex;
            }

            .close-btn:hover {
                background-color: #95a5a6;
            }

            .nav-actions {
                display: flex;
                align-items: center;
                gap: 10px;
                flex-grow: 1;
                justify-content: flex-end;
            }

            .nav-actions .action-buttons {
                display: none;
            }

            .currency-selector,
            .language-selector {
                position: relative;
            }

            .currency-btn,
            .language-btn {
                background-color: #f0f0f0;
                border: 1px solid #ccc;
                padding: 8px 12px;
                border-radius: 20px;
                font-size: 14px;
                box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            }

            .language-btn img {
                width: 20px;
                height: 14px;
            }

            .currency-dropdown,
            .language-dropdown {
                position: absolute;
                top: 100%;
                right: 0;
                left: auto;
                width: 120px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                border-radius: 5px;
                padding: 10px 0;
                margin-top: 5px;
                background-color: white;
            }

            .language-selector:hover .language-dropdown,
            .currency-selector:hover .currency-dropdown {
                display: none;
            }

            .header-section {
                height: 100px;
                margin-top: 30px;
            }

            .header-section h1 {
                font-size: 20px;
                margin-top: 10px;
                margin-left: 35px;
            }

            .breadcrumb {
                margin-left: -75px;
                padding: 0 15px;
            }

            .property-image-container {
                width: 100%;
                height: 200px;
            }

            footer .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .footer-about,
            .footer-links-section,
            .footer-contact {
                padding-bottom: 20px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .footer-about:last-child,
            .footer-links-section:last-child,
            .footer-contact:last-child {
                border-bottom: none;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-contact-item {
                justify-content: center;
            }

            .filter-section h3 i {
                display: inline-block; /* Mobilde görünür */
            }

            .filter-section .filter-content {
                display: none;
            }

            .filter-section.active .filter-content {
                display: block;
            }
        }

        @media (min-width: 769px) {
            .filter-section h3 i {
                display: none; /* Masaüstünde gizle */
            }
        }
		
		
.sold .property-image img {
    filter: grayscale(100%); 
}

.sold-ribbon {
    position: absolute;
    top: 20px;
    right: -50px;
    transform: rotate(47deg);
    background-color: red;
    color: white;
    padding: 5px 60px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    z-index: 10;
    text-transform: uppercase;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); 
}


.sold-ribbon {
    pointer-events: none;
}