@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --font-family: 'Poppins', sans-serif;
    /* Primary Colors */
    --primary: #0199d8;
    --primary-dark: #0178a8;
    --primary-light: #e6f5fc;
    
    /* Secondary Colors */
    --favorite: #FF385C;
    --secondary: #F37521;
    --secondary-dark: #d15c0f;
    --secondary-light: #feefe5;
    
    /* Neutrals */
    --accent: #00A699;
    --text-dark: #2D3748;
    --text-medium: #4A5568;
    --text-light: #717171;
    --bg-light: #F7FAFC;
    --card-bg: #FFFFFF;
    --border: #E2E8F0;

    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --header-height: 50px;
}
* {
    box-sizing: border-box;
}
/* =========Loader Style =========== */
#page-loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.loader-logo{
    width: 90px;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.loader-content { 
    text-align: center; 
}

.loader-text {
    font-size: 2rem;
    font-weight:bolder;
    color: #0178a8;
    margin-bottom: 2rem;
}

.loader-spinner {
    margin-left:auto;
    margin-right:auto;
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #0178a8;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==============Start =========== */
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600; /* Semi-bold for headings */
}

.btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 500; /* Medium weight for buttons */
}

/* Header Styles would be in header.php */
.hero-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    padding: 4rem 1rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 30px 0 0 30px;
    box-shadow: -20px 0 40px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .hero-section::before {
        width: 100%;
        opacity: 0.2;
        border-radius: 0;
    }
    .ctaButtons{
        z-index: 900;
    }
}

.navbar-brand{
    color: var(--primary);
}

.hero-section h1 {
    font-weight: 700;
    color: var(--primary-dark);
    /* margin-bottom: 1.5rem; */
    font-size: 2.5rem;
}

.hero-section .lead {
    color: var(--text-medium);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

 /* Stats Carousel */
.stats-carousel {
    overflow: hidden;
}

.stats-track {
    display: flex;
    gap: 16px;
    padding: 0 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.stats-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.stat-card {
    scroll-snap-align: center;
    min-width: 30%;
    margin: 1rem 0;
    text-align: center;
    padding: 20px 0;
    border-radius: 10px;
    background-color: var(--card-bg);
    box-shadow: var(--shadow);
}

.stats-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
}

.stats-label {
    color: #718096;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stats-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E2E8F0;
}

.indicator.active {
    background: #6C63FF;
}

 /* Animation for auto-scroll */
@keyframes scroll {
    0% { transform: translateX(0); }
    25% { transform: translateX(-100%); }
    50% { transform: translateX(-200%); }
    75% { transform: translateX(-300%); }
    100% { transform: translateX(0); }
}

 /* Features Section Styling */
.features-section {
    background-color: #ffffff;
}

.section-header {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #718096;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.feature-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #EDF2F7;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(108, 99, 255, 0.1);
    border-color: #E9D8FD;
}

.feature-icon-container {
    position: relative;
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

 .feature-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 16px;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.feature-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.75rem;
    color: var(--primary);
}

 .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-medium);
    line-height: 1.6;
}

.property-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    -webkit-overflow-scrolling: touch;
}

.property-scroll::-webkit-scrollbar {
    display: none;
}

/* Property Card */
.property-card {
    min-width: 260px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--card-bg);
    box-shadow: var(--shadow);
    position: relative;
}

.property-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.property-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.property-badge i {
    margin-right: 4px;
    font-size: 10px;
}

.guest-favorite {
    background: #FFE5E5;
    color: var(--secondary-dark);
}

.best-value {
    background: #E5F6FF;
    color: var(--primary-dark);
}

.new-listing {
    background: #E5FFEE;
    color: var(--accent);
}

.property-details {
    padding: 15px;
}

.property-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.property-location {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.property-location i {
    margin-right: 5px;
    font-size: 12px;
}

.property-price {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 15px;
}

.property-price span {
    color: var(--text-light);
    font-weight: normal;
    font-size: 13px;
}

.property-rating {
    display: flex;
    align-items: center;
    /* margin-top: 8px; */
    font-size: 13px;
}

.star {
    color: var(--secondary);
    margin-right: 3px;
    font-size: 14px;
}

.view-details{
    color: var(--card-bg);
    background-color: var(--primary);
    padding: 2px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.view-details:hover{
    opacity: 0.6;
}

/* Testimonial Slider Styling */
.testimonial-slider {
    position: relative;
}

.testimonial-slider-container {
    position: relative;
    overflow: hidden;
    padding: 0 15px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    margin: 0 auto;
    max-width: 400px;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #E2E8F0;
}

.rating {
    color: var(--secondary);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    gap: 20px;
}

.slider-prev, .slider-next {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    color: #6C63FF;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.slider-prev:hover, .slider-next:hover {
    background: #6C63FF;
    color: white;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #E2E8F0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #6C63FF;
    transform: scale(1.2);
}


/* =======================LOGIN PAGE STYLE======================= */
.login-section{
    padding-top: 5rem;
}

.login-section .card{
    background: var(--primary-light);
}

#authTabs .nav-link {
    color: #495057;
    font-weight: 500;
    border: none;
    padding: 0.75rem 1rem;
    position: relative;
}


/* Desktop Layout */
@media (min-width: 992px) {
    .testimonial-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        transform: none !important;
    }
    
    .testimonial-slide {
        flex: 1;
    }
    
    .slider-controls {
        display: none;
    }
}

