
:root {
--primary: #1a365d;
--secondary: #d4af37;
--accent: #2d3748;
--light: #f8f9fa;
--dark: #1a202c;
--success: #38a169;
--danger: #e53e3e;
--warning: #dd6b20;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--dark);
background-color: var(--light);
}

/* Navigation */
.navbar {
background: rgba(255, 255, 255, 0.95) !important;
backdrop-filter: blur(10px);
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
padding: 1rem 0;
transition: all 0.3s ease;
}

.navbar-brand {
font-weight: 800;
font-size: 1.8rem;
color: var(--primary) !important;
letter-spacing: -0.5px;
}

.navbar-brand span {
color: var(--secondary);
}

.nav-link {
font-weight: 600;
color: var(--accent) !important;
margin: 0 0.5rem;
padding: 0.5rem 1rem !important;
border-radius: 8px;
transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
background: var(--primary);
color: white !important;
}

/* Hero Slider */
.hero-slider {
position: relative;
height: 85vh;
overflow: hidden;
margin-top: 76px;
}

.swiper {
width: 100%;
height: 100%;
}

.swiper-slide {
position: relative;
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

.slide-image {
width: 100%;
height: 100%;
object-fit: cover;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}

.slide-content {
position: absolute;
bottom: 20%;
left: 10%;
color: white;
max-width: 600px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-title {
font-size: 3.5rem;
font-weight: 800;
margin-bottom: 1rem;
line-height: 1.2;
}

.slide-description {
font-size: 1.2rem;
margin-bottom: 2rem;
opacity: 0.9;
}

.btn-gold {
background: linear-gradient(45deg, var(--secondary), #f7ef8a);
color: var(--primary);
border: none;
padding: 12px 30px;
font-weight: 600;
border-radius: 30px;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
}

.btn-gold:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.swiper-pagination-bullet {
background: white !important;
opacity: 0.5;
width: 12px !important;
height: 12px !important;
}

.swiper-pagination-bullet-active {
opacity: 1;
background: var(--secondary) !important;
}

/* Section Styling */
.section {
padding: 5rem 0;
}

.section-title {
text-align: center;
margin-bottom: 3rem;
}

.section-title h2 {
font-size: 2.5rem;
font-weight: 800;
color: var(--primary);
margin-bottom: 1rem;
}

.section-title .divider {
width: 80px;
height: 4px;
background: var(--secondary);
margin: 0 auto;
border-radius: 2px;
}

/* Property Cards */
.property-card {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
height: 100%;
margin-bottom: 2rem;
}

.property-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.property-badge {
position: absolute;
top: 15px;
left: 15px;
padding: 8px 15px;
border-radius: 20px;
font-weight: 600;
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 0.5px;
z-index: 2;
}

.badge-featured {
background: linear-gradient(45deg, var(--secondary), #ffd700);
color: var(--primary);
}

.badge-sold {
background: var(--danger);
color: white;
}

.badge-construction {
background: var(--warning);
color: white;
}

.badge-available {
background: var(--success);
color: white;
}

.property-image {
width: 100%;
height: 250px;
object-fit: cover;
transition: transform 0.5s ease;
}

.property-card:hover .property-image {
transform: scale(1.05);
}

.property-content {
padding: 1.5rem;
}

.property-price {
font-size: 1.5rem;
font-weight: 800;
color: var(--primary);
margin-bottom: 0.5rem;
}

.property-price span {
color: var(--secondary);
font-size: 0.9rem;
font-weight: 600;
}

.property-title {
font-size: 1.2rem;
font-weight: 700;
margin-bottom: 0.5rem;
color: var(--dark);
}

.property-location {
color: var(--accent);
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 5px;
}

.property-features {
display: flex;
justify-content: space-between;
margin-bottom: 1.5rem;
padding: 1rem 0;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
}

.feature-item {
text-align: center;
flex: 1;
}

.feature-item i {
font-size: 1.2rem;
color: var(--secondary);
margin-bottom: 5px;
}

.feature-item span {
display: block;
font-size: 0.9rem;
color: var(--accent);
}

/* CTA Section */
.cta-section {
background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.9)), url('assets/images/cta-bg.jpg');
background-size: cover;
background-position: center;
color: white;
text-align: center;
padding: 5rem 0;
}

.cta-title {
font-size: 2.5rem;
font-weight: 800;
margin-bottom: 1rem;
}

.cta-description {
font-size: 1.1rem;
max-width: 600px;
margin: 0 auto 2rem;
opacity: 0.9;
}

/* Footer */
.footer {
background: var(--primary);
color: white;
padding: 4rem 0 2rem;
}

.footer-title {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1.5rem;
color: var(--secondary);
}

.footer-links {
list-style: none;
padding: 0;
}

.footer-links li {
margin-bottom: 0.8rem;
}

.footer-links a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: all 0.3s ease;
}

.footer-links a:hover {
color: var(--secondary);
padding-left: 5px;
}

.footer-contact i {
color: var(--secondary);
margin-right: 10px;
width: 20px;
}

.social-links {
display: flex;
gap: 15px;
margin-top: 1rem;
}

.social-link {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
color: white;
transition: all 0.3s ease;
}

.social-link:hover {
background: var(--secondary);
transform: translateY(-3px);
}

.copyright {
text-align: center;
padding-top: 2rem;
margin-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: rgba(255, 255, 255, 0.6);
}

/* WhatsApp Button */
.whatsapp-float {
position: fixed;
bottom: 30px;
right: 30px;
background: #25D366;
color: white;
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
z-index: 1000;
transition: all 0.3s ease;
}

.whatsapp-float:hover {
transform: scale(1.1);
box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Responsive Design */
@media (max-width: 992px) {
.slide-title {
    font-size: 2.5rem;
}

.hero-slider {
    height: 70vh;
}
}

@media (max-width: 768px) {
.slide-title {
    font-size: 2rem;
}

.slide-description {
    font-size: 1rem;
}

.section {
    padding: 3rem 0;
}

.section-title h2 {
    font-size: 2rem;
}
}

@media (max-width: 576px) {
.hero-slider {
    height: 60vh;
}

.slide-content {
    left: 5%;
    bottom: 15%;
}

.slide-title {
    font-size: 1.8rem;
}

.navbar-brand {
    font-size: 1.5rem;
}
}
