@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --primary: #09747f;
    --primary-light: #1a3a5f;
    --secondary: #C5A572;
    --secondary-light: #d4b682;
    --dark: #0d1117;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --success: #09747f;
    --warning: #f59e0b;
    --danger: #ef4444;

    --gradient-primary: linear-gradient(135deg, #09747f 0%, #09747f 100%);
    --gradient-gold: linear-gradient(135deg, #C5A572 0%, #d4b682 100%);
    --gradient-overlay: linear-gradient(135deg,
            rgba(9, 116, 127, 0.95) 0%,
            rgba(9, 116, 127, 0.75) 100%);


    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.20);

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* ===================== RESET & BASE ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2
{
    font-family: "Playfair Display", serif;
    font-weight: 400;
    line-height: 1.3;
    color: var(--dark);
}

h3,
h4, h5,h6{
   font-family: "Inter", sans-serif; 
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ===================== PRELOADER ===================== */
.hh-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hh-preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.hh-loader {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hh-loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.hh-loader-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    border-top-color: var(--primary);
    animation-duration: 2s;
}

.hh-loader-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    border-top-color: var(--secondary-light);
    animation-duration: 2.5s;
}

.hh-loader-logo {
    position: relative;
    width: 60px;
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* ===================== ANNOUNCEMENT BAR ===================== */
.hh-announcement-bar {
    background: var(--gradient-gold);
    padding: 12px 0;
    position: relative;
    z-index: 999;
}

.hh-announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
}

.hh-announcement-content i:first-child {
    color: var(--primary);
    font-size: 18px;
}

.hh-announcement-close {
    position: absolute;
    right: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.hh-announcement-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ===================== TOP BAR ===================== */
.hh-topbar {
    background: var(--primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
}

.hh-topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hh-topbar-left,
.hh-topbar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.hh-topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-fast);
}

.hh-topbar-item:hover {
    color: var(--secondary);
}

.hh-topbar-item i {
    font-size: 14px;
}

.hh-social-links {
    display: flex;
    gap: 10px;
}

.hh-social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.hh-social-icon:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* ===================== HEADER ===================== */
.hh-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 998;
    transition: var(--transition);
}

.hh-header.scrolled {
    box-shadow: var(--shadow-md);
}

.hh-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.hh-logo img {
    height: 45px;
    transition: var(--transition);
}

.hh-nav-menu {
    display: flex;
    gap: 40px;
    margin: 0;
}

.hh-nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
    position: relative;
    padding: 5px 0;
}

.hh-nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.hh-nav-link:hover::after,
.hh-nav-link.active::after {
    width: 100%;
}

.hh-nav-link.active {
    color: var(--primary);
}

.hh-header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hh-search-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: 50%;
    color: var(--dark);
    transition: var(--transition);
}

.hh-search-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.hh-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(10, 31, 63, 0.3);
}

.hh-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(10, 31, 63, 0.4);
}

.hh-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
}

.hh-hamburger span {
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===================== HERO SECTION ===================== */
.hh-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 50px 0 80px;
}

.hh-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hh-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hh-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hh-geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hh-shape {
    position: absolute;
    background: rgba(197, 165, 114, 0.1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 20s infinite ease-in-out;
}

.hh-shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.hh-shape-2 {
    width: 350px;
    height: 350px;
    top: 50%;
    right: -5%;
    animation-delay: 2s;
}

.hh-shape-3 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: 30%;
    animation-delay: 4s;
}

.hh-shape-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 25%;
    animation-delay: 6s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hh-hero-row {
    position: relative;
    z-index: 10;
}

/* Hero Content */
.hh-hero-content {
    color: var(--white);
}

.hh-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(197, 165, 114, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 165, 114, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease;
}

.hh-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hh-hero-title {
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.2s backwards;
    color: #fff;
    font-size: 42px;
    font-weight: 400;
    line-height: 120%;
}

.hh-highlight {
    color: #fff;
    position: relative;
    display: inline-block;
}

.hh-hero-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hh-hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hh-stat-item {
    text-align: center;
}

.hh-stat-number {
    font-size: 48px;
    font-weight: 400;
    color: var(--secondary);
    margin-bottom: 5px;
}

.hh-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.hh-stat-divider {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

.hh-hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.hh-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hh-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hh-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hh-btn span,
.hh-btn i {
    position: relative;
    z-index: 1;
}

.hh-btn-primary {
    background: var(--gradient-gold);
    color: var(--dark);
    box-shadow: 0 8px 25px rgba(197, 165, 114, 0.4);
}

.hh-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(197, 165, 114, 0.5);
}

.hh-btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.hh-btn-outline:hover {
    border-color: var(--secondary);
    background: rgba(197, 165, 114, 0.1);
}

.hh-play-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border-radius: 50%;
    color: var(--dark);
}

.hh-trust-badges {
    display: flex;
    gap: 30px;
    animation: fadeInUp 1s ease 1s backwards;
}

