@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #9feb25;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
    --background: #f9fafb;
    --white: #ffffff;
    --background-image: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    line-height: 1.6;
    background-color: #000000;
    background-image: url('asset/rls.jpg'), url('asset/pk1.jpg'), url('asset/rsl.jpg');
    background-size: cover, cover, cover;
    background-position: center top, center center, center bottom;
    background-attachment: fixed, fixed, fixed;
    background-repeat: no-repeat, no-repeat, no-repeat;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, rgba(34, 37, 63, 0.98), rgba(42, 128, 255, 0.92));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #f9a826;
}

.nav-brand {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: transparent;
    background: linear-gradient(90deg, #2563eb, #9333ea);
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
}

.nav-brand::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 3.5rem;
    height: 0.25rem;
    background: linear-gradient(90deg, #2563eb, #9333ea);
    border-radius: 999px;
}

.brand-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    line-height: 1.05;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Hero Section - MODIFIED to be full viewport height and video full */
.hero {
    position: relative;
    overflow: hidden;
    height: 100vh;                     /* full viewport height */
    min-height: 100vh;                /* ensure full height */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.hero-video-wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;               /* cover the entire area */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Ensure the iframe video covers full screen */
.hero-video-wrap iframe {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 6rem 20px;
    width: 100%;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #d97706;
    transform: translateY(-2px);
}

.btn-search {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 2rem;
}

/* Search Section */
.search-section {
    background: var(--background);
    padding: 3rem 20px;
    margin: -2rem 0 0 0;
}

.search-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.search-form input,
.search-form select {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
}

/* Featured Section */
.featured-section {
    padding: 4rem 20px;
}

.featured-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* Properties Grid */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.property-card {
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.property-image {
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
}

.property-info {
    padding: 1.5rem;
}

.property-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.property-info .location {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.property-info .description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.property-details {
    display: flex;
    justify-content: space-around;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 1rem 0;
    font-size: 0.9rem;
}

.property-details span {
    text-align: center;
}

.property-info .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Why Us Section */
.why-us {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('asset/pk1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 4rem 20px;
    color: var(--white);
}

.why-us h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature p {
    color: var(--text-light);
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 4rem 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.large-stats {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

/* CTA Section */
.cta-section {
    background: var(--white);
    padding: 3rem 20px;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    margin: 2rem 0;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 20px 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 3rem 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.listings-page-header {
    background: linear-gradient(rgba(10, 10, 10, 0.45), rgba(10, 10, 10, 0.45)), url('asset/rsl.jpg');
    background-size: cover;
    background-position: center;
}

/* Listings Page */
.listings-container {
    padding: 2rem 20px;
}

.listings-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.filters-sidebar {
    background: var(--background);
    padding: 2rem;
    border-radius: 0.75rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filters-sidebar h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
}

.listings-main {
    background: var(--background);
    padding: 2rem;
    border-radius: 0.75rem;
}

.listings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.listings-header select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.listing-card {
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.listing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.listing-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    position: relative;
}

.listing-image-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 100px);
    gap: 0.25rem;
    background: #111111;
}

.listing-gallery-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    min-height: 100px;
}

.listing-gallery-main {
    grid-row: span 2;
}

.listing-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    font-weight: bold;
}

.listing-info {
    padding: 1.5rem;
}

.listing-info h3 {
    margin-bottom: 0.5rem;
}

.listing-specs {
    display: flex;
    justify-content: space-around;
    margin: 1rem 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.listing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.listing-footer .price {
    font-weight: bold;
    color: var(--primary-color);
}

/* Property Details Page */
.property-details-container {
    padding: 2rem 20px;
}

.property-details-wrapper {
    max-width: 1200px;
}

.property-main-image {
    width: 100%;
    height: 500px;
    margin-bottom: 2rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
}

.property-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 0.75rem;
    margin: 1.5rem 0 2rem;
}

.gallery-image {
    min-height: 150px;
    border-radius: 0.5rem;
    background: #2a2a2a;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-image-large {
    grid-row: span 2;
    min-height: 315px;
}

.property-details-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    margin-bottom: 3rem;
}

.details-left {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.details-location {
    color: #f9a826;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.details-price {
    font-size: 2rem;
    color: #9333ea;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.property-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem;
    background: #0a0a0a;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.spec {
    text-align: center;
    padding: 1.5rem;
    background: #2a2a2a;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.spec h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.spec p {
    font-size: 1.5rem;
    font-weight: bold;
    color: #9333ea;
}

.details-left h2 {
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #9333ea;
    padding-bottom: 0.5rem;
}

.details-left h3 {
    color: #ffffff;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.details-left p {
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.amenities-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1rem 0 2rem 0;
}

.amenities-list li {
    padding: 0.75rem;
    background: #2a2a2a;
    border-left: 4px solid #9333ea;
    padding-left: 1rem;
    color: #d0d0d0;
    border-radius: 0.25rem;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-card {
    background: #2a2a2a;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid #9333ea;
}

.highlight-card h4 {
    color: #f9a826;
    margin-bottom: 0.75rem;
}

.highlight-card p {
    color: #d0d0d0;
    line-height: 1.6;
}

/* Contact Card */
.contact-card,
.info-card,
.share-card {
    background: #2a2a2a;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}


.contact-card h3,
.info-card h3,
.share-card h3 {
    margin-bottom: 1rem;
    color: #f9a826;
}

.agent-info {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #d0d0d0;
}

.agent-avatar {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background: #1a1a1a;
    color: #ffffff;
    font-family: inherit;
}

.info-card ul,
.contact-card .agent-info {
    list-style: none;
}

.info-card li {
    margin-bottom: 0.75rem;
    color: #d0d0d0;
}

.info-card strong {
    color: #f9a826;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888888;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.info-card p {
    color: #d0d0d0;
    margin-bottom: 0.5rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    flex: 1;
    padding: 0.75rem;
    background: #9333ea;
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--secondary-color);
}

/* Related Properties */
.related-properties {
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.related-properties h2 {
    margin-bottom: 2rem;
}

/* About Page */
.about-container {
    padding: 3rem 20px;
}

.company-info-container {
    background: linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)), url('asset/rsl.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-section {
    background: linear-gradient(135deg, #064e3b 0%, #0f7a4f 100%);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 30px rgba(6, 78, 59, 0.25);
    margin-bottom: 3rem;
}

.about-section h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.mission-statement {
    background: var(--background);
    color: #0a0a0a;
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.mission-statement p {
    color: #0a0a0a;
}

.vision-text {
    color: #90ee90;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.value-card h3 {
    margin-bottom: 1rem;
    color: #0a0a0a;
    font-size: 1.3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    margin-bottom: 0.75rem;
    color: #0a0a0a;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.member-avatar {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.member-role {
    color: #0a0a0a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.commitment-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.commitment-item {
    background: var(--background);
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.commitment-item h3 {
    color: #0a0a0a;
    margin-bottom: 0.5rem;
}

.about-container,
.about-container h2,
.about-container h3,
.about-container h4,
.about-container p,
.about-container li,
.about-container span,
.about-container a {
    color: #0a0a0a;
}

.about-section,
.about-section h2,
.about-section h3,
.about-section h4,
.about-section p,
.about-section li,
.about-section span,
.about-section a {
    color: #f4fff8;
}

.about-section .mission-statement,
.about-section .mission-statement p,
.about-section .value-card,
.about-section .value-card h3,
.about-section .value-card p,
.about-section .service-item,
.about-section .service-item h3,
.about-section .service-item p,
.about-section .team-member,
.about-section .team-member h4,
.about-section .team-member p,
.about-section .commitment-item,
.about-section .commitment-item h3,
.about-section .commitment-item p {
    color: #0a0a0a;
}

/* Contact Page */
.contact-container {
    padding: 2rem 20px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
}

.contact-form-large {
    display: grid;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.form-group {
    display: grid;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(83, 235, 37, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.contact-info-section h2 {
    margin-bottom: 2rem;
    color: #0a0a0a;
}

.contact-method {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: var(--primary-color);
    text-decoration: none;
}

#contact-phone,
#contact-phone-note,
#contact-address {
    color: #0a0a0a;
}

.text-small {
    font-size: 0.85rem;
    color: var(--text-light);
}

.office-hours {
    list-style: none;
    margin-top: 0.5rem;
}

.office-hours li {
    padding: 0.25rem 0;
}

/* Offices Section */
.offices-section {
    background: var(--background);
    padding: 3rem 20px;
    margin-top: 2rem;
}

.offices-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.offices-section > .container > p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.office-region {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.office-region h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.office-region ul {
    list-style: none;
}

.office-region li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.office-region li:last-child {
    border-bottom: none;
}

.office-region strong {
    color: var(--text-dark);
}

/* FAQ Section */
.faq-section {
    padding: 3rem 20px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Tour Form */
.tour-form {
    display: grid;
    gap: 0.75rem;
}

.tour-form label {
    font-weight: 600;
    color: var(--text-dark);
}

.tour-form input,
.tour-form select {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .properties-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .listings-wrapper {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: static;
    }

    .property-details-grid {
        grid-template-columns: 1fr;
    }

    .property-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-image-large {
        grid-column: span 2;
        min-height: 260px;
    }

    .details-right {
        position: static;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .about-container {
        padding: 1rem 20px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .listing-card {
        margin-bottom: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .amenities-list {
        grid-template-columns: 1fr;
    }

    .property-main-image {
        height: 320px;
    }

    .property-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-image,
    .gallery-image-large {
        grid-column: auto;
        grid-row: auto;
        min-height: 220px;
    }

    .offices-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}
