* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    overflow-x: hidden;
}

.videorow {
    display: flex;
    flex-wrap: wrap;
}

.videocolmd4 {
    flex: 0 0 auto;
    width: 33.3%;
}

.iframeclass {
    width: 361px;
    height: 642px;
}

.footercontainer {
    width: 100%;
    padding: 0 100px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
.footercontainer {
    padding: 0 15px;
}
.videocolmd4 {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}
.iframeclass {
    width: 278px;
    height: 496px;
}
}

.mobile-bottom-nav {
    display: none; 
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: transparent;
    box-shadow: none;
    z-index: 1000;
    padding: 0 0 20px 0;
    margin: 0 auto;
}

.bottom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
}

.bottom-nav-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    right: 10px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(62, 73, 79, 0.1), transparent);
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 25%;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-bottom-nav .nav-icon .fa-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    margin-bottom: 3px;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    position: relative;
}

.mobile-bottom-nav .nav-icon .fa-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    margin-bottom: 3px;
    transition: all 0.3s ease;
    background-color: #25D366;
    position: relative;
}

.mobile-bottom-nav .nav-icon .fa-youtube {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    margin-bottom: 3px;
    transition: all 0.3s ease;
    background-color: red;
    position: relative;
}

.mobile-bottom-nav .nav-item.active .nav-icon {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
    transform: translateY(-5px);
}

