/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.underline {
    width: 80px;
    height: 3px;
    background-color: #D4AF37;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: #D4AF37;
    color: #333;
}

.btn-primary:hover {
    background-color: #b8941f;
    color: #333;
}

.btn-secondary {
    background-color: transparent;
    color: #333;
    border: 2px solid #D4AF37;
}

.btn-secondary:hover {
    background-color: #D4AF37;
    color: #333;
}

/* Navbar */
.logo{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
}

.navbar-menu {
    display: flex;
}

.navbar-menu li {
    margin-left: 30px;
}

.navbar-menu li a {
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-menu li a:hover,
.navbar-menu li a.active {
    color: #D4AF37;
}

.navbar-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #D4AF37;
    transition: all 0.3s ease;
}

.navbar-menu li a:hover::after,
.navbar-menu li a.active::after {
    width: 100%;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #f5f5f5;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 30px;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
}

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background-color: #f9f9f9;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background-color: #fff;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #666;
}

/* Vision & Values Section */
.vision-values {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.vision-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.vision-card, .values-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.vision-icon, .values-icon {
    width: 60px;
    height: 60px;
    background-color: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.vision-icon i, .values-icon i {
    font-size: 25px;
    color: #fff;
}

.vision-card h3, .values-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.vision-card p {
    color: #666;
    margin-bottom: 0;
}

.values-card ul {
    list-style-type: none;
    padding-left: 0;
}

.values-card ul li {
    margin-bottom: 15px;
    color: #666;
}

.values-card ul li strong {
    color: #D4AF37;
}

/* Team Section */
.team {
    padding: 80px 0;
    background-color: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 1.3rem;
    margin: 20px 0 10px;
    color: #333;
    text-align: center;
}

.team-member p {
    color: #D4AF37;
    text-align: center;
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-bottom: 20px;
}

.member-social a {
    width: 35px;
    height: 35px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background-color: #D4AF37;
    color: #fff;
}

/* Filter Section */
.filter {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    min-width: 200px;
}

.filter-group label {
    margin-bottom: 8px;
    color: #D4AF37;
    font-weight: 500;
}

.filter-group select {
    padding: 10px 15px;
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
}

/* Properties Section */
.properties {
    padding: 40px 0 80px;
    background-color: #fff;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.property-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}

.property-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #D4AF37;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.property-info {
    padding: 25px;
}

.property-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.property-info p {
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.property-info p i {
    margin-right: 8px;
    color: #D4AF37;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 15px;
}

.property-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.property-features span {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

.property-features span i {
    margin-right: 5px;
    color: #D4AF37;
}

.property-info .btn {
    width: 100%;
    text-align: center;
}

/* Referral Hero */
.referral-hero {
    padding: 150px 0 80px;
    background-image: url('https://images.unsplash.com/photo-1556740738-b6a63e27c4df?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
}

.referral-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.referral-hero .container {
    position: relative;
    z-index: 1;
}

.referral-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.referral-hero p {
    font-size: 1.2rem;
    color: #f5f5f5;
    max-width: 700px;
    margin: 0 auto;
}

/* Referral Details */
.referral-details {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.referral-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.referral-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
    text-align: left;
}

.referral-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.step p {
    color: #666;
    text-align: center;
    margin-bottom: 0;
}

/* Referral Form */
.referral-form-section {
    padding: 80px 0;
    background-color: #fff;
}

.referral-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.referral-form .form-group {
    margin-bottom: 30px;
}

.referral-form .form-group h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #D4AF37;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-col {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: #666;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid #28a745;
}

.form-message.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-info p {
    color: #666;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: #D4AF37;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.contact-details p {
    color: #666;
    margin: 0;
}

.contact-form-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #f9f9f9;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #D4AF37;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: #fff;
}

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
    padding-right: 20px;
}

.faq-question i {
    font-size: 1.2rem;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: #666;
}

.faq-contact {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.faq-contact p {
    color: #666;
    margin-bottom: 25px;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: #fff;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background-color: #f9f9f9;
    color: #666;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: #D4AF37;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-info {
    padding: 20px;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.gallery-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.gallery-info p {
    color: #D4AF37;
    margin: 0;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

#lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
}

.lightbox-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 0 0 8px 8px;
}

.lightbox-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.lightbox-info p {
    color: #666;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #333;
    padding: 70px 0 30px;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #D4AF37;
}

.footer-col p {
    color: #ddd;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ddd;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #D4AF37;
    padding-left: 5px;
}

.footer-col p i {
    margin-right: 10px;
    color: #D4AF37;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #D4AF37;
    color: #fff;
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.copyright p {
    color: #aaa;
    font-size: 0.9rem;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
   .navbar-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transform: translateX(100%);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .navbar-menu.active {
        transform: translateX(0);
    }
    
    .navbar-menu li {
        margin: 0 0 20px 0;
        width: 100%;
    }
    
    .navbar-menu li a {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .navbar-menu li:last-child a {
        border-bottom: none;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Add overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        transition: all 0.3s ease;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .referral-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .referral-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Recent Projects Section */
.recent-projects {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.project-filter-btn {
    padding: 10px 20px;
    background-color: #fff;
    color: #666;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.project-filter-btn.active,
.project-filter-btn:hover {
    background-color: #D4AF37;
    color: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.project-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.project-status.completed {
    background-color: #28a745;
    color: #fff;
}

.project-status.ongoing {
    background-color: #D4AF37;
    color: #fff;
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.project-info p {
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.project-info p i {
    margin-right: 8px;
    color: #D4AF37;
}

.project-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 15px;
}

.project-progress {
    margin-bottom: 20px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #666;
}

.progress-bar {
    height: 8px;
    background-color: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #D4AF37;
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.view-all-projects {
    text-align: center;
    margin-top: 20px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover {
    background-color: #f9f9f9;
    color: #D4AF37;
    border-color: #D4AF37;
}

.pagination-btn.active {
    background-color: #D4AF37;
    color: #fff;
    border-color: #D4AF37;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for project cards */
.projects-grid .project-card:nth-child(1) {
    animation-delay: 0.1s;
}

.projects-grid .project-card:nth-child(2) {
    animation-delay: 0.2s;
}

.projects-grid .project-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Add animation to feature cards */
.feature-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.features-grid .feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.features-grid .feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.features-grid .feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Add animation to property cards */
.property-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.properties-grid .property-card:nth-child(1) {
    animation-delay: 0.1s;
}

.properties-grid .property-card:nth-child(2) {
    animation-delay: 0.2s;
}

.properties-grid .property-card:nth-child(3) {
    animation-delay: 0.3s;
}

.properties-grid .property-card:nth-child(4) {
    animation-delay: 0.4s;
}

.properties-grid .property-card:nth-child(5) {
    animation-delay: 0.5s;
}

.properties-grid .property-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Logo styles */
.logo {
    height: 40px;
    width: auto;
    display: block;
}

/* Update navbar-brand to center the logo */
.navbar-brand {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Property Details Section */
.property-details {
    padding: 80px 0;
    background-color: #fff;
}

.property-details-container {
    max-width: 1200px;
    margin: 0 auto;
}

.property-header {
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.property-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.property-header p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.property-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.property-status.completed {
    background-color: #28a745;
    color: #fff;
}

.property-status.ongoing {
    background-color: #D4AF37;
    color: #fff;
}

.property-main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.property-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.property-main-image {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.property-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-interior-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.interior-image {
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

.interior-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.interior-image:hover img {
    transform: scale(1.1);
}

.property-info {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    height: fit-content;
}

.property-price {
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 30px;
}

.property-features {
    margin-bottom: 30px;
}

.property-features h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.property-features ul {
    list-style-type: none;
}

.property-features ul li {
    margin-bottom: 10px;
    color: #666;
    display: flex;
    align-items: center;
}

.property-features ul li i {
    margin-right: 10px;
    color: #D4AF37;
}

.property-description {
    margin-bottom: 30px;
}

.property-description h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.property-description p {
    color: #666;
    line-height: 1.8;
}

.property-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.property-actions .btn {
    width: 100%;
    text-align: center;
}

.property-not-found {
    text-align: center;
    padding: 60px 0;
}

.property-not-found h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.property-not-found p {
    color: #666;
    margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .property-main-content {
        grid-template-columns: 1fr;
    }
    
    .property-gallery {
        order: 2;
    }
    
    .property-info {
        order: 1;
    }
}

@media (max-width: 576px) {
    .property-interior-images {
        grid-template-columns: 1fr;
    }
    
    .interior-image {
        height: 250px;
    }
}