/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333333;
    overflow-x: hidden;
    background: #f8fafc;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables - Royal Blue & Golden Theme */
:root {
    --primary-blue: #1e3a8a;
    --royal-blue: #1e40af;
    --dark-royal-blue: #1e3a8a;
    --accent-gold: #fbbf24;
    --bright-gold: #f59e0b;
    --dark-gold: #d97706;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --charcoal: #333333;
    --text-light: #666666;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    background: linear-gradient(135deg, #2a5298 0%, #1e3a8a 50%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    margin-bottom: 3rem;
    letter-spacing: -1px;
    text-shadow: 2px 4px 8px rgba(42, 82, 152, 0.3);
}

.section-title::after {
    display: none;
    content: '';
    position: absolute;
    bottom: -87%;
    left: 53%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #2a5298;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.header.scrolled {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.98) 0%, rgba(30, 64, 175, 0.95) 50%, rgba(26, 35, 126, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(251, 191, 36, 0.4);
    box-shadow: 
        0 8px 32px rgba(30, 58, 138, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-conta.price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #059669;
    padding: 10px 0;
    border-top: 1px solid #059669;
    margin-top: 5px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon svg {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.header.scrolled .logo-icon svg circle {
    fill: #FFD700;
}

.header.scrolled .logo-icon svg path {
    fill: #1e3a8a;
}

.logo-text h1 {
    color: #1a1a1a;
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1;
    transition: color 0.3s ease;
}

.logo-text p {
    color: #666;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 3px;
    margin: 0;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.header.scrolled .logo-text h1 {
    color: #FFD700;
}

.header.scrolled .logo-text p {
    color: rgba(255, 255, 255, 0.8);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    padding: 0.5rem 0.8rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1e3a8a;
}

.header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.95);
}

.header.scrolled .nav-link:hover {
    color: #FFD700;
}

.nav-link i {
    font-size: 0.8rem;
    margin-left: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #FFD700;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #FFD700;
}

.nav-link:hover::after {
    width: 100%;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.98) 0%, rgba(30, 64, 175, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 8px;
}

.dropdown-menu a:hover {
    background: rgba(251, 191, 36, 0.15);
    color: var(--accent-gold);
    transform: translateX(5px);
}

.dropdown-menu a::after {
    display: none; /* Remove the underline effect for dropdown items */
}



.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none; /* reset button default */
    line-height: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 48px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 6px;
}

.hamburger:hover {
    background: rgba(251, 191, 36, 0.2);
    transform: scale(1.1);
}

.bar {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--bright-gold) 100%);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

.hamburger:hover .bar {
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-image: url('../images/mall.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    position: relative;
    overflow: visible;
    padding: 120px 60px 80px 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.3) 50%, 
        rgba(0, 0, 0, 0.4) 100%);
}
/* Decorative overlays should not block pointer events */
.hero-overlay, .hero-overlay-blue {
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    padding: 20px;
    text-align: left;
    margin: 0;
    animation: fadeInUp 1s ease-out;
}

.centaurus-features {
    padding: 80px 0;
    background: #ffffff;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: none !important;
}

.features-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #FFD700;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #FFD700, #f59e0b);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #1e3a8a;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: none !important;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid #FFD700;
    padding: 8px 20px;
    border-radius: 25px;
    color: #FFD700;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 40px 0;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 500;
}

.hero-features .feature-item i {
    color: #FFD700;
    font-size: 1.1rem;
}

.location-info {
    margin-top: 30px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.location-badge i {
    color: #FFD700;
}

.hero-title {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.3px;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.6s both;
    max-width: 700px;
}

.list-property-btn {
    background: #2a5298;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.list-property-btn:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 82, 152, 0.3);
}

/* Contact CTA Section */
.contact-cta {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--royal-blue) 100%);
    color: var(--white);
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.3);
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.contact-cta p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--bright-gold) 100%);
    color: var(--primary-blue);
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 1s ease-out 0.9s both;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--primary-blue);
    transform: translateY(-4px) scale(1.05);
    border-color: var(--accent-gold);
}

/* CTA Buttons Container */
.hero-buttons {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

/* Hero Search Box */
.hero-search-box {
    background: white;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin: 0;
    animation: fadeInUp 1s ease-out 1s both;
}

.search-field {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    flex: 1;
    min-width: 0;
}

.search-field i {
    color: #666;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.field-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.field-content label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.field-content input,
.field-content select {
    border: none;
    outline: none;
    font-size: 0.9rem;
    color: #333;
    background: transparent;
    padding: 0;
    width: 100%;
    cursor: pointer;
}

.field-content input::placeholder {
    color: #999;
}

.field-content select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0px center;
    background-size: 18px;
    padding-right: 25px;
    color: #333;
}

.field-content select:disabled {
    color: #999;
    cursor: not-allowed;
}

.field-content select option {
    color: #333;
    background: white;
    padding: 10px;
}

.hero-select {
    font-weight: 500;
}

.search-divider {
    width: 1px;
    height: 50px;
    background: #e0e0e0;
}

.search-btn {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

/* Responsive Hero Styles */
@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 60px 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-search-box {
        flex-direction: column;
        gap: 0;
        padding: 15px;
    }
    
    .search-field {
        width: 100%;
        padding: 12px 15px;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .search-field:last-of-type {
        border-bottom: none;
    }
    
    .search-divider {
        display: none;
    }
    
    .search-btn {
        width: 100%;
        margin-top: 10px;
        padding: 15px;
    }
    
    .nav-menu {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .list-property-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--bright-gold) 100%);
    color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--primary-blue);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.6);
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: var(--accent-gold);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

/* Services CTA Section */
.services-cta {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 20px;
    margin-top: 60px;
}

.services-cta h2 {
    color: var(--accent-gold);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.services-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--royal-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-highlights {
    list-style: none;
}

.about-highlights li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--charcoal);
}

.about-highlights i {
    color: var(--accent-gold);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Apartments Section */
.apartments {
    padding: 20px 0;
    background: #f8fafc !important;
    position: relative;
    z-index: 1;
}

.apartments-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    max-width: none;
    padding: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
}

