@import url('https://fonts.googleapis.com/css2?family=TASA+Explorer:wght@400..800&display=swap');

:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #4895ef;
    --dark-color: #1b263b;
    --light-color: #f8f9fa;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    font-family: "TASA Explorer", sans-serif;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    padding: 15px 0;
    z-index: 9999999;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.navbar.scrolled {
    background-color: white !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

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

/* Hero Section */

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    /* background: linear-gradient(to top, white, transparent); */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Search Form */

.search-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.input-group-text {
    background-color: white;
    border-right: none;
}

/* Property Cards */

.property-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 100, 0.1) !important;
}

.property-card img {
    transition: transform 0.5s ease;
    height: 250px;
    object-fit: cover;
}

.property-card:hover img {
    transform: scale(1.05);
}

.badge {
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 30px;
}

/* City Cards */

.city-card {
    height: 200px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.city-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.city-card:hover img {
    transform: scale(1.1);
}

.city-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

/* Testimonials */

.testimonial-card {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* CTA Section */

.cta-section {
    position: relative;
    overflow: hidden;
    padding-top: 200px;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section:after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* Footer */

footer {
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

/* Buttons */

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

/* Animations */

.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive Adjustments */

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .search-card {
        margin-top: 20px;
    }
}

.btn-lg {
    font-size: 16px !important;
}

.display-3 {
    font-size: 3rem !important;
}

.fw-bold {
    font-weight: 500 !important;
}

.navbar-nav .nav-link.active {
    font-weight: bold;
    color: #0d6efd !important;
}

/* Contact Form */

.contact-form {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.contact-info-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(67, 97, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

/* Map */

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

/* Hero Section */

.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-hero:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, white, transparent);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

/* Property Gallery */

.property-gallery {
    position: relative;
}

.main-image {
    height: 70vh;
    object-fit: cover;
    width: 100%;
    border-radius: 15px;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    scroll-behavior: smooth;
    display: flex;
    overflow-x: auto;
}

.thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border: 2px solid var(--primary-color);
}

.badge-featured {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 30px;
}

/* Property Details */

.property-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.property-meta {
    display: flex;
    gap: 20px;
    margin: 15px 0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--dark-color);
}

.meta-item i {
    color: var(--primary-color);
}

/* Amenities */

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.amenity-item i {
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}

/* Agent Card */

.agent-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.agent-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* Contact Form */

.contact-form {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

/* Features List */

.features-list {
    list-style-type: none;
    padding-left: 0;
}

.features-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

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

/* Footer */

footer {
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.p-4 {
    padding: 1rem !important;
}

/* Responsive Adjustments */

@media (max-width: 768px) {
    #home-search {
        width: 100% !important;
    }

    .form-control,
    .form-select {
        padding: 12px 5px !important;
        font-size: 12px !important;
    }

    .form-select {
        font-size: 12px !important;
    }

    .main-image {
        height: 50vh;
    }

    .property-meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    .amenities-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

.property-form {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.form-section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

/* File Upload */

.file-upload {
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload:hover {
    border-color: var(--primary-color);
    background-color: rgba(67, 97, 238, 0.05);
}

.file-upload i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Amenities Grid */

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.amenity-item {
    display: flex;
    align-items: center;
}

.amenity-item input {
    margin-right: 10px;
}

/* Preview Card */

.preview-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.preview-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.preview-card-body {
    padding: 20px;
}

.list-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.list-hero:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, white, transparent);
    z-index: 1;
}

.list-hero-content {
    position: relative;
    z-index: 2;
}

.account-sidebar {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 0;
    height: 100%;
}

.account-sidebar .nav-link {
    padding: 12px 20px;
    border-left: 3px solid transparent;
    color: var(--dark-color);
    margin: 0;
}

.account-sidebar .nav-link.active {
    border-left-color: var(--primary-color);
    background-color: rgba(67, 97, 238, 0.05);
    color: var(--primary-color);
    font-weight: 600;
}

.account-sidebar .nav-link:hover:not(.active) {
    background-color: #f8f9fa;
}

.account-sidebar .nav-link i {
    width: 24px;
    text-align: center;
    margin-right: 10px;
}

/* Account Content */

.account-content {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.account-section {
    display: none;
}

.account-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.account-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

/* Profile Card */

.profile-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Form Styling */

.form-control,
.form-select {
    padding: 12px 15px;
}

.form-label {
    font-weight: 500;
}

/* Notification Item */

.notification-item {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.notification-item.unread {
    background-color: rgba(67, 97, 238, 0.05);
    border-left-color: var(--primary-color);
}

.notification-item:hover {
    background-color: #f8f9fa;
}

/* Property Listing Item */

.listing-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

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

.listing-img {
    height: 120px;
    object-fit: cover;
    width: 100%;
}

.listing-status {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.8rem;
    padding: 3px 10px;
    border-radius: 20px;
}

.status-active {
    background-color: #d1fae5;
    color: #065f46;
}

.status-pending {
    background-color: #fef3c7;
    color: #92400e;
}

.status-sold {
    background-color: #fee2e2;
    color: #991b1b;
}

/* Inquiry Item */

.inquiry-item {
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Settings Card */

.settings-card {
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.register-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.register-header {
    text-align: center;
    margin-bottom: 30px;
}

.register-header i {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 50%;
    font-size: 24px;
    margin-bottom: 20px;
}

.form-control,
.form-select {
    padding: 12px 15px;
}

.input-group-text {
    background-color: #f8f9fa;
}

.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}

.divider-text {
    padding: 0 10px;
    color: #6c757d;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 8px;
    font-weight: 500;
}

.social-btn i {
    margin-right: 10px;
}

.google-btn {
    background-color: white;
    border: 1px solid #dee2e6;
    color: #db4437;
}

.facebook-btn {
    background-color: white;
    border: 1px solid #dee2e6;
    color: #4267B2;
}

.terms-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
}

.terms-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

h1 {
    margin-bottom: 30px;
}

h2 {
    margin: 5px 0 15px;
    font-size: 1.5rem;
}

.city-content h3 {
    color: #fff;
    margin: 25px 0 10px;
    font-size: 1.2rem;
}

p,
li {
    margin-bottom: 15px;
}

ul {
    padding-left: 20px;
}

.highlight {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid var(--primary-color);
    margin: 20px 0;
}

.last-updated {
    font-style: italic;
    color: #666;
    text-align: right;
}

.back-to-home {
    margin-top: 40px;
}

.property-form {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.form-section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.account-sidebar .nav-link.active {
    border-left-color: var(--primary-color);
    background-color: rgba(67, 97, 238, 0.05);
    color: var(--primary-color);
    font-weight: 600;
}

.account-sidebar .nav-link:hover:not(.active) {
    background-color: #f8f9fa;
}

.account-sidebar .nav-link i {
    width: 24px;
    text-align: center;
    margin-right: 10px;
}

/* Account Sidebar */

.account-sidebar {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 0;
    height: 100%;
}

.account-sidebar .nav-link {
    padding: 12px 20px;
    border-left: 3px solid transparent;
    color: var(--dark-color);
    margin: 0;
}

.account-sidebar .nav-link.active {
    border-left-color: var(--primary-color);
    background-color: rgba(67, 97, 238, 0.05);
    color: var(--primary-color);
    font-weight: 600;
}

.account-sidebar .nav-link:hover:not(.active) {
    background-color: #f8f9fa;
}

.account-sidebar .nav-link i {
    width: 24px;
    text-align: center;
    margin-right: 10px;
}

/* Account Content */

.account-content {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.account-section {
    display: none;
}

.account-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.account-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

/* Profile Card */

.profile-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Form Styling */

.form-control,
.form-select {
    padding: 12px 15px;
}

.form-label {
    font-weight: 500;
}

/* Notification Item */

.notification-item {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.notification-item.unread {
    background-color: rgba(67, 97, 238, 0.05);
    border-left-color: var(--primary-color);
}

.notification-item:hover {
    background-color: #f8f9fa;
}

/* Property Listing Item */

.listing-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

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

.listing-img {
    height: 120px;
    object-fit: cover;
    width: 100%;
}

.listing-status {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.8rem;
    padding: 3px 10px;
    border-radius: 20px;
}

.status-active {
    background-color: #d1fae5;
    color: #065f46;
}

.status-pending {
    background-color: #fef3c7;
    color: #92400e;
}

.status-sold {
    background-color: #fee2e2;
    color: #991b1b;
}

/* Inquiry Item */

.inquiry-item {
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Settings Card */

.settings-card {
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Buttons */

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Footer */

footer {
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

/* Responsive Adjustments */

@media (max-width: 992px) {
    .account-sidebar {
        margin-bottom: 30px;
    }
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

.btn-outline-secondary {
    padding-top: 10px;
}

/* Preloader Styles */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* ✅ Add this */
    bottom: 0;
    /* ✅ Add this */
    width: 100%;
    /* Safe width */
    max-width: 100vw;
    /* ✅ Prevent overflow on narrow viewports */
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-content {
    text-align: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 6px solid #ccc;
    border-top-color: #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 30%;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.fade-out {
    opacity: 0;
    pointer-events: none;
}

.nav-link.active {
    color: #4361ee !important;
    /* Change to your active color */
    border-bottom: 2px solid #4361ee;
}

.accordion-button {
    background-color: #4261ee4f !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#listings {
    margin-top: 35px;
}

.banner {
    background: #bfd3e5;
    margin-top: 75px;
    padding: 45px 0px;
}

.usacontact {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
    text-align: center;
    border-radius: 5px;
    padding: 30px;
}

.usacontact2 {
    border: 1px solid #ccc;
    text-align: left;
    padding: 20px;
    border-radius: 5px;
    margin: 0 auto;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.listing-nav p {
    background: #4361ee;
    color: white;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.listing-nav p a {
    color: white;
}

@media (min-width: 400px) {
    #home-search {
        width: 100% !important;
    }

    .form-control,
    .form-select {
        padding: 12px 5px !important;
        font-size: 13px !important;
    }

    .form-select {
        font-size: 13px !important;
    }
}

@media only screen and (max-width: 600px) {
    #listings {
        margin-top: 70px;
    }
}

.usacontact2 h5 a {
    color: black;
    text-decoration: none;
    position: relative;
    left: 45px;
}

/* Landing Page Styles New */
.container-box {
    max-width: 720px;
    margin: 40px auto;
    padding: 30px 22px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.container-box h1 {
    margin-bottom: 10px;
}

.subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.support-box {
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    display: inline-block;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.support-box img {
    width: 100%;
    max-width: 260px;
    display: block;
    margin: 0 auto 15px;
    border-radius: 10px;
}

.support-box h2 {
    font-size: 18px;
    margin: 10px 0 12px;
    color: #333;
    text-align: center;
}

.call-btn {
    display: inline-block;
    margin-top: 20px;
    background: #0a3d62;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.disclaimer {
    margin-top: 18px;
    font-size: 12px;
    color: #888;
    line-height: 1.5;
}

.copyright {
    margin-top: 30px;
    font-size: 13px;
    color: #aaa;
    text-align: center;
}

@media only screen and (min-width: 769px) {
    .mobile-call-btn {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .mobile-call-btn {
        display: block;
        position: fixed;
        bottom: 36px;
        right: 15px;
        background: #0a3d62;
        color: white;
        padding: 14px 18px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 16px;
        font-weight: bold;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }
}

/* Landing Page Styles New */