* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3a6b;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1a3a6b;
}

.admin-btn {
    background: #1a3a6b;
    color: white !important;
    padding: 8px 20px;
    border-radius: 5px;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26,58,107,0.95) 0%, rgba(26,58,107,0.85) 100%), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 80px;
}

.hero-content h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: #1a3a6b;
    color: white;
}

.btn-primary:hover {
    background: #0f2a4d;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #1a3a6b;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    color: #1a3a6b;
    margin-bottom: 20px;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat h3 {
    font-size: 2rem;
    color: #1a3a6b;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Services */
.services {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.services h2,
.featured h2,
.contact h2 {
    text-align: center;
    font-size: 2rem;
    color: #1a3a6b;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3rem;
    color: #1a3a6b;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

/* Properties Grid */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.property-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.property-info {
    padding: 20px;
}

.property-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1a3a6b;
}

.property-location {
    color: #666;
    margin-bottom: 10px;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3a6b;
    margin: 15px 0;
}

.property-features {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.property-features span i {
    margin-right: 5px;
}

.property-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.badge-sale {
    background: #1a3a6b;
    color: white;
}

.badge-rent {
    background: #28a745;
    color: white;
}

/* Featured Section */
.featured {
    background: #f8f9fa;
    padding: 80px 0;
}

.text-center {
    text-align: center;
    margin-top: 40px;
}

/* Contact Section - FIXED VISIBLE TEXT */
.contact {
    padding: 80px 0;
    background: #0a1a3a;
    color: white;
}

.contact h2 {
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info p {
    margin: 15px 0;
    color: white;
}

.contact-info i {
    width: 30px;
    color: #ffd700;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
    color: #ffd700;
}

.dhl-badge {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.dhl-badge i,
.dhl-badge span {
    color: white;
}

.whatsapp-button a {
    background: #25D366 !important;
    color: white !important;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    font-family: inherit;
    background: white;
    color: #333;
}

.contact-form button {
    width: 100%;
    background: #ffd700;
    color: #0a1a3a;
    font-weight: bold;
}

.contact-form button:hover {
    background: #ffed4a;
    transform: translateY(-2px);
}

/* Admin Panel */
.admin-panel {
    padding: 120px 0 80px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.admin-info {
    text-align: center;
    color: #28a745;
    margin-bottom: 40px;
    font-weight: 500;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.admin-form-card,
.admin-list-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.property-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.property-item-info h4 {
    margin-bottom: 5px;
}

.property-item-info p {
    color: #666;
    font-size: 0.9rem;
}

.delete-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.daily-tip {
    background: #e8f4f8;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
}

.admin-guide {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.admin-guide ol {
    margin-left: 20px;
    margin-top: 15px;
}

.admin-guide li {
    margin: 10px 0;
}

/* Page Header */
.page-header {
    background: #1a3a6b;
    color: white;
    padding: 120px 0 60px 0;
    text-align: center;
}

/* Filter Bar */
.properties-filter {
    padding: 40px 0;
    background: #f8f9fa;
}

.filter-bar {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-bar select,
.filter-bar input {
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.filter-bar input {
    width: 250px;
}

/* Footer */
footer {
    background: #1a1a2e;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin: 10px 0;
}

.footer-links a:hover {
    color: white;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    display: inline-block;
    transition: transform 0.3s;
}

.footer-social a:hover {
    transform: translateY(-3px);
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .social-icons-nav {
        display: none !important;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-grid,
    .contact-grid,
    .admin-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}