* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #1a252f, #2c3e50);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 20px;
    font-family: "Georgia", serif;
}

.logo svg {
    height: 50px;
    width: 50px;
    stroke: #B48A12;
}

.logo span {
    font-family: 'Playfair Display', serif;
    color: #f1f1f1;
    font-size: 1.5rem;
    margin-left: 1rem;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.navbar a {
    color: #f1f1f1;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #d4a017;
}

nav ul li.active a {
    color: #d4a017;
    font-weight: bold;
    border-bottom: 2px solid #d4a017;
}

nav ul li.active {
    background: none;
}

/* Hero Section */
.hero {
    background: url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.consultation-form {
    background: rgba(255,255,255,0.95);
    padding: 1.5rem;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.consultation-form input {
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.consultation-form button {
    background: #d4a017;
    color: #fff;
    border: none;
    padding: 0.75rem;
    border-radius: 6px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

.consultation-form button:hover {
    background: #b38912;
}

/* General Section */
.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a252f;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.section h2 svg {
    width: 40px;
    height: 40px;
}

/* About Section */
.about {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a252f;
    margin-bottom: 1rem;
    text-align: center;
}

.about p {
    margin-bottom: 1.5rem;
    color: #555;
    text-align: center;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.indicator-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.indicator-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a252f;
    margin-bottom: 1rem;
}

/* Property Highlights */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a252f;
}

/* Gallery */
.gallery {
    background: #1a252f;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

.view-all-btn {
    display: inline-block;
    margin-top: 2rem;
    background: #d4a017;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    transition: background 0.3s ease;
}

.view-all-btn:hover {
    background: #b38912;
}

/* Testimonials */
.testimonials {
    background: #fff;
    padding: 2rem;
    margin-top: 2rem;
}

.testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a252f;
    margin-bottom: 2rem;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
}

.testimonial-card h4 {
    font-family: 'Playfair Display', serif;
    color: #1a252f;
    margin-top: 1rem;
}

/* Agents */
.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.agent-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.agent-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.agent-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a252f;
}

.agent-card a {
    color: #d4a017;
    text-decoration: none;
}

.agent-card a:hover {
    color: #b38912;
}

/* Listings */
.listings {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.listings h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a252f;
    text-align: center;
    margin-bottom: 1rem;
}

.filter-search {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-search select,
.filter-search input {
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
}

.filter-search button {
    background: #d4a017;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-family: 'Playfair Display', serif;
    cursor: pointer;
    transition: background 0.3s ease;
}

.filter-search button:hover {
    background: #b38912;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.listing-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.listing-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.listing-card h3 {
    font-family: 'Playfair Display', serif;
    padding: 1rem;
    color: #1a252f;
    font-size: 1.4rem;
}

.listing-card p {
    padding: 0 1rem 1rem;
    color: #555;
}

.listing-card a {
    display: block;
    margin: 0 1rem 1rem;
    background: #d4a017;
    color: #fff;
    padding: 0.5rem;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    transition: background 0.3s ease;
}

.listing-card a:hover {
    background: #b38912;
}

/* Subscription */
.subscription {
    background: #1a252f;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.subscription form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 1rem auto;
}

.subscription input {
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    width: 70%;
    font-size: 1rem;
}

.subscription button {
    background: #d4a017;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-family: 'Playfair Display', serif;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscription button:hover {
    background: #b38912;
}

/* Footer */
.footer {
    background: linear-gradient(to right, #1a252f, #2c3e50);
    color: #f1f1f1;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #d4a017;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #f1f1f1;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #d4a017;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
}

.back-to-top:hover {
    background: #b38912;
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.7);
    transition: background 0.3s ease;
}

.hamburger:hover {
    background-color: rgba(0, 0, 0, 0.85);
}

.hamburger span {
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    display: block;
}

/* MOBILE MENU */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: #1a252f;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 998;
    pointer-events: auto;
}

.mobile-nav a {
    padding: 1rem;
    color: #fff;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    pointer-events: auto;
    display: block;
}

.mobile-nav a:hover {
    background: rgba(255,255,255,0.1);
}

/* SHOW MOBILE NAV */
.mobile-nav.active {
    display: flex;
}

/* Tour Section */
.tour {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tour h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a252f;
    margin-bottom: 1rem;
}

.tour-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.tour-images img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.tour-details {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tour-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a252f;
    margin-bottom: 1rem;
}

.tour-details p {
    margin-bottom: 1rem;
    color: #555;
}

.tour-details a {
    display: block;
    background: #d4a017;
    color: #fff;
    padding: 0.75rem;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    transition: background 0.3s ease;
}

.tour-details a:hover {
    background: #b38912;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 2rem;
    }

    .navbar {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .logo {
        flex-grow: 1;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .consultation-form {
        padding: 1rem;
    }

    .highlights-grid,
    .gallery-grid,
    .testimonial-grid,
    .agents-grid,
    .listings-grid,
    .trust-indicators,
    .tour-content {
        grid-template-columns: 1fr;
    }

    .filter-search {
        flex-direction: column;
        align-items: center;
    }

    .filter-search select,
    .filter-search input {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .tour h2 {
        font-size: 2rem;
    }
}

/* Contact Page */
.contact {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a252f;
    margin-bottom: 2rem;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d4a017;
    outline: none;
}

.contact-form button {
    background: #d4a017;
    color: #fff;
    border: none;
    padding: 0.75rem;
    border-radius: 6px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #b38912;
}

.map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 12px;
}

/* Responsive Contact Page */
@media (max-width: 768px) {
    .contact {
        grid-template-columns: 1fr;
    }

    .contact h2 {
        font-size: 2rem;
    }
}

/* About Page - Hero Section */
.about-hero {
    background: url('https://images.unsplash.com/photo-1505691938895-1758d7feb511') center/cover no-repeat;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.about-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.2rem;
}

/* Our Team Section */
.our-team {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.our-team h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a252f;
    margin-bottom: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.team-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a252f;
    margin-bottom: 0.5rem;
}

.team-card p {
    color: #555;
}

/* About CTA Section */
.about-cta {
    background: #1a252f;
    color: #fff;
    text-align: center;
    padding: 3rem 2rem;
}

.about-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-cta .view-all-btn {
    background: #d4a017;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    transition: background 0.3s ease;
}

.about-cta .view-all-btn:hover {
    background: #b38912;
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }

    .about-hero-content p {
        font-size: 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

.video-intro {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #f8f9fa;
    position: relative;
    z-index: 1;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.video-container video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
    pointer-events: auto;
    position: relative;
}
