  /* 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;
        }

        /* Üst Bilgi Çubuğu */
        .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;
        }

        /* Navigasyon */
        .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 */
        .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;
        } 

        @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;
            }
        } 

        @media (max-width: 768px) {
            .header-section {
                height: 100px;
                background-color: #2c3e50;
                position: relative;
                margin-top: 30px;
                display: flex;
                align-items: center;
                justify-content: left;
            }

            .header-section h1 {
                color: white;
                font-size: 20px;
                font-weight: 500;
                text-align: left;
                padding: 0 35px;
                margin-top: 10px;
                margin-left: -5px;
            }
        }

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

        .main-content {
            grid-column: 1 / 2;
        }

        .sidebar {
            grid-column: 2 / 3;
            position: sticky;
            top: 100px;
            z-index: 900;
            padding-bottom: 20px;
        }

        .detail-top-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

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

        .detail-type-buttons .btn {
            padding: 12px 25px;
            font-size: 18px;
            font-weight: 700;
            background-color: #f0f0f0;
            color: #2c3e50;
            border: 1px solid #ddd;
            cursor: default;
        }

        .detail-type-buttons .btn.active {
            background-color: #3498db;
            color: white;
            border-color: #3498db;
        } 
		
		.detail-type-buttons .btn.red {
            background-color: #1abc9c;
            color: white;
            border-color: #1abc9c;
        }

        .detail-price-button {
            padding: 12px 25px;
            font-size: 20px;
            font-weight: 800;
            background-color: #CC3300;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: default;
        }

        .property-main-title {
            font-size: 38px;
            color: #2c3e50;
            margin-bottom: 30px;
            font-weight: 800;
            display: none;
        }

        /* Property Gallery */
        .property-gallery {
            width: 775px;
            margin-bottom: 30px;
        }

        .main-slider {
            width: 760px;
            height: 500px;
            margin-bottom: 10px;
        }

        .main-slider .swiper-slide {
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        .main-slider .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        .main-slider .swiper-button-prev,
        .main-slider .swiper-button-next {
            color: #fff;
            background-color: rgba(0, 0, 0, 0.5);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: background-color 0.3s;
        }

        .main-slider .swiper-button-prev:hover,
        .main-slider .swiper-button-next:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .main-slider .swiper-button-prev:after,
        .main-slider .swiper-button-next:after {
            font-size: 20px;
        }

        .thumb-slider {
            width: 760px;
        }

        .thumb-slider .swiper-slide {
            width: 120px;
            height: 100px;
            opacity: 0.6;
            transition: opacity 0.3s, border 0.3s;
            cursor: pointer;
        }

        .thumb-slider .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 5px;
            border: 2px solid transparent;
        }

        .thumb-slider .swiper-slide-thumb-active {
            opacity: 1;
            border: 2px solid #ff0000;
        }

        .bordered-section {
            border: 1px solid #ccc;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            background-color: white;
        }

        .bordered-section h3 {
            font-size: 28px;
            color: #2c3e50;
            margin-bottom: 20px;
            border-bottom: 2px solid #eee;
            padding-bottom: 10px;
        }

        .property-details-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .detail-item {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 18px;
            color: #555;
            font-weight: 600;
        }

        .detail-item i {
            color: #3498db;
            font-size: 24px;
        }

        .property-description p {
            font-size: 18px;
            color: #444;
            line-height: 1.8;
        }

        .property-video iframe,
        .property-map iframe {
            width: 100%;
            height: 400px;
            border: none;
            border-radius: 8px;
        }

        .property-features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 17px;
            color: #444;
            font-weight: 500;
        }

        .feature-item i {
            color: #27ae60;
            font-size: 20px;
        }

        .sidebar-agent-info {
            background-color: #2c3e50;
            color: white;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
            text-align: center;
        }

        .agent-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid #1abc9c;
            margin: 0 auto 20px;
        }

        .agent-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .agent-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .agent-contact-item {
            display: flex;
            align-items: center;
            justify-content: left;
            gap: 10px;
            font-size: 18px;
            margin-bottom: 8px;
            margin-top: 15px;
        }

        .agent-contact-item i {
            color: #1abc9c;
            font-size: 20px;
        }

        .sidebar-contact-form {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .sidebar-contact-form h3 {
            font-size: 24px;
            color: #2c3e50;
            margin-bottom: 20px;
            text-align: center;
        }

        .form-field {
            margin-bottom: 18px;
        }

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

        .form-field input[type="text"],
        .form-field input[type="email"],
        .form-field textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s, box-shadow 0.3s;
            box-sizing: border-box;
        }

        .form-field input[type="text"]:focus,
        .form-field input[type="email"]:focus,
        .form-field textarea:focus {
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
            outline: none;
        }

        .form-field textarea {
            min-height: 120px;
            resize: vertical;
        }

        .phone-input-group {
            display: flex;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            align-items: center;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

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

        .phone-input-prefix {
            display: flex;
            align-items: center;
            padding: 0 10px;
            background-color: #f8f8f8;
            border-right: 1px solid #eee;
            font-size: 16px;
            color: #555;
            font-weight: 600;
        }

        .phone-input-prefix img {
            width: 24px;
            height: 16px;
            margin-right: 8px;
        }

        .phone-input-group input {
            flex-grow: 1;
            border: none;
            padding: 12px 15px;
            font-size: 16px;
            background-color: transparent;
        }

        .phone-input-group input:focus {
            outline: none;
            box-shadow: none;
        }

        .sidebar-contact-form .btn-primary {
            width: 100%;
            padding: 15px;
            font-size: 18px;
            border-radius: 8px;
        }

        /* Footer */
        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;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .property-detail-page {
                grid-template-columns: 1fr;
            }

            .main-content {
                width: 100%;
                grid-column: auto;
                padding: 0 15px;
            }

            .sidebar {
                width: 100%;
                position: static;
                top: auto;
                padding-top: 30px;
                grid-column: auto;
                padding: 0 15px;
            }

            .property-details-grid {
                grid-template-columns: 1fr;
            }

            .property-features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

            .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;
            }

            .property-gallery {
                width: 380px;
            }

            .main-slider {
                width: 380px;
                height: 300px;
            }

            .thumb-slider {
                width: 380px;
            }

            .thumb-slider .swiper-slide {
                width: 100px;
                height: 60px;
            }

            .property-main-title {
                font-size: 30px;
            }

            .detail-type-buttons .btn,
            .detail-price-button {
                padding: 10px 15px;
                font-size: 16px;
            }

            .property-features-grid {
                grid-template-columns: 1fr;
            }

            .feature-item {
                font-size: 16px;
            }

            .property-detail-page {
                grid-template-columns: 1fr;
            }

            .main-content {
                width: 100%;
                grid-column: auto;
                padding: 0 15px;
            }

            .sidebar {
                width: 100%;
                position: static;
                top: auto;
                padding-top: 30px;
                grid-column: auto;
                padding: 0 15px;
            }

            .property-details-grid {
                grid-template-columns: 1fr;
            }

            .property-features-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }
		
		