/* About Section Styles - Matching Reference Design */
.about-section {
    min-height: 70vh;
    background: linear-gradient(135deg, #4c9ab1 0%, #3b82c4 100%);
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
}

.hero-overlay-blue {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(76, 154, 177, 0.85) 0%, 
        rgba(59, 130, 196, 0.9) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: white;
    padding-left: 20px;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 600;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-contact-btn {
    background: #2a5298;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-shadow: none;
}

.hero-contact-btn:hover {
    background: #1e3a8a;
    transform: translateY(-2px);

}

/* Services Cards Section - Exact Match */
.services-cards-section {
    padding: 0;
    background: #ffffff;
    margin-top: -80px;
    position: relative;
    z-index: 3;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.service-card-item {
    background: #ffffff;
    padding: 50px 30px;
    text-align: center;
    border-right: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-item:last-child {
    border-right: none;
}

.service-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
    position: relative;
}

.service-card-icon {
    margin-bottom: 25px;
}

.service-card-icon i {
    font-size: 3rem;
    color: #2a5298;
}

.service-card-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.service-card-item p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Vision Section - Exact Match */
.vision-section {
    padding: 100px 0;
    background: #ffffff;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.vision-text {
    padding-right: 40px;
}

.vision-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.vision-divider {
    width: 60px;
    height: 4px;
    background: #2a5298;
    margin-bottom: 30px;
    border-radius: 2px;
}

.vision-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
    font-style: italic;
}

.vision-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.vision-point {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vision-point i {
    color: #2a5298;
    font-size: 1.2rem;
}

.vision-point span {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.about-more-btn {
    background: #2a5298;
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.about-more-btn:hover {
    background: #1e3a8a;
    transform: translateY(-2px);

}

.vision-image {
    position: relative;
}

.vision-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Holiday Areas Section */
.holiday-areas-section {
    padding: 80px 0;
    background: white;
}

.holiday-areas-header {
    text-align: center;
    margin-bottom: 60px;
}

.holiday-areas-subtitle {
    color: #2a5298;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.holiday-areas-title {
    font-size: 2.5rem;
    color: #1e293b;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 15px;
}

.holiday-areas-description {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.holiday-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.area-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.area-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.area-card:hover .area-image img {
    transform: scale(1.1);
}

.area-info {
    padding: 25px;
    text-align: center;
}

.area-name {
    font-size: 1.3rem;
    color: #1e293b;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 8px;
}

.area-count {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.holiday-areas-btn-container {
    text-align: center;
    margin-top: 50px;
}

.see-all-areas-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1e3a8a;
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.see-all-areas-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.see-all-areas-btn i {
    transition: transform 0.3s ease;
}

.see-all-areas-btn:hover i {
    transform: translateX(5px);
}

/* Holiday Areas Responsive */
@media (max-width: 1024px) {
    .holiday-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .holiday-areas-title {
        font-size: 2rem;
    }
    
    .holiday-areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .area-image {
        height: 250px;
    }
}

/* Apartments Section - New Design */
.apartments {
    padding: 80px 0;
    background: white;
    position: relative;
    z-index: 1; /* keep content above decorative backgrounds */
    overflow: hidden;
}

.apartments::before {
    content: '';
    position: absolute;

    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: 10%;
    left: 5%;
    pointer-events: none; /* Don't block clicks on interactive elements */
    z-index: 0;
}

.apartments::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    bottom: 10%;
    right: 5%;
    pointer-events: none; /* Don't block clicks on interactive elements */
    z-index: 0;
}

.featured-title {
    font-size: 3rem;
    color: #fbbf24;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

/* City and Location Filter */
.city-location-filter {
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto 50px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.filter-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    max-width: 350px;
}

.filter-label {
    color: #fbbf24;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.city-location-dropdown {
    padding: 15px 20px;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    background: #ffffff;
    color: #1e3a8a;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.city-location-dropdown:hover {
    border-color: #fbbf24;
    background: #ffffff;
}

.city-location-dropdown:focus {
    outline: none;
    border-color: #fbbf24;
    background: #ffffff;
}

.city-location-dropdown:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Bedroom Type Tabs */
.bedroom-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    position: relative; /* create stacking context so z-index works */
    z-index: 2; /* sit above the background overlay */
}

.bedroom-tab {
    background: transparent;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    pointer-events: auto; /* ensure tab can be clicked when overlay exists */
    box-shadow: none; /* disable any drop shadows for tabs */
    -webkit-tap-highlight-color: transparent; /* prevent blue tap highlight on mobile */
    -webkit-user-select: none;
    user-select: none;
}

.bedroom-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fbbf24;
}

.bedroom-tab:focus,
.bedroom-tab:active {
    outline: none;
    box-shadow: none;
}

.bedroom-tab.active {
    background: #1e3a8a;
    color: white;
    border-color: #1e3a8a;
}

/* Apartments Grid */
.apartments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Hide any slider buttons if they exist */
.slider-btn,
.prev-btn,
.next-btn,
.apartments-slider-container {
    display: none !important;
}

/* Apartment Card - New Design */
.apartment-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.apartment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.apartment-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.apartment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.apartment-card:hover .apartment-image img {
    transform: scale(1.1);
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #dc2626;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.discount-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF6B00;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.apartment-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.apartment-title {
    font-size: 1.2rem;
    color: #1e293b;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.apartment-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.apartment-location i {
    color: #94a3b8;
    font-size: 0.85rem;
}

.apartment-features {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    padding: 0;
    border: none;
}

.feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.feature-item i {
    color: #1e3a8a;
    font-size: 1rem;
}

.feature-item span {
    font-size: 0.8rem;
    color: #475569;
    font-weight: 500;
}

.apartment-description {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
}

.pricing-box {
    margin-top: auto;
    padding: 0 20px 20px 20px;
}

.book-now-btn {
    width: 100%;
    background: #2a5298;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.book-now-btn:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42, 82, 152, 0.4);
}

/* View All Apartments Button */
.view-all-container {
    text-align: center;
    margin-top: 60px;
}

.view-all-apartments-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #2a5298;
    color: white;
    padding: 18px 45px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(42, 82, 152, 0.3);
}

.view-all-apartments-btn:hover {
    background: #1e3a8a;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(42, 82, 152, 0.5);
}

/* How We Work Section */
.how-we-work {
    padding: 100px 0;
    background: #ffffff;
}

.how-we-work-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    color: #1e3a8a;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.section-main-title {
    font-size: 2.5rem;
    color: #2c2c2c;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.process-card {
    text-align: center;
    padding: 0 15px;
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon svg {
    width: 100%;
    height: 100%;
    color: #1e3a8a;
    stroke: #1e3a8a;
}

.process-title {
    font-size: 1.3rem;
    color: #2c2c2c;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-bottom: 18px;
    line-height: 1.3;
}

.process-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Responsive - How We Work */
@media (max-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 40px;
    }
}

@media (max-width: 768px) {
    .how-we-work {
        padding: 60px 0;
    }
    
    .section-main-title {
        font-size: 1.8rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .process-icon {
        width: 70px;
        height: 70px;
    }
    
    .process-title {
        font-size: 1.2rem;
    }
}

.view-all-apartments-btn i {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.view-all-apartments-btn:hover i {
    transform: translateX(5px);
}

/* Apartments Responsive */
@media (max-width: 1024px) {
    .apartments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .city-location-filter {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .featured-title {
        font-size: 2rem;
    }
    
    .city-location-filter {
        padding: 25px;
        gap: 20px;
    }
    
    .filter-label {
        font-size: 1rem;
    }
    
    .city-location-dropdown {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .bedroom-tabs {
        gap: 10px;
        margin-bottom: 40px;
    }
    
    .bedroom-tab {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .apartments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .apartment-features {
        gap: 10px;
    }
    
    .view-all-apartments-btn {
        padding: 15px 35px;
        font-size: 0.9rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
        margin: 0 20px;
    }
    
    .service-card-item {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .service-card-item:last-child {
        border-bottom: none;
    }
    
    .vision-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .vision-text {
        padding-right: 0;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
        min-height: 60vh;
    }
    
    .about-hero-content {
        padding-left: 0;
        text-align: center;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .services-cards-section {
        margin-top: -40px;
    }
    
    .service-card-item {
        padding: 40px 20px;
    }
    
    .service-card-icon i {
        font-size: 2.5rem;
    }
    
    .vision-points {
        grid-template-columns: 1fr;
    }
    
    .vision-image img {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 1.75rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
    
    .service-card-item {
        padding: 30px 15px;
    }
    
    .vision-image img {
        height: 300px;
    }
}

/* About Hero Section - Exact Match to Reference */
.about-hero-section {
    min-height: 70vh;
    background: linear-gradient(135deg, #4c9ab1 0%, #3b82c4 100%);
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
}

.hero-overlay-blue {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(76, 154, 177, 0.85) 0%, 
        rgba(59, 130, 196, 0.9) 100%);
}

/* Hide decorative overlays on small screens so they don't overlap controls */
@media (max-width: 768px) {
    .apartments::before,
    .apartments::after {
        display: none;
    }
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: white;
    padding-left: 20px;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 600;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-contact-btn {
    background: #2a5298;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-shadow: none;
}

.hero-contact-btn:hover {
    background: #1e3a8a;
    transform: translateY(-2px);

}

/* Services Cards Section - Exact Match */
.services-cards-section {
    padding: 0;
    background: #ffffff;
    margin-top: -80px;
    position: relative;
    z-index: 3;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.service-card-item {
    background: #ffffff;
    padding: 50px 30px;
    text-align: center;
    border-right: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-item:last-child {
    border-right: none;
}

.service-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
    position: relative;
}

.service-card-icon {
    margin-bottom: 25px;
}

.service-card-icon i {
    font-size: 3rem;
    color: #2a5298;
}

.service-card-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.service-card-item p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Vision Section - Exact Match */
.vision-section {
    padding: 100px 0;
    background: #ffffff;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.vision-text {
    padding-right: 40px;
}

.vision-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.vision-divider {
    width: 60px;
    height: 4px;
    background: #2a5298;
    margin-bottom: 30px;
    border-radius: 2px;
}

.vision-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
    font-style: italic;
}

.vision-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.vision-point {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vision-point i {
    color: #2a5298;
    font-size: 1.2rem;
}

.vision-point span {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.about-more-btn {
    background: #2a5298;
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.about-more-btn:hover {
    background: #1e3a8a;
    transform: translateY(-2px);

}

.vision-image {
    position: relative;
}

.vision-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
        margin: 0 20px;
    }
    
    .service-card-item {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .service-card-item:last-child {
        border-bottom: none;
    }
    
    .vision-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .vision-text {
        padding-right: 0;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 80px 0;
        min-height: 60vh;
    }
    
    .about-hero-content {
        padding-left: 0;
        text-align: center;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .services-cards-section {
        margin-top: -40px;
    }
    
    .service-card-item {
        padding: 40px 20px;
    }
    
    .service-card-icon i {
        font-size: 2.5rem;
    }
    
    .vision-points {
        grid-template-columns: 1fr;
    }
    
    .vision-image img {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 1.75rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
    
    .service-card-item {
        padding: 30px 15px;
    }
    
    .vision-image img {
        height: 300px;
    }
}

/* Apartments Slider */
.apartments-slider-container {
    position: relative;
    margin-top: 40px;
    padding: 0 100px;
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
}

.apartments-slider {
    overflow: hidden;
    width: 100%;
    cursor: grab;
}

.apartments-slider:active {
    cursor: grabbing;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(30, 58, 138, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: linear-gradient(135deg, var(--accent-gold), #fbbf24);
    color: white;
    transform: translateY(-50%) scale(1.15);
    border-color: var(--accent-gold);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-btn i {
    font-size: 1.4rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.slider-btn:hover i {
    color: white;
    transform: scale(1.1);
}

/* Enhanced card styling for slider */
.apartments-grid .apartment-card {
    flex: 0 0 350px;
    max-width: 350px;
    transform: scale(0.98);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.apartments-grid .apartment-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Slider Responsive Design */
@media (max-width: 1024px) {
    .apartments-slider-container {
        padding: 0 80px;
        max-width: 1600px;
    }
    
    .apartments-grid {
        gap: 35px;
    }
    
    .apartments-grid .apartment-card {
        flex: 0 0 320px;
        max-width: 320px;
    }
    
    .slider-btn {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 768px) {
    .apartments-slider-container {
        padding: 0 60px;
        max-width: 100%;
    }
    
    .apartments-grid {
        gap: 30px;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
    
    .apartments-grid .apartment-card {
        flex: 0 0 300px;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .apartments-slider-container {
        padding: 0 50px;
        max-width: 100%;
    }
    
    .apartments-grid {
        gap: 25px;
    }
    
    .apartments-grid .apartment-card {
        flex: 0 0 280px;
        max-width: 280px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
    }
    
    .slider-btn i {
        font-size: 1.2rem;
    }
}

/* Ensure consistent apartment card heights and slider layout */
.apartments-grid .apartment-card {
    flex: 0 0 350px;
    max-width: 350px;
}

/* Professional Apartment Card Design */
.apartment-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.apartment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(251, 191, 36, 0.2);
}

/* Image Section */
.apartment-image {
    height: 200px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.apartment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.apartment-card:hover .apartment-image img {
    transform: scale(1.08);
}

.discount-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    animation: pulse 2s infinite;
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    z-index: 3;
    letter-spacing: 0.025em;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 32px);
    box-sizing: border-box;
}

/* Content Section */
.apartment-info {
    padding: 15px;
    background: white;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 120px;
}

.apartment-title {
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.3;
    color: #1a202c;
    margin: 0;
    letter-spacing: -0.025em;
}

.apartment-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

.apartment-location i {
    font-size: 0.875rem;
    color: #94a3b8;
}

.description {
    color: #718096;
    margin-bottom: 16px;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.4;
}

.description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f39c12 100%);
    border-radius: 2px;
}

/* Enhanced Apartment Features Styling */
.apartment-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 0;
    align-items: start;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 8px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    min-height: 70px;
    justify-content: center;
}

.feature-item:hover {
    background: #fef7e6;
    border-color: #fbbf24;
    transform: translateY(-2px);
}

.feature-item i {
    color: #1e3a8a;
    font-size: 1.2rem;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    color: #fbbf24;
    transform: scale(1.1);
}

.feature-item span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: #475569;
    line-height: 1.2;
    letter-spacing: 0.025em;
}

/* Pricing Section */
.pricing-box {
    margin-top: auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Professional Book Now Button */
.book-now-btn {
    width: 100%;
    max-width: 280px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    margin: 0 auto;
    display: block;
}

.book-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.book-now-btn:hover::before {
    left: 100%;
}

.book-now-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1a237e 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.book-now-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

/* Remove conflicting styles */
.apartment-info .pricing-box {
    padding: 0;
    margin-top: 0;
}

.apartment-info .price {
    display: none;
}

/* Remove conflicting styles */
.apartment-info .pricing-box {
    padding: 0;
    margin-top: 0;
}

.apartment-info .price {
    display: none;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .apartments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .apartment-card {
        min-height: 480px;
        max-width: 100%;
    }
    
    .apartment-image {
        height: 220px;
    }
    
    .apartment-info {
        padding: 20px;
    }
    
    .apartment-title {
        font-size: 1.3rem;
        min-height: 2em;
    }
    
    .apartment-features {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px 0;
    }
    
    .feature-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 10px 12px;
        min-height: 50px;
    }
    
    .feature-item i {
        margin-bottom: 0;
        margin-right: 8px;
        font-size: 1rem;
    }
    
    .feature-item span {
        font-size: 0.85rem;
    }
    
    .book-now-btn {
        font-size: 0.9rem;
        padding: 14px 20px;
        max-width: 100%;
        margin: 16px auto;
    }
}

@media (max-width: 480px) {
    .apartment-card {
        min-height: 450px;
    }
    
    .apartment-image {
        height: 200px;
    }
    
    .apartment-info {
        padding: 16px;
    }
    
    .apartment-title {
        font-size: 1.2rem;
    }
    
    .apartment-features {
        padding: 12px 0;
    }
    
    .feature-item {
        padding: 8px 10px;
        min-height: 45px;
    }
}

/* Tablet Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .apartment-card {
        min-height: 400px;
    }
    
    .apartment-image {
        height: 180px;
    }
    
    .feature-item {
        padding: 10px 6px;
        min-height: 60px;
    }
    
    .feature-item span {
        font-size: 0.75rem;
    }
    
    .book-now-btn {
        max-width: 100%;
        margin: 16px auto;
    }
}

/* Services Page Styles */
.services-page {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.services-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

/* Services Intro */
.services-intro {
    text-align: center;
    margin-bottom: 70px;
    padding: 0 20px;
}

.services-intro h2 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--bright-gold) 50%, var(--dark-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
    text-shadow: 2px 4px 8px rgba(251, 191, 36, 0.3);
    position: relative;
}

.services-intro h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
}

.intro-content p {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px;
    font-weight: 400;
}

/* Core Services */
.core-services {
    margin-bottom: 80px;
}

.core-services h2,
.specialized-services h2,
.service-process h2,
.why-choose-services h2,
.service-areas h2 {
    font-size: 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--royal-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
    position: relative;
}

.core-services h2::after,
.specialized-services h2::after,
.service-process h2::after,
.why-choose-services h2::after,
.service-areas h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* Featured Service Card */
.service-card.featured {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(30, 64, 175, 0.03) 100%);
    border: 1px solid rgba(30, 58, 138, 0.1);
    box-shadow: 0 15px 50px rgba(30, 58, 138, 0.15);
}

.service-card.featured .service-icon {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--royal-blue) 100%);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.service-card.featured .service-icon i {
    color: var(--accent-gold);
}

.service-card.featured h3 {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--royal-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
    text-align: left;
}

.service-features li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: #6c757d;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: var(--accent-gold);
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Specialized Services */
.specialized-services {
    margin-bottom: 80px;
}

.specialized-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.specialized-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.specialized-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(251, 191, 36, 0.2);
}

.specialized-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.specialized-card h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.specialized-card p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Service Process */
.service-process {
    margin-bottom: 80px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    counter-reset: step-counter;
}

.process-step {
    position: relative;
    padding-top: 70px;
    text-align: center;
}

.process-step::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--bright-gold) 100%);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.process-step .step-content h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.process-step .step-content p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Why Choose Services */
.why-choose-services {
    margin-bottom: 80px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(30, 58, 138, 0.2);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.advantage-card h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.advantage-card p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Service Areas */
.service-areas {
    margin-bottom: 80px;
}

.areas-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.areas-text p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
}

.cities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.city-group h4 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.city-group h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
}

.city-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.city-group li {
    padding: 10px 0;
    color: #6c757d;
    font-size: 1.05rem;
    position: relative;
    padding-left: 25px;
}

.city-group li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
    top: 5px;
}

/* Services CTA */
.services-cta {
    text-align: center;
    padding: 70px 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--royal-blue) 100%);
    border-radius: 20px;
    margin-top: 60px;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    opacity: 0.3;
}

.services-cta h2 {
    color: var(--accent-gold);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 2;
}

.services-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-page {
        padding: 80px 0 60px;
    }
    
    .services-intro h2,
    .core-services h2,
    .specialized-services h2,
    .service-process h2,
    .why-choose-services h2,
    .service-areas h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .specialized-grid,
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .areas-content {
        padding: 30px 20px;
    }
    
    .cities-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-cta {
        padding: 50px 20px;
    }
    
    .services-cta h2 {
        font-size: 2rem;
    }
    
    .services-cta p {
        font-size: 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .services-page {
        padding: 60px 0 40px;
    }
    
    .services-intro h2,
    .core-services h2,
    .specialized-services h2,
    .service-process h2,
    .why-choose-services h2,
    .service-areas h2 {
        font-size: 1.8rem;
    }
    
    .intro-content p {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .apartment-card {
        min-height: 400px;
    }
    
    .apartment-image {
        height: 180px;
    }
    
    .feature-item {
        padding: 10px 6px;
        min-height: 60px;
    }
    
    .feature-item span {
        font-size: 0.75rem;
    }
}

.book-now-btn {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f39c12 100%);
    color: var(--primary-blue);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    max-width: 220px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin: 16px auto;
}

.book-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    transition: left 0.5s ease;
}

.book-now-btn:hover {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    color: var(--primary-blue);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
    border-color: var(--accent-gold);
}

.book-now-btn:hover::before {
    left: 100%;
}

.price-main {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    box-sizing: border-box;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    display: inline-block;
    min-width: 140px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 10px 0;
}

.price-main::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
    opacity: 0.6;
}

.price-period {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.pricing-badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.discount-tag {
    background: var(--accent-gold);
    color: var(--primary-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.availability-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Apartments Section */
.apartments {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--royal-blue) 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Animated Background for Apartments Section */
.apartments-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Decorative backgrounds should not capture pointer events */
    pointer-events: none;
    overflow: hidden;
}

/* Dot Grid Background */
.dot-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, var(--accent-gold) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px, 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

/* Floating Golden Dots */
.floating-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-dots::before,
.floating-dots::after {
    content: '';
    position: absolute;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.2;
    animation: float 15s infinite linear;
}

.floating-dots::before {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    animation-duration: 25s;
}

.floating-dots::after {
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: 8%;
    animation-duration: 30s;
    animation-direction: reverse;
}

/* Additional Floating Dots */
.floating-dots .dot {
    position: absolute;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.floating-dots .dot:nth-child(1) {
    width: 40px;
    height: 40px;
    top: 20%;
    left: 15%;
    animation-duration: 22s;
}

.floating-dots .dot:nth-child(2) {
    width: 60px;
    height: 60px;
    bottom: 25%;
    right: 20%;
    animation-duration: 28s;
    animation-direction: reverse;
}

.floating-dots .dot:nth-child(3) {
    width: 30px;
    height: 30px;
    top: 40%;
    right: 10%;
    animation-duration: 18s;
}

/* Animations */
@keyframes gridMove {
    0% {
        background-position: 0 0, 20px 20px;
    }
    100% {
        background-position: 20px 20px, 40px 40px;
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, 40px) rotate(90deg);
    }
    50% {
        transform: translate(40px, 20px) rotate(180deg);
    }
    75% {
        transform: translate(20px, -40px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Mouse Follow Effect */
.apartments-background.mouse-follow {
    transition: transform 0.1s ease-out;
}

/* Apartments Slideshow Styles */
.apartments-slideshow {
    margin: 60px 0;
    position: relative;
}

.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.slides-wrapper {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    transform: translateX(0);
}

.slide {
    min-width: 100%;
    flex-shrink: 0;
    animation: slideInFromRight 0.8s ease-out;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-apartment-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 15px;
}

.slide-apartment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.slide-apartment-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.slide-apartment-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.slide-apartment-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.slide-apartment-location {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.slide-apartment-price {
    font-size: 1.3rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.slide-apartment-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #6c757d;
}

.slide-apartment-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slide-apartment-feature i {
    color: var(--accent-gold);
    font-size: 1rem;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 58, 138, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-btn:hover {
    background: rgba(30, 58, 138, 1);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(30, 58, 138, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--accent-gold);
    width: 35px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

.dot:hover {
    background: rgba(30, 58, 138, 0.5);
}

.view-all-container {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--royal-blue) 100%);
    color: white;
    padding: 15px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-royal-blue) 100%);
}

/* Responsive Slideshow */
@media (max-width: 768px) {
    .slide-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .slide-apartment-image {
        height: 250px;
    }
    
    .slide-apartment-title {
        font-size: 1.2rem;
    }
    
    .slide-apartment-price {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .slide-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .slide-apartment-image {
        height: 200px;
    }
    
    .slide-apartment-title {
        font-size: 1.1rem;
    }
    
    .slide-apartment-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    backdrop-filter: blur(15px);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.2);
    border-color: rgba(52, 152, 219, 0.3);
}

.service-card:hover::before {
    left: 100%;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--bright-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.service-card h3 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--royal-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.3px;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    transform: translateY(-2px);
}

.service-card p {
    color: #6c757d;
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.service-card:hover p {
    color: #495057;
    transform: translateY(-1px);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--light-gray);
}

.testimonials-container {
    position: relative;
    margin-top: 3rem;
    padding: 0 60px;
}

.testimonials-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.testimonials-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 350px;
    flex-shrink: 0;
    height: auto;
    display: flex;
    flex-direction: column;
}

/* Scroll Buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-gold);
    color: var(--primary-blue);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-btn:hover {
    background: var(--bright-gold);
    transform: translateY(-50%) scale(1.1);
}

.scroll-left {
    left: -25px;
}

.scroll-right {
    right: -25px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-info h4 {
    margin: 0 0 5px 0;
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-gold);
    position: absolute;
    top: -10px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--primary-blue);
    margin-bottom: 0.2rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive adjustments for Testimonials */
@media (max-width: 992px) {
    .testimonials-container {
        padding: 0 30px;
    }

    .testimonials-scroll {
        gap: 1rem;
        padding: 16px 0;
    }

    .testimonial-card {
        width: calc(85% - 1rem);
        flex: 0 0 85%;
        padding: 1.5rem;
    }

    .scroll-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .scroll-left { left: 8px; }
    .scroll-right { right: 8px; }
}

@media (max-width: 600px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-container {
        padding: 0 16px;
    }

    .testimonials-scroll {
        gap: 0.75rem;
        padding: 12px 0;
    }

    /* Make each testimonial occupy the viewport width for better readability */
    .testimonial-card {
        width: calc(100% - 32px);
        flex: 0 0 100%;
        border-radius: 12px;
        padding: 1.25rem;
    }

    .testimonial-content p {
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .author-info h4 { font-size: 1rem; }
    .author-info span { font-size: 0.85rem; }

    /* Move scroll buttons inside the container, reduce size, and vertically center them */
    .scroll-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        opacity: 0.95;
        z-index: 20;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .scroll-left { left: 12px; }
    .scroll-right { right: 12px; }

    /* Slightly reduce prominence of quotation mark on small screens */
    .testimonial-content p::before {
        font-size: 2.2rem;
        top: -6px;
        left: -6px;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--royal-blue) 100%);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--bright-gold) 100%);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    color: var(--primary-blue);
    margin-bottom: 0.2rem;
}

.contact-item p {
    color: var(--text-light);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

/* Company Info Section */
.footer-section.company-info {
    max-width: 400px;
}

.footer-section.company-info .logo h2 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.company-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-logo {
    height: 20px;
    width: auto;
    background: white;
    padding: 3px 6px;
    border-radius: 3px;
    object-fit: contain;
}

/* Footer Sections */
.footer-section h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 10px;
    display: inline-block;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
    transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-section.company-info {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Booking Page Styles */
.booking-hero {
    position: relative;
    height: 60vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 80px;
}

.booking-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(52, 73, 94, 0.7));
}

.booking-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.booking-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.booking-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.booking-hero .hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.booking-hero .hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-hero .hero-feature i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.booking-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(248, 249, 250, 0) 0%, rgba(248, 249, 250, 1) 100%);
    z-index: 1;
}

.booking-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.booking-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.booking-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
}

.booking-form-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
    position: relative;
}

.booking-form-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.booking-form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.booking-summary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2.5rem 0;
    border: 2px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.booking-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #f39c12, var(--accent-color));
}

.booking-summary h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--accent-color);
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.info-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.info-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.info-card:hover .info-card-image img {
    transform: scale(1.1);
}

.info-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.7), rgba(52, 73, 94, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.info-card:hover .info-card-overlay {
    opacity: 0.7;
}

.info-card .info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, var(--accent-color), #f39c12);
    border-color: rgba(255, 255, 255, 0.5);
}