.hh-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.hh-trust-badge i {
    font-size: 20px;
    color: var(--secondary);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================== VALUATION CARD ===================== */
.hh-valuation-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 80%;
    margin: auto;
}

.hh-card-header {
    display: flex;
    align-items: start;
    margin-bottom: 5px;
    gap: 20px;
}

.hh-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(10, 31, 63, 0.3);
}

.hh-card-header-text h3 {
    font-size: 14px;
    margin-bottom: 0px;
}

.hh-card-header-text p {
    font-size: 14px;
    color: var(--gray);
}

/* Form Progress */
.hh-form-progress {
    margin-bottom: 20px;
}

.hh-progress-track {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.hh-progress-line1 {
    position: absolute;
    top: 22px;
    left: 20px;
    right: 20px;
    height: 3px;
    background: var(--gray-light);
    z-index: 0;
}

.hh-progress-line1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--secondary);
    transition: width 0.5s ease;
}

.hh-progress-dot {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.hh-progress-dot span {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 3px solid var(--gray-light);
    border-radius: 50%;
    font-weight: 400;
    font-size: 14px;
    color: var(--gray);
    transition: var(--transition);
}

.hh-progress-dot label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    transition: var(--transition);
}

.hh-progress-dot.active span {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(10, 31, 63, 0.3);
    transform: scale(1.1);
}

.hh-progress-dot.active label {
    color: var(--primary);
}

.hh-progress-dot.completed span {
    background: var(--success);
    border-color: var(--success);
    color: var(--white);
}

/* Form Steps */
.hh-form-wrapper {
    /* min-height: 400px; */
    margin-bottom: 25px;
}

.hh-form-step {
    display: none;
    animation: slideIn 0.5s ease;
}

.hh-form-step.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hh-step-title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--dark);
}

/* Options Grid */
.hh-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hh-option-box {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.hh-option-box:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.hh-option-box.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(10, 31, 63, 0.03) 0%, rgba(26, 58, 95, 0.03) 100%);
    box-shadow: var(--shadow-lg);
}

.hh-option-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 24px;
    color: var(--white);
    transition: var(--transition);
}

.hh-option-box:hover .hh-option-icon {
    transform: scale(1.1) rotate(5deg);
}

.hh-option-box h5 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
}

.hh-option-box p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.hh-option-check {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transform: scale(0);
    transition: var(--transition);
}

.hh-option-box.selected .hh-option-check {
    opacity: 1;
    transform: scale(1);
}

/* Type Grid */
.hh-input-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.hh-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.hh-type-btn {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 15px;
    padding: 18px 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hh-type-btn i {
    font-size: 28px;
    color: var(--primary);
}

.hh-type-btn span {
    font-size: 14px;
    font-weight: 600;
}

.hh-type-btn:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.hh-type-btn.selected {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.hh-type-btn.selected i {
    color: var(--white);
}

/* Bedroom Grid */
.hh-bedroom-grid {
    display: grid;
    /* grid-template-columns: repeat(7, 1fr); */
    gap: 10px;
}

.hh-bed-btn {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.hh-bed-btn:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.hh-bed-btn.selected {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

/* Range Inputs */
.hh-range-inputs {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: end;
    margin-bottom: 25px;
}

.hh-range-input label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hh-input-with-icon {
    position: relative;
}

.hh-input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 400;
    color: var(--primary);
    font-size: 14px;
}

.hh-input-with-icon input {
    width: 100%;
    padding: 14px 18px 14px 60px;
    border: 2px solid var(--gray-light);
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.hh-input-with-icon input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(10, 31, 63, 0.1);
}

.hh-range-separator {
    padding: 0 10px;
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 10px;
}

.hh-quick-select {
    background: rgba(10, 31, 63, 0.03);
    border-radius: 15px;
    padding: 20px 10px;
    margin-bottom: 25px;
}

.hh-quick-select label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.hh-quick-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.hh-tag {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 25px;
    padding: 5px 22px;
    font-size: 14px;
    font-weight: 400;
    transition: var(--transition);
}

.hh-tag:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Input Fields */
.hh-input-field {
    margin-bottom: 20px;
}

.hh-input-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hh-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.hh-input-wrapper i {
    position: absolute;
    left: 18px;
    color: var(--gray);
    font-size: 16px;
}

.hh-input-wrapper input {
    width: 100%;
    padding: 14px 18px 14px 48px;
    border: 2px solid var(--gray-light);
    border-radius: 15px;
    font-size: 15px;
    transition: var(--transition-fast);
}

.hh-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(10, 31, 63, 0.1);
}

.hh-phone-wrapper {
    display: flex;
    gap: 12px;
}

.hh-country-select {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.hh-country-select:hover {
    border-color: var(--primary);
}

.hh-country-select img {
    width: 28px;
    height: 20px;
    border-radius: 4px;
}

.hh-country-select span {
    font-weight: 600;
    white-space: nowrap;
}

.hh-phone-wrapper input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 15px;
    font-size: 15px;
    transition: var(--transition-fast);
}

.hh-phone-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(10, 31, 63, 0.1);
}

.hh-checkbox-field {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 25px;
}

.hh-checkbox-field input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
    margin-top: 2px;
}

