* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

.container {
    
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #120d48;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 8px 0;

}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    
}



.nav {
    display: flex;
    gap: 24px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    border-bottom-color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.phone-numbers {
    font-size: 11px;
    font-weight: 500;
    text-align: right;
}

.action-buttons-header {
    display: flex;
    gap: 6px;
    margin-top: 10px;
}

.btn {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #059669;
    color: white;
}

.btn-primary:hover {
    
   
}

.btn-secondary {
    background: #1e40af;
    color: white;
}

.btn-secondary:hover {
    
    
}

.btn-brochure {
    background: #7c3aed;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-brochure:hover {
    background: #6d28d9;
    transform: translateY(-1px);
}

.btn-large {
    padding: 14px 28px;
    font-size: 14px;
    background: #4338ca;
    color: white;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1002;
}

.mobile-menu-btn span {
    width: 22px;
    height: 3px;
    background: white;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    }

.slider-btn {
    position: absolute;
    top: 90%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Fixed Inquiry Form */
.fixed-inquiry-form {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 320px;
    z-index: 999;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
}

.inquiry-card {
    padding: 20px;
}

.inquiry-title {
    font-size: 18px;
    font-weight: 600;
    color: #4338ca;
    margin-bottom: 16px;
    text-align: center;
}

.form-group {
    margin-bottom: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 13px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4338ca;
    box-shadow: 0 0 0 3px rgba(67, 56, 202, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 70px;
}

.submit-btn {
    width: 100%;
    background: #4338ca;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.submit-btn:hover {
    background: #3730a3;
    transform: translateY(-1px);
}

.consent-text {
    display: flex;
    gap: 6px;
    align-items: flex-start;
}

.consent-text input[type="checkbox"] {
    width: auto;
    margin: 3px 0 0 0;
    flex-shrink: 0;
}

.consent-text label {
    font-size: 10px;
    line-height: 1.4;
    color: #6b7280;
    margin: 0;
}

/* Main Content */
.main-content {
    padding: 40px 0;
    background: white;
  
}



.section {
    margin-bottom: 60px;
}

.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color:  #120d48;
    text-align: center;
    margin-bottom: 14px;
}

.property-header {
    margin-bottom: 28px;
}

.property-title {
    font-size: 42px;
    font-weight: 700;
    color:  #120d48;
    margin-bottom: 6px;
    letter-spacing: -1px;
    width: 100%;
}

.property-location {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

.property-description {
    margin-bottom: 32px;
}

.property-description p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

.property-description strong {
    color:  #120d48;
    font-weight: 600;
}

.key-highlights {
    margin-bottom: 32px;
}

.key-highlights h3 {
    font-size: 22px;
    font-weight: 600;
    color:  #120d48;
    margin-bottom: 16px;
}

.key-highlights ul {
    list-style: none;
    padding: 0;
}

.key-highlights li {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 15px;
    color: #475569;
}

.key-highlights li:last-child {
    border-bottom: none;
}

.action-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Pricing Section */
.pricing-table {
    margin-bottom: 40px;
    overflow-x: auto;
}

.pricing-table table {
    width: 90%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pricing-table th,
.pricing-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-table th {
    background:  #120d48;
    color: white;
    font-weight: 600;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-cta {
    text-align: center;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* Floor Plans */
.floor-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.floor-plan-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.floor-plan-item:hover {
    transform: translateY(-5px);
}

.floor-plan-image {
    height: 250px;
    overflow: hidden;
}

.floor-plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floor-plan-label {
    padding: 16px;
    text-align: center;
    background:  #120d48;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

/* Gallery */
.gallery-slider {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-btn.prev {
    left: 20px;
}

.gallery-btn.next {
    right: 20px;
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.amenity-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.amenity-item:hover {
    transform: translateY(-5px);
    border-color: #4338ca;
}

.amenity-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.amenity-item h4 {
    font-size: 13px;
    font-weight: 600;
    color: #4338ca;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Location */
.location-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.location-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: #4338ca;
    margin-bottom: 8px;
}

.location-info p {
    color: #64748b;
    margin-bottom: 24px;
}

.location-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-item {
    padding: 12px;
    background: #f1f5f9;
    border-radius: 8px;
    border-left: 4px solid #4338ca;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #4338ca;
}

.footer-section p {
    color: white;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 6px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4338ca;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #374151;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4338ca;
    transform: translateY(-2px);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: white;
}

.contact-item i {
    color: #4338ca;
    width: 14px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 16px;
    text-align: center;
    color: white;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.close:hover {
    color: #000;
}

.modal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4338ca;
    margin-bottom: 20px;
    text-align: center;
}

.modal-form .form-group {
    margin-bottom: 16px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-content {
        margin-right: 0;
    }
    
    .fixed-inquiry-form {
        position: static;
        width: 100%;
        max-width: 400px;
        margin: 20px auto;
        top: auto;
        right: auto;
    }
}

@media (max-width: 1024px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .header-content {
        position: relative;
        justify-content: center;
        padding: 8px 0;
    }
    
    
    
    .contact-info {
        display: none;
    }
    
    .action-buttons-header {
        display: none;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-cta {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        padding: 4px 0;
    }
    
    

    
    .property-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    
    .property-location {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-slider {
        height: 45vh;
        min-height: 300px;
    }
    
    .main-content {
        padding: 30px 0;
        margin-right: 0;
    }
    
    .section-header h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .section {
        margin-bottom: 40px;
    }
    
    .property-description p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .key-highlights {
        margin-bottom: 24px;
    }
    
    .key-highlights h3 {
        font-size: 18px;
        margin-bottom: 14px;
    }
    
    .key-highlights li {
        padding: 8px 0;
        font-size: 14px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 24px;
    }
    
    .btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 12px;
        text-align: center;
    }
    
    .btn-large {
        padding: 14px 20px;
        font-size: 13px;
    }
    
    /* Fixed form becomes static on mobile */
    .fixed-inquiry-form {
        position: static;
        width: 100%;
        max-width: none;
        margin: 20px 0;
        right: auto;
        top: auto;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .inquiry-card {
        padding: 16px;
    }
    
    .inquiry-title {
        font-size: 16px;
        margin-bottom: 14px;
    }
    
    /* Pricing table mobile optimization */
    .pricing-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-table table {
        min-width: 500px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 12px 8px;
        font-size: 14px;
    }
    
    .pricing-cta {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }
    
    /* Floor plans mobile */
    .floor-plans {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .floor-plan-image {
        height: 200px;
    }
    
    .floor-plan-label {
        padding: 16px;
        font-size: 16px;
    }
    
   
  
    
    /* Gallery mobile */
    .gallery-slider {
        height: 250px;
        margin-bottom: 20px;
    }
    
    /* Location mobile */
    .location-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .location-info h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .location-info p {
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    .location-item {
        padding: 10px;
        font-size: 14px;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .phone-numbers {
        display: none;
    }
    
    .contact-info {
        order: 3;
        flex-basis: 100%;
        margin-top: 12px;
    }
    
    .action-buttons-header {
        flex-direction: row;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .action-buttons-header .btn {
        flex: 1;
        min-width: 120px;
        padding: 10px 12px;
        font-size: 11px;
        width: auto;
    }
    
    .slider-btn {
        width: 20px;
        height: 20px;
        font-size: 8px;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .gallery-btn.prev {
        left: 10px;
    }
    
    .gallery-btn.next {
        right: 10px;
    }
    
    /* Modal mobile optimization */
    .modal-content {
        margin: 5% auto;
        padding: 20px;
        width: 95%;
        max-width: 400px;
        max-height: 85vh;
    }
    
    .modal-content h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 6px;
    }
    
    .submit-btn {
        padding: 14px;
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .consent-text {
        gap: 10px;
    }
    
    .consent-text label {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .footer-section p,
    .footer-section ul li {
        font-size: 14px;
    }
    
    .contact-item {
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .header-content {
        padding: 3px 0;
    }
    
    
    
    .property-title {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .property-location {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .property-description p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 16px;
    }
    
    .key-highlights h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .key-highlights li {
        padding: 8px 0;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .section {
        margin-bottom: 40px;
    }
    
    .btn {
        padding: 12px 16px;
        font-size: 12px;
    }
    
    .btn-large {
        padding: 14px 20px;
        font-size: 13px;
    }
    
    .hero-slider {
        height: 25vh;
        min-height: 150px;
    }
    
    .main-content {
        padding: 30px 0;
    }
    
    .inquiry-card {
        padding: 16px;
    }
    
    .inquiry-title {
        font-size: 16px;
        margin-bottom: 14px;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .amenity-item {
        padding: 16px 12px;
    }
    
    .amenity-icon {
        font-size: 30px;
        margin-bottom: 8px;
    }
    
    .amenity-item h4 {
        font-size: 11px;
    }
    
    .gallery-slider {
        height: 200px;
    }
    
    .floor-plan-image {
        height: 180px;
    }
    
    .floor-plan-label {
        padding: 12px;
        font-size: 14px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 10px 6px;
        font-size: 13px;
    }
    
    .location-info h3 {
        font-size: 18px;
    }
    
    .location-info p {
        font-size: 14px;
    }
    
    .location-item {
        padding: 8px;
        font-size: 13px;
    }
    
    .map-container iframe {
        height: 200px;
    }
    
    .modal-content {
        margin: 2% auto;
        padding: 16px;
        width: 98%;
        max-height: 95vh;
    }
    
    .modal-content h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .form-group {
        margin-bottom: 14px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 16px;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 13px;
        margin-bottom: 14px;
    }
    
    .consent-text label {
        font-size: 11px;
    }
    
    .action-buttons-header .btn {
        padding: 8px 10px;
        font-size: 10px;
        min-width: 100px;
    }
    
    .slider-btn {
        width: 25px;
        height: 25px;
        font-size: 9px;
    }
    
    .gallery-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slider-btn.prev,
    .gallery-btn.prev {
        left: 8px;
    }
    
    .slider-btn.next,
    .gallery-btn.next {
        right: 8px;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-section h4 {
        font-size: 15px;
        margin-bottom: 14px;
    }
    
    .footer-section p,
    .footer-section ul li {
        font-size: 13px;
    }
    
    .contact-item {
        margin-bottom: 8px;
        font-size: 13px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Mobile Navigation */
.nav.mobile-open {
    display: flex;
    position: absolute;
    top: 114%;
    left: 0;
    right: 0;
    background: #1a145f;
    flex-direction: column;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    text-align: center;
}

.nav.mobile-open .nav-link {
    padding: 05px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav.mobile-open .nav-link:last-child {
    border-bottom: none;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
.nav-link:focus,
.btn:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4338ca;
    box-shadow: 0 0 0 3px rgba(67, 56, 202, 0.1);
}

/* Pricing Section */
        .pricing-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .ornamental-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 40px;
        }

        .divider-line {
            width: 60px;
            height: 1px;
            background-color: #6b7280;
        }

        .diamond-container {
            margin: 0 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .diamond {
            width: 12px;
            height: 12px;
            border: 2px solid #6b7280;
            transform: rotate(45deg);
            background-color: transparent;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 300;
            color: #64748b;
            text-align: center;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #6b7280;
            text-align: center;
            margin-bottom: 50px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .pricing-card {
            border: 2px solid #64748b;
            background-color: white;
            overflow: hidden;
        }

        .card-header {
            background-color: white;
            padding: 20px;
            text-align: center;
            border-bottom: 2px solid #64748b;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #64748b;
        }

        .card-price {
            background-color: #64748b;
            color: white;
            padding: 15px;
            text-align: center;
            font-size: 1.2rem;
            font-weight: 500;
        }

        .contact-info {
            text-align: center;
            color: #6b7280;
            font-size: 1rem;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .brochure-btn {
            display: block;
            width: 200px;
            margin: 0 auto;
            padding: 15px 30px;
            background-color: transparent;
            border: 2px solid #64748b;
            color: #64748b;
            font-size: 1rem;
            font-weight: 500;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
        }

        .brochure-btn:hover {
            background-color: #64748b;
            color: white;
        }

        /* Connectivity Section */
        .connectivity-section {
            padding: 80px 0;
            background-color: white;
        }

        .connectivity-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #374151;
            text-align: center;
            margin-bottom: 50px;
        }

        .connectivity-images {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .connectivity-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 8px;
        }

        .connectivity-content {
            font-size: 1rem;
            color: #374151;
            line-height: 1.8;
        }

        .connectivity-content p {
            margin-bottom: 20px;
        }

        .highlight {
            font-weight: 600;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
                padding: 0 10px;
            }

            .section-subtitle {
                font-size: 1rem;
                padding: 0 10px;
            }

            .pricing-cards {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .card-title {
                font-size: 1.3rem;
            }

            .card-price {
                font-size: 1.1rem;
            }

            .contact-info {
                font-size: 0.95rem;
                padding: 0 10px;
            }

            .brochure-btn {
                width: 180px;
                padding: 12px 25px;
                font-size: 0.95rem;
            }

            .connectivity-title {
                font-size: 2rem;
                padding: 0 10px;
            }

            .connectivity-images {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .connectivity-image {
                height: 250px;
            }

            .connectivity-content {
                font-size: 0.95rem;
                padding: 0 10px;
            }

            .pricing-section, .connectivity-section {
                padding: 60px 0;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }

            .connectivity-title {
                font-size: 1.8rem;
            }

            .divider-line {
                width: 40px;
            }

            .diamond-container {
                margin: 0 15px;
            }

            .card-header {
                padding: 15px;
            }

            .card-price {
                padding: 12px;
            }
        }
        
     .amenities-section {
    padding: 80px 20px;
  text-align: center;

  color: #1a1a1a;
}

.amenities-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-icon {
  height: 24px;
  margin-bottom: 20px;
}

.amenities-section h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
}

.amenities-description {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #444;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px 30px;
  justify-items: center;
  margin-bottom: 40px;
}

.amenity {
  text-align: center;
}

.amenity img {
  width: 70px;
  height: 70px;
  border: 2px solid #333;
  border-radius: 50%;
  padding: 10px;
  margin-bottom: 10px;
}

.amenity p {
  font-size: 14px;
  font-weight: 500;
}   
        



.master-plan-btn {
  display: inline-block;
  background-color: #5c4d1b;
  color: #fff;
  padding: 12px 24px;
  border: 3px solid #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.master-plan-btn:hover {
  background-color: #fff;
  color: #5c4d1b;
  border-color: #5c4d1b;
}