.info-card-content {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-card-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.info-card-content p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left: 4px solid #28a745;
}

.notification.error {
    border-left: 4px solid #dc3545;
}

.notification-content {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-content i {
    font-size: 1.2rem;
    color: #28a745;
}

.notification.error .notification-content i {
    color: #dc3545;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    margin-left: auto;
}

.notification-close:hover {
    color: #666;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Location Filter Styles */
.location-filter-container {
    display: flex;
    gap: 30px;
    margin: 30px 0 40px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    justify-content: center;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 200px;
}

.filter-group label {
    font-weight: 700;
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-shadow: none;
    font-family: 'Inter', sans-serif;
}

.filter-dropdown {
    padding: 14px 18px;
    border: 2px solid rgba(42, 82, 152, 0.3);
    border-radius: 12px;
    background: white;
    color: #2a5298;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232a5298' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    padding-right: 50px;
    font-family: 'Inter', sans-serif;
    text-shadow: none;
}

.filter-dropdown:hover {
    border-color: #2a5298;
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 82, 152, 0.2);
    color: #1e3a8a;
}

.filter-dropdown:focus {
    border-color: #2a5298;
    background: white;
    box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.2);
    color: #2a5298;
}

.filter-dropdown:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.05);
}

.filter-dropdown option {
    background: white;
    color: #2a5298;
    padding: 12px;
    font-weight: 500;
    font-size: 1rem;
}