/* Tablet Layout */
@media (min-width: 768px) and (max-width: 991px) {
    .testimonial-slide {
        flex: 0 0 50%;
    }
}

/* CTA Section */
.CTA-Section {
    background-color: var(--primary-light);
    padding: 4rem 0;
    text-align: center;
}

.app-badge {
    height: 50px;
    margin-right: 15px;
}
/* Mobile Styles */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .stat-card {
        scroll-snap-align: center;
        min-width: 80%;
        margin: 1rem 0;
        text-align: center;
        padding: 20px 0;
        box-shadow: var(--shadow);
    }
    
    .view-all {
        margin-top: 1rem;
    }
}

@media (min-width: 992px) {
    .stats-indicators{
        display: none;
    }
}


/* =======================INTERNAL HOME PAGE STYLE======================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 100;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.header.hidden {
    transform: translateY(-100%);
}

#internal-page nav {
    display: flex;
    justify-content: space-between;
    padding: 35px 20px;
    align-items: center;
    height: var(--header-height);
}

.logo {
    color: var(--primary);
    display: flex;
    align-items: center;
}
.logo .navbar-brand{
    font-size: 22px;
    font-weight: 700;
}

.logo i {
    margin-right: 8px;
}
 /* search-bar */
.search-bar {
    padding: 15px 20px;
    background: var(--bg-light);
    transition: all 0.3s ease;
    max-height: 200px;
    overflow: hidden;
}

.search-bar.hidden {
    max-height: 0;
    padding: 0;
    overflow: hidden;
}

.search-container {
    display: flex;
    border: 1px solid #dddddd;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: white;
    padding: 10px 15px;
    align-items: center;
}

.search-container i {
    color: var(--text-light);
    margin-right: 10px;
}

.search-container input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
}

/* Location Filter */
.location-filter {
    display: flex;
    overflow-x: auto;
    padding: 15px 20px;
    gap: 10px;
    -webkit-overflow-scrolling: touch;
    transition: all 0.3s ease;
    max-height: 100px;
}

.location-filter.hidden {
    max-height: 0;
    padding: 0;
    overflow: hidden;
}

.location-filter::-webkit-scrollbar {
    display: none;
}

.location-tab {
    padding: 8px 15px;
    border-radius: 20px;
    background: white;
    border: 1px solid #ebebeb;
    white-space: nowrap;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.location-tab:hover {
    border-color: var(--primary);
}

.location-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.category-tab {
    padding: 8px 15px;
    border-radius: 5px;
    background: white;
    border: 1px solid #ebebeb;
    white-space: nowrap;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-tab:hover {
    border-color: var(--primary);
}

.category-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Main content */
.main-content {
    padding-top: calc(var(--header-height) + 200px);
}

/* Property Sections */
#internal-page .section {
    padding: 0 20px;
    margin-bottom: 30px;
}

.internal-page-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.internal-page-section-title {
    font-family: 'Playfair Display', serif; /* Elegant option */
    /* Alternative: font-family: 'Montserrat', sans-serif; */ /* Modern option */
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    color: #2c3e50;
    position: relative;
    padding-bottom: 0.5rem;
}

/* Optional: Add a decorative underline */
.internal-page-section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #3498db;
}
/* mobile designs*/
@media (max-width: 767px) {
    .internal-page-section-title {
        font-family: 'Montserrat', sans-serif; 
        font-size: 1.5rem;
    }
}

.see-all {
    color: var(--primary);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
}

.property-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 5px 20px 5px;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.property-scroll::-webkit-scrollbar {
    display: none;
}

/* Property Card */
#internal-page .property-card {
    flex: 0 0 auto;
    min-width: 260px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#internal-page .property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#internal-page .property-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}

#internal-page .property-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

#internal-page .property-badge i {
    margin-right: 4px;
    font-size: 10px;
}