.hh-checkbox-field label {
    font-size: 14px;
    color: var(--gray);
    cursor: pointer;
    user-select: none;
}

/* Form Actions */
.hh-form-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.hh-form-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 15px;
    transition: var(--transition);
}

.hh-btn-back {
    background: var(--white);
    border: 2px solid var(--gray-light);
    color: var(--dark);
}

.hh-btn-back:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.hh-btn-next,
.hh-btn-submit {
    background-color: #09747f;
    border: none;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(10, 31, 63, 0.3);
}

.hh-btn-next:hover,
.hh-btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(10, 31, 63, 0.4);
}

.hh-btn-submit {
    flex: 2;
    background: var(--gradient-gold);
    color: var(--dark);
    box-shadow: 0 8px 25px rgba(197, 165, 114, 0.3);
}

.hh-btn-submit:hover {
    box-shadow: 0 12px 35px rgba(197, 165, 114, 0.4);
}

.hh-security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--success);
}

/* Scroll Indicator */
.hh-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    animation: bounce 2s infinite;
}

.hh-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.hh-wheel {
    width: 4px;
    height: 10px;
    background: var(--secondary);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* ===================== FEATURES SECTION ===================== */
.hh-features-section {
    padding: 50px 0;
    background: var(--light);
}

.hh-feature-box {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.hh-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.hh-feature-box:hover::before {
    transform: scaleX(1);
}

.hh-feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.hh-feature-number {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray-light);
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}

.hh-feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--white);
    transition: var(--transition);
}

.hh-feature-box:hover .hh-feature-icon {
    transform: rotateY(360deg);
}

.hh-feature-box h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.hh-feature-box p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* ===================== SERVICES SECTION ===================== */
.hh-services {
    padding: 50px 0;
    background: var(--white);
}

.hh-section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 0px;
}

.hh-section-label {
    display: inline-block;
    background: rgba(197, 165, 114, 0.1);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hh-section-title {
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 5px;
}

.hh-section-desc {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
}

.hh-service-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 25px;
    padding: 40px 35px;
    transition: var(--transition);
    position: relative;
    height: 100%;
    overflow: hidden;
}

.hh-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 165, 114, 0.05), transparent);
    transition: left 0.6s ease;
}

.hh-service-card:hover::before {
    left: 100%;
}

.hh-service-card:hover {
    border-color: var(--secondary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.hh-service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 36px;
    color: var(--white);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.hh-service-card:hover .hh-service-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-lg);
}

.hh-service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.hh-service-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.hh-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 400;
    font-size: 15px;
    transition: var(--transition-fast);
}

.hh-service-link:hover {
    color: var(--secondary);
    gap: 12px;
}

.hh-service-number {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 80px;
    font-weight: 400;
    color: rgba(10, 31, 63, 0.03);
    font-family: "Inter", sans-serif;
    line-height: 1;
}

/* ===================== PROPERTIES SECTION ===================== */
.hh-properties {
    padding: 50px 0;
    background: var(--light);
}

.hh-property-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.hh-tab-btn {
    padding: 12px 30px;
    border: 2px solid var(--gray-light);
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
}

.hh-tab-btn:hover,
.hh-tab-btn.active {
    border-color: var(--primary);
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.hh-properties-slider {
    margin-bottom: 40px;
    padding: 20px 0;
}

.hh-property-item {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.hh-property-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.hh-property-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.hh-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hh-property-item:hover .hh-property-image img {
    transform: scale(1.1);
}

.hh-property-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
}

.hh-property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 63, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.hh-property-item:hover .hh-property-overlay {
    opacity: 1;
}

.hh-view-btn {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
    transform: scale(0);
    transition: transform 0.3s ease 0.2s;
}

.hh-property-item:hover .hh-view-btn {
    transform: scale(1);
}

.hh-property-content {
    padding: 30px;
}

.hh-property-price {
    font-size: 28px;
    font-weight: 400;
    color: var(--secondary);
    margin-bottom: 12px;
    font-family: "Inter", sans-serif;
}

.hh-property-content h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.hh-property-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.hh-property-features {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.hh-property-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--gray);
}

.hh-property-features i {
    color: var(--primary);
}

