/* ===========================
           CSS VARIABLES & ROOT
        =========================== */
:root {
    --primary-dark: #0a1628;
    --primary-blue: #0d2244;
    --primary-mid: #1a3a6b;
    --accent-blue: #1e4d8c;
    --gold: #c9a84c;
    --gold-light: #e8c97e;
    --gold-dark: #a07830;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --mid-gray: #6c757d;
    --dark-gray: #343a40;
    --text-dark: #1a1a2e;
    --text-light: #6b7280;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --navbar-height: 70px;
    --topbar-height: 40px;
}

/* ===========================
           GLOBAL STYLES
        =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===========================
           TOP BAR
        =========================== */
.top-bar {
    background: var(--primary-dark);
    padding: 10px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar .contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar .contact-info a,
.top-bar .contact-info span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

.top-bar .contact-info a:hover {
    color: var(--gold);
}

.top-bar .contact-info i {
    color: var(--gold);
    font-size: 12px;
}

.top-bar .social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar .social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-decoration: none;
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar .social-links a:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

/* ===========================
           NAVIGATION
        =========================== */
.navbar {
    background: var(--primary-blue) !important;
    padding: 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    min-height: var(--navbar-height);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.98) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar>.container {
    padding: 0 15px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    box-shadow: var(--shadow-gold);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.3px;
}

.logo-text .brand-tagline {
    font-size: 9px;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 2px;
}

.navbar-toggler {
    border: 2px solid rgba(201, 168, 76, 0.6);
    padding: 8px 10px;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201,168,76,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
}

.navbar-collapse {
    background: var(--primary-blue);
}

.navbar-nav {
    padding: 10px 0;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 16px !important;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
    border-radius: 8px;
    margin: 2px 0;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold) !important;
    background: rgba(201, 168, 76, 0.1);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.nav-cta-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    color: var(--white) !important;
    border-radius: 8px;
    padding: 12px 20px !important;
    font-weight: 600 !important;
    margin: 10px 0;
    transition: var(--transition) !important;
    box-shadow: var(--shadow-gold);
    text-transform: uppercase;
    font-size: 13px !important;
    text-align: center;
    display: block;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4) !important;
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
}

.nav-cta-btn::after {
    display: none !important;
}

/* ===========================
           HERO SECTION
        =========================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: calc(var(--navbar-height) + var(--topbar-height));
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(10, 22, 40, 0.94) 0%, rgba(13, 34, 68, 0.88) 40%, rgba(26, 58, 107, 0.80) 100%),
        url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1920&q=80') center/cover no-repeat;
}

.hero-bg::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--white), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0 60px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}

.hero-badge i {
    font-size: 12px;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title .accent {
    color: var(--gold);
    display: block;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
    letter-spacing: 0.3px;
    flex: 1;
    min-width: 160px;
    text-align: center;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 168, 76, 0.5);
    color: var(--white);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    flex: 1;
    min-width: 160px;
    text-align: center;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.stat-item {
    padding: 20px 10px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    display: block;
}

/* Search Bar */
.hero-search {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 8px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 30px;
}

.hero-search select,
.hero-search input {
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    outline: none;
    background: var(--white);
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-dark);
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.hero-search select:focus,
.hero-search input:focus {
    border-color: var(--gold);
}

.hero-search .search-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-search .search-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

/* Scroll Indicator */
.scroll-indicator {
    display: none;
}

/* ===========================
           SECTION STYLES
        =========================== */
.section-padding {
    padding: 60px 0;
}

.section-padding-sm {
    padding: 50px 0;
}

.section-header {
    margin-bottom: 40px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.25;
    margin-bottom: 14px;
}

.section-title .gold {
    color: var(--gold-dark);
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

.title-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 16px 0;
}

.title-divider.center {
    margin: 16px auto;
}

/* ===========================
           ABOUT SECTION
        =========================== */
.about-section {
    background: var(--white);
    overflow: hidden;
}

.about-image-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.about-main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.about-secondary-image {
    display: none;
}

.about-badge-float {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-badge-float .number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.about-badge-float .label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--off-white);
    padding: 16px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.feature-item h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.feature-item p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* ===========================
           SERVICES SECTION
        =========================== */
.services-section {
    background: linear-gradient(180deg, #f8f9fc 0%, #eef0f5 100%);
    position: relative;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 168, 76, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: var(--transition);
    position: relative;
}

.service-icon.blue {
    background: linear-gradient(135deg, rgba(13, 34, 68, 0.1), rgba(13, 34, 68, 0.05));
    color: var(--primary-blue);
}

.service-icon.gold {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    color: var(--gold-dark);
}

.service-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.service-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-link {
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-blue);
    gap: 10px;
}