/* No Results Message */
.no-results-message {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Select Location Message */
.select-location-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    backdrop-filter: blur(10px);
    margin: 20px 0;
}

.message-content i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.message-content h3 {
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.message-content p {
    color: var(--accent-gold);
    opacity: 1;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Apartment Card Animations */
.apartment-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.apartment-card.filtering {
    transform: translateY(20px) scale(0.95);
    opacity: 0;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 120px 0 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(251,191,36,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(251,191,36,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(251,191,36,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.header-content {
    position: relative;
    z-index: 2;
}

.header-content h1 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.header-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(251, 191, 36, 0.2);
    padding: 12px 24px;
    border-radius: 25px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    backdrop-filter: blur(10px);
}

.location-badge i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.location-badge span {
    color: var(--text-light);
    font-weight: 500;
}

/* Apartments Listing */
.apartments-listing {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.98) 0%, rgba(26, 35, 126, 0.95) 100%);
}

.listing-header {
    text-align: center;
    margin-bottom: 50px;
}

.listing-header h2 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    text-shadow: none !important;
}

.listing-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        justify-content: center;
        text-align: center;
        padding: 120px 30px 20px 30px;
    }
    
    .hero-content {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 20px;
    }
    
    .location-filter-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .filter-group {
        min-width: auto;
        width: 100%;
    }
    
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1102; /* Make sure hamburger sits above other elements */
        pointer-events: auto;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary-blue) 0%, #14336b 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        padding: 2rem 0;
        z-index: 1101; /* ensure menu overlays page */
        pointer-events: auto;
    }


    
    
    .nav-menu.active {
        left: 0;
        top: 0;
        display: flex !important; /* Ensure it's visible when active on mobile */
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding-top: 90px; /* make room for the header */
        height: 100vh; /* fill the whole screen */
        box-sizing: border-box;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: contain;
        animation: slideDown 240ms ease-in-out;
    }

    /* Add a subtle top bar to indicate overlay */
    .nav-menu::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 70px;
        width: 100%;
        background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.0) 100%);
        z-index: 1102;
        box-shadow: inset 0 -1px rgba(255,255,255,0.02);
    }

    @keyframes slideDown {
        from { transform: translateX(-12%); opacity: 0 }
        to { transform: translateX(0); opacity: 1 }
    }

    /* Make nav links readable on dark mobile background */
    .nav-menu .nav-link {
        color: #ffffff !important;
        padding: 16px 20px !important;
        font-size: 1.15rem !important;
        display: block !important;
        text-transform: none;
        font-weight: 600;
        letter-spacing: 0.2px;
        transition: background 0.2s ease, color 0.2s ease;
        border-radius: 8px;
        margin: 10px 16px;
        background: rgba(255,255,255,0.02);
        box-shadow: 0 8px 24px rgba(11,35,80,0.15);
        text-align: left;
    }
    .nav-menu .nav-link + .nav-link {
        border-top: 1px solid rgba(255,255,255,0.06);
    }
    .nav-menu .nav-link:hover {
        background: rgba(255,255,255,0.03);
        color: #FFD700 !important;
    }
    .nav-menu .nav-link.active {
        color: #FFD700 !important;
        background: rgba(255,255,255,0.04);
    }
    
    /* Mobile Dropdown Styles */
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(30, 58, 138, 0.9);
        box-shadow: none;
        border: none;
        margin: 10px 0;
        padding: 0;
        border-radius: 0;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        margin: 0;
        border-radius: 0;
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    /* Hamburger active to X animation */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .apartments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Booking page mobile styles */
    .booking-hero {
        height: 50vh;
        margin-top: 70px;
        background-attachment: scroll;
    }

    .booking-hero .hero-title {
        font-size: 2.5rem;
    }

    .booking-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .booking-hero .hero-features {
        gap: 1rem;
    }

    .booking-hero .hero-feature {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .booking-section {
        padding: 3rem 0;
    }

    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-form-container {
        padding: 2rem 1.5rem;
    }

    .booking-form-container h2 {
        font-size: 2rem;
    }

    .booking-info {
        grid-template-columns: 1fr;
    }

    .info-card-image {
        height: 150px;
    }

    .info-card-content {
        padding: 1.5rem;
    }

    .info-card .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .info-card-content h3 {
        font-size: 1.2rem;
    }

    .info-card-content p {
        font-size: 0.9rem;
    }

    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }

    .notification.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        justify-content: center;
        text-align: center;
        padding: 120px 20px 20px 20px;
    }
    
    .hero-content {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 250px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .apartments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0 16px;
    }
    
    .apartment-title {
        font-size: 1.25rem;
    }
    
    .apartment-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .feature-item {
        font-size: 0.75rem;
    }
    
    .apartments-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    
    .apartment-card {
        margin: 0;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .apartment-features {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .feature-item {
        font-size: 0.75rem;
        min-height: 20px;
    }
    
    .feature-item i {
        width: 12px;
        height: 12px;
        font-size: 0.75rem;
    }
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Apartment Card Badge Styles */
.premium-badge, .luxury-badge, .discount-badge, .popular-badge, .new-badge, .deal-badge, .exclusive-badge, .view-badge, .spacious-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    z-index: 2;
    max-width: 80px;
    text-align: center;
}

.premium-badge {
    background: linear-gradient(135deg, var(--accent-gold), var(--bright-gold));
    color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.luxury-badge {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.discount-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    animation: pulse 2s infinite;
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    z-index: 3;
    letter-spacing: 0.025em;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 32px);
    box-sizing: border-box;
}

.popular-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.new-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.deal-badge {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.exclusive-badge {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: #fbbf24;
    box-shadow: 0 4px 12px rgba(31, 41, 55, 0.3);
    border: 1px solid #fbbf24;
}

.view-badge {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.spacious-badge {
    background: linear-gradient(135deg, #84cc16, #65a30d);
    color: white;
    box-shadow: 0 4px 12px rgba(132, 204, 22, 0.3);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===============================
   APARTMENT LIST PAGE STYLES
   =============================== */

/* Breadcrumb Section */
.breadcrumb-section {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(30, 64, 175, 0.80) 50%, rgba(26, 35, 126, 0.90) 100%),
                url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 160px 0 80px 0;
    border-bottom: 1px solid rgba(251, 191, 36, 0.3);
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(251, 191, 36, 0.1) 0%, transparent 50%, rgba(251, 191, 36, 0.05) 100%);
    z-index: 1;
}

.breadcrumb-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1.5" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.08"/><circle cx="40" cy="80" r="1.2" fill="%23ffffff" opacity="0.06"/><circle cx="60" cy="20" r="0.8" fill="%23fbbf24" opacity="0.15"/></svg>');
    background-size: 150px 150px;
    z-index: 2;
}

.breadcrumb {
    position: relative;
    z-index: 3;
}

.breadcrumb-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    color: var(--white);
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin: 0 0 25px 0;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px;
    line-height: 1.1;
}

.breadcrumb-list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 15px 25px;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: inline-flex;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.breadcrumb-list a:hover {
    color: var(--accent-gold);
    background: rgba(251, 191, 36, 0.2);
    transform: translateY(-1px);
}

.breadcrumb-list a i {
    font-size: 1rem;
}

.breadcrumb-list .divider {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    margin: 0 6px;
    opacity: 0.8;
}

.breadcrumb-list .current {
    color: var(--accent-gold);
    font-weight: 700;
    padding: 6px 12px;
    background: transparent;
    border-radius: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: -10px auto 40px auto;
}

.section-subtitle p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Apartment Listing Page Modifications */
.apartment-listing-page {
    padding: 60px 0 80px 0;
    background: white;
}

.apartment-listing-page .section-title {
    margin-bottom: 1rem;
}

/* Results Info */
.results-info {
    text-align: center;
    margin: 30px 0 20px 0;
}

.results-info p {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

/* Enhanced Filter Container for Listing Page */
.apartment-listing-page .location-filter-container {
    background: white;
    border: 2px solid rgba(42, 82, 152, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin: 50px 0 30px 0;
}

.load-more-btn {
    background: #1e3a8a;
    color: var(--white);
    border: none;
    padding: 15px 35px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.load-more-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.load-more-btn:active {
    transform: translateY(0);
}

.load-more-btn i {
    transition: transform 0.3s ease;
}

.load-more-btn:hover i {
    transform: scale(1.1);
}

/* View All Apartments Button */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--royal-blue) 50%, var(--dark-royal-blue) 100%);
    color: var(--white);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--bright-gold) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    border-color: var(--accent-gold);
}