/* Slider Navigation */
.hh-slider-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.hh-slider-prev,
.hh-slider-next {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.hh-slider-prev:hover,
.hh-slider-next:hover {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

/* ===================== TESTIMONIALS ===================== */
.hh-testimonials {
    padding-top: 50px;
    background: var(--white);
}

.hh-testimonials-slider {
    padding: 40px 20px;
}

.hh-testimonial-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 25px;
    padding: 40px;
    transition: var(--transition);
    height: 100%;
}

.hh-testimonial-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.hh-testimonial-quote {
    width: 60px;
    height: 60px;
    background: rgba(197, 165, 114, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 24px;
    color: var(--secondary);
}

.hh-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.hh-rating i {
    color: #fbbf24;
    font-size: 18px;
}

.hh-testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 30px;
}

.hh-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hh-author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 20px;
    color: var(--white);
}

.hh-author-info h5 {
    font-size: 18px;
    margin-bottom: 4px;
}

.hh-author-info p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--gray-light);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--secondary);
    width: 30px;
    border-radius: 6px;
}

/* ===================== CTA SECTION ===================== */
.hh-cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.hh-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(197, 165, 114, 0.1);
    border-radius: 50%;
}

.hh-cta-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.hh-cta-content {
    margin-bottom: 40px;
}

.hh-cta-content h2 {
    font-size: 34px;
    color: var(--white);
    margin-bottom: 5px;
}

.hh-cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: auto;
}

.hh-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hh-btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hh-btn-white:hover {
    background: var(--secondary);
    color: var(--dark);
}

.hh-btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.hh-btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.hh-btn-outline-dark {
    background: transparent;
    border: 2px solid var(--dark);
    color: var(--dark);
}

.hh-btn-outline-dark:hover {
    background: var(--dark);
    color: var(--white);
}

/* ===================== FOOTER ===================== */
.hh-footer {
    background: #09747f;
    color: var(--white);
    padding-top: 80px;
}

.hh-footer-top {
    padding-bottom: 60px;
}

.hh-footer-widget {
    margin-bottom: 30px;
}

.hh-footer-logo {
    height: 45px;
    margin-bottom: 20px;
}

.hh-footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.hh-footer-social {
    display: flex;
    gap: 12px;
}

.hh-footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.hh-footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.hh-footer-widget h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.hh-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hh-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.hh-footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.hh-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hh-footer-contact li {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.hh-footer-contact i {
    color: #fff;
    margin-top: 4px;
}

.hh-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hh-footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.hh-footer-legal {
    display: flex;
    gap: 20px;
}

.hh-footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.hh-footer-legal a:hover {
    color: var(--secondary);
}

/* ===================== FLOATING BUTTONS ===================== */
.hh-float-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
}

.hh-float-btn.show {
    opacity: 1;
    visibility: visible;
}

.hh-float-call {
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
}

.hh-float-call:hover {
    transform: scale(1.1) translateY(-5px);
}

.hh-float-whatsapp {
    bottom: 100px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.hh-float-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
}

.hh-float-top {
    bottom: 170px;
    right: 30px;
    background: var(--gradient-gold);
    color: var(--dark);
}

