/* === ULTRA-MODERN PREMIUM PROPERTY THEME === */
:root {
    --primary-dark: #0a0e27;
    --primary-blue: #1e3a8a;
    --accent-gold: #fbbf24;
    --accent-rose: #f43f5e;
    --white: #ffffff;
    --off-white: #fafaf9;
    --gray-light: #f5f5f4;
    --text-primary: #1c1917;
    --text-secondary: #57534e;
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --gradient-dark: linear-gradient(135deg, #0a0e27 0%, #1e3a8a 100%);
    --gradient-rose: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 70px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 50px rgba(251, 191, 36, 0.4);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Crimson+Pro:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--secondary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* ===== MODERN NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.3rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid var(--accent-color);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  padding: 12px 24px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: translateX(5px);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.3);
    transition: all 0.3s ease;
}

.logo-container:hover .logo-icon {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(184, 115, 51, 0.4);
}


.nav-logo h2 {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.3px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.navbar {
  width: 100%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;      /* IMPORTANT */
  width: 100%;
  padding: 12px 24px;
}

/* Logo */
.nav-logo {
  flex-shrink: 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}


.logo-wrap img {
  height: 75px;
  display: block;
}

.nav-logo .logo-wrap img {
  height: 80px !important;
  width: auto;
}

.brand-name {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
}

/* Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.nav-menu li {
  margin: 0;
}

.logo-wrap img {
  height: 50px;          /* increase logo size */
  width: auto;
  display: block;
}

.brand-name {
  font-size: 22px;
  font-weight: 600;
  color: #000000;        /* make text black */
  white-space: nowrap;
}



/* ===== HERO SECTION - ENHANCED ===== */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}


/*
.slideshow-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(26, 60, 52, 0.3) 0%,
        rgba(26, 60, 52, 0.5) 50%,
        rgba(26, 60, 52, 0.7) 100%
    );
    z-index: 1;
}*/

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    line-height: 1.1;
    animation: fadeInUp 1s ease;
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    opacity: 0.95;
    animation: fadeInUp 1.2s ease;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(184, 115, 51, 0.4);
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    animation: fadeInUp 1.4s ease;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(184, 115, 51, 0.5);
    background: linear-gradient(135deg, var(--accent-hover), var(--accent-color));
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 3;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

.prev:hover,
.next:hover {
    background: rgba(184, 115, 51, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.dots-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--accent-color);
    width: 35px;
    border-radius: 6px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}


/* === MODERN SECTIONS === */
.trending, .plotted-development, .residential-projects, .search-section, .contact-section {
    padding: 140px 0;
    position: relative;
}

.trending {
    background: linear-gradient(180deg, var(--off-white) 0%, #ffffff 50%, var(--gray-light) 100%);
}

.plotted-development {
    background: white;
    position: relative;
}

.plotted-development::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.4), transparent);
}

.residential-projects {
    background: var(--gray-light);
    position: relative;
}

.residential-projects::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.4), transparent);
}

.search-section {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.search-section::before,
.search-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.search-section::before {
    top: -300px;
    right: -200px;
}

.search-section::after {
    bottom: -300px;
    left: -200px;
}

.contact-section {
    background: white;
}

h2 {
    font-family: 'Crimson Pro', serif;
    text-align: center;
    font-size: clamp(2.8rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: -2px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-gold);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 5rem;
    font-weight: 400;
    line-height: 1.8;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.search-section h2 {
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 60%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* === PREMIUM PROPERTY CARDS === */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 45px;
    margin-top: 5rem;
}

.property-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(251, 191, 36, 0.08);
}

.property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.property-card:hover::before {
    transform: scaleX(1);
}

.property-card:hover {
    transform: translateY(-25px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(251, 191, 36, 0.3);
}

.property-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f4 0%, #e7e5e4 100%);
}

.property-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(10, 14, 39, 0.5) 0%, transparent 100%);
    z-index: 1;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-card:hover .property-image img {
    transform: scale(1.2) rotate(2deg);
    filter: brightness(1.1);
}

.property-badge {
    position: absolute;
    top: 28px;
    left: 28px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.5);
    z-index: 2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.property-content {
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    text-align: center;
}

.property-content h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -1px;
}

.property-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 14, 39, 0.98) 0%, rgba(10, 14, 39, 0.85) 100%);
    color: white;
    padding: 45px 28px;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-card:hover .property-overlay {
    transform: translateY(0);
}

.property-overlay h4 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.property-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.7;
}

.visit-btn {
    width: 100%;
    padding: 20px 32px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.4);
}

.visit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.6);
}

/* === ADVANCED SEARCH === */
.search-container {
    max-width: 900px;
    margin: 0 auto 6rem;
}

