/* assets/css/style.css */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --light-bg: #f8f9fa;
    --dark-text: #2c3e50;
    --light-text: #7f8c8d;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
}

/* Header Styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
}

.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--light-text);
}

/* Section Styles */
.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--light-text);
    font-size: 1.1rem;
}

/* Card Styles */
.project-card, .location-card, .blog-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover, .location-card:hover, .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.project-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.location-card .card-img-top {
    height: 150px;
    object-fit: cover;
}

.blog-card .card-img-top {
    height: 180px;
    object-fit: cover;
}

.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 10px 0;
}

.blog-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.newsletter-section h3 {
    margin-bottom: 15px;
}

.newsletter-section p {
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer Styles */
footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

footer ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 40px 0;
    }
}

/* Search Form Styles */
.search-filters {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

/* Project Detail Styles */
.project-gallery {
    margin-bottom: 30px;
}

.main-image {
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.thumbnails {
    margin-top: 15px;
}

.thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.thumbnail:hover, .thumbnail.active {
    opacity: 1;
}

.amenities-list {
    list-style: none;
    padding-left: 0;
    columns: 2;
}

.amenities-list li {
    margin-bottom: 10px;
    break-inside: avoid;
}

.amenities-list li i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* Review Stars */
.rating-stars {
    color: #f39c12;
    font-size: 1.2rem;
}

/* Social Sharing */
.social-sharing a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #f5f5f5;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--dark-text);
    transition: all 0.3s;
}

.social-sharing a:hover {
    transform: translateY(-3px);
    color: white;
}

.social-sharing .facebook:hover { background: #3b5998; }
.social-sharing .twitter:hover { background: #1da1f2; }
.social-sharing .linkedin:hover { background: #0077b5; }
.social-sharing .whatsapp:hover { background: #25d366; }

/* FAQ Styles */
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.faq-question {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-question:after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 0;
    transition: transform 0.3s;
}

.faq-question.collapsed:after {
    transform: rotate(-90deg);
}

.faq-answer {
    padding-left: 20px;
}

/* Contact Page Styles */
.contact-info-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item .icon {
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

/* Blog Page Styles */
.blog-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Form Styles */
.form-label {
    font-weight: 500;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}