.view-all-btn:hover::before {
    left: 0;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

.view-all-btn i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

/* Enhanced Apartment Cards for Listing Page */
.apartment-listing-page .apartment-card {
    min-height: 480px;
}

.apartment-listing-page .apartment-amenities {
    background: rgba(251, 191, 36, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-gold);
}

/* Navigation Active State */
.nav-link.active {
    color: var(--accent-gold) !important;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 2px;
}

/* Responsive Design for Apartment List Page */
@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 120px 0 60px 0;
        background-attachment: scroll;
    }
    
    .breadcrumb-content {
        text-align: center;
    }
    
    .page-title {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    
    .breadcrumb-list {
        justify-content: center;
        font-size: 1rem;
        padding: 12px 20px;
        gap: 10px;
    }
    
    .apartment-listing-page .location-filter-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .section-subtitle p {
        font-size: 1rem;
    }
    
    .load-more-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .breadcrumb-section {
        padding: 100px 0 40px 0;
    }
    
    .apartment-listing-page {
        padding: 40px 0 60px 0;
    }
    
    .page-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .breadcrumb-list {
        font-size: 0.9rem;
        padding: 10px 16px;
        gap: 8px;
    }
    
    .apartment-listing-page .section-title {
        font-size: 2.2rem;
    }
    
    .apartment-listing-page .location-filter-container {
        margin: 20px 0;
        padding: 15px;
    }
}