.favorite-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.favorite-icon:hover {
    background: white;
    transform: scale(1.1);
}

.favorite-icon.active {
    color: var(--favorite);
}

/* Services Section */
.services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 0 20px;
    margin-bottom: 30px;
}

#services .service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* transition: transform 0.2s ease; */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#services .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#services .service-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 20px;
    transition: background 0.2s ease, color 0.2s ease;
}

#services .service-card:hover .service-icon {
    background: var(--primary);
    color: white;
}

#services .service-name {
    font-size: 12px;
    color: var(--text-dark);
}

/* Map Button */
.map-button {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    z-index: 90;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.map-button:hover {
    transform: scale(1.1);
    color: var(--primary);
}

/* Bottom Navigation */
#bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 100;
}

#bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    font-size: 10px;
    transition: color 0.2s ease;
}

#bottom-nav .nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
}

#bottom-nav .nav-item.active, .nav-item:hover {
    color: var(--primary);
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
}

.desktop-nav-item {
    padding: 8px 15px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    border-radius: 20px;
}

.desktop-nav-item:hover, .desktop-nav-item.active {
    color: var(--primary);
    background: rgba(1, 153, 216, 0.1);
}


/*------ Trust Section--------- */
.trust-section {
    padding: 20px; 
    background: #f0f0f0; 
    margin: 20px; 
    border-radius: 12px; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.trust-section h3{
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-dark);

}
.trust-section .team-member{
    display: flex; 
    justify-content: center; 
    gap: 15px; 
    flex-wrap: wrap;
}

.trust-section .team-member .member-card{text-align: center;}

.trust-section .team-member img{
    width: 100px; 
    height: 100px; 
    border-radius: 10%; 
    object-fit: cover; 
    border: 2px solid var(--favorite);
}
.trust-section .team-member p{
    font-size: 15px; 
    margin-top: 5px;
}

.trust-section p{
    text-align: center;
    font-size: 13px;
    color: var(--text-light); 
    margin-top: 15px;
}

.trust-section {
    text-align: center; /* centers the link */
}

.trust-section a {
    display: inline-block;
    position: relative;
    color: var(--primary-dark);
    font-weight: 500;
    text-decoration: none;
    margin-top: 10px;
    padding: 8px 20px;
    overflow: hidden;
}

/* top and bottom lines */
.trust-section a::before,
.trust-section a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-dark);
    transition: all 0.4s ease;
}

.trust-section a::before {
    top: 0;
    left: 0;
}

.trust-section a::after {
    bottom: 0;
    right: 0;
}

/* left and right lines */
.trust-section a span::before,
.trust-section a span::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 0;
    background: var(--primary-dark);
    transition: all 0.4s ease;
}

.trust-section a span::before {
    top: 0;
    right: 0;
}

.trust-section a span::after {
    bottom: 0;
    left: 0;
}

/* Animate on hover */
.trust-section a:hover::before,
.trust-section a:hover::after {
    width: 100%;
}

.trust-section a:hover span::before,
.trust-section a:hover span::after {
    height: 100%;
}
/*------ Testimonials Section--------- */
.testimonials {
    padding: 20px; 
    background: white; 
    margin: 20px; 
    border-radius: 12px; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.testimonials h3{
    text-align: center; 
    font-size: 18px; 
    margin-bottom: 20px; 
    color: var(--primary-dark);
}

/* Media Queries */
@media (min-width: 768px) {
    .property-scroll {
        padding: 20px;
        position: relative;
    }
    
    .property-card {
        min-width: auto;
    }
    
    /* Show desktop nav, hide mobile nav */
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .mobile-nav-icon {
        display: none;
    }
    
    /* Adjust body padding for desktop */
    body {
        padding-bottom: 0;
    }
    
    /* Hide bottom nav on desktop */
    #bottom-nav {
        display: none;
    }
    
    /* Adjust header layout for desktop */
    nav {
        padding: 35px 40px;
    }
    
    .search-bar {
        padding: 15px 40px;
    }

    .search-container {
        max-width: 600px;
        margin: 0 auto;
        padding: 10px 20px;
    }

    .search-container input {
        font-size: 16px;
    }
    
    .location-filter {
        padding: 15px 40px;
        justify-content: center;
    }
    
    #internal-page .section {
        padding: 0 40px;
    }
    
    #services {
        padding: 0 40px;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    #services .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    #services .service-name {
        font-size: 14px;
    }

    /* Trust section adjustments */
    .trust-section {
        margin: 30px 40px;
        padding: 30px;
    }
    
    .testimonials {
        margin: 30px 40px;
        padding: 30px;
    }
}