.mobile-bottom-nav .nav-item i {
    font-size: 24px;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.mobile-bottom-nav .nav-item .nav-icon .fa-youtube {
    color: #fff;
}

.mobile-bottom-nav .nav-item.active i {
    color: #ffffff;
}

.mobile-bottom-nav .nav-item span {
    font-size: 11px;
    font-weight: 600;
    color: #3E494F;
    transition: all 0.3s ease;
    opacity: 0.8;
    letter-spacing: -0.2px;
}

.mobile-bottom-nav .nav-item.active span {
    color: #4CAF50;
    opacity: 1;
}

.mobile-bottom-nav .whatsapp-icon {
    overflow: hidden;
}

.mobile-bottom-nav .nav-item:not(.active) .whatsapp-icon {
    background-color: transparent;
}

.mobile-bottom-nav .nav-item:active .nav-icon {
    transform: scale(0.9);
}

.mobile-bottom-nav .nav-item.active:active .nav-icon {
    transform: translateY(-5px) scale(0.9);
}

@media screen and (max-width: 768px) {
    .property-categories {
        padding: 0 0 50px 0!important;
    }
    
    .section-subtitle {
        font-size: 12px!important;
        line-height: 1.2rem;
    }
    
    .mobile-bottom-nav {
        display: block;
    }
    
    .whatsapp-float {
        display: none;
    }
    
    .youtube-float {
        display: none;
    }
    
    .instagram-float {
        display: none;
    }
}

.property-categories {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.property-categories:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(94, 114, 235, 0.05);
    z-index: 1;
}

.property-categories:after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(94, 114, 235, 0.05);
    z-index: 1;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.category-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.category-card:hover .category-icon {
    background: #5e72eb;
    color: #fff;
    transform: scale(1.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: #f0f2fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #5e72eb;
    transition: all 0.3s ease;
}

.category-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.property-count {
    font-size: 14px;
    color: #fff;
    margin-bottom: 15px;
}

.category-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.view-all-container {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-block;
    background: linear-gradient(to right, #5e72eb, #5e72eb);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(94, 114, 235, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(94, 114, 235, 0.4);
}

.view-all-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .category-card {
        padding: 25px 15px;
        min-height: 180px;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .category-name {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .category-card {
        padding: 20px 10px;
        min-height: 160px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .category-name {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .property-count {
        font-size: 12px;
    }
}

.dropdown-menu li a:hover {
    background-color: #f5f7fa;
    color: #3498db;
}

.dropdown-divider {
    height: 1px;
    background-color: #eee;
    margin: 5px 0;
}

/* Submenu Styles */
.dropdown-submenu {
    position: relative;
}

.submenu-toggle i {
    font-size: 10px;
}

.dropdown-submenu-items {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 200px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px 0;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.dropdown-submenu:hover .dropdown-submenu-items {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile Responsive Dropdown */
@media (max-width: 992px) {
    .dropdown-menu,
    .dropdown-submenu-items {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #ffdfdf;
        border-top: 3px solid #000;
        margin-top: 5px;
        margin-bottom: 5px;
        padding: 5px 0;
        display: none;
        width: 100%;
    }
    
    .dropdown.active .dropdown-menu,
    .dropdown-submenu.active .dropdown-submenu-items {
        display: block;
    }
    
    .dropdown-toggle,
    .submenu-toggle {
        justify-content: space-between;
    }
    
    .dropdown-toggle i,
    .submenu-toggle i {
        margin-left: auto;
    }
    
    .dropdown-submenu-items li a {
        padding-left: 45px;
    }
    
    /* Change submenu arrow direction for mobile */
    .submenu-toggle i {
        transform: rotate(90deg);
    }
    
    .dropdown-submenu.active .submenu-toggle i {
        transform: rotate(270deg);
    }
}

header {
    background-color: rgba(255, 255, 255, 0.24);
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
}

.nav-links li.dropdown {
    position: relative;
    top: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.dropdown-toggle i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 150%;
    left: 0;
    min-width: 200px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu li {
    display: block;
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    color: #333;
    font-size: 14px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #f5f7fa;
    color: #3498db;
}

.dropdown-divider {
    height: 1px;
    background-color: #eee;
    margin: 5px 0;
}

@media (max-width: 992px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f5f7fa;
        margin-top: 5px;
        margin-bottom: 5px;
        padding: 5px 0;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle {
        justify-content: space-between;
    }
    
    .dropdown-toggle i {
        margin-left: auto;
    }
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-right: 30px;
}

.nav-links li {
    line-height: 2rem;
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f8f8f8;
}

.logo {
    width: 150px;
    height: auto;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    padding: 10px 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.logo-container img {
    width: 100px;
    height: auto;
}

.quote-btn {
    background-color: rgb(0 0 0);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
}

.quote-btn i {
    margin-left: 8px;
}


.contact-info {
    display: flex;
    align-items: center;
}

.contact-info i {
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
}

.phone-number {
    font-size: 12px;
    color: #fff;
    font-weight: 600;
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    overflow: hidden;
    background-image: none;
    background-size: cover;
    background-position: center;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    z-index: -1;
}

.hero-tagline {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 18px;
    max-width: 800px;
    line-height: 1.6;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
}

.pointsection {
    background-color: #000;
    border: none;
    outline: none;
    padding: 20px;
}

.pointcontainer {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.pointrow {
    display: flex;
    flex-wrap: wrap;
}

.pointcol {
    flex: 0 0 auto;
    width: 16.66667%;
}

.pointcard {
    text-align: center;
}

.pointicon {
    font-size: 30px;
    color: #fff;
    margin-bottom: 10px;
}

.pointtitle {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
}

.featured-properties {
    padding: 80px 0;
    background-color: #f7f7f7;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-description {
    font-size: 18px;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

.property-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.property-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    max-width: 350px;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.property-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgb(255 0 0 / 90%);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.property-price {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgb(0 0 0 / 90%);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
}

.property-details {
    padding: 20px;
}

.property-title {
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    color: #000;
    padding-bottom: 10px;
    margin: 0;
}

.property-location {
    color: #777;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.property-location i {
    margin-right: 5px;
    color: rgb(0 0 0);
}

.property-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature i {
    color: rgb(0 0 0);
    font-size: 18px;
    margin-bottom: 5px;
}

.feature span {
    font-size: 14px;
    color: #555;
}

.property-btn {
    display: inline-block;
    width: -webkit-fill-available;
    background-color: rgb(0 0 0);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s;
    padding: 10px;
    margin: 0 auto;
}

.property-btn:hover {
    background-color: transparent;
    border: 2px solid rgb(0 0 0);
    outline: none;
    color: #000;
}

.view-all-container {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-block;
    background-color: rgb(0 0 0);
    border: none;
    outline: none;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
    padding: 10px 30px;
    margin: 0 auto;
}

.view-all-btn i {
    margin-left: 8px;
}

.view-all-btn:hover {
    background-color: rgba(150, 184, 208, 0.8);
}

@media (max-width: 992px) {
    .property-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .dropdown-menu li a {
        padding-left: 0;
    }
    
    .nav-links li.dropdown {
        display: block;
    }
    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }

    .property-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .featured-properties {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-description {
        font-size: 14px;
    }

    .property-features {
        flex-wrap: wrap;
        gap: 10px;
    }

    .feature {
        flex: 1 0 30%;
    }
}

@media (max-width: 768px) {
    .pointsection {
        padding: 20px 0 0 0;
    }

    .pointcol {
        width: 50%;
    }

    header {
        justify-content: space-around;
    }
    
    .nav-links {
        position: fixed;
        top: 73px;
        left: -100%;
        background-color: #3e494f;
        width: 100%;
        height: calc(100vh - 80px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: baseline;
        transition: left 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: -webkit-fill-available;
        line-height: 2rem;
    }

    .hamburger {
        display: block;
    }

    .logo-container img {
        width: 85px;
    }

    .quote-btn {
        padding: 8px 15px;
        font-size: 10px;
        margin: 0;
    }

    .hero-tagline {
        font-size: 16px;
    }
    
    .contact-details p {
        font-size: 12px!important;
    }
    
    .pointtitle {
        font-size: 12px;
    }

    .hero-title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 15px;
    }
    
    .contact-info {
        display: none;
    }
}

.why-choose-us {
    padding: 90px 0;
    background-color: #fff;
}

.benefits-container {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 30px;
}

.benefit-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.benefit-image img {
    display: flex;
    width: 70%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s;
    margin: 0 auto;
}

.benefit-image:hover img {
    transform: scale(1.05);
}

.benefits-content {
    flex: 1;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.benefit-item:last-of-type {
    border-bottom: none;
}

.benefit-icon {
    margin-right: 20px;
    background-color: rgb(215 239 252);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: rgb(0 0 0);
    font-size: 24px;
}

.benefit-details h3 {
    color: #3E494F;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-details p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.cta-container {
    margin-top: 30px;
}

.cta-btn {
    display: inline-block;
    background-color: #000;
    color: white;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-btn i {
    margin-left: 8px;
}

.cta-btn:hover {
    background-color: #2d3639;
}

.counter-section {
    padding: 80px 0;
    background-image: url('/api/placeholder/1920/500');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0);
}

.counter-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.counter-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: rgb(255 255 255);
}

.counter-number {
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 10px;
}

.counter-title {
    font-size: 18px;
    font-weight: 400;
}

@media (max-width: 992px) {
    .benefits-container {
        flex-direction: column;
    }

    .benefit-image,
    .benefits-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .counter-icon {
        font-size: 25px;
    }

    .counter-section {
        padding: 30px 0;
    }

    .why-choose-us {
        padding: 60px 0;
    }

    .counter-item {
        min-width: auto;
    }

    .counter-number {
        font-size: 32px;
    }

    .counter-title {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .counter-grid {
        gap: 20px;
    }

    .counter-item {
        flex: 0 0 45%;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
    }

    .benefit-icon i {
        font-size: 20px;
    }

    .benefit-details h3 {
        font-size: 18px;
    }

    .benefit-details p {
        font-size: 14px;
    }
}


.premium-testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, #f9fbfd 0%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Elements */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    background: rgba(150, 184, 208, 0.1);
    border-radius: 50%;
}

.shape-1 {
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    animation: float 10s ease-in-out infinite;
}

.shape-3 {
    top: 40%;
    right: 10%;
    width: 200px;
    height: 200px;
    animation: float 7s ease-in-out infinite;
}

.shape-4 {
    top: 20%;
    left: 10%;
    width: 150px;
    height: 150px;
    animation: float 9s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, 15px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(150, 184, 208, 0.1) 0%, rgba(150, 184, 208, 0.2) 50%, rgba(150, 184, 208, 0.1) 100%);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.header-badge i {
    color: rgb(0 0 0);
    font-size: 12px;
}

.header-badge span {
    margin: 0 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(62, 73, 79, 0.8);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #3E494F;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.highlight {
    color: rgb(0 82 140);
    position: relative;
    display: inline-block;
}

.highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgb(0 82 140);
    z-index: -1;
}

.section-subtitle {
    font-size: 18px;
    color: #737a80;
    max-width: 700px;
    margin: 0 auto;
}

.testimonials-wrapper {
    margin-top: 30px;
}

.testimonial-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.featured-testimonial {
    margin-bottom: 30px;
}

.featured-card {
    display: flex;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.testimonial-media {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.client-photo {
    width: 100%;
    height: 50%;
    position: relative;
    overflow: hidden;
}

.client-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover .client-photo img {
    transform: scale(1.05);
}

.client-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgb(0 0 0 / 90%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.property-photo {
    width: 100%;
    height: 50%;
    position: relative;
    overflow: hidden;
}

.property-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover .property-photo img {
    transform: scale(1.05);
}

.property-type {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgb(0 0 0);
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.testimonial-content {
    flex: 0 0 60%;
    padding: 20px;
    position: relative;
}

.quote-marks {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 80px;
    color: rgba(150, 184, 208, 0.1);
    font-family: 'Georgia', serif;
    line-height: 0;
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.client-name {
    font-size: 24px;
    color: rgb(0 82 140);
    font-weight: 700;
    margin: 0;
}

.client-verified {
    display: flex;
    align-items: center;
    background-color: #e8f4fe;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    color: #3897e8;
    font-weight: 600;
}

.client-verified i {
    margin-right: 5px;
}

.client-rating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    display: flex;
    color: #FFD700;
}

.stars i {
    margin-right: 3px;
}

.rating-score {
    margin-left: 10px;
    background-color: #fef8e8;
    color: #ffc107;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.testimonial-text {
    margin-bottom: 25px;
}

.testimonial-text p {
    color: #5d6670;
    font-size: 16px;
    line-height: 1.8;
}

.testimonial-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.meta-item {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 8px 15px;
    border-radius: 30px;
}

.meta-item i {
    color: rgb(0 0 0);
    margin-right: 8px;
    font-size: 14px;
}

.meta-item span {
    color: rgb(0 0 0);
    font-size: 14px;
    font-weight: 500;
}

/* Testimonial Carousel */
.testimonial-carousel-container {
    position: relative;
    padding: 10px;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.control-btn {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.control-btn i {
    color: #3E494F;
    font-size: 16px;
}

.control-btn:hover {
    background: rgba(150, 184, 208, 1);
}

.control-btn:hover i {
    color: white;
}

.testimonial-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 20px 10px;
}

.testimonial-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.carousel-card {
    flex: 0 0 280px;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-media {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-card:hover .card-media img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgb(0 0 0 / 90%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.card-content {
    padding: 20px;
}

.card-content h4 {
    color: #3E494F;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.card-rating {
    color: #FFD700;
    font-size: 12px;
    margin-bottom: 10px;
}

.card-property {
    color: #737a80;
    font-size: 14px;
    font-weight: 500;
}

.testimonial-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    gap: 20px;
}

.stat-card {
    flex: 1;
    display: flex;
    align-items: center;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(150, 184, 208, 0.2) 0%, rgba(150, 184, 208, 0.4) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.stat-icon i {
    color: rgb(0 0 0);
    font-size: 24px;
}

.stat-content {
    flex-grow: 1;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #3E494F;
    margin-bottom: 5px;
}

.stat-label {
    color: #737a80;
    font-size: 14px;
    font-weight: 500;
}

/* Premium CTA */
.premium-cta {
    margin-top: 80px;
    background: linear-gradient(135deg, #3E494F 0%, #56646e 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-content {
    color: white;
}

.cta-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 16px;
    opacity: 0.9;
}

.premium-btn {
    display: flex;
    align-items: center;
    background: white;
    color: #3E494F;
    text-decoration: none;
    padding: 15px 20px 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.premium-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-icon {
    position: relative;
    left: 24px;
    margin-left: 15px;
    width: 40px;
    height: 40px;
    background: rgb(255 255 255);
    color: #f4605b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.premium-btn:hover .btn-icon {
    background: rgba(150, 184, 208, 1);
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header, .featured-testimonial, .testimonial-carousel-container, .testimonial-stats, .premium-cta {
    animation: fadeInUp 0.8s ease forwards;
}

.testimonial-carousel-container {
    animation-delay: 0.2s;
}

.testimonial-stats {
    animation-delay: 0.4s;
}

.premium-cta {
    animation-delay: 0.6s;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .featured-card {
        flex-direction: column;
    }
    
    .testimonial-media {
        display: flex;
        height: 250px;
    }
    
    .client-photo, .property-photo {
        width: 50%;
        height: 100%;
    }
    
    .testimonial-content {
        flex: 1;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 36px;
    }
    
    .carousel-card {
        flex: 0 0 250px;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-icon {
        margin: 0 auto 15px;
    }
    
    .premium-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .premium-btn {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .premium-testimonials {
        padding: 80px 0;
    }
    
    .testimonial-stats {
        flex-wrap: wrap;
    }
    
    .stat-card {
        flex: 0 0 calc(50% - 10px);
    }
    
    .featured-testimonial {
        padding: 0 10px;
    }
    
    .testimonial-content {
        padding: 10px;
    }
    
    .client-name {
        font-size: 14px;
    }

    .testimonial-text p {
        font-size: 10px;
    }
    
    .meta-item {
        flex: 0 0 calc(100% - 10px);
        padding-bottom: 0;
        padding-left: 0;
    }

    .testimonial-meta {
        margin-bottom: 20px;
    }

    .meta-item span {
        font-size: 10px;
    }

    .cta-content h3 {
        font-size: 22px;
    }

    .cta-content p {
        font-size: 12px;
    }

    .premium-cta {
        padding: 20px 10px;
    }

    .premium-btn {
        font-size: 10px;
        padding: 10px 20px;
    }

    .subscription-box {
        background: linear-gradient(45deg, #7b9eb2, #418ab4)!important;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 17px;
        line-height: normal;
        letter-spacing: 0px;
    }

    .highlight {
        height: 29px;
    }
    
    .stat-card {
        flex: 0 0 100%;
    }
    
    .carousel-card {
        flex: 0 0 220px;
    }
    
    .testimonial-media {
        flex-direction: column;
        height: auto;
    }
    
    .client-photo, .property-photo {
        width: 100%;
        height: 180px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
    }
}

.premium-footer {
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    overflow: hidden;
}

.footer-wave {
    position: relative;
    width: 100%;
    height: 300px;
}

.footer-wave svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer-main {
    position: relative;
    background-color: #384348;
    padding: 0 0 10px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.footer-branding {
    display: flex;
    align-items: center;
}

.footer-logo {
    margin-right: 20px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-tagline {
    font-size: 18px;
    font-weight: 600;
    color: rgba(150, 184, 208, 1);
    margin: 0;
    letter-spacing: 1px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(255 255 255 / 80%), rgb(255 255 255));
    z-index: -1;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icon:hover:before {
    filter: brightness(1.2);
}

.social-tooltip {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: #3E494F;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.social-tooltip:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid white;
}

.social-icon:hover .social-tooltip {
    opacity: 1;
    visibility: visible;
    top: -40px;
}

/* Subscribe Box */
.subscription-box {
    background: linear-gradient(45deg, #333e44, #4e5c64);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.subscription-content {
    display: flex;
    align-items: center;
}

.subscription-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(150, 184, 208, 0.8), rgba(150, 184, 208, 1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.subscription-icon i {
    font-size: 24px;
    color: white;
}

.subscription-text h3 {
    font-size: 22px;
    margin: 0 0 5px 0;
    color: white;
    font-weight: 600;
}

.subscription-text p {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.subscription-form {
    flex: 0 0 50%;
    max-width: 500px;
}

.subscription-form .form-group {
    display: flex;
    position: relative;
}

.subscription-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    outline: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.subscription-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background: linear-gradient(45deg, rgb(0 0 0), rgb(0 0 0));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.subscription-form button span {
    margin-right: 8px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    position: relative;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, rgb(255 255 255), rgba(150, 184, 208, 0.3));
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
}

.feature-item i {
    color: rgb(255 255 255);
    margin-right: 10px;
}

.feature-item span {
    font-size: 14px;
    font-weight: 500;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.footer-nav li {
    position: relative;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-nav a i {
    font-size: 12px;
    margin-right: 8px;
    color: rgb(255 255 255);
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: rgb(255 255 255);
    transform: translateX(5px);
}

.property-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.propertytag {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.propertytag:hover {
    background-color: rgb(255 255 255);
    color: #000;
    transform: translateY(-3px);
}

.contact-infos {
    display: grid;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    margin-right: 10px;
}

.contact-icon i {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(255 255 255);
    font-size: 18px;
    line-height: 2.5rem;
    width: inherit;
}

.contact-details h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.contact-details p {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

/* Google Map */
.footer-map {
    position: relative;
    height: 250px;
    margin-bottom: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.map-container {
    height: 100%;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    max-width: 250px;
}

.map-card {
    background: rgb(255 255 255 / 90%);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.map-card h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.map-card p {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: rgba(0, 0, 0);
    display: flex;
    align-items: center;
}

.map-card p i {
    margin-right: 8px;
    color: rgba(0, 0, 0);
}

.direction-btn {
    display: inline-flex;
    align-items: center;
    background-color: rgba(0, 0, 0);
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.direction-btn i {
    margin-right: 5px;
}

.direction-btn:hover {
    background-color: rgba(150, 184, 208, 0.8);
    transform: translateY(-2px);
}

.footer-bottom {
    position: relative;
    background-color: #000;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    font-size: 14px;
    color: rgb(255 255 255);
    margin: 0;
}

.footer-nav-bottom {
    display: flex;
    gap: 20px;
}

.footer-nav-bottom a {
    color: rgb(255 255 255);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-nav-bottom a:hover {
    color: rgb(255 255 255);
}

.payment-methods {
    display: flex;
    align-items: center;
}

.payment-methods span {
    font-size: 14px;
    color: rgb(255 255 255);
    margin-right: 10px;
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icons i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: white;
    transform: translateY(-2px);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #ffffff, #ffffff);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 100;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-float a i {
    font-size: 30px;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.instagram-float {
    position: fixed;
    bottom: 250px;
    right: 30px;
    z-index: 100;
}

.instagram-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.instagram-float a i {
    font-size: 30px;
}

.instagram-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.youtube-float {
    position: fixed;
    bottom: 180px;
    right: 30px;
    z-index: 100;
}

.youtube-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #FF0000;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.youtube-float a i {
    font-size: 30px;
}

.youtube-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.float-tooltip {
    position: absolute;
    top: 17px;
    right: 20px;
    transform: translateX(-50%);
    background-color: white;
    color: #333;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.float-tooltips {
    position: absolute;
    top: 17px;
    right: -70px;
    transform: translateX(-50%);
    background-color: white;
    color: #333;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.float-tooltipss {
    position: absolute;
    top: 17px;
    right: -60px;
    transform: translateX(-50%);
    background-color: white;
    color: #333;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.youtube-float a:hover .float-tooltipss {
    opacity: 1;
    visibility: visible;
}

.instagram-float a:hover .float-tooltips {
    opacity: 1;
    visibility: visible;
}

.whatsapp-float a:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(150, 184, 208, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(150, 184, 208, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(150, 184, 208, 0);
    }
}

.subscription-form button {
    animation: pulse 2s infinite;
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-about, .footer-contact {
        grid-column: span 2;
    }
    
    .footer-about {
        margin-bottom: 30px;
    }
    
    .map-overlay {
        display: none;
    }
}

@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-branding {
        flex-direction: column;
        margin-bottom: 20px;
    }
    
    .footer-logo {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .subscription-box {
        flex-direction: column;
        text-align: center;
    }
    
    .subscription-content {
        flex-direction: column;
        margin-bottom: 20px;
    }
    
    .subscription-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .subscription-form {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .copyright, .footer-nav-bottom, .payment-methods {
        text-align: center;
    }
    
    .footer-nav-bottom {
        justify-content: center;
    }
    
    .payment-methods {
        flex-direction: column;
    }
    
    .payment-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-nav-bottom a {
        font-size: 9px;
    }

    .payment-methods span {
        font-size: 9px;
        margin-bottom: 10px;
    }

    .copyright p {
        font-size: 12px;
    }

    .footer-wave {
        height: 92px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        grid-column: span 1;
    }
    
    .footer-features {
        justify-content: flex-start;
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .subscription-form .form-group {
        flex-direction: column;
    }
    
    .subscription-form input {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    
    .subscription-form button {
        position: static;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        border-radius: 8px;
        text-align: center;
        padding: 12px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .footer-nav, .property-tags, .footer-features {
        grid-template-columns: 1fr;
    }
    
    .footer-top, .subscription-box, .footer-grid, .map-container {
        margin-bottom: 30px;
    }
    
    .whatsapp-float a, .back-to-top {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float a i {
        font-size: 24px;
    }
    
    .back-to-top {
        right: 10px;
        bottom: 120px;
    }
}