.error-name, .error-email, .error-phone, .error-email-valid, .error-phone-valid {
    color: red;
    float: left;
    margin-bottom: 10px;
    display: none;
}

#loading_bottom_1, #loading_bottom_2, #loading_bottom_3 {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50px 0px 0px -50px;
}

#contactForm {
    position: relative;
}




:root {
            --primary-gold: #c6a467;
            --dark-navy: #020024;
            --light-cream: #f8f5f0;
            --secondary-color: #2a4b6a;
            --text-light: #e0e0e0;
        }
        
        body {
            font-family: "Roboto Slab", serif;
            color: var(--text-light);
            overflow-x: hidden;
            background: rgb(2,0,36);
            background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
        }
        
        h1, h2, h3, h4, h5, .section-title h2 {
            font-family: "IBM Plex Serif", serif;
            font-weight: 600;
            text-transform: uppercase;
            background: linear-gradient(45deg, #ffd700, #c6a467, #ffd700);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .navbar {
            background-color: var(--dark-navy);
            padding: 10px 0;
            transition: all 0.3s ease;
        }
        
        .navbar.sticky {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            color: var(--primary-gold) !important;
            font-weight: 700;
            font-size: 24px;
            font-family: "IBM Plex Serif", serif;
        }
        
        .navbar-nav .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 0.5px;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-gold) !important;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 6px;
            margin-left: auto;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .hero-section {
            background: linear-gradient(rgba(2, 0, 36, 0.7), rgba(2, 0, 36, 0.7));
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        @media (max-width: 768px) {
            .hero-section {
                background-size: 150% auto;
            }
        }
        
        .hero-content {
            color: var(--text-light);
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }
        
        h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .gold-text {
            color: var(--primary-gold);
        }
        
        .divider {
            height: 3px;
            width: 80px;
            background: var(--primary-gold);
            margin: 1.5rem auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .section-title .divider {
            margin: 0 auto;
        }
        
        section {
            padding: 50px 0;
        }
        
        .about-content {
            background-color: rgba(2, 0, 36, 0.8);
            padding: 25px;
            border-radius: 5px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            color: var(--text-light);
        }
        
        .feature-icon {
            font-size: 2rem;
            color: var(--primary-gold);
            margin-bottom: 1rem;
        }
        
        .feature-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-light);
        }
        
        #map {
            height: 400px;
            width: 100%;
            border-radius: 8px;
        }
        
        .floor-plan-card {
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
            margin-bottom: 20px;
            position: relative;
            cursor: pointer;
            background-color: rgba(2, 0, 36, 0.8);
        }
        
        .floor-plan-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .floor-plan-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: all 0.3s;
        }
        
        .floor-plan-card:hover .floor-plan-img {
            filter: blur(3px);
        }
        
        .floor-plan-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(2, 0, 36, 0.9);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s;
        }
        
        .floor-plan-card:hover .floor-plan-overlay {
            opacity: 1;
        }
        
        .gallery-item {
            margin-bottom: 20px;
            overflow: hidden;
            border-radius: 8px;
            position: relative;
        }
        
        .gallery-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: all 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(198, 164, 103, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        #contact {
            background: linear-gradient(rgba(2, 0, 36, 0.8), rgba(2, 0, 36, 0.8)), url('https://images.unsplash.com/photo-1560448204-603b3fc33ddc?ixlib=rb-4.0.3') no-repeat center center;
            background-size: cover;
            color: var(--text-light);
        }
        
        .contact-form {
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }
        
        .contact-form .form-control {
            background-color: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--text-light);
            padding: 12px;
            margin-bottom: 15px;
        }
        
        .contact-form .form-control::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .form-control {
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
        }
        
        .btn-primary {
            background-color: var(--primary-gold);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s;
            color: var(--dark-navy);
        }
        
        .btn-primary:hover {
            background-color: #b89454;
            transform: translateY(-2px);
            color: var(--dark-navy);
        }
        
        footer {
            background-color: var(--dark-navy);
            color: var(--text-light);
            padding: 20px 0 10px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-gold);
            margin-bottom: 15px;
            font-family: "IBM Plex Serif", serif;
        }
        
        .social-icons a {
            color: var(--text-light);
            font-size: 16px;
            margin-right: 12px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--primary-gold);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 10px;
            margin-top: 20px;
            text-align: center;
            color: #ccc;
            font-size: 0.8rem;
        }
        
        /* Video Section */
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 8px;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        /* Coming Soon Popup */
        .modal-content {
            border-radius: 12px;
            overflow: hidden;
            border: none;
        }
        
        .coming-soon-modal .modal-header {
            background-color: var(--dark-navy);
            color: var(--text-light);
            border-bottom: 2px solid var(--primary-gold);
            justify-content: center;
        }
        
        .coming-soon-modal .modal-body {
            padding: 25px;
            text-align: center;
            background: linear-gradient(rgba(2, 0, 36, 0.9), rgba(2, 0, 36, 0.9)), url('https://images.unsplash.com/photo-1613977257363-707ba9348227?ixlib=rb-4.0.3') no-repeat center center;
            background-size: cover;
            color: var(--text-light);
        }
        
        .coming-soon-modal .btn-close {
            filter: invert(1);
            position: absolute;
            right: 15px;
        }
        
        .countdown {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-light);
            margin: 20px 0;
        }
        
        .list-group-item {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Gradient Title Effect */
        .gradient-title {
            background: linear-gradient(45deg, #ffd700, #c6a467, #ffd700);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            section {
                padding: 40px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .hero-content {
                padding: 15px;
            }
            
            .about-content, .contact-form {
                padding: 20px;
            }
            
            section {
                padding: 30px 0;
            }
            
            .navbar-collapse {
                background-color: var(--dark-navy);
                padding: 15px;
                border-radius: 0 0 8px 8px;
            }
            
            .navbar-toggler {
                margin-left: auto;
                margin-right: 0;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.6rem;
            }
            
            section {
                padding: 25px 0;
            }
        }