.error-name, .error-email, .error-phone, .error-email-valid, .error-phone-valid, .error-location, .error-property-type, .error-budget {
    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;
}

#contactForm div {
    margin-bottom: 10px;
}



 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navbar */
        nav {
            background: rgba(26, 26, 26, 0.95);
            padding: 1.5rem 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0,0,0,0.3);
            backdrop-filter: blur(10px);
        }

        nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 2rem;
            font-weight: 800;
            font-family: 'Playfair Display', serif;
            background: linear-gradient(135deg, #2ecc71, #27ae60, #229954);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        nav a {
            text-decoration: none;
            color: #fff;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #2ecc71, #27ae60);
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #2ecc71;
            transition: all 0.3s;
        }

        /* Hero Banner */
        .hero {
            margin-top: 0;
            background: 
                        url('/images/image.jpeg') center/cover no-repeat;
            background-attachment: fixed;
            color: white;
            padding: 180px 5% 120px;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Animated Background Overlay */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(46, 204, 113, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(52, 152, 219, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(155, 89, 182, 0.1) 0%, transparent 50%);
            animation: backgroundMove 20s ease-in-out infinite;
        }

        @keyframes backgroundMove {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(5deg); }
        }

        /* Floating Elements */
        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            background: rgba(46, 204, 113, 0.15);
            border-radius: 50%;
            animation: float 15s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .shape:nth-child(3) {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 1.5rem;
            font-weight: 900;
            font-family: 'Playfair Display', serif;
            background:white;

            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInDown 1s ease-out;
            text-shadow: 0 10px 30px rgba(0,0,0,0.3);
            text-transform: uppercase;
        }

        .hero .subtitle {
            font-size: 1.8rem;
            margin-bottom: 3rem;
            opacity: 0.95;
            animation: fadeInUp 1s ease-out 0.3s both;
            font-weight: 300;
            letter-spacing: 4px;
            font-family: 'Poppins', sans-serif;
        }

        .coming-soon-badge {
            display: inline-block;
            background: linear-gradient(135deg, #2ecc71, #27ae60);
            padding: 1.2rem 3rem;
            border-radius: 50px;
            font-size: 1.4rem;
            font-weight: 700;
            margin-top: 2rem;
            box-shadow: 0 15px 40px rgba(46, 204, 113, 0.4);
            animation: glowPulse 2s ease-in-out infinite;
            letter-spacing: 2px;
        }

        @keyframes glowPulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 15px 40px rgba(46, 204, 113, 0.4);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 20px 60px rgba(46, 204, 113, 0.6);
            }
        }

        .features-preview {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 4rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .feature-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s;
            min-width: 200px;
            flex: 1;
            max-width: 250px;
        }

        .feature-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .feature-item h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            text-transform: uppercase;
        }

        .feature-item p {
            font-size: 0.9rem;
            opacity: 0.85;
            text-transform: uppercase;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Contact Form Section */
        .contact-section {
            padding: 100px 5%;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            position: relative;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(180deg, #2c5364 0%, transparent 100%);
        }

        .contact-container {
            max-width: 700px;
            margin: 0 auto;
            background: white;
            padding: 60px 50px;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            position: relative;
            overflow: hidden;
        }

        .contact-container::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(135deg, transparent, rgba(46, 204, 113, 0.05), transparent);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .contact-section h2 {
            text-align: center;
            font-size: 3rem;
            font-family: 'Playfair Display', serif;
            background: linear-gradient(135deg, #2c5364, #2ecc71);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            font-weight: 800;
            position: relative;
            z-index: 1;
            text-transform: uppercase;
        }

        .contact-section > .contact-container > p {
            text-align: center;
            color: #555;
            margin-bottom: 3rem;
            font-size: 1.15rem;
            position: relative;
            z-index: 1;
        }

        .form-group {
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            color: #2c5364;
            font-weight: 600;
            font-size: 1.05rem;
            text-transform: uppercase;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 1.05rem;
            transition: all 0.3s;
            background: #fafafa;
            font-family: 'Poppins', sans-serif;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2ecc71;
            background: white;
            box-shadow: 0 5px 20px rgba(46, 204, 113, 0.2);
            transform: translateY(-2px);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 140px;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #2ecc71, #27ae60);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            z-index: 1;
            font-family: 'Poppins', sans-serif;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(46, 204, 113, 0.5);
            background: linear-gradient(135deg, #27ae60, #229954);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            text-align: center;
            padding: 3rem 5%;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #2ecc71, transparent);
        }

        footer p {
            margin: 0;
            opacity: 0.8;
            font-size: 1.05rem;
        }

        /* Scroll to Top Button */
        #scrollTopBtn {
            position: fixed;
            bottom: 40px;
            right: 40px;
            background: linear-gradient(135deg, #2ecc71, #27ae60);
            color: white;
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-size: 1.8rem;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
            transition: all 0.3s;
            z-index: 999;
        }

        #scrollTopBtn:hover {
            background: linear-gradient(135deg, #27ae60, #229954);
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(46, 204, 113, 0.6);
        }

        #scrollTopBtn.show {
            display: flex;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3.5rem;
            }

            .hero .subtitle {
                font-size: 1.5rem;
                letter-spacing: 3px;
            }

            .features-preview {
                gap: 2rem;
            }

            .contact-section h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 1rem 5%;
            }

            .logo {
                font-size: 1.5rem;
            }

            nav ul {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(26, 26, 26, 0.98);
                flex-direction: column;
                gap: 2rem;
                padding: 3rem 0;
                transition: left 0.3s;
                align-items: center;
                justify-content: flex-start;
            }

            nav ul.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(8px, 8px);
            }

            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(8px, -8px);
            }

            .hero {
                padding: 140px 5% 80px;
                min-height: 100vh;
                background-attachment: scroll;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero .subtitle {
                font-size: 1.1rem;
                letter-spacing: 2px;
            }

            .coming-soon-badge {
                font-size: 1.1rem;
                padding: 1rem 2rem;
                letter-spacing: 1px;
            }

            .features-preview {
                gap: 1.5rem;
                margin-top: 3rem;
            }

            .feature-item {
                min-width: 160px;
                padding: 1.2rem;
            }

            .feature-icon {
                font-size: 2.5rem;
            }

            .feature-item h3 {
                font-size: 1.1rem;
            }

            .contact-section {
                padding: 60px 5%;
            }

            .contact-container {
                padding: 40px 25px;
            }

            .contact-section h2 {
                font-size: 2rem;
            }

            .contact-section > .contact-container > p {
                font-size: 1rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 14px 16px;
                font-size: 1rem;
            }

            .submit-btn {
                padding: 16px;
                font-size: 1.1rem;
            }

            #scrollTopBtn {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                bottom: 30px;
                right: 30px;
            }

            footer {
                padding: 2rem 5%;
            }

            footer p {
                font-size: 0.95rem;
            }
            .highligh-card {
                width: 100% !important;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero .subtitle {
                font-size: 1rem;
                letter-spacing: 1.5px;
            }

            .coming-soon-badge {
                font-size: 1rem;
                padding: 0.8rem 1.5rem;
            }

            .features-preview {
                flex-direction: column;
                align-items: center;
            }

            .feature-item {
                max-width: 100%;
                width: 100%;
            }

            .contact-container {
                padding: 30px 20px;
            }

            .contact-section h2 {
                font-size: 1.8rem;
            }

            #scrollTopBtn {
                width: 45px;
                height: 45px;
                bottom: 20px;
                right: 20px;
            }
        }
        

.overview-section h2 {
    text-align: center;
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #2c5364, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.overview-container {
    /*max-width: 1000px;*/
    margin: 0 auto;
    background: white;
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.highlights-container {
    margin: 40px 40px;
    background: white;
}

.highligh-card {
    display: inline-block;
    background-color: #fff;
    padding: 20px;
    width: 49%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
}