.hh-float-top:hover {
    transform: scale(1.1) translateY(-5px);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1199px) {
    .hh-hero-title {
        font-size: 60px;
    }

    .hh-section-title {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .hh-topbar {
        display: none;
    }

    .hh-nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 300px;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 30px;
        box-shadow: var(--shadow-xl);
        transition: left 0.4s ease;
    }

    .hh-nav-menu.active {
        left: 0;
    }

    .hh-hamburger {
        display: flex;
    }

    .hh-hero-title {
        font-size: 48px;
    }

    .hh-hero-stats {
        flex-wrap: wrap;
    }

    .hh-hero-actions {
        flex-wrap: wrap;
    }

    .hh-valuation-card {
        margin-top: 50px;
    }

    .hh-section-title {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .hh-announcement-bar {
        font-size: 12px;
    }

    .hh-hero-title {
        font-size: 38px;
    }

    .hh-hero-text {
        font-size: 16px;
    }

    .hh-stat-number {
        font-size: 36px;
    }

    .hh-valuation-card {
        padding: 30px 20px;
    }

    .hh-card-header {
        flex-direction: column;
        text-align: center;
    }

    .hh-options-grid {
        grid-template-columns: 1fr;
    }

    .hh-type-grid {
        grid-template-columns: 1fr;
    }

    .hh-bedroom-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hh-range-inputs {
        grid-template-columns: 1fr;
    }

    .hh-range-separator {
        transform: rotate(90deg);
    }

    .hh-section-title {
        font-size: 32px;
    }

    .hh-property-tabs {
        flex-wrap: wrap;
    }

    .hh-cta-content h2 {
        font-size: 36px;
    }

    .hh-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .hh-hero-title {
        font-size: 32px;
    }

    .hh-progress-dot span {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .hh-progress-dot label {
        font-size: 10px;
    }

    .hh-bedroom-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hh-quick-tags {
        flex-direction: column;
    }

    .hh-tag {
        width: 100%;
        text-align: center;
    }

    .hh-float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* ================================
   WHY CHOOSE US SECTION
================================ */
.why-choose-us-section {
    padding-top: 50px;
}

.why-choose-us-section .heading-wrapper span {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1px;
    color: #6b6b6b;
}

.why-choose-us-section .heading-wrapper h2 {
    font-size: 34px;
    font-weight: 400;
    /* margin-bottom: 5px; */
}

.why-choose-us-section .heading-wrapper strong {
    color: #09747f;
}

/* Cards */
.why-choose-us-section .card-box,
.why-choose-us-section .large-box {
    background: #f5fdfe;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
}

.why-choose-us-section .icon-box {
    margin-bottom: 15px;
    color: #2b2b2b;
}

.why-choose-us-section .icon-box svg {
    stroke: #09747f;
}

.why-choose-us-section .card-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.why-choose-us-section .card-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Blue card */
.why-choose-us-section .blue-box {
    background: #09747f;
    padding: 35px;
    border-radius: 20px;
    color: white;
    height: 100%;
}

.why-choose-us-section .blue-box svg {
    stroke: white;
}

.why-choose-us-section .blue-box h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: white;
}

.why-choose-us-section .blue-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #d8e0ef;
    text-align: justify;
}

.why-choose-us-section .blue-box .trial-btn {
    margin-top: 15px;
    display: inline-block;
    background: #d4b682;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 767px) {
    .why-choose-us-section .heading-wrapper h2 {
        font-size: 28px;
    }

    .why-choose-us-section .blue-box {
        padding: 25px;
    }
}


/* =====================================================================
   PROPERTY LISTING SECTION - ULTRA PREMIUM REDESIGN
   HouzzHunt Luxury Real Estate Platform
===================================================================== */

/* ==================== SECTION CONTAINER ==================== */
.featured-section {
    padding-top: 50px;
    text-align: center;
}

.section-title {
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 5px;
}

.section-subtitle {
    color: #666;
    margin-bottom: 40px;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    padding: 0 20px;
}

.property-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.property-image {
    position: relative;
    width: 45%;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 15px;
    padding: 6px 14px;
    font-size: 13px;
    color: #fff;
    border-radius: 50px;
}

.featured {
    background: #09747f;
    left: 15px;
}

.sale {
    background: #1d3557;
    right: 15px;
}

.rent {
    background: #1d3557;
    right: 15px;
}

.property-content {
    width: 55%;
    padding: 25px 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.property-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #09747f;
}

.location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    margin-bottom: 20px;
}

.property-info {
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px; */
    color: #444;
    margin-bottom: 25px;
}

.property-info div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.actions svg {
    margin-left: 10px;
    cursor: pointer;
    stroke: #000;
}


/* ==================== VIEW ALL BUTTON ==================== */
.hh-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 30px;
    background: linear-gradient(135deg, #09747f 0%, #065a62 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 24px rgba(9, 116, 127, 0.2);
    position: relative;
    overflow: hidden;
}