/* ===============================
   CONTACT US PAGE STYLES
   =============================== */

/* Contact Page Modifications */
.contact-page {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-page .section-title {
    margin-bottom: 1rem;
}

.contact-page .section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.contact-page .section-subtitle p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Enhanced Contact Form for Contact Page */
.contact-page .contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-page .contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-page .map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-page {
        padding: 60px 0;
    }
    
    .contact-page .contact-form,
    .contact-page .contact-info {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .contact-page .section-subtitle p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-page {
        padding: 40px 0;
    }
    
    .contact-page .contact-form,
    .contact-page .contact-info {
        padding: 25px 15px;
    }
}

/* ===============================
   ABOUT US PAGE STYLES
   =============================== */

/* About Page - Simple Modern Design */
.about-page {
    padding: 0;
    background: var(--white);
    min-height: calc(100vh - 400px);
}

/* About Deluxe Holiday Homes Section */
.about-deluxe-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-deluxe-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-deluxe-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.about-deluxe-images .blue-circle-bg {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--accent-gold);
    border-radius: 50%;
    z-index: 0;
    left: -100px;
    bottom: -80px;
}

.about-deluxe-images .orange-circle-bg {
    position: absolute;
    width: 280px;
    height: 280px;
    background: #1e3a8a;
    border-radius: 50%;
    z-index: 0;
    top: -50px;
    left: 35%;
}