@media (max-width: 767px) {
    /* Show bottom nav on mobile */
    #bottom-nav {
        display: flex;
    }
    
    /* Add padding to body for bottom nav */
    body {
        padding-bottom: 70px;
    }
    
    /* Hide desktop nav on mobile */
    .desktop-nav {
        display: none;
    }
    
    /* Show mobile nav icon */
    .mobile-nav-icon {
        display: block;
        font-size: 20px;
        color: var(--text-dark);
    }

    .main-content {
        padding-top: var(--header-height + 200px);
    }
}

@media (min-width: 1024px) {
    .property-scroll {
        gap: 25px;
    }
    
    .property-card {
        width: 280px;
    }
    
    #services {
        grid-template-columns: repeat(8, 1fr);
    }
    
    nav {
        padding: 35px 60px;
    }
    
    .search-bar {
        padding: 10px 60px;
    }
    
    .location-filter {
        padding: 20px 60px;
    }
    
    #internal-page .section {
        padding: 0 60px;
    }
    
    #services {
        padding: 0 60px;
    }
    
    .trust-section, .testimonials {
        margin: 40px 60px;
    }
}


/* =======================DETAILS PAGE STYLE======================= */
#details-internal nav {
    display: flex;
    justify-content: space-between;
    padding: 35px 20px;
    align-items: center;
    height: var(--header-height);
}

.back-button {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.back-button i {
    transition: transform 0.2s;
}

.back-button:hover i {
    transform: translateX(-3px);
}
@media (max-width: 767px) {
    .back-button {
        font-size: 16px;
    }
}

#details-internal .property-media {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 5px;
}

#details-internal .video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

#details-internal .video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

#details-internal .video-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    display: flex;
    align-items: center;
    z-index: 2;
}

#details-internal .gallery-thumbnail {
    width: 100%;
    height: 90px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: transform 0.2s;
    border: 2px solid transparent;
}

#details-internal .gallery-thumbnail:hover {
    transform: scale(1.05);
}

#details-internal .gallery-thumbnail.active {
    border-color: var(--primary);
}

#details-internal .property-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

#details-internal .property-price {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

#details-internal .property-price span {
    font-size: 16px;
    color: var(--text-light);
    font-weight: normal;
}

#details-internal .highlight-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 10px;
}

#details-internal .highlight-item i {
    margin-right: 6px;
    color: var(--secondary);
}

#details-internal .amenity-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

#details-internal .amenity-item i {
    margin-right: 8px;
    color: var(--primary);
    width: 20px;
}

#details-internal .map-section {
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

#details-internal .map-placeholder {
    width: 100%;
    height: 100%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

#details-internal .map-button {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    width: 150px !important;
}

#details-internal .action-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 10;
}

#details-internal .wishlist-button {
    background: none;
    border: none;
    font-size: 28px;
    color: #ccc;
    cursor: pointer;
    padding: 0 15px;
}

#details-internal .wishlist-button.active {
    color: var(--secondary);
}

/* Modal for Gallery */
#details-internal .gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    display: none;
    flex-direction: column;
}

#details-internal .modal-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

#details-internal .close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

#details-internal .modal-main-image {
    flex: 1;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 10px;
}

#details-internal .modal-thumbnails {
    display: flex;
    overflow-x: auto;
    padding: 10px;
    gap: 10px;
    justify-content: center;
}

#details-internal .modal-thumbnail {
    width: 60px;
    height: 60px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
}

#details-internal .modal-thumbnail.active {
    border-color: var(--primary);
}

#details-internal .card {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

#details-internal .card-header {
    background-color: white;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-weight: 600;
}

/* mobile designs*/
@media (max-width: 767px) {
    #details-internal .property-media {
        height: 210px;
    }
}

@media (min-width: 992px) {
    #details-internal .property-media {
        height: 500px;
    }
    
    #details-internal .gallery-thumbnail {
        height: 100px;
    }
    
    #details-internal .sticky-sidebar {
        position: sticky;
        top: 20px;
    }
}

/* =======================DETAILS PAGE STYLE======================= */
.edit-button {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.edit-button:hover {
    background-color: rgba(1, 153, 216, 0.1);
}
.remove-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    cursor: pointer;
    border: none;
    color: var(--primary);
    transition: background-color 0.2s, color 0.2s;
}

.remove-button:hover {
    background-color: var(--primary);
    color: white;
}

/* Empty State */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.empty-icon {
    font-size: 150px;
    color: var(--text-light);
    margin-bottom: -40px;
}

.empty-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.empty-text {
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 300px;
    font-size: 16px;
}

