* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-bottom: 1px solid #e5e5e5;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    height: 32px;
}

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

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.call-text {
    color: #718096;
}

.phone-number {
    font-weight: bold;
    color: #f56500;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 600px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=1200') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
}

.hero-content {
    color: white;
    max-width: 50%;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.search-form {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    color: #374151;
    font-weight: bold;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.input-with-icon input {
    padding-left: 2.5rem;
}

input, select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.875rem;
}

input:focus, select:focus {
    outline: none;
    border-color: #f56500;
}

.search-btn {
    width: 100%;
    background: #f56500;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #e55a00;
}

.hero-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 0;
    text-align: center;
}

.crore-zone {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f56500;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
}

.stat-card.orange {
    background: #f56500;
    color: white;
}

.stat-card.white {
    background: white;
    border: 1px solid #e5e7eb;
    color: #374151;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
}

.stat-label {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Luxury Property Section */
.luxury-property {
    padding: 4rem 0;
    background: #f56500;
}

.luxury-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.luxury-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.luxury-info {
    color: white;
}

.luxury-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.luxury-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    margin-right: 0.75rem;
}

.luxury-details {
    background: white;
    color: #374151;
    padding: 1.5rem;
    border-radius: 8px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.view-details-btn {
    background: #f56500;
    color: white;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.view-details-btn:hover {
    background: #e55a00;
}

/* New Projects Section */
.new-projects {
    padding: 4rem 0;
    background: #f9fafb;
}

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

.project-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.project-card img {
    width: 100%;
    height: 192px;
    object-fit: cover;
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.project-info p {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: #f56500;
    font-weight: bold;
}

.view-btn {
    background: #f56500;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.3s;
}

.view-btn:hover {
    background: #e55a00;
}

/* Featured Properties Section */
.featured-properties {
    padding: 4rem 0;
    background: white;
}

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

.property-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.property-card img {
    width: 100%;
    /*height: 192px;*/
    object-fit: cover;
}

.property-info {
    padding: 1.5rem;
}

.property-info h3 {
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.property-info p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.details-btn {
    background: #f56500;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.3s;
}

.details-btn:hover {
    background: #e55a00;
}

/* Leading Developers Section */
.leading-developers {
    padding: 4rem 0;
    background: #f9fafb;
}

.developers-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.developer-logo {
    width: 80px;
    height: 80px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* Exclusive Offers Section */
.exclusive-offers {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f56500, #ec4899);
}

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

.offers-text {
    color: white;
}

.offers-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.offers-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.explore-btn {
    background: white;
    color: #f56500;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.explore-btn:hover {
    background: #f3f4f6;
}

.offers-image {
    display: flex;
    justify-content: center;
}

.offers-image img {
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Bank Partners Section */
.bank-partners {
    padding: 4rem 0;
    background: white;
}

.banks-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.bank-logo {
    width: 96px;
    height: 48px;
    background: #e5e7eb;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
}

/* Blog Section */
.blog {
    padding: 4rem 0;
    background: #f9fafb;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.blog-card img {
    width: 100%;
    height: 192px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.blog-content p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-date {
    font-size: 0.875rem;
    color: #9ca3af;
}

.read-more {
    color: #f56500;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

.read-more:hover {
    color: #e55a00;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: white;
}

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

.testimonial-card {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
}

.testimonial-text {
    color: #6b7280;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-name {
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Call to Action Section */
.call-to-action {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f56500, #e55a00);
}

.cta-content {
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.contact-btn {
    background: white;
    color: #f56500;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: #f3f4f6;
}

.view-properties-btn {
    background: transparent;
    color: white;
    padding: 0.75rem 2rem;
    border: 2px solid white;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.view-properties-btn:hover {
    background: white;
    color: #f56500;
}

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

.cta-image img {
    max-width: 600px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0;
}

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

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: #f56500;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.social-icon:hover {
    background: #e55a00;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links,
    .nav-contact {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .luxury-content {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .offers-content {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .developers-list,
    .banks-list {
        gap: 1rem;
    }
}

/* Property Details Page Styles */
.property-hero {
    padding: 6rem 0 4rem;
    background: #f9fafb;
}

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

.property-main-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.property-main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(245, 101, 0, 0.9);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.play-btn:hover {
    background: #f56500;
    transform: scale(1.1);
}

.image-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.property-contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: fit-content;
}

.property-contact-form h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form input {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.contact-form input:focus {
    outline: none;
    border-color: #f56500;
}

.submit-btn {
    background: #f56500;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #e55a00;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 14px;
}

.contact-item i {
    color: #f56500;
}

.property-overview {
    padding: 4rem 0;
    background: white;
}

.overview-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 3rem;
}

.property-title h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.property-title h2 {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.property-location {
    color: #999;
    font-size: 1rem;
}

.property-location i {
    color: #f56500;
    margin-right: 0.5rem;
}

.property-price {
    text-align: right;
}

.price-from {
    display: block;
    color: #666;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #f56500;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
}

.stat-label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
}

.configuration-pricing {
    padding: 4rem 0;
    background: #f9fafb;
}

.config-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.config-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: #f56500;
    color: white;
    font-weight: bold;
}

.config-col {
    padding: 1rem;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.config-col:last-child {
    border-right: none;
}

.config-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #eee;
}

.config-row:last-child {
    border-bottom: none;
}

.config-row .config-col {
    padding: 1.5rem 1rem;
    border-right: 1px solid #eee;
    color: #333;
}

.config-row .config-col:last-child {
    border-right: none;
}

.config-row .config-col strong {
    display: block;
    margin-bottom: 0.25rem;
}

.config-row .config-col span {
    color: #666;
    font-size: 0.9rem;
}

.price-btn {
    background: #f56500;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s;
}

.price-btn:hover {
    background: #e55a00;
}

.key-highlights {
    padding: 4rem 0;
    background: white;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    transition: all 0.3s;
}

.highlight-item:hover {
    background: #f0f1f3;
    transform: translateY(-2px);
}

.highlight-item i {
    color: #f56500;
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.project-overview {
    padding: 4rem 0;
    background: #f9fafb;
}

.project-description {
    max-width: 800px;
    margin: 0 auto;
}

.project-description p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.payment-plan {
    padding: 4rem 0;
    background: white;
}

.payment-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    margin-bottom: 2rem;
}

.payment-header {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    background: #333;
    color: white;
    font-weight: bold;
}

.payment-col {
    padding: 1rem;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.payment-col:last-child {
    border-right: none;
}

.payment-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    border-bottom: 1px solid #eee;
}

.payment-row:last-child {
    border-bottom: none;
}

.payment-row .payment-col {
    padding: 1rem;
    border-right: 1px solid #eee;
    color: #333;
}

.payment-row .payment-col:last-child {
    border-right: none;
}

.download-btn {
    background: #f56500;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.download-btn:hover {
    background: #e55a00;
    transform: translateY(-2px);
}

.floor-plans {
    padding: 4rem 0;
    background: #f9fafb;
}

.floor-plan-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.floor-tab {
    padding: 12px 24px;
    border: 2px solid #ddd;
    background: white;
    color: #666;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.floor-tab.active,
.floor-tab:hover {
    border-color: #f56500;
    background: #f56500;
    color: white;
}

.floor-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width:30%;
}

.floor-plan-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.floor-plan-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.floor-plan-item h4 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
}

.floor-plan-item p {
    padding: 0 1rem 1rem;
    color: #666;
}

.project-amenities {
    padding: 4rem 0;
    background: white;
}

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

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem 1rem;
    background: #f9fafb;
    border-radius: 12px;
    transition: all 0.3s;
}

.amenity-item:hover {
    background: #f0f1f3;
    transform: translateY(-5px);
}

.amenity-item i {
    color: #f56500;
    font-size: 2rem;
}

.amenity-item span {
    color: #333;
    font-weight: 500;
}

.photo-gallery {
    padding: 4rem 0;
    background: #f9fafb;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.gallery-tab {
    padding: 12px 24px;
    border: 2px solid #ddd;
    background: white;
    color: #666;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.gallery-tab.active,
.gallery-tab:hover {
    border-color: #f56500;
    background: #f56500;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.video-item {
    background: #333;
    border-radius: 12px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.video-item:hover {
    background: #444;
    transform: scale(1.05);
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: white;
}

.video-placeholder i {
    font-size: 3rem;
}

.download-brochure {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f56500, #e55a00);
}

.brochure-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.brochure-info h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.brochure-info p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.download-brochure-btn {
    background: white;
    color: #f56500;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.download-brochure-btn:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

/* Mobile Responsiveness for Property Details */
@media (max-width: 768px) {
    .property-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-header {
        flex-direction: column;
        gap: 2rem;
    }
    
    .property-price {
        text-align: left;
    }
    
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .config-header,
    .config-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .config-col {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        text-align: center;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-header,
    .payment-row {
        grid-template-columns: 1fr;
    }
    
    .payment-col {
        border-right: none;
        border-bottom: 1px solid #eee;
        text-align: center;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .brochure-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .floor-plan-tabs,
    .gallery-tabs {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .overview-stats {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .property-title h1 {
        font-size: 2rem;
    }
    
    .property-title h2 {
        font-size: 1.2rem;
    }