/* ===========================
           FEATURED PROPERTIES
        =========================== */
.properties-section {
    background: var(--white);
}

.property-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    height: 100%;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.property-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-sale {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
}

.badge-rent {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
}

.badge-new {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: var(--white);
}

.property-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 14px;
    color: var(--mid-gray);
}

.property-wishlist:hover,
.property-wishlist.active {
    background: var(--white);
    color: #e53e3e;
}

.property-info {
    padding: 20px;
}

.property-info .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-dark);
    font-family: 'Playfair Display', serif;
    margin-bottom: 6px;
}

.property-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
}

.property-location {
    color: var(--text-light);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 14px;
}

.property-location i {
    color: var(--gold);
}

.property-specs {
    display: flex;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--light-gray);
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--mid-gray);
}

.spec-item i {
    color: var(--gold-dark);
    font-size: 12px;
}

/* Property Filter Tabs */
.property-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}

.tab-btn {
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid rgba(13, 34, 68, 0.15);
    background: transparent;
    color: var(--mid-gray);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

/* ===========================
           WHY CHOOSE US
        =========================== */
.why-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 50%, var(--accent-blue) 100%);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.why-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-5px);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
    border: 2px solid rgba(201, 168, 76, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
    margin: 0 auto 18px;
    transition: var(--transition);
}

.why-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.why-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* ===========================
           TESTIMONIALS
        =========================== */
.testimonials-section {
    background: linear-gradient(180deg, #f0f4f8 0%, var(--white) 100%);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 60px;
    color: rgba(201, 168, 76, 0.15);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.stars {
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 14px;
}

.testimonial-card>p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.author-info h6 {
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    font-size: 14px;
}

.author-info span {
    font-size: 12px;
    color: var(--text-light);
}

/* ===========================
           CONTACT SECTION
        =========================== */
.contact-section {
    background: var(--white);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    border-radius: var(--border-radius);
    padding: 30px 24px;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.contact-info-card>p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-detail-item h6 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.contact-detail-item p,
.contact-detail-item a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    text-decoration: none;
    transition: var(--transition);
    word-break: break-word;
}

.contact-detail-item a:hover {
    color: var(--gold);
}

.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.contact-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--off-white);
    border-radius: var(--border-radius);
    padding: 30px 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 24px;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.contact-form-wrapper>p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 6px;
    display: block;
}

.form-control,
.form-select {
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    width: 100%;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #b0b7c3;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

/* ===========================
           MAP SECTION
        =========================== */
.map-section {
    padding: 0;
}

.map-wrapper {
    height: 300px;
    width: 100%;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ===========================
           FOOTER
        =========================== */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 50px;
}

.footer-brand .brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.footer-brand .brand-tagline {
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 16px;
}

.footer-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    position: relative;
    padding-bottom: 10px;
    margin-top: 30px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-links a i {
    font-size: 10px;
    color: var(--gold);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    text-decoration: none;
    transition: var(--transition);
    word-break: break-word;
}

.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 40px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    text-align: center;
}

.footer-bottom .gold {
    color: var(--gold);
}

.footer-bottom-links {
    text-align: center;
    margin-top: 10px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 12px;
    margin: 0 10px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ===========================
           SCROLL TO TOP
        =========================== */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* ===========================
           PRELOADER
        =========================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    padding: 20px;
}

.preloader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.preloader-logo span {
    color: var(--gold);
}

