/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: #E2A374;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E2A374;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #8b4513, #d2691e);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

/* Hero Form Styles */
.hero-form-container {
    max-width: 400px;
    width: 100%;
    z-index: 2;
    position: relative;
}

.hero-form {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(205, 133, 63, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b4513, #CD853F, #E2A374);
    border-radius: 15px 15px 0 0;
}

.hero-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E2A374;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 2;
}

.hero-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.hero-form-group {
    display: flex;
    flex-direction: column;
}

.hero-form-group input,
.hero-form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(205, 133, 63, 0.3);
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.hero-form-group input:focus,
.hero-form-group select:focus {
    outline: none;
    border-color: #E2A374;
    box-shadow: 0 0 0 3px rgba(226, 163, 116, 0.2);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.hero-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.hero-form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.hero-form-group select {
    cursor: pointer;
}

.hero-form-submit {
    width: 100%;
    background: linear-gradient(135deg, #8b4513, #CD853F, #E2A374);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.6);
    background: linear-gradient(135deg, #A0522D, #D2691E, #F4A460);
}

.hero-form-submit:hover::before {
    left: 100%;
}

.hero-form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.hero-form-submit i {
    font-size: 1.1rem;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}

.hero-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
    position: relative;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(60, 60, 60, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
}

.highlight {
    color: #E2A374;
    display: inline;
}

.hero-subtitle-large {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 300;
}

.subtitle-line {
    display: block;
}

.hero-location {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
    color: #e0e0e0;
}

.hero-features {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 400;
}

.feature-bullet {
    width: 8px;
    height: 8px;
    background: #E2A374;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.primary-button {
    background: linear-gradient(135deg, #8b4513, #d2691e);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    justify-content: center;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.4);
}

.secondary-button {
    background: rgba(40, 40, 40, 0.9);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    justify-content: center;
}

.secondary-button:hover {
    background: rgba(60, 60, 60, 0.9);
    transform: translateY(-2px);
}

/* Navigation Arrows */
.hero-nav-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
    pointer-events: none;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    background: rgba(40, 40, 40, 0.8);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.nav-arrow:hover {
    background: rgba(60, 60, 60, 0.9);
    transform: scale(1.1);
}

.nav-arrow-left {
    left: 20px;
}

.nav-arrow-right {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #E2A374;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about::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="luxury-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23CD853F" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury-pattern)"/></svg>');
    opacity: 0.3;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image-section {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.02);
}

.price-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 4px;
    font-weight: 500;
}

.about-content-section {
    padding: 20px 0;
}

.content-header {
    margin-bottom: 2rem;
}

.section-category {
    color: #E2A374;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 0;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.content-body {
    margin-bottom: 2.5rem;
}

.content-body p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.key-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #E2A374;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.feature-subtitle {
    font-size: 0.95rem;
    color: #666;
    font-weight: 400;
}

.cta-section {
    margin-top: 2rem;
}

.download-brochure-btn {
    background: linear-gradient(135deg, #8b4513, #d2691e);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.download-brochure-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(139, 69, 19, 0.4);
}

/* Apartments Section */
.apartments {
    padding: 100px 0;
    background: white;
}

.apartments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.apartment-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.apartment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.apartment-card.featured {
    border: 2px solid #CD853F;
    transform: scale(1.05);
}

.apartment-card.premium {
    border: 2px solid #8b4513;
}

.apartment-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #CD853F;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.apartment-card.premium .apartment-badge {
    background: #8b4513;
}

.apartment-image {
    height: 250px;
    overflow: hidden;
}

.apartment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.apartment-card:hover .apartment-image img {
    transform: scale(1.1);
}

.apartment-content {
    padding: 2rem;
}

.apartment-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.apartment-size {
    font-size: 1.2rem;
    color: #CD853F;
    font-weight: 600;
    margin-bottom: 1rem;
}

.apartment-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: #f0f0f0;
    color: #666;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Amenities Section */
.amenities {
    padding: 120px 0;
    background: white;
    --tw-gradient-from: transparent;
    --tw-gradient-via-position: 80%;
    --tw-gradient-to: rgb(0 0 0 / .8);
}

.amenities-header {
    text-align: center;
    margin-bottom: 4rem;
}

.amenities-category {
    color: #E2A374;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.amenities-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.amenities-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.amenity-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 300px;
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.amenity-image {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.amenity-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
    transition: opacity 0.3s ease;
}

.amenity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(186, 31, 47, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.amenity-overlay i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.amenity-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}

.amenity-card:hover .amenity-overlay {
    opacity: 1;
}

.amenity-card:hover .amenity-image img {
    transform: scale(1.05);
}

.amenity-card:hover .amenity-image::before {
    opacity: 0.3;
}

.amenity-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    text-align: left;
}

.amenity-icon {
    position: absolute;
    bottom: 70px;
    /* left: 20px; */
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex
;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.amenity-icon i {
    font-size: 20px;
    color: white;
}

.amenity-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.amenity-card p {
    font-size: 1rem;
    color: white;
    line-height: 1.5;
    margin: 0;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

.amenities-cta {
    text-align: center;
}

.view-amenities-btn {
    background: linear-gradient(135deg, #8b4513, #d2691e);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.view-amenities-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(139, 69, 19, 0.4);
}

/* Location Section */
.location {
    padding: 120px 0;
    background: #f8f9fa;
}

.location-header {
    text-align: center;
    margin-bottom: 4rem;
}

.location-category {
    color: #E2A374;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.location-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.location-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.location-map-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(1px);
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #E2A374;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.5);
    animation: pulse 2s infinite;
    border: 3px solid white;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.location-address {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #666;
    font-size: 0.9rem;
    border: 1px solid #e0e0e0;
}

.book-visit-btn {
    background: #8B4513;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    align-self: flex-start;
}

.book-visit-btn:hover {
    background: #A0522D;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.location-info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.connectivity-section,
.developments-section,
.travel-times-section {
    background: white;
    padding: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.connectivity-section h3,
.developments-section h3,
.travel-times-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.connectivity-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.connectivity-icon {
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.connectivity-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
}

.connectivity-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.developments-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 1.5rem;
}

.developments-list li {
    padding: 0.3rem 0;
    color: #666;
    font-size: 0.85rem;
    position: relative;
    padding-left: 1rem;
}

.developments-list li::before {
    content: '•';
    color: #E2A374;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.travel-times-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.travel-time-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.travel-time-item:last-child {
    border-bottom: none;
}

.destination {
    font-weight: 500;
    color: #1a1a1a;
    font-size: 0.85rem;
}

.time {
    font-weight: 600;
    color: #E2A374;
    background: #fff5f0;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

/* Featured Amenity Card Section */
.featured-amenity {
    padding: 80px 0;
    background: #f8f9fa;
}

.featured-card {
    max-width: 800px;
    margin: 0 auto;
    height: 500px;
    background-image: url('assets/AMENITIES/RoofTopSwimmingPool.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    border-radius: 30px;
}

.card-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon i {
    font-size: 24px;
    color: white;
}

.card-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
}

.card-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 10px 0;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.card-subtitle {
    font-size: 1.2rem;
    color: white;
    margin: 0;
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

/* Responsive Design for Featured Card */
@media (max-width: 768px) {
    .featured-card {
        height: 400px;
        border-radius: 20px;
    }
    
    .card-icon {
        top: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    
    .card-icon i {
        font-size: 20px;
    }
    
    .card-content {
        bottom: 30px;
        left: 30px;
    }
    
    .card-title {
        font-size: 2rem;
    }
    
    .card-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .featured-card {
        height: 350px;
        border-radius: 15px;
    }
    
    .card-content {
        bottom: 20px;
        left: 20px;
    }
    
    .card-title {
        font-size: 1.8rem;
    }
}

/* Investment Section */
.investment {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.investment-content {
    max-width: 1000px;
    margin: 0 auto;
}

.investment-header {
    text-align: center;
    margin-bottom: 3rem;
}

.investment-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.investment-subtitle {
    color: #e0e0e0;
    font-weight: 400;
    display: block;
    font-size: 2rem;
}

.investment-highlight {
    color: #CD853F;
    font-weight: 700;
    display: block;
    font-size: 2.8rem;
}

.investment-description {
    font-size: 1rem;
    color: #b0b0b0;
    margin: 0;
    font-weight: 300;
}

.property-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.property-card {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.property-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.property-card.popular {
    border: 2px solid #CD853F;
    background: #2d2d2d;
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #CD853F;
    color: white;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-icon {
    margin-bottom: 1rem;
}

.card-icon i {
    font-size: 2rem;
    color: #CD853F;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.card-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #CD853F;
    margin-bottom: 0.4rem;
    font-family: 'Playfair Display', serif;
}

.card-price.blurred {
    color: #666;
    filter: blur(2px);
    user-select: none;
}

.card-area {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.card-button {
    width: 100%;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-button.brown {
    background: #8B4513;
    color: white;
}

.card-button.brown:hover {
    background: #A0522D;
    transform: translateY(-2px);
}

.card-button.orange {
    background: linear-gradient(135deg, #8b4513, #d2691e);
    color: white;
}

.card-button.orange:hover {
    background: linear-gradient(135deg, #d2691e, #b8860b);
    transform: translateY(-2px);
}

.early-bird-section {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #333;
}

.early-bird-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.early-bird-content {
    margin-bottom: 1.5rem;
}

.eoi-text {
    font-size: 1.2rem;
    color: #CD853F;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-family: 'Playfair Display', serif;
}

.payment-plan {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
    font-weight: 500;
}

.eoi-button {
    background: linear-gradient(135deg, #8b4513, #d2691e);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eoi-button:hover {
    background: linear-gradient(135deg, #d2691e, #b8860b);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(139, 69, 19, 0.3);
}

/* Responsive Design for Investment Section */
@media (max-width: 768px) {
    
    .hero-badge{
        margin-bottom: 0;
        margin-top: 15px;
    }
    .property-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .investment-title {
        font-size: 2.5rem;
    }
    
    .investment-subtitle {
        font-size: 1.8rem;
    }
    
    .investment-highlight {
        font-size: 2.5rem;
    }
    
    .early-bird-section {
        padding: 2rem;
    }
    .primary-button{
        display: none;
    }
    .secondary-button{
        display: none;
    }
    .hero-features{
               display: none;
    }
}

/* Apartment Configurations Section */
.apartment-configurations {
    padding: 100px 0;
    background: white;
}

.configurations-content {
    max-width: 1200px;
    margin: 0 auto;
}

.configurations-header {
    text-align: center;
    margin-bottom: 4rem;
}

.configurations-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.configurations-title i {
    color: #CD853F;
    font-size: 2.2rem;
}

.configurations-description {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.apartment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.apartment-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.apartment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.apartment-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.apartment-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.apartment-card:hover .apartment-image img {
    transform: scale(1.05);
}

.apartment-info {
    padding: 1.5rem;
}

.apartment-type {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.apartment-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.apartment-size {
    font-size: 1.1rem;
    font-weight: 600;
    color: #CD853F;
}

.apartment-tower {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.view-plan-btn {
    width: 100%;
    background: linear-gradient(135deg, #8b4513, #d2691e);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-plan-btn:hover {
    background: linear-gradient(135deg, #d2691e, #b8860b);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(139, 69, 19, 0.3);
}

/* Responsive Design for Apartment Configurations */
@media (max-width: 1200px) {
    .apartment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .apartment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .configurations-title {
        font-size: 2.2rem;
    }
    
    .configurations-title i {
        font-size: 1.8rem;
    }
    
    .apartment-details {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Floor Plan Modal */
.floor-plan-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 95%;
    height: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(186, 31, 47, 0.8);
    transform: scale(1.1);
}

.modal-title {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Playfair Display', serif;
}

.modal-actions {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.modal-cta-btn {
    background: linear-gradient(135deg, #8b4513, #CD853F);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.modal-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
    background: linear-gradient(135deg, #A0522D, #D2691E);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #333;
}

.contact-item i {
    color: #CD853F;
    font-size: 1.3rem;
    width: 25px;
}

.contact-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #CD853F;
}

.primary-button.full-width {
    width: 100%;
    justify-content: center;
}

/* Footer */
.gradient-dark-luxury {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d, #1a1a1a);
    position: relative;
}

.gradient-dark-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #CD853F, transparent);
}

.text-white {
    color: white;
}

.text-luxury-400 {
    --tw-text-opacity: 1;
    color: rgb(201 184 150 / var(--tw-text-opacity, 1));
}

.text-bronze-400 {
    color: #E2A374;
}

.border-luxury-800 {
    border-color: rgba(205, 133, 63, 0.3);
}

.font-lora {
    font-family: 'Lora', serif;
}

.hover-underline:hover {
    text-decoration: underline;
}

.transition-colors {
    transition: color 0.3s ease;
}

.cursor-pointer {
    cursor: pointer;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.pt-8 {
    padding-top: 2rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.text-center {
    text-align: center;
}

.text-md {
    font-size: 1rem;
}

.text-sm {
    font-size: 0.875rem;
}

.border-t {
    border-top: 1px solid;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.justify-between {
    justify-content: space-between;
}

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

.items-center {
    align-items: center;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.block {
    display: block;
}

.underline {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .md\:flex-row {
        flex-direction: row;
    }
    
    .md\:text-left {
        text-align: left;
    }
}

/* Policy Pages */
.policy-page {
    padding: 120px 0 80px;
    background: #f8f9fa;
    min-height: 100vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #CD853F;
}

.policy-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.policy-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    border-left: 4px solid #CD853F;
    padding-left: 1rem;
}

.policy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin: 2rem 0 1rem;
    font-family: 'Inter', sans-serif;
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.8rem;
}

.policy-link {
    color: #CD853F;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: #E2A374;
    text-decoration: underline;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #CD853F;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.contact-info strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
    .policy-page {
        padding: 100px 0 60px;
    }
    
    .policy-header h1 {
        font-size: 2.5rem;
    }
    
    .policy-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}

/* Luxury About Section Styles */
.about-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.luxury-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #CD853F, #E2A374);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(205, 133, 63, 0.3);
    position: relative;
    overflow: hidden;
}

.luxury-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.luxury-badge:hover::before {
    left: 100%;
}

.luxury-badge i {
    font-size: 1.1rem;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #CD853F, #E2A374);
    border-radius: 2px;
}

.about-subtitle {
    font-size: 1.4rem;
    color: #666;
    font-weight: 400;
    font-style: italic;
    margin: 0;
}

.luxury-image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    background: white;
    padding: 25px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.luxury-image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(205, 133, 63, 0.1), rgba(226, 163, 116, 0.05));
    z-index: 1;
}

.luxury-image-container img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.luxury-price-card {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, rgba(205, 133, 63, 0.95), rgba(226, 163, 116, 0.95));
    backdrop-filter: blur(20px);
    color: white;
    padding: 25px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(205, 133, 63, 0.4);
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.price-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    margin-bottom: 5px;
}

.price-note {
    font-size: 0.8rem;
    opacity: 0.8;
    font-style: italic;
}

.image-features {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 3;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #1a1a1a;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-tag i {
    color: #CD853F;
    font-size: 1rem;
}

.luxury-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.luxury-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #CD853F, #E2A374);
    border-radius: 2px;
    margin-bottom: 2rem;
}

.luxury-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
    font-weight: 400;
}

.luxury-highlights {
    margin-bottom: 3rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #CD853F, #E2A374);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(205, 133, 63, 0.3);
}

.highlight-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.highlight-text p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.luxury-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(205, 133, 63, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-card .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #CD853F, #E2A374);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(205, 133, 63, 0.3);
}

.feature-card .feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
    font-family: 'Playfair Display', serif;
}

.feature-card .feature-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.luxury-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.luxury-btn {
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.luxury-btn.primary {
    background: linear-gradient(135deg, #8b4513, #d2691e);
    color: white;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.luxury-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.4);
}

.luxury-btn.secondary {
    background: transparent;
    color: #CD853F;
    border: 2px solid #CD853F;
    box-shadow: 0 5px 15px rgba(205, 133, 63, 0.2);
}

.luxury-btn.secondary:hover {
    background: #CD853F;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(205, 133, 63, 0.3);
}

.luxury-btn i {
    font-size: 1.1rem;
}

/* Compact About Section Styles */
.floating-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    z-index: 3;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #CD853F;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(205, 133, 63, 0.1);
}

.feature-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: white;
}

.feature-highlight .feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #CD853F, #E2A374);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(205, 133, 63, 0.3);
}

.feature-highlight .feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
    font-family: 'Playfair Display', serif;
}

.feature-highlight .feature-content p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.content-header {
    margin-bottom: 2rem;
}

.luxury-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #CD853F, #E2A374);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(205, 133, 63, 0.3);
}

.luxury-badge i {
    font-size: 0.9rem;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.luxury-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #CD853F, #E2A374);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.luxury-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 400;
}

.luxury-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.luxury-btn {
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.luxury-btn.primary {
    background: linear-gradient(135deg, #8b4513, #d2691e);
    color: white;
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.luxury-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(139, 69, 19, 0.4);
}

.luxury-btn.secondary {
    background: transparent;
    color: #CD853F;
    border: 2px solid #CD853F;
    box-shadow: 0 4px 10px rgba(205, 133, 63, 0.2);
}

.luxury-btn.secondary:hover {
    background: #CD853F;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(205, 133, 63, 0.3);
}

.luxury-btn i {
    font-size: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .footer-logo-image {
        height: 35px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle-large {
        font-size: 2rem;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero-nav-arrows {
        display: none;
    }
    
    .carousel-indicators {
        bottom: 20px;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    /* Hero Form Mobile Styles */
    .hero-form-container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .hero-form {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .hero-form-title {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-form-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-form-group input,
    .hero-form-group select {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .hero-form-submit {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .about-layout,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image-section {
        order: 2;
    }
    
    .about-content-section {
        order: 1;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .apartments-grid {
        grid-template-columns: 1fr;
    }
    
    .apartment-card.featured {
        transform: none;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .amenities-title {
        font-size: 2.2rem;
    }
    
    .amenities-subtitle {
        font-size: 1.1rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-info-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .location-title {
        font-size: 2.2rem;
    }
    
    .location-subtitle {
        font-size: 1.1rem;
    }
    
    .developments-list {
        columns: 1;
    }
    
    
    .price-amount {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .amenities-title {
        font-size: 1.8rem;
    }
    
    .amenities-subtitle {
        font-size: 1rem;
    }
    
    .location-title {
        font-size: 1.8rem;
    }
    
    .location-subtitle {
        font-size: 1rem;
    }
    
    .map-container {
        height: 250px;
    }
}