.about-deluxe-images .image-wrapper {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    z-index: 1;
}

.about-deluxe-images .img-left {
    margin-top: -40px;
}

.about-deluxe-images .img-right {
    margin-top: 40px;
}

.about-deluxe-images img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.about-deluxe-text {
    padding-left: 20px;
}

.about-deluxe-text .section-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: #1e3a8a;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.about-deluxe-text .section-description {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-deluxe-text .contact-btn {
    display: inline-block;
    background: var(--accent-gold);
    color: white;
    padding: 15px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
    
}

.about-deluxe-text .contact-btn:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 2px 10px var(--accent-gold);
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.vision-mission-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.vm-card {
    background: white;
    padding: 60px 50px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.vm-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.vm-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.vm-description {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
}

/* Our Story Section */
.our-story-section {
    padding: 100px 0;
    background: #ffffff;
}

.our-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.our-story-text .section-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: #1e3a8a;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.our-story-text .story-paragraph {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 25px;
}

.our-story-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.our-story-images .navy-circle-bg {
    position: absolute;
    width: 280px;
    height: 280px;
    background: #1e3a8a;
    border-radius: 50%;
    z-index: 0;
    left: -50px;
    top: -50px;
}

.our-story-images .cyan-circle-bg {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--accent-gold);
    border-radius: 50%;
    z-index: 0;
    right: -40px;
    bottom: -40px;
}