.empty-state .explore-button {
    padding: 14px 30px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.empty-state .explore-button:hover {
    background-color: var(--secondary-dark);
}

/* =======================SERVICES PAGE STYLE======================= */
/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.services-grid .service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services-grid .service-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.services-grid .service-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .services-grid .service-image {
        height: 120px;
    }
}

.services-grid .service-details {
    padding: 12px;
}

.services-grid .service-name {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 15px;
}

.services-grid .service-price {
    font-weight: 600;
    color: var(--primary);
    font-size: 15px;
}

.services-grid .service-rating {
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-top: 5px;
}

/* =======================PROFILE PAGE STYLE======================= */
/* Profile Section */
#profile-section {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow);
    border-radius: 10px;
}

#profile-section .profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 20px;
    border: 3px solid var(--primary);
}

#profile-section .profile-info h2 {
    font-size: 20px;
    margin-bottom: 5px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    #profile-section {
        margin-top: -20px;
        padding: 15px;
    }

    #profile-section .profile-pic {
        width: 100px;
        height: 80px;
        border-radius: 10px;
        margin-right: 15px;
    }

    #profile-section .profile-info h2 {
        font-size: 18px;
    }
}

#profile-section .profile-info p {
    color: var(--text-light);
    margin-bottom: 10px;
}

#profile-section .verification-badge {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--accent);
}

#profile-section .verification-badge i {
    margin-right: 5px;
}

/* Stats Section */
#profile-stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: white;
    padding: 25px;
    margin-bottom: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    border-radius: 10px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Stats Section */
    #profile-stats-section {
        padding:10px 0px;
    }
}

#profile-stats-section .stat-item {
    padding: 10px;
}

#profile-stats-section .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    font-family: var(--font-family);
}

#profile-stats-section .stat-label {
    font-size: 16px;
    color: var(--text-light);
}

/* Menu Items */
#profile-menu-section {
    background: white;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    border-radius: 10px;
}

#profile-menu-section .menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    transition: background-color 0.2s;
}

#profile-menu-section .menu-item:hover {
     background: var(--primary);
     color: var(--primary-light);
}

#profile-menu-section  .menu-item:last-child {
    border-bottom: none;
}

#profile-menu-section  .menu-left {
    display: flex;
    align-items: center;
}

#profile-menu-section  .menu-icon {
    width: 24px;
    height: 24px;
    background: var(--bg-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
}

#profile-menu-section  .menu-text {
    font-weight: 500;
}

#profile-menu-section  .menu-arrow {
    color: var(--text-light);
}
#profile-menu-section  .menu-arrow:hover {
    color: var(--primary-light);
}

/* =======================PROFILE-> Personal Information PAGE STYLE======================= */
#personal-information {
    background: white;
    margin-bottom: 15px;
    padding: 10px;
    box-shadow: var(--shadow);
    border-radius: 10px;
}
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}

.form-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 5px;
}
/* =======================PROFILE-> My Accomodations PAGE STYLE======================= */
.booking-actions {
    display: flex;
    margin-top: 15px;
}

.action-button {
    flex: 1;
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    margin: 0 5px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}

.primary-action {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
/* =======================PROFILE-> Notifications PAGE STYLE======================= */
.notification-item {
    background: white;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    margin-bottom: 5px;
    box-shadow: var(--shadow);
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.notification-item:hover{
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.notification-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 3px;
}

.notification-text {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.notification-time {
    font-size: 12px;
    color: var(--text-light);
}

.unread {
    background: #F8F5FF;
}
/* =======================PROFILE-> Privacy & Security PAGE STYLE======================= */
.security-item {
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

.security-info {
    flex: 1;
}

.security-title {
    font-weight: 600;
    margin-bottom: 3px;
}

.security-desc {
    font-size: 13px;
    color: var(--text-light);
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 24px;
    margin-left: 15px;
}

.toggle-checkbox {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ddd;
    border-radius: 24px;
    transition: .4s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background: white;
    border-radius: 50%;
    transition: .4s;
}

.toggle-checkbox:checked + .toggle-slider {
    background: var(--primary);
}

.toggle-checkbox:checked + .toggle-slider:before {
    transform: translateX(26px);
}
/* =======================PROFILE-> Settings PAGE STYLE======================= */
.settings-section {
    background: white;
    margin-bottom: 15px;
}

.settings-item {
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.settings-left {
    display: flex;
    align-items: center;
}

.settings-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: var(--primary);
}

.settings-text {
    font-weight: 500;
}

.settings-value {
    color: var(--text-light);
    font-size: 14px;
    margin-right: 10px;
}