.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;
}



:root {
            --primary-color: #e91e63;
            --secondary-color: #880e4f;
            --accent-color: #f8bbd0;
            --light-bg: #fce4ec;
            --light-text: #ffffff;
            --dark-text: #4a4a4a;
            --pink-gradient: linear-gradient(135deg, #f8bbd0 0%, #e91e63 100%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark-text);
            background-color: #ffffff;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--secondary-color);
        }
        
        /* Navigation */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.8rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero-section {
            height: 60vh;
            background: linear-gradient(rgba(252, 228, 236, 0.85), rgba(252, 228, 236, 0.85)), url('/images/banner-01.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            text-align: center;
        }
        
        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
            text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--secondary-color);
        }
        
        /* Content Sections */
        .section-padding {
            padding: 80px 0;
        }
        
        .bg-light-custom {
            background-color: var(--light-bg);
        }
        
        .divider {
            height: 3px;
            width: 100px;
            background: var(--pink-gradient);
            margin: 20px auto;
            border-radius: 3px;
        }
        
        /* Form Styling */
        .form-section {
            background-color: #ffffff;
            padding: 40px;
            border-radius: 15px;
            border: 1px solid var(--accent-color);
            box-shadow: 0 10px 30px rgba(233, 30, 99, 0.15);
            position: relative;
            overflow: hidden;
        }
        
        .form-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--pink-gradient);
        }
        
        .form-label {
            color: var(--secondary-color);
            font-weight: 600;
        }
        
        .form-control {
            border: 1px solid #f8bbd0;
            color: var(--dark-text);
            padding: 12px 15px;
            transition: all 0.3s ease;
            border-radius: 8px;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
            color: var(--dark-text);
        }
        
        .form-control::placeholder {
            color: #c9c9c9;
        }
        
        .form-select {
            border: 1px solid #f8bbd0;
            border-radius: 8px;
        }
        
        .form-check-input:checked {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .btn-primary-custom {
            background: var(--pink-gradient);
            color: white;
            padding: 15px 30px;
            font-weight: 600;
            border-radius: 50px;
            border: none;
            transition: all 0.3s ease;
            width: 100%;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-primary-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
            transition: all 0.5s ease;
            z-index: -1;
        }
        
        .btn-primary-custom:hover::before {
            width: 100%;
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(233, 30, 99, 0.4);
        }
        
        .privacy-note {
            font-size: 0.9rem;
            color: #6c757d;
            text-align: center;
            margin-top: 20px;
        }
        
        /* Why Choose Us Section */
        .feature-icon {
            font-size: 2.5rem;
            background: var(--pink-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .feature-card {
            background-color: #ffffff;
            border: 1px solid #f8bbd0;
            border-radius: 15px;
            transition: all 0.3s ease;
            color: var(--dark-text);
            height: 100%;
            padding: 30px 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--pink-gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(233, 30, 99, 0.15);
        }
        
        .feature-card:hover::after {
            transform: scaleX(1);
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }
        
        /* Footer */
        .footer {
            background: var(--pink-gradient);
            color: var(--light-text);
            padding: 30px 0;
            text-align: center;
        }
        
        /* Decorative elements */
        .pink-floral {
            position: absolute;
            opacity: 0.03;
            z-index: 0;
            pointer-events: none;
        }
        
        .floral-1 {
            top: 10%;
            right: 5%;
            font-size: 15rem;
            transform: rotate(15deg);
        }
        
        .floral-2 {
            bottom: 10%;
            left: 5%;
            font-size: 12rem;
            transform: rotate(-15deg);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .section-padding {
                padding: 60px 0;
            }
            
            .form-section {
                padding: 25px;
            }
            
            .pink-floral {
                display: none;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .navbar-brand {
                font-size: 1.5rem;
            }
        }