.our-story-images .story-image-wrapper {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    z-index: 1;
}

.our-story-images .img-left {
    margin-top: -40px;
}

.our-story-images .img-right {
    margin-top: 40px;
}

.our-story-images img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-deluxe-content,
    .our-story-content {
        gap: 60px;
    }
    
    .about-deluxe-text .section-title,
    .our-story-text .section-title {
        font-size: 2.4rem;
    }
    
    .vision-mission-cards {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-deluxe-section,
    .vision-mission-section,
    .our-story-section {
        padding: 60px 0;
    }
    
    .about-deluxe-content,
    .our-story-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-deluxe-text .section-title,
    .our-story-text .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-deluxe-text .section-description,
    .our-story-text .story-paragraph {
        text-align: center;
    }
    
    .about-deluxe-text .contact-btn {
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }
    
    .vision-mission-cards {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vm-card {
        padding: 40px 30px;
    }
    
    .about-deluxe-images {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-deluxe-images .blue-circle-bg {
        width: 200px;
        height: 200px;
        left: -50px;
        bottom: -50px;
    }
    
    .about-deluxe-images .orange-circle-bg {
        width: 160px;
        height: 160px;
        top: -30px;
    }
    
    .about-deluxe-images img {
        height: 300px;
    }
    
    .our-story-images {
        gap: 30px;
    }
    
    .our-story-images .navy-circle-bg {
        width: 180px;
        height: 180px;
        left: -30px;
        top: -30px;
    }
    
    .our-story-images .cyan-circle-bg {
        width: 140px;
        height: 140px;
        right: -30px;
        bottom: -30px;
    }
    
    .our-story-images img {
        height: 300px;
    }
    
    .our-story-images .img-left,
    .our-story-images .img-right {
        margin: 0;
        margin-top: 0 !important;
    }
    
    .about-deluxe-images .blue-circle {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .about-deluxe-text .section-title,
    .our-story-text .section-title {
        font-size: 1.8rem;
    }
    
    .vm-title {
        font-size: 1.6rem;
    }
    
    .about-deluxe-text .section-description,
    .our-story-text .story-paragraph,
    .vm-description {
        font-size: 0.95rem;
    }
    
    .about-deluxe-images {
        gap: 20px;
    }
    
    .about-deluxe-images .blue-circle-bg {
        width: 150px;
        height: 150px;
    }
    
    .about-deluxe-images .orange-circle-bg {
        width: 120px;
        height: 120px;
    }
    
    .about-deluxe-images img {
        height: 260px;
    }
    
    .our-story-images .navy-circle-bg {
        width: 130px;
        height: 130px;
    }
    
    .our-story-images .cyan-circle-bg {
        width: 100px;
        height: 100px;
    }
    
    .our-story-images img {
        height: 260px;
    }
}