.search-box {
    display: flex;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    padding: 35px;
    border-radius: 28px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.city-select {
    flex: 1;
    padding: 20px 28px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    font-size: 1.05rem;
    outline: none;
    transition: var(--transition);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
}

.city-select:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 5px rgba(251, 191, 36, 0.25);
    background: white;
}

.search-btn {
    padding: 20px 50px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.05rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.6);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    margin-top: 5rem;
}

.city-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(251, 191, 36, 0.08);
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.city-card:hover::before {
    opacity: 0.18;
}

.city-card:hover {
    transform: translateY(-20px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(251, 191, 36, 0.3);
}

.city-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-card:hover img {
    transform: scale(1.15);
}

.city-content {
    padding: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.city-content h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.property-count {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.property-type {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === PREMIUM CONTACT === */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-top: 5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--gray-light);
    border-radius: 24px;
    transition: var(--transition);
    border: 1px solid rgba(251, 191, 36, 0.08);
}

.contact-item:hover {
    transform: translateX(15px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
    background: white;
}

.contact-item i {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-top: 0.3rem;
}

.contact-item h4 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.7rem;
    letter-spacing: -0.5px;
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-form {
    background: var(--gray-light);
    padding: 4rem;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(251, 191, 36, 0.08);
}

.form-group {
    margin-bottom: 2.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 20px 28px;
    border: 2px solid rgba(10, 14, 39, 0.08);
    border-radius: 20px;
    font-size: 1.05rem;
    outline: none;
    transition: var(--transition);
    font-family: 'Space Grotesk', sans-serif;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 5px rgba(251, 191, 36, 0.12);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.4rem;
}

.checkbox-group label {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.5);
}

/* === LUXURY FOOTER === */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--secondary-color);
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(184, 115, 51, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-5px);
    border-color: var(--accent-hover);
}

.contact-info-footer p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.contact-info-footer i {
    color: var(--accent-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(244, 235, 208, 0.2);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--accent-color);
    opacity: 1;
}

/* ===== WHATSAPP FLOAT - MODERN ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}
/* === FLOATING WHATSAPP === */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(37, 211, 102, 0.7);
    }
}

.whatsapp-float:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.7);
    animation: none;
}

/* === PREMIUM MODAL === */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 4rem;
    border-radius: 28px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.close {
    color: var(--text-primary);
    float: right;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 30px;
    top: 25px;
    transition: var(--transition);
    opacity: 0.6;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
    opacity: 1;
    background: rgba(251, 191, 36, 0.1);
}

.modal-content h2 {
    font-family: 'Crimson Pro', serif;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.modal-content h3 {
    font-family: 'Crimson Pro', serif;
    color: var(--accent-gold);
    margin: 3rem 0 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.modal-content p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* === PAGE HEADER === */
.page-header {
    background: var(--gradient-dark);
    color: white;
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before,
.page-header::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header::before {
    top: -250px;
    right: -150px;
}

.page-header::after {
    bottom: -250px;
    left: -150px;
}

.page-header h1 {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* === POLICY CONTENT === */
.policy-content {
    padding: 100px 0;
    background: var(--off-white);
}

.policy-wrapper {
    background: white;
    border-radius: 28px;
    padding: 4rem;
    box-shadow: var(--shadow-md);
    max-width: 1100px;
    margin: 0 auto;
    overflow: visible;
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.policy-section {
    margin-bottom: 5rem;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-family: 'Crimson Pro', serif;
    color: var(--primary-dark);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(251, 191, 36, 0.2);
    letter-spacing: -1px;
}

.policy-section h3 {
    font-family: 'Crimson Pro', serif;
    color: var(--accent-gold);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    letter-spacing: -0.5px;
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.policy-section ul {
    margin: 1.5rem 0;
    padding-left: 2.5rem;
}

.policy-section ul li {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.policy-section ul li strong {
    color: var(--primary-dark);
    font-weight: 600;
}

/* === COMPANY SECTION === */
.company-section {
    padding: 100px 32px;
    background: var(--primary-dark);
}

.section-title {
    font-family: 'Crimson Pro', serif;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-line {
    width: 100%;
    height: 2px;
    background: var(--gradient-rose);
    margin-bottom: 40px;
    box-shadow: 0 0 20px rgba(244, 63, 94, 0.4);
}

.company-box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.company-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-left: 4px solid var(--accent-rose);
    border-radius: 20px;
    padding: 28px 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 1px solid rgba(244, 63, 94, 0.2);
}

.company-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 50px rgba(244, 63, 94, 0.3);
    border-left-width: 6px;
}

.company-box h4 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.company-box p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-weight: 400;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .company-box-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .company-box-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .properties-grid,
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}