/* Raymond TenX Era - Static Landing Page Styles */

:root {
    --font-title: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --color-primary: #d7263d;
    --color-text: #333;
    --color-text-light: #666;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text);
    scroll-behavior: smooth;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
}

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

/* Header Styles - Fixed and Improved */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo img {
        height: 30px; /* Reduced by 10% from 50px */
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 8px 0;
    position: relative;
    font-family: var(--font-body);
}

.nav-menu a:hover {
    color: #d7263d;
}

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

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

/* Enquire Now Button in Navbar */
.nav-enquire-btn {
    background: linear-gradient(135deg, #d7263d 0%, #e63946 100%);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    margin-left: 20px;
    text-decoration: none;
    min-width: 120px;
    text-align: center;
}

.nav-enquire-btn::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: 0.5s;
}

.nav-enquire-btn:hover::before {
    left: 100%;
}

/* Hide Enquire Now button on mobile */
@media (max-width: 768px) {
    .nav-enquire-btn {
        display: none;
    }
}

/* Mobile Menu Styles - Fixed */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 27px;  /* Reduced by 10% from 30px */
    height: 27px; /* Reduced by 10% from 30px */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 22.5px; /* Reduced by 10% from 25px */
    height: 2.7px; /* Reduced by 10% from 3px */
    background: #333;
    transition: all 0.3s ease;
    transform-origin: center;
    border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0; /* Changed from right to left */
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateX(-100%); /* Changed from 100% to -100% */
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    background: #f8f9fa;
}

.mobile-logo img {
    height: 40px;
}

/* Updated close button styles */
.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

.close-line {
    position: absolute;
    width: 20px;
    height: 2px;
    background: #666;
    transition: all 0.3s ease;
}

.close-line:nth-child(1) {
    transform: rotate(45deg);
}

.close-line:nth-child(2) {
    transform: rotate(-45deg);
}

.mobile-nav {
    flex: 1;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #374151;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.mobile-nav-link:hover {
    background: #f3f4f6;
    color: #d7263d;
    border-left-color: #d7263d;
}