.hh-view-all-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hh-view-all-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hh-view-all-btn:hover {
    background: linear-gradient(135deg, #065a62 0%, #044449 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(9, 116, 127, 0.3);
}

.hh-view-all-btn i {
    transition: transform 0.3s ease;
}

.hh-view-all-btn:hover i {
    transform: translateX(6px);
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .hh-section-title {
        font-size: 42px;
    }

    .hh-section-subtitle {
        font-size: 17px;
    }

    .hh-property-image {
        height: 240px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .hh-property-listing-section {
        padding: 70px 0 80px;
    }

    .hh-section-header {
        margin-bottom: 50px;
    }

    .hh-section-title {
        font-size: 36px;
    }

    .hh-section-subtitle {
        font-size: 16px;
    }

    .hh-property-image {
        height: 220px;
    }

    .hh-property-footer {
        flex-direction: column;
    }

    .hh-property-btn {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hh-property-listing-section {
        padding: 50px 0 60px;
    }

    .hh-section-header {
        margin-bottom: 40px;
    }

    .hh-section-title {
        font-size: 28px;
    }

    .hh-section-subtitle {
        font-size: 15px;
        padding: 0 10px;
    }

    .hh-property-card {
        border-radius: 16px;
    }

    .hh-property-image {
        height: 200px;
    }

    .hh-property-content {
        padding: 20px;
    }

    .hh-amount {
        font-size: 24px;
    }

    .hh-property-title {
        font-size: 19px;
    }

    .hh-property-features {
        gap: 15px;
    }

    .hh-feature-item {
        font-size: 13px;
    }

    .hh-property-badge {
        padding: 5px 12px;
        font-size: 11px;
        top: 12px;
        left: 12px;
    }

    .hh-property-type {
        top: 12px;
        right: 12px;
        padding: 5px 12px;
        font-size: 11px;
    }

    .hh-overlay-actions {
        gap: 8px;
    }

    .hh-icon-btn {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    .hh-view-all-btn {
        padding: 14px 32px;
        font-size: 15px;
    }
}

/* Ultra Small Mobile */
@media (max-width: 375px) {
    .hh-section-title {
        font-size: 24px;
    }

    .hh-property-features {
        flex-wrap: wrap;
        gap: 12px;
    }

    .hh-property-footer {
        gap: 10px;
    }

    .hh-property-btn {
        padding: 11px 16px;
        font-size: 13px;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hh-property-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ==================== ACCESSIBILITY ==================== */
.hh-property-card:focus-within {
    outline: 2px solid #09747f;
    outline-offset: 4px;
}

.hh-icon-btn:focus,
.hh-property-btn:focus,
.hh-view-all-btn:focus {
    outline: 2px solid #09747f;
    outline-offset: 2px;
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .hh-property-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .hh-property-overlay,
    .hh-overlay-actions,
    .hh-view-all-btn {
        display: none;
    }
}

/* =====================================================================
   EXPERT ADVICE SECTION - ULTRA MODERN REDESIGN
   HouzzHunt Luxury Real Estate Platform
===================================================================== */

/* ==================== SECTION CONTAINER ==================== */
.hh-expert-advice-section {
    padding:50px 0;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #f8fafb 50%,
            #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* ==================== BACKGROUND DECORATIONS ==================== */
.hh-bg-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.hh-bg-circle-1 {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(9, 116, 127, 0.08) 0%,
            transparent 70%);
    top: -150px;
    right: -100px;
    animation: float 20s infinite ease-in-out;
}

.hh-bg-circle-2 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(9, 116, 127, 0.06) 0%,
            transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float 25s infinite ease-in-out reverse;
}

.hh-bg-gradient {
    width: 100%;
    height: 200px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(9, 116, 127, 0.03) 50%,
            transparent 100%);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(20px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, -50px) scale(0.95);
    }

    75% {
        transform: translate(30px, -20px) scale(1.02);
    }
}

/* ==================== IMAGE WRAPPER ==================== */
.hh-expert-image-wrapper {
    position: relative;
    z-index: 1;
}

/* Image Decorations */
.hh-image-decoration {
    position: absolute;
    z-index: 0;
}

.hh-decoration-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg,
            rgba(9, 116, 127, 0.15) 0%,
            rgba(9, 116, 127, 0.05) 100%);
    border-radius: 50%;
    top: -30px;
    left: -30px;
    filter: blur(40px);
}

.hh-decoration-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg,
            rgba(9, 116, 127, 0.1) 0%,
            rgba(9, 116, 127, 0.03) 100%);
    border-radius: 50%;
    bottom: -20px;
    right: -20px;
    filter: blur(30px);
}

/* ==================== IMAGE BOX ==================== */
.hh-expert-image-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.hh-expert-image-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(9, 116, 127, 0.1) 0%,
            transparent 50%,
            rgba(9, 116, 127, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.hh-expert-image-box img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.hh-expert-image-box:hover img {
    transform: scale(1.05);
}

/* ==================== FLOATING STAT CARD ==================== */
.hh-floating-stat {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 2;
    animation: slideInUp 0.8s ease-out 0.3s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hh-stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #09747f 0%, #065a62 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hh-stat-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.hh-stat-number {
    font-size: 24px;
    font-weight: 400;
    color: #09747f;
    line-height: 1;
    margin-bottom: 4px;
}

.hh-stat-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* ==================== EXPERIENCE BADGE ==================== */
.hh-experience-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #09747f 0%, #065a62 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(9, 116, 127, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.9);
    z-index: 2;
    animation: rotateIn 0.8s ease-out 0.5s both;
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0);
    }

    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

.hh-badge-content {
    text-align: center;
}

.hh-badge-number {
    display: block;
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 2px;
}

.hh-badge-text {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==================== CONTENT BOX ==================== */
.hh-expert-content-box {
    background: #ffffff;
    padding: 25px 45px;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.hh-expert-content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #09747f 0%, #065a62 100%);
    border-radius: 24px 24px 0 0;
}

/* ==================== CONTENT BADGE ==================== */
.hh-content-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg,
            rgba(9, 116, 127, 0.1) 0%,
            rgba(9, 116, 127, 0.05) 100%);
    border: 1px solid rgba(9, 116, 127, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #09747f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hh-content-badge svg {
    width: 16px;
    height: 16px;
    color: #09747f;
}

/* ==================== SECTION HEADING ==================== */
.hh-section-heading {
    font-size: 42px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.hh-highlight {
    /* background: linear-gradient(135deg, #09747f 0%, #065a62 100%); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* background-clip: text; */
    position: relative;
}

/* .hh-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #09747f 0%, transparent 100%);
    border-radius: 2px;
} */

/* ==================== SECTION DESCRIPTION ==================== */
.hh-section-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 32px;
}