.grayscale {
    filter: grayscale(100%);
    opacity: 0.8;
}


.property-status-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    z-index: 10;
}

.property-status-label.sold {
    background: #ff4757;
}

.property-status-label.rented {
    background: #2ed573;
}

.swiper-slide {
    position: relative;
}

.custom-marker {
        padding: 0;
        font-family: 'Arial', sans-serif;
        width: 280px;
        position: relative;
    }
    .marker-image img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }
    .marker-details {
        padding: 10px;
        background: white;
    }
    .marker-info { 
        display: flex;
        gap: 6px; 
        margin-bottom: 8px;
        flex-wrap: wrap; 
        justify-content: center; 
    }
    .marker-info span { 
        padding: 4px 8px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 600;
        color: white;
        white-space: nowrap;
    }
  
    .marker-title { 
        background: #007bff; 
        color: white;
        padding: 4px 8px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 600;
        white-space: nowrap;
        margin-bottom: 6px; 
        text-align: center;
        display: block; 
    }
    .marker-info span:nth-child(1) { 
        background: red; 
    } 
	
	.marker-info span:nth-child(2) { 
        background: #28a745; 
    }
    .marker-info span:nth-child(3) { 
        background: #ffc107; 
        color: #343a40; 
    }
    .marker-price {
        font-size: 16px;
        font-weight: bold;
        color: #1a73e8;
        padding: 8px 0;
        text-align: center;
        background: #f8f9fa;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }
    
    .gm-ui-hover-effect {
        top: 8px !important; 
        right: 8px !important; 
        background: white !important; 
        border-radius: 50% !important;
        width: 24px !important;
        height: 24px !important;
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        display: flex !important; 
        align-items: center !important; 
        justify-content: center !important; 
        opacity: 1 !important;
        z-index: 10000 !important; 
    }
    .gm-ui-hover-effect img {
        width: 12px !important;
        height: 12px !important;
        margin: 0 !important; 
       
        filter: brightness(0) saturate(100%) invert(0%) sepia(0%) hue-rotate(0deg) contrast(100%) !important; 
		
    }
    .gm-style .gm-style-iw-c {
        padding: 0 !important;
        border-radius: 8px !important;
        box-shadow: 0 3px 10px rgba(0,0,0,0.2) !important;
    }
    .gm-style .gm-style-iw-d {
        overflow: hidden !important;
    }