.mobile-enquire-btn {
    background: linear-gradient(135deg, #d7263d 0%, #e63946 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-enquire-btn:hover {
    background: linear-gradient(135deg, #b71c2b 0%, #d62c37 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(215, 38, 61, 0.3);
}

/* Show mobile menu button on smaller screens */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

/* Hero Section - Simplified and Fixed */
.hero-section {
    position: relative;
    width: 100%;
    margin-top: 80px;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.desktop-slider,
.mobile-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.mobile-slider {
    display: none;
}

.desktop-slider {
    display: block;
}

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

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 500%;
    height: 100%;
    transform: translateX(0%);
}

.slide {
    width: 20%;
    flex-shrink: 0;
    position: relative;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

@media (max-width: 768px) {
    .slider-dots {
        position: relative;
        bottom: -10px;
        background: #fff;
        padding: 15px 0;
    }
}

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

.dot.active {
    background: #d7263d;
    border-color: #d7263d;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Desktop Slider */
@media (max-width: 768px) {
    .desktop-slider {
        display: none;
    }
    
    .mobile-slider {
        display: block;
        margin-top: 60px;
    }
    
    .hero-section {
        height: 100vh;
        min-height: 100vh;
        position: relative;
        margin-top: 0;
    }

    .slider-container {
        flex: 1;
        height: calc(100% - 40px);
        position: relative;
    }

    .slide {
        height: calc(100vh - 60px);
    }

    .slide img {
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        height: 80vh;
        min-height: 600px;
    }
}

/* Remove conflicting styles from inline CSS */
.hero {
    display: none !important;
}

.cta-button {
    display: inline-block;
    background: #d7263d;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #b71c2b;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

.section-alt {
    background: #f8f9fa;
}

/* Overview Section */
.overview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

.highlight-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

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

.highlight-item h3 {
    color: #d7263d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Pricing Table */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.price-table th,
.price-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.price-table th {
    background: #d7263d;
    color: white;
    font-weight: bold;
}

.price-table tr:hover {
    background: #f8f9fa;
}

/* Contact Form */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.submit-btn {
    width: 100%;
    background: #d7263d;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

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

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding: 0 15px;
}

.amenity-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

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

.amenity-item h3 {
    color: #d7263d;
    margin-bottom: 1rem;
}

/* Location Section */
.location-section {
    padding: 60px 0;
    background-color: #fff;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-accordion {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 8px;
    background: #f8f8f8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: #f0f0f0;
}

.location-accordion.active .accordion-header {
    background: #d7263d;
}

.location-accordion.active .accordion-header h3 {
    color: #fff;
}

.accordion-header h3 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.accordion-icon {
    font-size: 20px;
    color: #666;
    transition: transform 0.3s ease;
}

.location-accordion.active .accordion-icon {
    transform: rotate(45deg);
    color: #fff;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.location-accordion.active .accordion-content {
    max-height: 500px;
}

.location-list {
    list-style: none;
    padding: 12px 20px;
    margin: 0;
    background: #fff;
}

.location-list li {
    padding: 6px 0;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.location-list li:last-child {
    border-bottom: none;
}

.location-map {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .location-content {
        gap: 20px;
    }

    .location-map {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .location-section {
        padding: 40px 0;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 20px;
    }

    .location-info {
        gap: 12px;
    }

    .accordion-header {
        padding: 12px 16px;
    }

    .accordion-header h3 {
        font-size: 15px;
    }

    .location-list {
        padding: 12px 16px;
    }

    .location-list li {
        font-size: 13px;
        padding: 6px 0;
    }

    .location-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .location-section {
        padding: 30px 0;
    }

    .location-content {
        gap: 20px;
        margin-top: 15px;
    }

    .location-info {
        gap: 10px;
    }

    .accordion-header {
        padding: 10px 14px;
    }

    .accordion-header h3 {
        font-size: 14px;
    }

    .location-list {
        padding: 10px 14px;
    }

    .location-list li {
        font-size: 12px;
        padding: 5px 0;
    }

    .location-map {
        height: 250px;
    }
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.map-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #333;
}

.map-info p {
    font-size: 14px;
    color: #666;
    margin: 0 0 15px;
    line-height: 1.4;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.rating-score {
    font-weight: 600;
    color: #333;
}

.stars {
    color: #ffc107;
}

.review-count {
    font-size: 14px;
    color: #666;
}

.directions-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #e31837;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.directions-btn svg {
    width: 20px;
    height: 20px;
    margin-left: 8px;
}

/* RERA Section */
.rera-info {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.rera-numbers {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    font-weight: bold;
    color: #d7263d;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 40px 0;
}

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

.rera-header {
    margin-bottom: 30px;
}

.rera-header p {
    font-size: 14px;
    line-height: 1.6;
    margin: 5px 0;
}

.rera-qr-section {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 30px 0;
    flex-wrap: wrap;
}

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

.qr-item img {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
    background-color: #fff;
}

.qr-item p {
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
}

.rera-disclaimer {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 30px;
}

.rera-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

.rera-disclaimer .marketing-disclaimer {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Main disclaimer text */
.rera-disclaimer p:first-child {
    font-size: 13px;
    color: #666565;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 500;
}

/* Copyright line */
.rera-disclaimer p:nth-child(3) {
    font-size: 13px;
    color: #5d5c5c;
    font-weight: 500;
    margin-bottom: 10px;
}

.rera-disclaimer p:last-child {
    margin-bottom: 0;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: #fff;
    color: #333;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.floating-btn.download {
    position: fixed;
    left: 20px;
    bottom: 20px;
    right: auto;
    background: #d7263d;
    color: white;
}

@media (max-width: 768px) {
    .floating-btn.download {
        bottom: 10px;
        left: 10px;
    }
}

.floating-btn.interested {
    background: #d7263d;
    color: white;
}

.floating-btn.whatsapp {
    background: #25D366;
    color: white;
    padding: 12px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    min-width: unset;
    margin-left: auto;
}

.floating-btn.whatsapp svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .highlights {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .floating-buttons {
        bottom: 10px;
        right: 10px;
        gap: 8px;
    }
    
    .floating-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
        min-width: 110px;
    }

    .floating-btn.whatsapp {
        width: 40px;
        height: 40px;
        min-width: 40px;
        padding: 8px;
    }

    .floating-btn.whatsapp svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .price-table {
        font-size: 0.9rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 0.8rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #d7263d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    display: none;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    display: none;
}

/* About Section - Improved Spacing */
.about-section {
    padding: 80px 0 100px 0; /* Increased padding */
    background: #ffffff;
    margin: 40px 0; /* Added margin */
}

.section-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 24px;
}

.red-bar {
    width: 8px;
    background: #d7263d;
    min-height: 100px;
    flex-shrink: 0;
}

.header-content {
    flex: 1;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #171717;
    margin-bottom: 8px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #171717;
    margin: 0;
}

.section-content {
    max-width: 1200px;
}

.main-text {
    font-size: 16px;
    line-height: 1.75;
    color: #4A5565;
    text-align: justify;
    letter-spacing: 0.02em;
    margin: 0;
}

/* Responsive adjustments for About Section */
@media (max-width: 768px) {
    .about-section {
        padding: 24px 0 40px 0;
    }
    
    .section-header {
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .red-bar {
        width: 6px;
        min-height: 60px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .main-text {
        font-size: 14px;
    }
}

/* Project Configuration - Grid Layout */
.configuration-section {
    padding: 80px 0;
    background: #ffffff;
}

.configuration-section .container {
    max-width: 1400px;
    padding: 0 60px;
}

.configuration-section .section-header {
    margin-bottom: 50px;
}

/* Desktop Table Layout */
.desktop-config {
    display: block !important;
    margin-top: 40px;
    padding: 0 40px;
}

.config-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    table-layout: fixed;
}

.config-table thead {
    background: #2c2c2c;
}

.config-table th {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 22px 35px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

.config-table th:nth-child(1) {
    width: 35%;
    text-align: left;
}

.config-table th:nth-child(2) {
    width: 35%;
    text-align: left;
}

.config-table th:nth-child(3) {
    width: 30%;
    text-align: center;
}

.config-table td {
    padding: 25px 35px;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.config-table td:nth-child(1) {
    text-align: left;
}

.config-table td:nth-child(2) {
    text-align: left;
}

.config-table td:nth-child(3) {
    text-align: center;
}

.config-table tr:last-child td {
    border-bottom: none;
}

.config-table tbody tr:hover {
    background: #f8f9fa;
}

.config-button {
    background: linear-gradient(45deg, #d7263d, #ff4757);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    white-space: nowrap;
    min-width: 160px;
}

.config-button:hover {
    background: linear-gradient(45deg, #b71c2b, #e63946);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(215, 38, 61, 0.3);
}

/* Mobile Layout */
.mobile-config {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .configuration-section .container {
        padding: 0 40px;
    }
    
    .desktop-config {
        padding: 0 20px;
    }
    
    .config-table th,
    .config-table td {
        padding: 20px 25px;
    }
}

@media (max-width: 768px) {
    .configuration-section {
        padding: 50px 0;
    }
    
    .configuration-section .container {
        padding: 0 20px;
    }
    
    .configuration-section .section-header {
        margin-bottom: 30px;
    }
    
    .desktop-config {
        display: none !important;
    }
    
    .mobile-config {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
        padding: 0;
    }
    
    .config-card {
        background: #fff;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .config-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
    }
    
    .config-label {
        font-size: 14px;
        font-weight: 500;
        color: #666;
    }
    
    .config-value {
        font-size: 14px;
        font-weight: 600;
        color: #333;
    }
    
    .config-button-row {
        margin-top: 20px;
    }
    
    .config-button {
        width: 100%;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .configuration-section {
        padding: 40px 0;
    }
    
    .configuration-section .container {
        padding: 0 15px;
    }
    
    .config-card {
        padding: 15px;
    }
    
    .config-label,
    .config-value {
        font-size: 13px;
    }
}

/* Amenities Section - New Next.js Style */
.amenities-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding: 0 15px;
}

.amenity-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.25s ease;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    cursor: pointer;
}

.amenity-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-color: #d7263d20;
}

.amenity-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.amenity-card:hover .amenity-icon {
    transform: scale(1.1);
}

.amenity-icon svg {
    width: 32px;
    height: 32px;
    stroke: #333;
    stroke-width: 1.5;
    transition: stroke 0.3s ease;
}

.amenity-card:hover .amenity-icon svg {
    stroke: #d7263d;
}

.amenity-title {
    font-size: 14px;
    color: #333;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .amenities-section {
        padding: 30px 0;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 20px;
    }

    .amenity-card {
        padding: 15px 10px;
        border-radius: 10px;
    }

    .amenity-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .amenity-icon svg {
        width: 28px;
        height: 28px;
    }

    .amenity-title {
        font-size: 13px;
    }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .amenity-card {
        padding: 12px 8px;
    }

    .amenity-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 10px;
    }

    .amenity-icon svg {
        width: 24px;
        height: 24px;
    }

    .amenity-title {
        font-size: 12px;
    }
} 

/* Location Section - New Next.js Style */
.location-section {
    padding: 48px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-accordion {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8f8f8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: #f0f0f0;
}

.location-accordion.active .accordion-header {
    background: #d7263d;
}

.location-accordion.active .accordion-header h3 {
    color: #fff;
}

.accordion-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.accordion-icon {
    font-size: 20px;
    color: #666;
    transition: transform 0.3s ease;
}

.location-accordion.active .accordion-icon {
    transform: rotate(45deg);
    color: #fff;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.location-accordion.active .accordion-content {
    max-height: 500px;
}

.location-list {
    list-style: none;
    padding: 15px 20px;
    margin: 0;
    background: #fff;
}

.location-list li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.location-list li:last-child {
    border-bottom: none;
}

.location-map {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.map-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #333;
}

.map-info p {
    font-size: 14px;
    color: #666;
    margin: 0 0 15px;
    line-height: 1.4;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.rating-score {
    font-weight: 600;
    color: #333;
}

.stars {
    color: #ffc107;
}

.review-count {
    font-size: 14px;
    color: #666;
}

.directions-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #e31837;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.directions-btn svg {
    width: 20px;
    height: 20px;
    margin-left: 8px;
}

/* Contact Section - New Next.js Style */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-section .section-header {
    text-align: center;
    margin-bottom: 20px;
}

.contact-section .section-subheader {
    text-align: center;
    margin-bottom: 40px;
}

.contact-section .section-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
    font-family: var(--font-title);
}

.contact-section .contact-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 800px;
}

.contact-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 5px 15px;
    transition: all 0.3s ease;
}

.input-group:focus-within {
    background: #fff;
    box-shadow: 0 0 0 2px #d7263d20;
}

.message-group {
    grid-column: 1 / -1;
}

.input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    color: #666;
}

.input-icon svg {
    width: 18px;
    height: 18px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    border: none;
    background: transparent;
    padding: 12px 0;
    font-size: 16px;
    color: #333;
    font-family: var(--font-body);
}

.input-group textarea {
    min-height: 120px;
    resize: vertical;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #999;
}

.consent-group {
    margin-bottom: 30px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.consent-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.consent-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #d7263d;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

@media (max-width: 1024px) {
    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-section .section-title {
        font-size: 28px;
    }

    .contact-section .contact-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-form-wrapper {
        padding: 20px;
        margin: 0 15px;
    }

    .input-group input,
    .input-group textarea {
        font-size: 15px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 15px;
    }

    .consent-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-form-wrapper {
        padding: 15px;
        margin: 0 10px;
    }

    .contact-section .section-title {
        font-size: 24px;
    }

    .contact-section .contact-subtitle {
        font-size: 14px;
    }

    .input-group {
        padding: 3px 12px;
    }

    .input-icon {
        width: 20px;
        height: 20px;
    }

    .input-icon svg {
        width: 16px;
        height: 16px;
    }

    .input-group input,
    .input-group textarea {
        font-size: 14px;
        padding: 10px 0;
    }

    .consent-text {
        font-size: 12px;
    }

    .submit-btn {
        padding: 10px;
        font-size: 14px;
    }
}

/* Key Features Section */
.key-features {
    padding: 48px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.key-features-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    position: relative;
    margin-bottom: 50px;
    padding-left: 15px;
    display: inline-block;
    text-transform: uppercase;
}

.key-features-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: #d7263d;
}

.key-features-container {
    position: relative;
    padding: 0 50px;
    margin: 0 -20px;
}

.key-features-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 2px solid #d7263d;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.key-features-nav:hover {
    background: #d7263d;
    transform: translateY(-50%) scale(1.05);
}

.key-features-nav:hover svg {
    stroke: white;
}

.key-features-nav.prev {
    left: 10px;
}

.key-features-nav.next {
    right: 10px;
}

.key-features-nav svg {
    width: 24px;
    height: 24px;
    stroke: #d7263d;
    transition: all 0.3s ease;
}

.key-features-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 20px 0;
    margin: 0 -10px;
    scroll-padding: 0 20px;
}

.key-features-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.feature-item {
    flex: 0 0 auto;
    width: calc(33.333% - 20px);
    min-width: 280px;
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d7263d 0%, #e63946 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    color: white;
    transition: all 0.3s ease;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 15px 0 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .key-features {
        padding: 60px 0;
    }

    .key-features-container {
        padding: 0 40px;
        margin: 0 -10px;
    }

    .key-features-nav {
        width: 36px;
        height: 36px;
    }

    .key-features-nav.prev {
        left: 5px;
    }

    .key-features-nav.next {
        right: 5px;
    }

    .key-features-nav svg {
        width: 20px;
        height: 20px;
    }

    .feature-item {
        min-width: 260px;
        padding: 25px 15px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .feature-icon svg {
        width: 25px;
        height: 25px;
    }

    .feature-title {
        font-size: 16px;
    }

    .key-features-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .key-features-container {
        padding: 0 45px;
    }

    .feature-item {
        min-width: 270px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon svg {
        width: 30px;
        height: 30px;
    }
} 

.project-videos-section {
    padding: 60px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.videos-container {
    position: relative;
    margin-top: 40px;
}

.videos-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.videos-grid::-webkit-scrollbar {
    display: none;
}

.video-card {
    position: relative;
    width: 286px; /* 220px + 30% */
    flex: 0 0 286px;
    aspect-ratio: 9/12;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #000; /* Dark background for letterboxing */
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000; /* Dark background for letterboxing */
}

@media (max-width: 768px) {
    .video-card {
        width: 234px; /* 180px + 30% */
        flex: 0 0 234px;
    }
}

.nav-arrows {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .nav-arrow {
        width: 36px;
        height: 36px;
    }
    
    .video-card {
        width: 250px;
        flex: 0 0 250px;
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.2);
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #000;
    margin-left: 4px;
}

.video-overlay:hover .play-button {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .video-card {
        width: 250px;
    }
}

/* RERA Section */
.rera {
    display: none;
}

/* About Raymond Section */
.about-raymond {
    padding: 80px 0;
    background-color: #fff;
}

.about-header {
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-header .red-bar {
    width: 4px;
    height: 80px;
    background-color: #e31837;
    margin-top: 8px;
}

.about-header h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    text-transform: uppercase;
    margin: 0;
}

.about-content {
    max-width: 1000px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 24px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-raymond {
        padding: 60px 0;
    }

    .about-header h2 {
        font-size: 32px;
    }

    .about-header .red-bar {
        height: 60px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
} 

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 460px;
    margin: 24px auto;
    background: #1a1f2e;
    border-radius: 24px;
    padding: 24px;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    font-size: 14.4px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-logo {
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
}

.modal-logo img {
    max-width: 140px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.pricing-banner {
    background: #e23834;
    color: white;
    text-align: center;
    padding: 8px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 16.2px;
    font-weight: 500;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
    width: 100%;
}

.modal-header h3 {
    font-size: 21.6px;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
    letter-spacing: 0.2px;
}

.modal-header p {
    font-size: 14.4px;
    color: #e1e0e0;
    margin: 0;
    line-height: 1.4;
}

.modal-header .authorization {
    font-size: 12px;
    color: #8b8b8b;
    margin-top: 4px;
}

.modal-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    width: 100%;
}

.modal-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14.4px;
    color: white;
    line-height: 1.4;
}

.modal-feature-item:last-child {
    margin-bottom: 0;
}

.modal-feature-dot {
    width: 6px;
    height: 6px;
    background-color: #4CAF50;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 4px rgba(76, 175, 80, 0.4);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.modal-form .form-group {
    margin: 0;
}

.modal-form .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.modal-form .input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

.modal-form textarea ~ .input-icon {
    top: 24px;
    transform: none;
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px;
    color: white;
    font-size: 14px;
    transition: all 0.2s ease;
}

.modal-form textarea {
    min-height: 100px;
    resize: vertical;
}

.modal-form input::placeholder,
.modal-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.modal-form input:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.modal-form .checkbox {
    margin-top: 4px;
}

.modal-form .checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}

.modal-form .checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.modal-form .checkbox-text {
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
}

.modal-form button {
    margin-top: 8px;
    background: linear-gradient(45deg, #d7263d, #ff4757);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(215, 38, 61, 0.4);
}

/* Input validation styles */
.modal-form input:invalid,
.modal-form textarea:invalid {
    border-color: rgba(255, 87, 87, 0.4);
}

.modal-form input:invalid:focus,
.modal-form textarea:invalid:focus {
    border-color: rgba(255, 87, 87, 0.6);
    box-shadow: 0 0 0 2px rgba(255, 87, 87, 0.2);
}

@media (max-width: 768px) {
    .modal-form input,
    .modal-form textarea {
        padding: 10px;
        font-size: 13px;
    }
    
    .modal-form .input-icon {
        font-size: 13px;
        left: 10px;
    }
    
    .modal-form button {
        padding: 12px;
        font-size: 14px;
    }
} 

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #fff;
}

.gallery-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.gallery-title {
    font-size: 36px;
    font-weight: 700;
    margin-left: 15px;
    text-transform: uppercase;
}

.gallery-filters {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 40px;
}

.gallery-filter-btn {
    padding: 10px 20px;
    border: 1px solid #333;
    background: transparent;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.gallery-filter-btn.active {
    background: #d7263d;
    color: white;
    border-color: #d7263d;
}

.gallery-filter-btn:hover {
    background: #d7263d;
    color: white;
    border-color: #d7263d;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 auto 30px;
    max-width: 1200px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    display: none; /* Hide all items by default */
}

.gallery-item.active {
    display: block;
}

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

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

.gallery-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-nav-btn {
    background: none;
    border: 2px solid #d7263d;
    color: #d7263d;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.gallery-nav-btn:hover {
    background: #d7263d;
    color: white;
}

.gallery-nav-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #999;
    color: #999;
}

.gallery-nav-btn[disabled]:hover {
    background: none;
    color: #999;
}

@media (max-width: 768px) {
    .gallery-nav-btn {
        width: 36px;
        height: 36px;
    }
}

.gallery-nav-btn[style*="opacity: 0.5"] {
    cursor: not-allowed;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-filters {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .gallery-filter-btn {
        font-size: 14px;
        padding: 8px 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
} 

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 20px;
    z-index: 10;
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

.lightbox-nav:hover {
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-nav {
        padding: 10px;
    }
    
    .lightbox-nav.prev {
        left: 10px;
    }
    
    .lightbox-nav.next {
        right: 10px;
    }
} 

.footer-links {
    margin-top: 10px;
    font-size: 11px;
    color: #666;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #999;
} 

.checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    background: rgba(255, 255, 255, 0.15);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #4CAF50;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 14.4px;
    line-height: 1.4;
    color: #e1e0e0;
}

.checkbox-text.authorization {
    font-size: 12px !important;
    color: #8b8b8b !important;
} 

.modal-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #1a1f2e;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.modal-close svg {
    width: 16px;
    height: 16px;
}

.modal-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    margin-bottom: 24px;
}

.modal-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: white;
    line-height: 1.4;
}

.modal-feature-dot {
    width: 6px;
    height: 6px;
    background-color: #4CAF50;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 4px rgba(76, 175, 80, 0.4);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.modal-form .form-group {
    margin: 0;
}

.modal-form .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px;
    color: white;
    font-size: 14px;
    transition: all 0.2s ease;
}

.modal-form textarea {
    min-height: 100px;
    resize: vertical;
}

.modal-form input::placeholder,
.modal-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.modal-form input:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .modal-features-grid {
        gap: 12px;
    }
    
    .modal-feature-item {
        font-size: 13px;
    }
    
    .modal-form input,
    .modal-form textarea {
        padding: 10px;
        font-size: 13px;
    }
    
    .modal-close {
        top: 6px;
        right: 6px;
        width: 28px;
        height: 28px;
    }
    
    .modal-close svg {
        width: 14px;
        height: 14px;
    }
} 

.gallery-item[data-category="floor-plan"] {
    cursor: pointer;
}

.gallery-item[data-category="floor-plan"] img {
    filter: blur(1.5px);
}

/* Remove hover effect for floor plan images */
.gallery-item[data-category="floor-plan"]:hover img {
    transform: none;
}

@media (max-width: 768px) {
    .nav {
        height: 60px;
        padding: 0.75rem 0;
    }

    .logo img {
        height: 30px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 0.75rem 1.5rem;
    z-index: 9999;
    display: none;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    width: auto;
    font-family: 'Poppins', sans-serif;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    display: block;
    animation: fadeInUp 0.3s ease-out;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

.cookie-content p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: 300;
    color: #333;
}

.cookie-content a {
    color: #C41E3A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-content a:hover {
    color: #8B0000;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-accept,
.cookie-reject {
    padding: 0.35rem 0.75rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.cookie-accept {
    background: #C41E3A;
    color: white;
}

.cookie-reject {
    background: transparent;
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.cookie-accept:hover {
    background: #8B0000;
    transform: translateY(-1px);
}

.cookie-reject:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 10px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 1rem;
        width: auto;
        min-width: 200px;
        max-width: 300px;
        padding: 0.5rem 0.75rem;
        background: rgba(255, 255, 255, 0.98);
    }
    
    .cookie-content {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 0.5rem;
    }
    
    .cookie-content p {
        font-size: 0.75rem;
        margin-right: 0.25rem;
    }
    
    .cookie-buttons {
        display: flex;
        gap: 0.25rem;
    }

    .cookie-accept,
    .cookie-reject {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
}

/* Policy Pages Styling */
.policy-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 60px; /* Increased top padding to account for fixed header */
}

.policy-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.policy-page .last-updated {
    color: #666;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.policy-page section {
    margin-bottom: 2rem;
}

.policy-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 500;
}

.policy-page h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: #444;
    margin: 1.5rem 0 0.75rem;
    font-weight: 500;
}

.policy-page p, 
.policy-page li {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
    font-weight: 300;
}

.policy-page ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-page li {
    margin-bottom: 0.5rem;
}

.policy-page strong {
    font-weight: 500;
    color: #444;
}

.policy-page a {
    color: #C41E3A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-page a:hover {
    color: #8B0000;
}