/* ==================== BENEFITS GRID ==================== */
.hh-benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hh-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(9, 116, 127, 0.05);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.hh-benefit-item:hover {
    background: rgba(9, 116, 127, 0.1);
    transform: translateY(-2px);
}

.hh-benefit-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #09747f 0%, #065a62 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hh-benefit-icon svg {
    width: 14px;
    height: 14px;
    color: #ffffff;
    stroke-width: 3;
}

/* ==================== FORM STYLING ==================== */
.hh-expert-form {
    margin-bottom: 30px;
}

.hh-form-group {
    margin-bottom: 24px;
}

.hh-form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.hh-form-label svg {
    width: 18px;
    height: 18px;
    color: #09747f;
}

/* ==================== INPUT WRAPPER ==================== */
.hh-input-wrapper {
    position: relative;
}

.hh-form-input {
    width: 100%;
    padding: 14px 50px 14px 18px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 15px;
    color: #333;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.hh-form-input::placeholder {
    color: #999;
}

.hh-form-input:focus {
    border-color: #09747f;
    box-shadow: 0 0 0 4px rgba(9, 116, 127, 0.1);
    background: #ffffff;
}

.hh-form-input:focus+.hh-input-icon {
    color: #09747f;
    /* transform: scale(1.1); */
}

.hh-input-icon.call {
    left: 20%;
}

.hh-expert-content-box h2 {
    text-align: center;
    font-size: 24px;
    color: #09747f;
    margin-bottom: 10px;
}

.hh-expert-content-box p {
    font-size: 14px;
    /* margin-bottom: 5px; */
    color: #666;
    text-align: center;
}

/* Input Icon */
.hh-input-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.3s ease;
}

.hh-input-icon svg {
    width: 20px;
    height: 20px;
    color: #999;
    transition: color 0.3s ease;
}

/* ==================== PHONE INPUT ==================== */
.hh-phone-input-wrapper {
    display: flex;
    gap: 12px;
}

.hh-country-select {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    background: #f8f9fa;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hh-country-select:hover {
    background: #f1f3f5;
    border-color: #09747f;
}

.hh-flag-icon {
    width: 28px;
    height: 20px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hh-country-code {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.hh-dropdown-icon {
    width: 16px;
    height: 16px;
    color: #666;
}

.hh-phone-input {
    flex: 1;
}

/* ==================== TEXTAREA ==================== */
.hh-form-textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 14px;
    padding-bottom: 14px;
    font-family: inherit;
    line-height: 1.6;
}

/* ==================== SUBMIT BUTTON ==================== */
.hh-submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #09747f 0%, #065a62 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(9, 116, 127, 0.25);
}

.hh-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.6s ease;
}

.hh-submit-btn:hover::before {
    left: 100%;
}

