
        :root {
            --primary-green: #006400;
            --light-green: #4CAF50;
            --dark-green: #004d00;
            --primary-blue: #1e3a8a;
            --light-blue: #3498db;
            --dark-blue: #0d1b2a;
            --black: #121212;
            --gray: #f5f5f5;
            --white: #ffffff;
            --gold: #FFD700;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--gray);
            color: var(--black);
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-top {
            background: linear-gradient(to right, var(--primary-green), var(--primary-blue));
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        
        .header-top-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .contact-info a {
            color: white;
            text-decoration: none;
            margin-right: 20px;
        }
        
        .contact-info a:hover {
            text-decoration: underline;
        }
        
        .social-icons a {
            color: white;
            margin-left: 12px;
            font-size: 18px;
        }
        
        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-image {
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 24px;
            background: linear-gradient(45deg, var(--primary-green), var(--primary-blue));
            color: white;
            padding: 10px;
            border-radius: 8px;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo h1 {
            color: var(--primary-green);
            font-size: 28px;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .logo .slogan {
            color: var(--primary-blue);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--black);
            font-weight: 600;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--primary-green);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary-green);
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--primary-green);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            height: 80vh;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(to right, var(--primary-green), var(--primary-blue));
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-green);
            color: var(--primary-green);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        .btn-outline:hover {
            background: linear-gradient(to right, var(--primary-green), var(--primary-blue));
            color: white;
        }
        
        /* Services Section */
        .services {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-green), var(--primary-blue));
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 20px auto 0;
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .view-all {
            color: var(--primary-green);
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .view-all:hover {
            text-decoration: underline;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            text-align: center;
            padding: 30px 20px;
            border-top: 4px solid var(--primary-green);
        }
        
        .service-card:nth-child(2) {
            border-top-color: var(--primary-blue);
        }
        
        .service-card:nth-child(3) {
            border-top-color: var(--light-green);
        }
        
        .service-card:nth-child(4) {
            border-top-color: var(--light-blue);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-icon {
            font-size: 50px;
            margin-bottom: 20px;
            color: var(--primary-green);
        }
        
        .service-card:nth-child(2) .service-icon {
            color: var(--primary-blue);
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark-blue);
        }
        
        .service-card p {
            color: #666;
        }
        
        /* About Section */
        .about {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f9f9f9, var(--gray));
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-text h2 {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #555;
        }
        
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Blog Section */
        .blog {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .blog-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
        }
        
        .blog-image {
            height: 200px;
            overflow: hidden;
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }
        
        .blog-content {
            padding: 20px;
        }
        
        .blog-meta {
            display: flex;
            justify-content: space-between;
            color: #777;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .blog-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--dark-blue);
        }
        
        .blog-content p {
            color: #666;
            margin-bottom: 15px;
        }
        
        .read-more {
            color: var(--primary-green);
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
        }
		
		
        
        /* Breadcrumb */
        .breadcrumb {
            padding: 20px 0;
            background-color: var(--white);
            margin-bottom: 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .breadcrumb ul {
            display: flex;
            list-style: none;
        }
        
        .breadcrumb li {
            margin-right: 15px;
            position: relative;
            font-size: 14px;
        }
        
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            position: absolute;
            right: -10px;
            color: #999;
        }
        
        .breadcrumb a {
            color: var(--primary-blue);
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        /* Blog Content */
        .blog-single {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 40px;
            padding: 40px 0;
        }
        
        .blog-content {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .blog-header {
            padding: 30px;
            border-bottom: 1px solid #eee;
        }
        
        .blog-meta {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            color: #666;
            font-size: 14px;
        }
        
        .blog-meta span {
            margin-right: 20px;
            display: flex;
            align-items: center;
        }
        
        .blog-meta i {
            margin-right: 5px;
            color: var(--primary-green);
        }
        
        .blog-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--dark-blue);
            font-family: 'Montserrat', sans-serif;
            line-height: 1.3;
        }
        
        .blog-image {
            width: 100%;
            height: 500px;
            overflow: hidden;
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .blog-body {
            padding: 40px;
        }
        
        .blog-body p {
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .blog-body h2 {
            font-size: 1.8rem;
            margin: 30px 0 20px;
            color: var(--primary-blue);
            font-family: 'Montserrat', sans-serif;
            position: relative;
            padding-bottom: 10px;
        }
        
        .blog-body h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, var(--primary-green), var(--primary-blue));
        }
        
        .blog-body h3 {
            font-size: 1.4rem;
            margin: 25px 0 15px;
            color: var(--dark-green);
            font-family: 'Montserrat', sans-serif;
        }
        
        .feature-block {
            background: rgba(0, 100, 0, 0.05);
            border-left: 4px solid var(--primary-green);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 4px 4px 0;
        }
        
        .feature-block p {
            margin-bottom: 0;
            font-style: italic;
            color: var(--dark-blue);
        }
        
        .blog-tags {
            display: flex;
            flex-wrap: wrap;
            margin: 30px 0;
        }
        
        .tag {
            background: var(--light-blue);
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            margin-right: 10px;
            margin-bottom: 10px;
            font-size: 14px;
        }
        
        .blog-share {
            display: flex;
            align-items: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        
        .share-label {
            margin-right: 15px;
            font-weight: 600;
            color: var(--dark-blue);
        }
        
        .share-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--light-blue);
            color: white;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: transform 0.3s;
        }
        
        .share-icons a:hover {
            transform: translateY(-3px);
        }
        
        .share-icons .facebook { background: #3b5998; }
        .share-icons .twitter { background: #1da1f2; }
        .share-icons .linkedin { background: #0077b5; }
        .share-icons .whatsapp { background: #25d366; }
        
        /* Sidebar */
        .sidebar {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
        }
        
        .sidebar-widget {
            padding: 30px;
            border-bottom: 1px solid #eee;
        }
        
        .sidebar-widget:last-child {
            border-bottom: none;
        }
        
        .widget-title {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--primary-blue);
            font-family: 'Montserrat', sans-serif;
            position: relative;
            padding-bottom: 10px;
        }
        
        .widget-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(to right, var(--primary-green), var(--primary-blue));
        }
        
        .search-form {
            display: flex;
        }
        
        .search-input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-right: none;
            border-radius: 4px 0 0 4px;
            font-size: 16px;
        }
        
        .search-button {
            background: var(--primary-green);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .search-button:hover {
            background: var(--dark-green);
        }
        
        .recent-posts {
            list-style: none;
        }
        
        .recent-post {
            display: flex;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .recent-post:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .recent-image {
            width: 80px;
            height: 80px;
            border-radius: 6px;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .recent-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .recent-content h4 {
            font-size: 1rem;
            margin-bottom: 5px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .recent-content h4 a {
            color: var(--dark-blue);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .recent-content h4 a:hover {
            color: var(--primary-green);
        }
        
        .recent-content .post-date {
            font-size: 14px;
            color: #666;
        }
        
        .categories {
            list-style: none;
        }
        
        .categories li {
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .categories li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .categories a {
            color: #333;
            text-decoration: none;
            display: flex;
            justify-content: space-between;
            transition: color 0.3s;
        }
        
        .categories a:hover {
            color: var(--primary-green);
        }
        
        .categories span {
            background: var(--light-blue);
            color: white;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 12px;
        }
        
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .tag-small {
            background: #eee;
            color: #333;
            padding: 5px 12px;
            border-radius: 30px;
            font-size: 14px;
            transition: all 0.3s;
        }
        
        .tag-small:hover {
            background: var(--primary-green);
            color: white;
        }
        
       
        
        /* Gallery Section */
        .gallery {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f9f9f9, var(--gray));
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            height: 250px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        
        .gallery-overlay h3 {
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        
      /* Properties Section */
.properties {
    padding: 80px 0;
    background-color: var(--white);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.property-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-green);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.property-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.property-card:hover .property-overlay {
    opacity: 1;
}

.property-content {
    padding: 20px;
}

.property-price {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #777;
    margin-bottom: 10px;
    font-size: 14px;
}

.property-content h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.property-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.property-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 12px;
    color: #777;
}

.property-features .feature i {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.property-agent {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.agent-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.agent-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-info {
    flex: 1;
}

.agent-name {
    display: block;
    font-weight: 600;
    font-size: 14px;
}

.agent-phone {
    display: block;
    font-size: 12px;
    color: #777;
}

/* Property Details Page */
.property-details {
    padding: 60px 0;
}

.property-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.property-header h1 {
    font-size: 2.2rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.property-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-location {
    color: #777;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.property-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.property-gallery {
    margin-bottom: 30px;
}

.main-image {
    height: 400px;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail {
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-description {
    margin-bottom: 30px;
}

.property-description h2,
.property-features h2,
.property-agent h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
    position: relative;
    padding-bottom: 10px;
}

.property-description h2::after,
.property-features h2::after,
.property-agent h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-green), var(--primary-blue));
}

.property-description p {
    line-height: 1.8;
    color: #555;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.features-grid .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-grid .feature i {
    font-size: 20px;
    color: var(--primary-blue);
    width: 30px;
    text-align: center;
}

.agent-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    gap: 15px;
}

.agent-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.agent-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-details {
    flex: 1;
}

.agent-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.agent-title {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.agent-contact p {
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
}

.agent-contact i {
    width: 20px;
    color: var(--primary-blue);
}

.btn-contact {
    margin-top: 15px;
    width: 100%;
}

.property-map {
    margin-top: 40px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
    position: relative;
    animation: modalopen 0.3s;
}

@keyframes modalopen {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close-modal:hover {
    color: var(--primary-blue);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .property-content {
        grid-template-columns: 1fr;
    }
    
    .property-info {
        order: -1;
    }
}

@media (max-width: 768px) {
    .property-header h1 {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .property-header h1 {
        font-size: 1.5rem;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-content {
        margin: 10% auto;
        width: 90%;
    }
}
        
        .feature {
            text-align: center;
        }
        
        .feature-value {
            font-weight: 700;
            color: var(--primary-blue);
        }
        
        .feature-label {
            font-size: 12px;
            color: #777;
        }
        
        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f9f9f9, var(--gray));
        }
        
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .contact-info {
            background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
            padding: 40px;
            border-radius: 10px;
            color: white;
        }
        
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            position: relative;
        }
        
        .contact-info h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: white;
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-details p {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 18px;
        }
        
        .contact-details i {
            margin-right: 15px;
            font-size: 20px;
            width: 30px;
        }
        
        .contact-form {
            background-color: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .contact-form h3 {
            font-size: 1.8rem;
            color: var(--primary-blue);
            margin-bottom: 30px;
            position: relative;
        }
        
        .contact-form h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, var(--primary-green), var(--primary-blue));
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary-green);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 100, 0, 0.1);
        }
        
        textarea.form-control {
            height: 150px;
            resize: vertical;
        }
        
        .form-submit {
            text-align: center;
        }
        
        .success-message {
            background-color: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            text-align: center;
            display: <?php echo $form_success ? 'block' : 'none'; ?>;
        }
        
        /* Admin Section */
        .admin-login {
            padding: 100px 0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
        }
        
        .login-box {
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            padding: 40px;
            width: 100%;
            max-width: 450px;
        }
        
        .login-box h2 {
            text-align: center;
            color: var(--primary-blue);
            margin-bottom: 30px;
        }
        
        .login-logo {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .login-logo .logo-image {
            margin: 0 auto;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-blue);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--light-green);
        }
        
        .footer-logo .slogan {
            color: var(--light-blue);
            font-size: 16px;
            margin-bottom: 20px;
        }
        
        .footer-links h4 {
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(to right, var(--primary-green), var(--primary-blue));
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: var(--light-green);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
            color: #aaa;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content,
            .contact-wrapper {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            .header-top-content {
                flex-direction: column;
                gap: 10px;
            }
            
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 0;
                text-align: center;
                padding: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h2 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero h2 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .gallery-grid,
            .blog-grid,
            .properties-grid {
                grid-template-columns: 1fr;
            }
        }
   