 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            
        }
       .container[class="container"] {padding: 0 2rem;}
        /* Header */
        .header {
            background: #093658;
            color: white;
            padding: 1rem 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .logo i {
            color: #1899aa;
        }

        .nav {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav a:hover {
            color: #1899aa;
        }

        .phone {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: bold;
        }

        /* Main content */
        .main {
            margin-top: 70px;
        }

        /* Hero section */
        .hero {
            background: linear-gradient(135deg, #1899aa, #093658);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.9;
        }

        /* Search form */
        .search-form {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin: -2rem auto 0;
            max-width: 800px;
            position: relative;
            z-index: 2;
        }

        .currency-tabs {
            display: flex;
            margin-bottom: 2rem;
            border-radius: 8px;
            overflow: hidden;
            width: fit-content;
        }

        .currency-tab {
            padding: 0.75rem 1.5rem;
            border: none;
            background: #f0f0f0;
            cursor: pointer;
            color: #666;
        }

        .currency-tab.active {
            background: #4285f4;
            color: white;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #333;
            font-weight: 500;
        }

        .form-group select,
        .form-group input {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
        }

        .bedroom-buttons {
            display: flex;
            gap: 0.5rem;
        }

        .bedroom-btn {
            flex: 1;
            padding: 1rem;
            border: 1px solid #ddd;
            background: white;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .bedroom-btn.active,
        .bedroom-btn:hover {
            background: #1899aa;
            color: white;
            border-color: #1899aa;
        }

        .search-btn {
            width: 100%;
            padding: 1.25rem;
            background: #4285f4;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: background 0.3s;
        }

        .search-btn:hover {
            background: #3367d6;
        }

        .exchange-rate {
            text-align: right;
            color: #666;
            font-size: 0.9rem;
            margin-top: 1rem;
        }

        /* Section styling */
        .section {
            padding: 4rem 0;
        }

        .section h2 {
            text-align: center;
            margin-bottom: 1rem;
            font-size: 2.5rem;
            color: #093658;
        }

        .section p {
            text-align: center;
            color: #666;
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        /* About us section */
        .about-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .about-title h2 {
            font-size: 3rem;
            font-weight: 700;
            color: #093658;
            margin-bottom: 0.5rem;
        }

        .about-subtitle {
            font-size: 1.3rem;
            color: #666;
            margin-bottom: 0.5rem;
        }

        .about-tagline {
            font-size: 1.3rem;
            color: #666;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .about-item {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .about-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 2rem;
        }

        .blue-icon {
            background: rgba(9, 54, 88, 0.1);
            color: #093658;
        }

        .green-icon {
            background: rgba(24, 153, 170, 0.1);
            color: #1899aa;
        }

        .about-item h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #093658;
        }

        .about-item p {
            color: #666;
            text-align: center;
        }

        /* Premium collection */
        .premium-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .property-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .property-card:hover {
            transform: translateY(-5px);
        }

        .property-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(45deg, #ddd, #eee);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 1.1rem;
        }

        .property-info {
            padding: 1.5rem;
        }

        .property-title {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #093658;
        }

        .property-location {
            color: #666;
            margin-bottom: 1rem;
        }

        .property-price {
            color: #4285f4;
            font-size: 1.4rem;
            font-weight: bold;
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .service-card {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 2rem;
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #093658;
        }

        .service-card p {
            color: #666;
            text-align: center;
        }

        /* Districts */
        .districts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .district-card {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 15px;
            padding: 2rem;
            transition: box-shadow 0.3s;
        }

        .district-card:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .district-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .district-name {
            font-size: 1.4rem;
            font-weight: bold;
            color: #093658;
        }

        .district-tags {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .tag {
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: white;
            font-weight: 500;
        }

        .tag.premium { background: #1899aa; }
        .tag.family { background: #b1d28a; }
        .tag.budget { background: #666; }

        .district-description {
            color: #666;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .district-link {
            color: #4285f4;
            text-decoration: none;
            font-weight: 500;
        }

        /* Reviews */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .review-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
        }

        .reviewer-info h4 {
            color: #093658;
            margin-bottom: 0.25rem;
        }

        .stars {
            color: #ffc107;
            font-size: 0.9rem;
        }

        .review-text {
            color: #666;
            line-height: 1.6;
        }

        /* CTA section */
        .cta {
            background: linear-gradient(135deg, #4285f4, #1899aa);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }

        .cta h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.9;
        }

        .cta-form {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
        }

        .cta-btn {
            background: white;
            color: #4285f4;
            padding: 1rem 2rem;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
        }

        .contact-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .contact-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border: 2px solid white;
            border-radius: 25px;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .contact-btn:hover {
            background: white;
            color: #4285f4;
        }

        .contact-btn.whatsapp:hover {
            color: #25d366;
        }

        .contact-btn.telegram:hover {
            color: #0088cc;
        }

        /* Footer */
        .footer {
            background: #093658;
            color: white;
            padding: 3rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #1899aa;
        }

        .footer-section p,
        .footer-section li {
            margin-bottom: 0.5rem;
            opacity: 0.8;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #1899aa;
        }

        .footer-contact {
            margin-top: 1rem;
        }

        .footer-contact p {
            margin-bottom: 0.25rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            text-align: center;
            opacity: 0.7;
        }

        /* Button */
        .btn {
            display: inline-block;
            background: #4285f4;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 25px;
            text-decoration: none;
            text-align: center;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }

        .btn:hover {
            background: #3367d6;
            color: white;
        }

        .btn-center {
            text-align: center;
        }

        @media (max-width: 768px) {
            .header-content{
                flex-wrap: wrap;
            }
            .logo {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 1.5rem;
    font-weight: bold;
    width: 75%;
    flex-wrap: wrap;
}
    .phone
 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 15px;
}        
            .container {
                padding: 0 1rem;
            }
            
            .header-content {
                padding: 0 1rem;
            }
            
            .nav {
                display: none;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .about-grid {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .cta-form {
                flex-direction: column;
            }
            
            .contact-buttons {
                flex-direction: column;
            }
        }
/*guide*/
 .gradient-bg {

            background: linear-gradient(135deg, #2a5a6b 0%, #3a8a9a 50%, #4aaaaa 100%);

        }

        

        .section-header {

            background: linear-gradient(135deg, #2a5a6b 0%, #3a8a9a 50%, #4aaaaa 100%);

        }

        

        .price-legend {

            display: flex;

            flex-wrap: wrap;

            gap: 20px;

            justify-content: center;

            margin: 20px 0;

        }

        

        .price-item {

            display: flex;

            align-items: center;

            gap: 8px;

        }

        

        .price-dot {

            width: 12px;

            height: 12px;

            border-radius: 50%;

        }

        

        .budget { background-color: rgba(9, 62, 88, 0.6); }

        .medium { background-color: #b1d28a; }

        .premium { background-color: #1899aa; }

        .premium-plus { background-color: #093658; }

        

        .location-card {

            background: white;

            border-radius: 12px;

            padding: 20px;

            margin-bottom: 16px;

            box-shadow: 0 2px 8px rgba(0,0,0,0.1);

            cursor: pointer;

            transition: all 0.3s ease;

        }

        

        .location-card:hover {

            box-shadow: 0 4px 16px rgba(0,0,0,0.15);

            transform: translateY(-2px);

        }

        

        .location-title {

            font-size: 1.5rem;

            font-weight: bold;

            margin-bottom: 8px;

            color: #1f2937;

        }

        

        .location-subtitle {

            color: #6b7280;

            margin-bottom: 12px;

        }

        

        .location-tags {

            display: flex;

            align-items: center;

            gap: 12px;

            flex-wrap: wrap;

        }

        

        .tag {

            display: flex;

            align-items: center;

            gap: 4px;

            padding: 4px 8px;

            border-radius: 6px;

            font-size: 0.875rem;

            color: #374151;

        }

        

        .beach-tag {

            background-color: #dbeafe;

            color: #1e40af;

        }

        

        .district-tag {

            background-color: #d1fae5;

            color: #065f46;

        }

        

        .length-tag {

            background-color: #f3f4f6;

        }

        

        .price-circles {

            display: flex;

            gap: 4px;

            margin-left: auto;

        }

        

        .price-circle {

            width: 8px;

            height: 8px;

            border-radius: 50%;

        }

        

        .filter-btn {

            padding: 8px 16px;

            border-radius: 25px;

            border: none;

            font-weight: 600;

            cursor: pointer;

            transition: all 0.3s ease;

        }

        

        .filter-btn.active-all { background-color: #374151; color: white; }

        .filter-btn.active-beaches { background-color: #b1d28a; color: #065f46; }

        .filter-btn.active-districts { background-color: #1899aa; color: white; }

        .filter-btn.active-premium { background-color: #093658; color: white; }

        

        .filter-btn:not(.active-all):not(.active-beaches):not(.active-districts):not(.active-premium) {

            background-color: #f3f4f6;

            color: #6b7280;

        }

        

        .modal {

            display: none;

            position: fixed;

            z-index: 1000;

            left: 0;

            top: 0;

            width: 100%;

            height: 100%;

            background-color: rgba(0,0,0,0.5);

        }

        

        .modal-content {

            background-color: white;

            margin: 5% auto;

            padding: 30px;

            border-radius: 15px;

            width: 90%;

            max-width: 600px;

            max-height: 80vh;

            overflow-y: auto;

            position: relative;

        }

        

        .close {

            position: absolute;

            right: 20px;

            top: 20px;

            font-size: 28px;

            font-weight: bold;

            cursor: pointer;

            color: #6b7280;

        }

        

        .close:hover {

            color: #374151;

        }

        

        .modal-title {

            font-size: 2rem;

            font-weight: bold;

            margin-bottom: 15px;

            color: #1f2937;

            padding-right: 40px;

        }

        

        .modal-description {

            color: #4b5563;

            line-height: 1.6;

            margin-bottom: 20px;

        }

        

        .modal-details {

            background-color: #f9fafb;

            padding: 15px;

            border-radius: 8px;

        }

        

        #map {

            height: 600px;

            border-radius: 12px;

            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

        }

        

        .stats-grid {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

            gap: 20px;

            margin-bottom: 30px;

        }

        

        .stat-card {

            background: white;

            padding: 25px;

            border-radius: 15px;

            text-align: center;

            box-shadow: 0 2px 8px rgba(0,0,0,0.1);

        }

        

        .stat-number {

            font-size: 2.5rem;

            font-weight: bold;

            color: #1f2937;

            margin-bottom: 5px;

        }

        

        .stat-label {

            color: #6b7280;

            font-size: 0.9rem;

        }
.sticky-top { position: sticky; top: 20px; }
        .hover-scale { transition: transform 0.2s; }
        .hover-scale:hover { transform: scale(1.02); }
        .service-link { transition: all 0.3s ease; }
        .service-link:hover { background-color: #f3f4f6; border-color: #3b82f6; }
        .amenity-active { background-color: #dcfce7; color: #166534; }
        .amenity-inactive { background-color: #fef2f2; color: #991b1b; }        
        
/**/
/*add style*/
header .language-chooser li{
    display:inline-block;
    margin-left: 7px;
}

.mob_gal{
    display:none;
}
.title_price .text-left {width: 65%;}

.title_price .text-right {width: 35%;}
.single_desc p{
    margin-bottom: 1rem;
}

.innerpage{
    padding:120px 0 80px 0;
}
.products_list{
        display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.dop_desc{margin-top:1rem;}
.dop_desc p{
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.cat_desc{margin-top:1rem;}
.cat_desc p{
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.cat_desc h2{
    font-size: 1.7rem;
    line-height: 2.25rem;
    margin-bottom: 20px;
}
.cat_desc ul li{
   font-size: 1.1rem;
    margin-bottom: 5px;
    list-style-position: inside;
    list-style-type: disc;
}
.cat_desc ul {
    margin-bottom: 1rem;
}
@media (max-width:768px) {
  .desc_gal{
    display:none;
}  
  .mob_gal{
    display:block;
}  
  #single_obj h1{
      font-size: 23px;
    line-height: 26px;
    margin-bottom: 15px;
  }  
  .title_price .text-left {width: 100%;}
  .title_price .text-right {
    text-align: left;
        width: 100%;
        display: flex;
        align-items: flex-start;
        margin-top: 15px;
}
   .title_price .text-right .m_left{
       width: 50%;
   }
   .title_price .text-right .m_right{
       width: 50%;
        text-align: right;
   }
  .title_price .text-4xl {
    font-size: 22px;
    line-height: 28px;
}
 .title_price  .text-lg {
    font-size: 16px;
    line-height: 20px;
}
  
  
}
