/********** Template CSS **********/
:root {
    --primary: #00B98E;
    --secondary: #FF6922;
    --light: #EFFDF5;
    --dark: #0E2E50;
}

/********** Sidebar CSS **********/
/* Sidebar Styles */
.sidebar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    overflow-y: auto;
    position: sticky;
    top: 90px;
    left: 0;
    width: 280px;
    height: calc(100vh - 200px);
    border-radius: 8px;
    z-index: 100;
}

.sidebar h3 {
    color: #00B98E;
    margin-bottom: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #EFFDF5;
    font-size: 1.25rem;
}

.categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    margin-bottom: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-item a {
    display: flex;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    color: #0E2E50;
    font-weight: 500;
    gap: 12px;
    transition: all 0.3s ease;
    border-radius: 8px;
    cursor: pointer;
    background: transparent;
    border: 1px solid #e0e0e0;
    width: 100%;
    text-align: left;
    font-size: 1rem;
}

.category-item a i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    color: #00B98E;
}

.category-item:hover a {
    background-color: #EFFDF5;
    transform: translateX(5px);
    border-color: #00B98E;
}

.category-item.active a {
    background-color: #FF6922;
    color: white;
    border-color: #FF6922;
}

.category-item.active a i {
    color: white;
}

.category-count {
    margin-left: auto;
    background-color: rgb(255, 255, 255);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Main Content Styles */
.main-content {
    flex: 1;
    padding: 2rem;
    background-color: #f9f9f9;
    min-height: calc(100vh - 200px);
}

/* Container layout for sidebar and main content */
.container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.page-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-title h2 {
    font-size: 2rem;
}

.properties-count {
    color: var(--secondary-color);
    font-weight: 600;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.property-card {
    background-color: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(43, 28, 28, 0.15);
}

.property-image {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.property-info {
    padding: 1rem;
    height: 100%;
}

.property-title {
    font-size: 25px;
    color: var(--primary);
    /* margin-bottom: 0.25rem; */
}

.property-location {
    color: #7f8c8d;
    /* margin-bottom: 1rem; */
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-location i {
    color: var(--secondary-color);
}

.property-description {
    color: #555;
    margin-bottom: .5rem;
    margin-top: 2px;
    font-size: 15px;
}

.property-features {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    color: #555;
}

.property-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.property-feature i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.property-emi {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.property-actions {
    display: flex;
    gap: 10px;
}

/* ===========================================
   PROPERTY DETAILS PAGE STYLES
   =========================================== */

/* Property Details Section */
.property-details {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    margin-bottom: 2rem;
}

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

.property-details .property-title {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.property-meta {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.property-category,
.property-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.property-category {
    background-color: var(--light);
    color: var(--primary);
}

.property-status {
    background-color: #e8f5e9;
    color: #2e7d32;
}

/* Property Gallery */
.property-gallery {
    margin-bottom: 2rem;
}

.main-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

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

.thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.thumbnail.active,
.thumbnail:hover {
    border-color: var(--primary);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Property Description */
.property-description {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.property-description h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.property-description p {
    color: #555;
    line-height: 1.8;
}

/* Property Features */
.property-features {
    margin-bottom: 2rem;
}

.property-features h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #555;
}

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

.property-price-area {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
    border-radius: 8px;
    margin-top: 1.5rem;
}

.property-price-area div {
    font-size: 1.1rem;
    color: var(--dark);
}

/* Property Location */
.property-location {
    margin-bottom: 2rem;
}

.property-location h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.location-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.location-info p {
    color: #555;
    margin-bottom: 1rem;
}

.map-container {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 1rem;
}

.map-container #map {
    width: 100%;
    height: 100%;
}

/* Property Gallery */
.property-gallery {
    margin-bottom: 2rem;
}

.main-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.main-image img:hover {
    transform: scale(1.05);
}

.thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
}

.thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s, transform 0.3s;
    flex-shrink: 0;
}

.thumbnail.active,
.thumbnail:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Property Description */
.property-description {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.property-description h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.property-description p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

/* Property Features */
.property-features {
    margin-bottom: 2rem;
}

.property-features h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #555;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.feature-item i {
    color: var(--primary);
    transition: color 0.3s ease;
}

.feature-item:hover i {
    color: white;
}

/* Property Meta */
.property-meta {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.property-category,
.property-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.property-category {
    background-color: var(--light);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.property-status {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #4caf50;
}

/* Back to Category Button */
.back-to-category-section {
    text-align: center;
    margin-top: 2rem;
}

.back-to-category-section .btn {
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-to-category-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 185, 142, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .property-details {
        padding: 1.5rem;
    }

    .main-image {
        height: 250px;
    }

    .property-gallery .thumbnails {
        gap: 8px;
    }

    .thumbnail {
        width: 70px;
        height: 50px;
    }

    .property-description,
    .location-info {
        padding: 1rem;
    }

    .back-to-category-section {
        margin-top: 1rem;
    }

    .back-to-category-section .btn {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .property-details .property-title {
        font-size: 1.5rem;
    }

    .property-meta {
        justify-content: center;
    }

    .property-gallery {
        margin-bottom: 1.5rem;
    }

    .main-image {
        height: 200px;
    }

    .property-description h3,
    .property-features h3,
    .property-location h3 {
        font-size: 1.1rem;
    }
}

/* Property Contact */
.property-contact {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.property-contact h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Related Properties */
.related-properties-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.related-properties-section h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.related-property-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.related-property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.related-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-info {
    padding: 1rem;
}

.related-title {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.related-location {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.related-location i {
    color: var(--secondary);
    margin-right: 5px;
}

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

.related-status {
    display: inline-block;
    padding: 3px 10px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 15px;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

.no-related {
    text-align: center;
    padding: 2rem;
    color: #777;
    grid-column: 1 / -1;
}

/* Property Features & Amenities Styles */
.property-features {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.property-features h3 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.features-list .feature-item {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #495057;
}

.features-list .feature-item i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.property-amenities h4 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.amenity-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.amenity-item i {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-right: 0.75rem;
    width: 24px;
    text-align: center;
}

.amenity-item span {
    font-size: 0.9rem;
    color: #495057;
}

/* Contact Card Sidebar */
.contact-card .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.contact-card .card-body {
    padding: 1.5rem;
}

.contact-card .card-title {
    color: var(--dark);
    font-weight: 600;
    font-size: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 0.95rem;
}

.contact-item i {
    width: 20px;
    text-align: center;
}

.contact-item span {
    flex: 1;
}

.no-related i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.error-message {
    text-align: center;
    padding: 3rem;
}

.error-message h3 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.error-message p {
    color: #777;
    margin-bottom: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .property-details .property-title {
        font-size: 1.5rem;
    }

    .main-image {
        height: 250px;
    }

    .property-meta {
        flex-wrap: wrap;
    }

    .property-price-area {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===========================================
   BUTTON STYLES - Consistent across all pages
   =========================================== */

/* Base Button Styles */
.btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

/* Primary Button */
.btn-primary {
    background-color: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: #00996e;
    border-color: #00996e;
    color: white;
}

/* Secondary Button */
.btn-secondary {
    background-color: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

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

/* Outline Button */
.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

/* Outline Primary (used in tabs) */
.btn-outline-primary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

/* Dark Button */
.btn-dark {
    background-color: var(--dark);
    color: white;
    border: 2px solid var(--dark);
}

.btn-dark:hover {
    background-color: #0a1929;
    border-color: #0a1929;
    color: white;
}

/* Button Sizes */
.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 6px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 10px;
}

.btn-xl {
    padding: 18px 36px;
    font-size: 18px;
    border-radius: 12px;
}

/* Square Button Sizes (for icon buttons) */
.btn-square {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 8px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 6px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 10px;
}

/* Social Buttons */
.btn-social {
    width: 38px;
    height: 38px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

/* Footer Link Buttons */
.btn-link {
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    color: #999;
    font-weight: normal;
    text-transform: capitalize;
}

.btn-link:hover {
    color: white;
    letter-spacing: 1px;
}

/* Property Card Buttons */
.property-card .btn {
    background: var(--primary);
    border: 2px solid var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.property-card .btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
}

/* Team Item Buttons */
.team-item .btn {
    color: var(--primary);
    background: white;
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.team-item .btn:hover {
    color: white;
    background: var(--primary);
    border-color: var(--primary);
}

/* Glass Form Submit Button */
.glass-form input[type="submit"] {
    background: var(--primary);
    border: 2px solid var(--primary);
    color: #fff;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 14px;
}

.glass-form input[type="submit"]:hover {
    background: #00996e;
    border-color: #00996e;
    transform: translateY(-2px);
}

/* Navbar Get Enquiry Button */
.navbar .btn-primary {
    padding: 10px 20px;
    border-radius: 8px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: var(--primary);
    color: white;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background-color: #00996e;
    border-color: #00996e;
    color: white;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .sidebar {
        position: sticky;
        top: 90px;
        height: auto;
    }

    .container {
        flex-direction: row;
    }

    .categories {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .category-item {
        flex: 1;
        min-width: 150px;
    }

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

@media (max-width: 991px) {
    .sidebar {
        position: sticky;
        top: 90px;
        width: 250px;
        height: calc(100vh - 200px);
    }

    .main-content {
        padding: 1.5rem;
        flex: 1;
    }

    .container {
        flex-direction: row;
        gap: 1.5rem;
        /* max-width: 100px !important; */
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .sidebar {
        position: relative;
        top: 70px;
        width: 100%;
        height: auto;
        max-height: 350px;
    }

    .sidebar h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .main-content {
        padding: 5rem;
        margin-left: 0;
    }

    .search-container input {
        width: 100%;
    }

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

    .property-actions {
        flex-direction: column;
    }

    .categories {
        flex-direction: column;
    }

    .category-item {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        flex-direction: column;
    }

    .sidebar {
        position: sticky;
        top: 70px;
        width: 100%;
        height: auto;
        max-height: 250px;
    }

    .sidebar h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .main-content {
        padding: 1rem;
        margin-left: 0;
    }

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

    .category-item {
        min-width: 100%;
        font-size: 12px;
        margin: 1px;
    }

    .category-item a {
        min-width: 100%;
        font-size: 10px;
        display: flex;
        padding: 12px;
    }
}

/* No results message */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.no-results i {
    font-size: 3rem;
    color: #bdc3c7;
    margin-bottom: 1rem;
}

/* Active category highlight */
.category-item.active {
    box-shadow: 0 0 0 2px var(--secondary-color);
}

/********** Responsive Design **********/
@media (max-width: 991.98px) {
    .property-display {
        padding-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .sidebar {
        position: static;
        margin-bottom: 20px;
    }

    .property-btn {
        width: 100%;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: var(--primary);
    color: white;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .back-to-top {
        right: 16px;
        bottom: 33px;
    }
}

.back-to-top:hover {
    background-color: #00996e;
    border-color: #00996e;
    color: white;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn-square,
.btn-sm-square,
.btn-lg-square {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border: 2px solid transparent;
}

.btn-square:hover,
.btn-sm-square:hover,
.btn-lg-square:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: transparent;
}


/* ===========================================
   VIDEO SECTION WITH FORM
   =========================================== */

/* Main video container */
.home-style1 {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Video styling */
.home-screen__step-1__bg__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark overlay for readability */
.home-style1::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

/* Container for centering content */
.home-style1 .container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Inner banner adjustments */
.inner-banner-style1 {
    width: 100%;
    position: relative;
}

/* 🔥 GLASS FORM - Desktop Positioning */
.glass-form {
    width: 350px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(137, 205, 160, 0.222);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 251, 192, 0.35);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
    position: absolute;
    margin-top: 55px;
    margin-right: 100%;
    transform: translateY(-50%);
    z-index: 10;
}

/* Headings */
.glass-form h2,
.glass-form p {
    color: #6eeaa4;
    text-align: left;
}

.glass-form h2 {
    margin-bottom: 8px;
    font-size: 28px;
}

.glass-form p {
    margin-bottom: 1px;
    color: rgba(255, 255, 255, 0.9);
}

/* Inputs */
.glass-form input,
.glass-form textarea {
    width: 100%;
    padding: 12px 10px;
    border-radius: 8px;
    border: 1px solid rgba(83, 235, 144, 0.4);
    background: rgba(119, 220, 124, 0.25);
    color: #fff;
    margin-bottom: 3px;
    font-size: 18px;
}

/* Placeholder color */
.glass-form input::placeholder,
.glass-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

/* Submit Button */
.glass-form input[type="submit"] {
    background: var(--primary);
    border: 2px solid var(--primary);
    color: #fff;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
    font-size: 14px;
}

.glass-form input[type="submit"]:hover {
    background: #00996e;
    border-color: #00996e;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 185, 142, 0.4);
}

/* WPForms specific styling */
.wpcf7-form p {
    margin-bottom: 15px;
}

.wpcf7-form-control {
    font-size: 14px;
}

/* ===========================================
   RESPONSIVE ADJUSTMENTS
   =========================================== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .home-style1 {
        min-height: auto;
        padding: 40px 0;
        display: block;
    }

    .home-style1 .container {
        display: block;
        padding-top: 0;
    }

    /* Adjust video height for mobile */
    .home-screen__step-1__bg__video {
        position: relative;
        height: 400px;
        width: 100%;
        left: 0;
        bottom: 0;
        object-fit: cover;
    }

    /* Adjust overlay for mobile */
    .home-style1::after {
        background: rgba(0, 0, 0, 0.3);
    }

    /* Move form below video for tablet/mobile */
    .inner-banner-style1 {
        margin-top: 30px;
        text-align: center;
    }

    .glass-form {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 30px auto 0;
        max-width: 500px;
        width: 90%;
    }

    .glass-form h2,
    .glass-form p {
        text-align: center;
    }

    .glass-form h2 {
        font-size: 22px;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .home-screen__step-1__bg__video {
        height: 300px;
    }

    .glass-form {
        padding: 25px 20px;
        max-width: 100%;
        width: 95%;
    }

    .glass-form h2 {
        font-size: 20px;
    }

    .inner-banner-style1 {
        margin-top: 20px;
    }
}

/* Medium screens (992px and below) */
@media (max-width: 992px) and (min-width: 769px) {
    .glass-form {
        left: 5%;
        max-width: 350px;
    }
}

/* Large screens (1400px and above) */
@media (min-width: 1400px) {
    .glass-form {
        left: 15%;
    }
}


/*** Navbar ***/
.nav-bar {
    position: relative;
    margin-top: 45px;
    padding: 0 3rem;
    transition: .5s;
    z-index: 9999;
}

@media (max-width: 1400px) {
    .nav-bar {
        padding: 0 1rem;
    }
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    min-height: 100px;
}

.navbar-nav {
    flex-wrap: nowrap;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 25px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 17px;
    text-transform: uppercase;
    outline: none;
    white-space: nowrap;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 400px) {
    .mobile-brand-text {
        font-size: 16px;
    }

    .navbar-toggler {
        padding: 5px 8px;
        font-size: 1rem;
    }
}


@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0 !important;
        padding: 0 !important;
    }

    .navbar {
        min-height: 70px !important;
        padding: 0 20px !important;
        background-color: #ffffff !important;
    }

    .navbar>.container-fluid {
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
    }

    div[class*="d-lg-none"].w-100 {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding-right: 5px;
        /* Tiny bit of breathing room for toggler */
    }

    .navbar-toggler {
        width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: 1px solid var(--primary) !important;
        border-radius: 4px !important;
        background: transparent !important;
        color: var(--primary) !important;
        outline: none !important;
        box-shadow: none !important;
        flex-shrink: 0 !important;
    }

    .navbar-toggler i {
        font-size: 18px !important;
        color: var(--primary) !important;
        line-height: 1 !important;
    }

    .navbar-light .navbar-brand {
        display: flex;
        align-items: center;
        padding: 5px 0;
        margin: 0;
        overflow: visible;
        min-width: 0;
        flex-shrink: 1;
    }

    .navbar-brand img {
        height: 45px !important;
        width: auto !important;
        max-width: 45px !important;
        object-fit: contain !important;
        margin-right: 12px !important;
        display: block !important;
        flex-shrink: 0 !important;
    }

    .mobile-brand-text {
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 1.2;
        color: var(--primary);
        white-space: nowrap;
        margin: 0;
        overflow: visible;
    }

    .navbar-toggler {
        order: 2 !important;
        margin-left: 10px !important;
        flex-shrink: 0 !important;
    }

    .navbar-light .navbar-brand {
        order: 1 !important;
        margin: 0 !important;
        flex-grow: 0 !important;
        max-width: calc(100% - 60px);
        display: flex;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .mobile-brand-text {
        font-size: 1.1rem !important;
    }

    .navbar-brand img {
        height: 40px !important;
    }
}

@media (max-width: 360px) {
    .mobile-brand-text {
        font-size: 0.95rem !important;
    }

    .navbar-brand img {
        height: 35px !important;
    }
}

.navbar-light .navbar-brand {
    height: 75px;
    display: flex;
    align-items: center;
}

.navbar-brand div[class*="flex-column"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-top: 0 !important;
}

.navbar-brand h2:not(.heading),
.navbar-brand small {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--dark) !important;
    margin: 0 !important;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .navbar-brand small {
        display: none !important;
    }
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;

    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/* End of Navbar Styles */

/*** Header ***/
@media (min-width: 992px) {
    .header {
        margin-top: -120px;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #DDDDDD;
}


/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 50px;
    /* border: 5px solid var(--primary); */
}


/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
    height: 500px;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}


/*** Category ***/
.cat-item div {
    background: #FFFFFF;
    border: 1px dashed rgba(0, 185, 142, .3);
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}

/* SIDE BAR START */
/* Property Cards Styling */
.property-card {
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
    height: 5;
}

.property-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.property-card h5 {
    color: var(--dark);
    margin-bottom: 10px;
}

.property-card p {
    margin-bottom: 5px;
    color: #555;
}

.property-card .btn {
    background: var(--primary);
    border: none;
    color: white;
}

.property-card .btn:hover {
    background: var(--secondary);
}

/* Scrollbar styling for property content */
#propertyContent::-webkit-scrollbar {
    width: 8px;
}

#propertyContent::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

#propertyContent::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

#propertyContent::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* SIDE BAR END */

/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.property-item img {
    transition: .5s;
    height: 200px;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgba(0, 185, 142, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 185, 142, .3) !important;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: all 0.3s ease;
}

.team-item .btn {
    color: var(--primary);
    background: white;
    border: 2px solid var(--primary);
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-item .btn:hover {
    color: white;
    background: var(--primary);
    border-color: var(--primary);
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: white;
}

.footer .btn.btn-link {
    display: inline-block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
    background: none;
    border: none;
    border-radius: 0;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: inherit;
}

.footer .btn.btn-link:hover {
    color: white;
    letter-spacing: 1px;
    background: none;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255, 255, 255, 0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
    text-align: center;
    justify-content: center;
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    text-align: center;

}

.footer .footer-menu {
    text-align: center;
    justify-content: center;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}



/********** Blogs Section - All Blogs Displayed One Below Another **********/
/* Blogs Header - Centered at Top */
.container .text-center.mx-auto.mb-5 {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.container .text-center.mx-auto.mb-5 h2 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.container .text-center.mx-auto.mb-5 h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    /* background: var(--primary); */
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.blogs-description {
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.8;
    margin-top: 30px;
    opacity: 0.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Blogs Container */
.blogs-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Blog Item - One Below Another */
.blog-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 185, 142, 0.1);
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 185, 142, 0.1);
    border-color: rgba(0, 185, 142, 0.3);
}

/* Blog Image */
.blog-image {
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
}

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

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

.blog-date-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.blog-date-overlay .badge {
    font-size: 0.85rem;
    padding: 8px 15px;
    border-radius: 20px;
    background-color: var(--primary);
    font-weight: 500;
}

/* Blog Content */
.blog-content h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.blog-content h3:hover {
    color: var(--primary);
    cursor: pointer;
}

.blog-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

/* Blog Author Info */
.blog-content .d-flex.align-items-center img {
    border: 2px solid var(--light);
}

.blog-content .ps-3 h6 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 5px;
}

.blog-content .ps-3 small {
    color: #7f8c8d;
    font-size: 0.85rem;
}

/* Read Article Button */
.blog-content .btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.blog-content .btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 185, 142, 0.2);
}

/* Section Divider */
.section-divider {
    height: 1px;
    width: 100px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    margin: 30px auto 40px auto;
}

/* Responsive Design for Blogs Section */
@media (max-width: 992px) {
    .blog-image {
        height: 200px;
    }

    .blog-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .container .text-center.mx-auto.mb-5 h2 {
        font-size: 2.2rem;
    }

    .blogs-description {
        font-size: 1rem;
    }

    .blog-item {
        padding: 20px;
    }

    .blog-content h3 {
        font-size: 1.25rem;
    }

    .blog-content .d-flex.justify-content-between {
        flex-direction: column;
        gap: 20px;
    }

    .blog-content .btn-outline-primary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container .text-center.mx-auto.mb-5 h2 {
        font-size: 1.8rem;
    }

    .blogs-description {
        font-size: 0.95rem;
    }

    .blog-item {
        padding: 15px;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }

    .blog-image {
        height: 180px;
    }
}

/* Animation for blog items */
.wow.fadeInUp[data-wow-delay="0.1s"] {
    animation: fadeInUp 0.5s ease 0.1s forwards;
    opacity: 0;
}

.wow.fadeInUp[data-wow-delay="0.2s"] {
    animation: fadeInUp 0.5s ease 0.2s forwards;
    opacity: 0;
}

.wow.fadeInUp[data-wow-delay="0.3s"] {
    animation: fadeInUp 0.5s ease 0.3s forwards;
    opacity: 0;
}

.wow.fadeInUp[data-wow-delay="0.4s"] {
    animation: fadeInUp 0.5s ease 0.4s forwards;
    opacity: 0;
}

.wow.fadeInUp[data-wow-delay="0.5s"] {
    animation: fadeInUp 0.5s ease 0.5s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Btn css in index.html */
/* From Uiverse.io by vikiWayne */
.button-pro {
    padding: 1em 2em;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 5px;
    text-transform: uppercase;
    cursor: pointer;
    color: #ffffff;
    transition: all 1000ms;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    outline: 2px solid #05161a;
    width: 100%;
    max-width: 200px;
    min-width: 120px;
}

.button-pro:hover {
    color: #ffffff;
    transform: scale(1.1);
    outline: 2px solid #050f1b;
    box-shadow: 4px 5px 17px -4px #fafafa;
}

button::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #0e2e50;
    transform: skewX(45deg);
    z-index: -1;
    transition: width 1000ms;

}

.button-pro:hover::before {
    width: 250%;

}

/* Contact form submit button - remove hover effect */
.contact-submit-btn:hover {
    transform: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #ffffff !important;
}

.contact-submit-btn:hover::before {
    width: 0 !important;
}

/* ============================================
   Contact Page Responsive Styles
   ============================================ */

/* Enquiry Form Container - Tablet and below */
@media (max-width: 991.98px) {
    .contact-form-container {
        width: 75% !important;
    }
}

/* Enquiry Form Container - Mobile */
@media (max-width: 575.98px) {
    .contact-form-container {
        width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Form heading size on mobile */
    .contact-form-container h4 {
        font-size: 1.25rem !important;
    }

    /* Make form inputs full width on mobile */
    .contact-form-container .col-md-6,
    .contact-form-container .col-12 {
        width: 100% !important;
    }
}

/* Contact Submit Button - Responsive */
@media (max-width: 575.98px) {
    .contact-submit-btn {
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1rem !important;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .contact-submit-btn {
        width: 50% !important;
    }
}

/* Contact Header Section - Mobile */
@media (max-width: 767.98px) {
    .container-fluid.header.bg-white.p-0 {
        padding: 20px 15px !important;
    }

    .container-fluid.header.bg-white.p-0 .col-md-6.p-5 {
        padding: 20px 15px !important;
        margin-top: 0 !important;
    }

    .container-fluid.header.bg-white.p-0 h2 {
        font-size: 1.75rem !important;
    }

    .container-fluid.header.bg-white.p-0 img.img-fluid {
        max-height: 200px !important;
        object-fit: cover;
    }
}

/* Contact Section Padding - Mobile */
@media (max-width: 767.98px) {
    .container-fluid.py-5 {
        padding: 30px 15px !important;
    }

    .container-fluid.py-5 .mb-5 {
        margin-bottom: 25px !important;
    }

    .container-fluid.py-5 h2 {
        font-size: 1.5rem !important;
    }
}

/* Map iframe responsive */
@media (max-width: 767.98px) {
    .col-md-12.wow.fadeInUp iframe {
        min-height: 300px !important;
    }
}

@media (max-width: 575.98px) {
    .col-md-12.wow.fadeInUp iframe {
        min-height: 250px !important;
    }
}

/* Search Section - Mobile */
@media (max-width: 767.98px) {
    .container-fluid.bg-primary.mb-5.wow.fadeIn {
        padding: 25px 15px !important;
    }

    .container-fluid.bg-primary.mb-5.wow.fadeIn h2 {
        font-size: 1.25rem !important;
        margin-bottom: 30px !important;
    }
}

/* Footer - Mobile */
@media (max-width: 767.98px) {
    footer.container-fluid.bg-dark.text-white-50.footer.pt-5.mt-5 .row.g-5 {
        text-align: center;
    }

    footer.container-fluid.bg-dark.text-white-50.footer.pt-5.mt-5 .col-lg-3 {
        margin-bottom: 20px;
    }

    footer.container-fluid.bg-dark.text-white-50.footer.pt-5.mt-5 .d-flex.pt-2 {
        justify-content: center;
    }

    footer.container-fluid.bg-dark.text-white-50.footer.pt-5.mt-5 .row.g-2 {
        justify-content: center;
    }

    footer.container-fluid.bg-dark.text-white-50.footer.pt-5.mt-5 .position-relative.mx-auto {
        max-width: 100% !important;
    }

    footer.container-fluid.bg-dark.text-white-50.footer.pt-5.mt-5 .copyright .row {
        text-align: center;
    }

    footer.container-fluid.bg-dark.text-white-50.footer.pt-5.mt-5 .copyright .col-md-6 {
        margin-bottom: 10px;
    }
}

/* Form Floating Labels - Mobile */
@media (max-width: 575.98px) {
    .form-floating {
        margin-bottom: 15px;
    }

    .form-floating .form-control,
    .form-floating .form-select {
        font-size: 0.95rem;
    }

    .form-floating>label {
        font-size: 0.875rem;
    }
}

/* Responsive adjustments for button */
@media (max-width: 768px) {
    .button-pro {
        padding: 0.8em 1.5em;
        font-size: 13px;
        letter-spacing: 3px;
        min-width: 100px;
    }
}

@media (max-width: 576px) {
    .button-pro {
        padding: 0.7em 1em;
        font-size: 12px;
        letter-spacing: 2px;
        min-width: 90px;
    }

    /* Responsive button container */
    .container-fluid.bg-primary .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 10px;
        padding-right: 10px;
    }
}





/* whatsapp button */

.whatsapp-float {
    position: fixed;
    width: 75px;
    height: 75px;
    bottom: 110px;
    /* distance from bottom */
    right: 29px;
    /* distance from right side */
    /* background-color: #00d084; */
    color: #25e317;
    border-radius: 50%;
    text-align: center;
    font-size: 50px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    text-decoration: none;
    color: #83f56f;
}


/* ----------  Tablets Screen (768px – 1024px) ---------- *

/* ----------  Mobile Devices (up to 767px) ---------- */
@media (max-width: 767px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 80px;
        right: 15px;
        font-size: 35px;
    }

}

/* ----------  Extra Small Mobiles (up to 480px) ---------- */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 100px;
        right: 12px;
        font-size: 50px;
    }

}


@media (max-width: 991px) {
    .mobile-brand-text {
        font-size: 20px !important;
    }

    .text-primary.heading {
        font-size: 20px !important;
    }

    /* Ensure toggle button is visible */
    .navbar-toggler {
        z-index: 1050;
        position: relative;
    }
}

/* Custom Responsive Hero Search Title */
.hero-search-title {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero-search-title {
        margin-bottom: 25px !important;
        font-size: 1.25rem !important;
        padding: 0 15px;
    }
}