* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #fafafa;
    overflow-x: hidden;
}

body[dir="rtl"] {
    direction: rtl;
}

/* Luxury scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #d4af37, #b8941f, #8b6914);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #b8941f, #8b6914, #6b5012);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

/* Luxury gradient backgrounds */
.luxury-gradient {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #1a1a2e 75%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.luxury-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Gold accent */
.gold-accent {
    color: #d4af37;
}

.gold-gradient {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 50%, #8b6914 100%);
}

/* Luxury card design */
.luxury-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #b8941f, #8b6914);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.luxury-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: #d4af37;
}

.luxury-card:hover::before {
    transform: scaleX(1);
}

/* Icon container */
.luxury-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
    border: 3px solid rgba(212, 175, 55, 0.2);
}

/* Luxury button */
.btn-luxury {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 50%, #8b6914 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 4px;
    padding: 16px 40px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-luxury::before {
    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.5s;
}

.btn-luxury:hover::before {
    left: 100%;
}

.btn-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
}

.btn-luxury:active {
    transform: translateY(0);
}

/* Section backgrounds */
.section-cream {
    background: #fafafa;
}

.section-white {
    background: #ffffff;
}

.section-luxury {
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 50%, #fafafa 100%);
}

/* Badge design */
.luxury-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1a1a1a;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Heritage year display */
.heritage-year {
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #d4af37, #b8941f, #8b6914);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    position: absolute;
    z-index: 0;
}

/* Input styling */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
    width: 100%;
    border: 2px solid #e8e8e8;
    border-radius: 4px;
    padding: 14px 18px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #1a1a1a;
    font-family: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

/* Villa showcase card */
.villa-showcase {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    color: white;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.villa-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Decorative elements */
.decorative-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #b8941f);
    margin: 2rem auto;
}

/* Stats counter */
.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    h1 {
        font-size: 2.5rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .luxury-card {
        padding: 2rem;
    }
    
    .heritage-year {
        font-size: 4rem;
    }
}

/* Elegant divider */
.elegant-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 3rem 0;
}

