/* CSS Reset & Base */
:root {
    --black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --medium-gray: #2A2A2A;
    --gold: #D4AF37;
    --gold-light: #F4E4A6;
    --gold-dark: #B8860B;
    --gradient-gold: linear-gradient(135deg, #D4AF37, #F4E4A6, #FFD700);
    --gradient-gold-horizontal: linear-gradient(90deg, #D4AF37, #F4E4A6, #FFD700);
    --gradient-black: linear-gradient(135deg, #0A0A0A, #1A1A1A, #2A2A2A);
    --text-light: #E5E5E5;
    --text-gray: #A0A0A0;
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--black);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

body.preload * {
    animation: none !important;
    transition: none !important;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.preloader-content {
    text-align: center;
}

.logo-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    animation: pulse 2s infinite;
}

.logo-animation img {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    animation: logoFloat 3s ease-in-out infinite;
}

.loading-bar {
    width: 300px;
    height: 3px;
    background: var(--medium-gray);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loading-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    animation: loadingShine 2s infinite;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-gold);
    width: 0%;
    animation: loading 2s ease-in-out forwards;
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(40px);
}

.gold-1 {
    width: 300px;
    height: 300px;
    background: var(--gold);
    top: 10%;
    left: 5%;
    animation: float 20s infinite ease-in-out;
}

.gold-2 {
    width: 200px;
    height: 200px;
    background: var(--gold-light);
    bottom: 20%;
    right: 10%;
    animation: float 25s infinite ease-in-out reverse;
}

.gold-3 {
    width: 150px;
    height: 150px;
    background: var(--gold);
    top: 50%;
    left: 80%;
    animation: float 30s infinite ease-in-out;
}

/* Header */
.top-bar {
    background: var(--dark-gray);
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    display: flex;
    gap: 30px;
    font-size: 0.9rem;
    color: var(--text-gray);
    flex-wrap: wrap;
}

.contact-info i {
    color: var(--gold);
    margin-right: 8px;
}

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-outline-gold {
    padding: 10px 25px;
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-outline-gold::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-outline-gold:hover::before {
    width: 300px;
    height: 300px;
}

.btn-outline-gold:hover {
    color: var(--black);
    border-color: var(--gold-light);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(42, 42, 42, 0.5);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left 0.3s ease;
    z-index: -1;
}

.social-links a:hover::before {
    left: 0;
}

.social-links a:hover {
    color: var(--black);
    transform: translateY(-3px) scale(1.1);
}

/* Main Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    text-decoration: none;
}

.logo-main img {
    height: 55px;
    width: auto;
    filter: brightness(1.2) drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    transition: var(--transition-smooth);
    transform-origin: center;
}

.logo:hover .logo-main img {
    filter: brightness(1.5) drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
    transform: scale(1.05) rotate(2deg);
}

.logo-sub {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--text-gray);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-smooth);
    white-space: nowrap;
    overflow: hidden;
}

.nav-link i {
    margin-right: 8px;
    color: var(--gold);
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-gold);
    opacity: 0;
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover::before {
    opacity: 0.3;
    transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
}

.nav-link:hover i {
    transform: scale(1.2);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-post-property {
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-post-property::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-post-property:hover::after {
    width: 300px;
    height: 300px;
}

.btn-post-property:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.user-menu {
    position: relative;
}

.btn-user {
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(42, 42, 42, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-user::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left 0.4s ease;
}

.btn-user:hover::before {
    left: 0;
}

.btn-user:hover {
    color: var(--black);
    transform: scale(1.1);
    border-color: var(--gold);
}

.btn-user i {
    position: relative;
    z-index: 1;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--dark-gray);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 15px;
    min-width: 220px;
    display: none;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.user-dropdown.show {
    display: block;
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    margin-bottom: 5px;
    position: relative;
    overflow: hidden;
}

.user-dropdown a::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.1);
    transition: left 0.3s ease;
}

.user-dropdown a:hover::before {
    left: 0;
}

.user-dropdown a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.user-dropdown a i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    transition: var(--transition-smooth);
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--gold);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.85)),
                url('https://images.unsplash.com/photo-1613977257363-707ba9348227?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 65%, rgba(212, 175, 55, 0.05) 65%);
    animation: heroShine 8s infinite linear;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, transparent 0%, rgba(10, 10, 10, 0.9) 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 1200px;
    width: 100%;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 4.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-line-1,
.hero-line-2,
.hero-line-3 {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-line-1 {
    animation-delay: 0.3s;
    color: var(--text-light);
    background: linear-gradient(90deg, #E5E5E5, #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-line-2 {
    animation-delay: 0.6s;
    color: var(--text-light);
    background: linear-gradient(90deg, #CCCCCC, #E5E5E5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-line-3 {
    animation-delay: 0.9s;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.hero-line-3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    animation: lineExpand 1s ease 1.5s forwards;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 1.2s forwards;
    letter-spacing: 1px;
}

.hero-subtitle::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 25px auto 0;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.hero-search {
    max-width: 1000px;
    margin: 0 auto 80px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 1.5s forwards;
}

.search-container {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-dark), 0 0 50px rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.search-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-gold);
    opacity: 0.05;
    transform: rotate(30deg);
    animation: searchShine 8s infinite linear;
}

.search-input-group {
    position: relative;
    margin-bottom: 30px;
}

.search-input-group i {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.4rem;
    z-index: 1;
}

.search-input-group input {
    width: 100%;
    padding: 22px 25px 22px 60px;
    background: rgba(42, 42, 42, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 2;
}

.search-input-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: rgba(42, 42, 42, 0.8);
}

.search-filters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gold-select {
    padding: 18px;
    background: rgba(42, 42, 42, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 2;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23D4AF37' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
    padding-right: 45px;
}

.gold-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background-color: rgba(42, 42, 42, 0.8);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition-smooth);
    width: 100%;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold::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;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 80px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 1.8s forwards;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    background: rgba(42, 42, 42, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.stat-item:hover::before {
    opacity: 0.05;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.stat-item:hover .stat-label {
    color: var(--gold-light);
}

.scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeInUp 1s ease 2.1s forwards;
}

.mouse {
    width: 34px;
    height: 58px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 15px;
    transition: var(--transition-smooth);
}

.mouse:hover {
    border-color: var(--gold-light);
    transform: scale(1.1);
}

.wheel {
    width: 5px;
    height: 10px;
    background: var(--gold);
    border-radius: 3px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    transform: rotate(45deg);
    animation: scrollArrow 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.arrow span:nth-child(2) {
    animation-delay: 0.2s;
    opacity: 0.7;
}

.arrow span:nth-child(3) {
    animation-delay: 0.4s;
    opacity: 0.4;
}

/* Featured Properties */
.featured-properties {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.featured-properties::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 70%, rgba(212, 175, 55, 0.03) 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.title-line-1,
.title-line-2 {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.title-line-1 {
    color: var(--text-light);
    background: linear-gradient(90deg, #E5E5E5, #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.title-line-2 {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 40px auto 0;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.property-card {
    background: var(--dark-gray);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition-smooth);
    position: relative;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    animation: cardReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.property-card.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.property-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), var(--shadow-gold);
}

.property-image {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.property-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 1;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-card:hover .property-image img {
    transform: scale(1.15);
}

.property-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: var(--gradient-gold);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.property-price {
    position: absolute;
    bottom: 25px;
    left: 25px;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    transition: var(--transition-smooth);
}

.property-card:hover .property-price {
    transform: scale(1.1);
}

.property-content {
    padding: 30px;
}

.property-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.3;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.property-card:hover .property-title {
    color: var(--gold-light);
}

.property-location {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.property-card:hover .property-location {
    color: var(--gold);
}

.property-location i {
    color: var(--gold);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.property-card:hover .property-location i {
    transform: scale(1.2);
}

.property-features {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 25px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    transition: var(--transition-smooth);
}

.property-card:hover .feature {
    transform: translateY(-5px);
}

.feature i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 5px;
    transition: var(--transition-smooth);
}

.property-card:hover .feature i {
    transform: scale(1.2) rotate(5deg);
}

.feature span {
    font-size: 1rem;
    color: var(--text-gray);
    transition: var(--transition-smooth);
}

.property-card:hover .feature span {
    color: var(--text-light);
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.property-type {
    background: rgba(212, 175, 55, 0.15);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    color: var(--gold);
    white-space: nowrap;
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.property-card:hover .property-type {
    background: rgba(212, 175, 55, 0.25);
    border-color: var(--gold);
    transform: scale(1.05);
}

.btn-view-details {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-view-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-view-details:hover::before {
    left: 0;
}

.btn-view-details:hover {
    color: var(--black);
    transform: translateX(5px);
    border-color: var(--gold-light);
}

.view-all {
    text-align: center;
    margin-top: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.view-all.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--gradient-gold);
    color: var(--black);
    padding: 18px 45px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-view-all::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-view-all:hover::after {
    left: 100%;
}

.btn-view-all:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
    gap: 20px;
}

/* Luxury Services */
.services {
    padding: 120px 0;
    background: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 60%, rgba(212, 175, 55, 0.05) 60%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    animation: cardReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), var(--shadow-gold);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    font-size: 2.5rem;
    color: var(--black);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-gold);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::before {
    opacity: 1;
    animation: iconGlow 1.5s infinite;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.service-card:hover h3 {
    color: var(--gold-light);
    transform: translateY(-5px);
}

.service-card p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    transition: var(--transition-smooth);
}

.service-card:hover p {
    color: var(--text-light);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    z-index: 2000;
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

.luxury-modal {
    background: var(--dark-gray);
    border-radius: 24px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    max-width: 650px;
    margin: 50px auto;
    animation: modalSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(212, 175, 55, 0.1);
    overflow: hidden;
}

.luxury-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(212, 175, 55, 0.05) 40%);
    pointer-events: none;
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(42, 42, 42, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.close-modal:hover {
    color: var(--gold-light);
    transform: rotate(90deg) scale(1.1);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.modal-header {
    text-align: center;
    padding: 50px 50px 30px;
    position: relative;
}

.modal-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: var(--black);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.modal-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-gold);
    border-radius: 50%;
    animation: iconPulse 2s infinite;
    opacity: 0.5;
}

.modal-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.3;
}

.modal-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.luxury-form {
    padding: 30px 50px 50px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 20px 25px 20px 60px;
    background: rgba(42, 42, 42, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    font-family: 'Montserrat', sans-serif;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
    padding: 20px 25px;
}

.form-group i {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.3rem;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.form-group textarea + i {
    top: 25px;
    transform: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    background: rgba(42, 42, 42, 0.8);
}

.form-group input:focus + i,
.form-group select:focus + i,
.form-group textarea:focus + i {
    color: var(--gold-light);
    transform: translateY(-50%) scale(1.2);
}

/* Footer - Adjusted Logo Size */
.footer {
    background: var(--dark-gray);
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 50%, rgba(212, 175, 55, 0.03) 50%);
    pointer-events: none;
}

.footer-top {
    padding: 100px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
}

.footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* Footer Logo - Adjusted Size */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px; /* Reduced from previous size */
    width: auto;
    filter: brightness(1.2) drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    transition: var(--transition-smooth);
}

.footer-logo:hover img {
    filter: brightness(1.5) drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
    transform: scale(1.05);
}

.footer-description {
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: rgba(42, 42, 42, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 1.3rem;
    transition: var(--transition-smooth);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.footer-social a:hover::before {
    transform: scale(1);
}

.footer-social a:hover {
    color: var(--black);
    transform: translateY(-5px) rotate(5deg);
    border-color: var(--gold);
}

.footer-social a i {
    position: relative;
    z-index: 1;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding: 8px 0;
}

.footer-col ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.footer-col ul li a:hover::before {
    width: 30px;
}

.footer-col ul li a i {
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-smooth);
}

.footer-col ul li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.6;
    font-size: 1.05rem;
}

.contact-info i {
    color: var(--gold);
    width: 20px;
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 1.2rem;
}

.footer-bottom {
    background: var(--black);
    padding: 35px 0;
    border-top: 2px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 1rem;
    text-align: center;
    flex: 1;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-smooth);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Animations */
@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes loadingShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    75% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineExpand {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

@keyframes scrollWheel {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

@keyframes scrollArrow {
    0% { opacity: 0; transform: rotate(45deg) translateY(-10px); }
    50% { opacity: 1; transform: rotate(45deg) translateY(0); }
    100% { opacity: 0; transform: rotate(45deg) translateY(10px); }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-60px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroShine {
    0% { transform: rotate(30deg) translateX(-100%); }
    100% { transform: rotate(30deg) translateX(100%); }
}

@keyframes searchShine {
    0% { transform: rotate(30deg) translateX(-100%) translateY(-100%); }
    100% { transform: rotate(30deg) translateX(100%) translateY(100%); }
}

@keyframes iconGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes iconPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* Section Reveal Animation */
.section-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-reveal .title-line-1,
.section-reveal .title-line-2,
.section-reveal .section-subtitle {
    transition-delay: 0.2s;
}

.section-reveal.visible .title-line-1,
.section-reveal.visible .title-line-2 {
    opacity: 1;
    transform: translateY(0);
}

.section-reveal.visible .section-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

/* Enhanced Property Cards Animation */
.property-card:nth-child(1) { animation-delay: 0.1s; }
.property-card:nth-child(2) { animation-delay: 0.2s; }
.property-card:nth-child(3) { animation-delay: 0.3s; }
.property-card:nth-child(4) { animation-delay: 0.4s; }
.property-card:nth-child(5) { animation-delay: 0.5s; }
.property-card:nth-child(6) { animation-delay: 0.6s; }

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.3s; }
.service-card:nth-child(3) { animation-delay: 0.4s; }
.service-card:nth-child(4) { animation-delay: 0.5s; }

/* Counter Animation */
@keyframes countUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number.animating {
    animation: countUp 0.5s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.8rem; }
    .section-title { font-size: 3.2rem; }
    .properties-grid { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
}

@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.5rem; }
    .search-filters { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--dark-gray);
        flex-direction: column;
        padding: 120px 40px 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
        border-left: 2px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-menu.show {
        right: 0;
    }
    
    .nav-link {
        padding: 18px;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        width: 100%;
    }
    
    .mobile-menu-btn {
        display: flex;
        order: 3;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .nav-actions {
        order: 2;
        margin-left: auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    .section-subtitle { font-size: 1.1rem; }
    .stat-number { font-size: 2.8rem; }
    .top-bar-content { flex-direction: column; gap: 20px; text-align: center; }
    .contact-info { justify-content: center; gap: 15px; }
    .logo-main img { height: 45px; }
    .search-filters { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: 1fr; gap: 25px; }
    .properties-grid { grid-template-columns: 1fr; }
    .service-card { padding: 40px 25px; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-logo img { height: 50px; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2rem; }
    .hero-line-1, .hero-line-2, .hero-line-3 { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .search-container { padding: 25px; }
    .luxury-modal { margin: 20px; width: calc(100% - 40px); }
    .modal-header { padding: 40px 25px 20px; }
    .luxury-form { padding: 20px 25px 40px; }
    .modal-header h2 { font-size: 2rem; }
    .modal-icon { width: 80px; height: 80px; font-size: 2.5rem; }
    .footer-logo img { height: 45px; }
}

@media (max-width: 400px) {
    .hero-title { font-size: 1.8rem; }
    .btn-post-property span { display: none; }
    .btn-post-property { width: 50px; height: 50px; justify-content: center; }
    .property-features { flex-direction: column; gap: 20px; }
    .feature { flex-direction: row; gap: 15px; }
    .footer-logo img { height: 40px; }
}