.hh-submit-btn:hover {
    background: linear-gradient(135deg, #065a62 0%, #044449 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(9, 116, 127, 0.35);
}

.hh-submit-btn:active {
    transform: translateY(-1px);
}

.hh-btn-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.hh-btn-icon svg {
    width: 20px;
    height: 20px;
}

.hh-submit-btn:hover .hh-btn-icon {
    transform: translateX(4px);
}

/* Ripple Effect */
.hh-btn-ripple {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hh-submit-btn:active .hh-btn-ripple {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    to {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* ==================== PRIVACY NOTICE ==================== */
.hh-privacy-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(9, 116, 127, 0.05);
    border-radius: 12px;
    border-left: 3px solid #09747f;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-top: 20px;
}

.hh-privacy-notice svg {
    width: 18px;
    height: 18px;
    color: #09747f;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==================== TRUST INDICATORS ==================== */
.hh-trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hh-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.hh-trust-item svg {
    width: 20px;
    height: 20px;
    color: #09747f;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .hh-expert-advice-section {
        padding: 80px 0 90px;
    }

    .hh-section-heading {
        font-size: 38px;
    }

    .hh-expert-image-box img {
        height: 500px;
    }

    .hh-expert-content-box {
        padding: 40px 35px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .hh-expert-advice-section {
        padding: 60px 0 70px;
    }

    .hh-section-heading {
        font-size: 32px;
    }

    .hh-expert-image-box {
        margin-bottom: 30px;
    }

    .hh-expert-image-box img {
        height: 400px;
    }

    .hh-expert-content-box {
        padding: 35px 30px;
    }

    .hh-benefits-grid {
        gap: 12px;
    }

    .hh-phone-input-wrapper {
        flex-direction: column;
        gap: 16px;
    }

    .hh-country-select {
        width: 100%;
        justify-content: space-between;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hh-expert-advice-section {
        padding: 50px 0 60px;
    }

    .hh-section-heading {
        font-size: 28px;
    }

    .hh-section-description {
        font-size: 15px;
    }

    .hh-expert-image-box img {
        height: 350px;
    }

    .hh-expert-content-box {
        padding: 30px 24px;
    }

    .hh-floating-stat {
        bottom: 20px;
        left: 20px;
        padding: 16px 20px;
        gap: 12px;
    }

    .hh-stat-icon {
        width: 40px;
        height: 40px;
    }

    .hh-stat-icon svg {
        width: 20px;
        height: 20px;
    }

    .hh-stat-number {
        font-size: 20px;
    }

    .hh-experience-badge {
        width: 80px;
        height: 80px;
        top: 20px;
        right: 20px;
    }

    .hh-badge-number {
        font-size: 24px;
    }

    .hh-badge-text {
        font-size: 10px;
    }

    .hh-benefits-grid {
        flex-direction: column;
    }

    .hh-benefit-item {
        width: 100%;
    }

    .hh-form-input {
        padding: 13px 45px 13px 16px;
        font-size: 14px;
    }

    .hh-submit-btn {
        padding: 15px 28px;
        font-size: 15px;
    }

    .hh-trust-indicators {
        flex-direction: column;
        gap: 16px;
    }

    .hh-bg-circle-1,
    .hh-bg-circle-2 {
        display: none;
    }
}

/* Ultra Small Mobile */
@media (max-width: 375px) {
    .hh-section-heading {
        font-size: 24px;
    }

    .hh-expert-content-box {
        padding: 24px 20px;
    }

    .hh-form-group {
        margin-bottom: 20px;
    }
}

/* ==================== LOADING STATES ==================== */
.hh-form-loading .hh-submit-btn {
    pointer-events: none;
    opacity: 0.7;
}

.hh-form-loading .hh-btn-text::after {
    content: '...';
    animation: dots 1.5s infinite;
}

@keyframes dots {

    0%,
    20% {
        content: '.';
    }

    40% {
        content: '..';
    }

    60%,
    100% {
        content: '...';
    }
}

/* ==================== SUCCESS STATE ==================== */
.hh-form-success .hh-submit-btn {
    background: linear-gradient(135deg, #09747f 0%, #16a34a 100%);
}

/* ==================== ACCESSIBILITY ==================== */
.hh-form-input:focus-visible,
.hh-submit-btn:focus-visible,
.hh-country-select:focus-visible {
    outline: 2px solid #09747f;
    outline-offset: 2px;
}

/* ==================== PRINT STYLES ==================== */
@media print {

    .hh-bg-decoration,
    .hh-floating-stat,
    .hh-experience-badge {
        display: none;
    }

    .hh-expert-content-box {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}


/* Section Wrapper */
.popular-places-section {
    padding: 50px 0;
    background: #fff;
}

/* Heading */
.popular-places-section .pp-heading {
    text-align: center;
    margin-bottom: 40px;
}

.popular-places-section .pp-heading h2 {
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 10px;
}

.popular-places-section .pp-heading p {
    font-size: 16px;
    color: #555;
    max-width: 90%;
    margin: auto;
}

/* GRID */
.popular-places-section .pp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.popular-places-section .pp-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    min-height: 180px;
    transition: box-shadow .3s ease;
}

.popular-places-section .pp-item:hover {
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.12);
}

/* Image */
.popular-places-section .pp-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Text */
.popular-places-section .pp-item div {
    padding: 20px;
}

.popular-places-section .pp-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.popular-places-section .pp-item span {
    font-size: 16px;
    color: #666;
}

/* RESPONSIVE BREAKPOINTS */

/* Tablet (3 columns) */
@media (max-width: 992px) {
    .popular-places-section .pp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (1 column) */
@media (max-width: 576px) {
    .popular-places-section .pp-item {
        grid-template-columns: 100%;
        min-height: auto;
    }

    .popular-places-section .pp-item img {
        height: 170px;
    }
}


.villa-section {
    padding: 50px 0;
}

.villa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 0 20px;
}

.villa-card {
    position: relative;
    height: 310px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
}

.villa-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.villa-card:hover .villa-img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.85));
}

/* BADGES */
.villa-section .badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
}

.villa-section .badge {
    padding: 6px 14px;
    font-size: 12px;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
}

.villa-section .sale {
    background: #00c6d7;
}

.villa-section .featured {
    background: #09747f;
}

/* CONTENT */
.villa-content {
    position: absolute;
    bottom: 15px;
    left: 18px;
    color: #fff;
}

.villa-content .price {
    font-size: 22px;
    margin-bottom: 3px;
    font-weight: 400;
    color: #fff;
    text-align: left;
}

.villa-content .price span {
    font-size: 16px;
    font-weight: 500;
    opacity: .8;
    color: #fff;
}

.villa-content .name {
    font-size: 17px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #fff;
}

/* ICON ROW */
.villa-content .villa-info {
    display: flex;
    gap: 18px;
    font-size: 14px;
    justify-content: flex-start;
}

.villa-content .villa-info div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.villa-content .villa-info svg {
    width: 20px;
    height: 20px;
    stroke: #00c6d7;
}

.viewAllbtn {
    margin-top: 30px;
}