.preloader-text {
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.preloader-bar {
    width: 160px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.preloader-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* ===========================
           TABLET RESPONSIVE (768px+)
        =========================== */
@media (min-width: 768px) {
    :root {
        --navbar-height: 75px;
    }

    .top-bar .contact-info {
        gap: 24px;
    }

    .logo-text .brand-name {
        font-size: 20px;
    }

    .logo-text .brand-tagline {
        font-size: 10px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-search {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-search select,
    .hero-search input {
        flex: 1;
        min-width: 150px;
        border: none;
        border-right: 1px solid var(--light-gray);
    }

    .hero-search input {
        border-right: none;
    }

    .hero-search .search-btn {
        width: auto;
        min-width: 120px;
    }

    .stat-item .stat-number {
        font-size: 1.8rem;
    }

    .stat-item .stat-label {
        font-size: 11px;
    }

    .section-padding {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-main-image {
        height: 400px;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-wrapper {
        margin-top: 0;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-wrapper {
        height: 400px;
    }

    .footer-title {
        margin-top: 0;
    }

    .footer-bottom p {
        text-align: left;
    }

    .footer-bottom-links {
        text-align: right;
        margin-top: 0;
    }
}

/* ===========================
           DESKTOP RESPONSIVE (992px+)
        =========================== */
@media (min-width: 992px) {
    :root {
        --navbar-height: 80px;
    }

    .navbar-collapse {
        background: transparent;
    }

    .navbar-nav {
        padding: 0;
        align-items: center;
    }

    .navbar-nav .nav-link {
        padding: 28px 14px !important;
        margin: 0;
        border-radius: 0;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: transparent;
    }

    .nav-cta-btn {
        margin: 0 0 0 10px;
        padding: 10px 18px !important;
    }

    .logo-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .logo-text .brand-name {
        font-size: 22px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-content {
        padding: 80px 0;
    }

    .hero-stats {
        max-width: 550px;
    }

    .hero-search {
        max-width: 550px;
    }

    .stat-item {
        padding: 24px 20px;
    }

    .stat-item .stat-number {
        font-size: 2rem;
    }

    .scroll-indicator {
        display: flex;
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.6);
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        animation: bounce 2s infinite;
    }

    .scroll-indicator i {
        font-size: 18px;
        color: var(--gold);
    }

    @keyframes bounce {

        0%,
        100% {
            transform: translateX(-50%) translateY(0);
        }

        50% {
            transform: translateX(-50%) translateY(-8px);
        }
    }

    .section-padding {
        padding: 100px 0;
    }

    .section-title {
        font-size: 2.6rem;
    }

    .about-main-image {
        height: 520px;
    }

    .about-secondary-image {
        display: block;
        position: absolute;
        bottom: -30px;
        right: -30px;
        width: 200px;
        height: 160px;
        object-fit: cover;
        border-radius: var(--border-radius);
        border: 5px solid var(--white);
        box-shadow: var(--shadow-md);
    }

    .about-badge-float {
        bottom: auto;
        top: 30px;
        left: -20px;
        right: auto;
    }

    .about-image-wrapper {
        margin-bottom: 0;
    }

    .contact-info-card {
        padding: 45px 35px;
        height: 100%;
    }

    .contact-form-wrapper {
        padding: 45px 35px;
    }

    .property-image {
        height: 240px;
    }

    .map-wrapper {
        height: 450px;
    }

    .footer {
        padding-top: 70px;
    }

    .scroll-top {
        bottom: 30px;
        right: 30px;
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

/* ===========================
           LARGE DESKTOP (1200px+)
        =========================== */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }

    .navbar-nav .nav-link {
        padding: 28px 18px !important;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .about-secondary-image {
        width: 220px;
        height: 180px;
    }
}

/* ===========================
           SMALL MOBILE (< 400px)
        =========================== */
@media (max-width: 400px) {

    .top-bar .contact-info a span,
    .top-bar .contact-info span {
        font-size: 11px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-badge {
        font-size: 10px;
        padding: 6px 12px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-gold,
    .btn-outline-white {
        width: 100%;
    }

    .stat-item .stat-number {
        font-size: 1.4rem;
    }

    .stat-item .stat-label {
        font-size: 9px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .contact-info-card h3,
    .contact-form-wrapper h3 {
        font-size: 1.3rem;
    }
}

/* ===========================
           MOBILE TOP BAR ADJUSTMENTS
        =========================== */
@media (max-width: 767px) {
    .top-bar {
        padding: 8px 0;
    }

    .top-bar .container {
        justify-content: center;
    }

    .top-bar .contact-info {
        gap: 12px;
        justify-content: center;
    }

    .top-bar .contact-info a:nth-child(3) {
        display: none;
    }

    .top-bar .social-links {
        display: none;
    }

    :root {
        --topbar-height: 36px;
    }
}

/* ===========================
           UTILITY CLASSES
        =========================== */
.text-gold {
    color: var(--gold) !important;
}

.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

.d-mobile-none {
    display: none !important;
}

@media (min-width: 768px) {
    .d-mobile-none {
        display: block !important;
    }
}

/* Hide elements on specific breakpoints */
@media (max-width: 575px) {
    .hide-xs {
        display: none !important;
    }
}

/* Form success message */
.form-success {
    display: none;
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.3);
    color: #166534;
    padding: 16px;
    border-radius: 10px;
    margin-top: 16px;
}

.form-success.show {
    display: block;
}

/* Ensure images don't break layout */
.property-image img,
.about-main-image,
.about-secondary-image,
.author-avatar {
    background-color: var(--light-gray);
}