/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #C9A962;
    --gold-dark: #B8944D;
    --dark: #1A1A1A;
    --dark-blue: #2C3E50;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-gray: #666666;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

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

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
}

.section-title {
    font-size: 2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

.section-title-light {
    font-size: 2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-gold:hover {
    background-color: var(--gold-dark);
    border-color: var(--gold-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-outline:hover {
    background-color: var(--dark);
    color: var(--white);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.5em;
    text-transform: uppercase;
}

/* Introduction Section */
.intro {
    padding: 100px 0;
    background-color: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.intro-image img {
    width: 60%;
    height: auto;
    object-fit: contain;
    object-position: top;
}

.intro-content {
    padding: 20px 0;
}

.intro-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.intro-buttons {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.learn-more {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--gold-dark);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background-color: var(--dark);
    color: var(--white);
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.section-subdesc {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 3rem;
}

.features-grid .feature:nth-child(4),
.features-grid .feature:nth-child(5) {
    grid-column: span 1;
}

.feature {
    text-align: center;
    padding: 30px 20px;
}

.feature-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.feature h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.feature p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.cta-text {
    text-align: center;
    font-size: 1rem;
    color: var(--gold);
    font-style: italic;
}

/* Featured Property Section */
.featured {
    padding: 100px 0;
    background-color: var(--white);
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.featured-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.featured-location {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.featured-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.featured-details {
    list-style: none;
    margin-bottom: 2rem;
}

.featured-details li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* Panorama Section */
.panorama {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.panorama-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.panorama-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.panorama-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2;
}

.panorama-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.panorama-content h2 {
    font-size: 2.5rem;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
}

.panorama-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.section-subtitle {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-gray);
    margin-top: -2rem;
    margin-bottom: 2.5rem;
}

.services-grid + .section-subtitle {
    margin-top: 3rem;
}

.service-card-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 25px 25px;
    gap: 30px;
    flex-grow: 1;
}

.service-card-left {
    flex: 1;
}

.service-card-left p {
    padding: 0;
    margin-bottom: 15px;
}

.key-points {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
    margin-left: 23px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.key-points li {
    margin-bottom: 5px;
}

.key-points li b {
    color: var(--dark);
}

.service-card-left .intro-buttons {
    padding: 0;
    margin-top: 0;
}

.service-card-left .intro-buttons .btn {
    width: auto;
}

.price-tag {
    text-align: right;
    flex-shrink: 0;
    align-self: flex-end;
    padding-bottom: 5px;
    padding-right: 40px;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--gold);
}

.price-value {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.02em;
}

.services-grid {
    display: grid;
    gap: 40px;
}

.service-card {
    background: var(--white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-images {
    display: flex;
    gap: 15px;
}

.service-images .service-image {
    flex: 1;
    overflow: hidden;
}

.service-images-3 .service-image {
    flex: 1;
}

.service-image {
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.3rem;
    padding: 25px 25px 10px;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
    padding: 0 25px 15px;
    flex-grow: 1;
}

.service-card .intro-buttons {
    padding: 0 25px 25px;
    margin-top: auto;
}

.service-card .intro-buttons .btn {
    width: 100%;
    text-align: center;
}

/* Assets Section */
.assets {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.assets-dark {
    background-color: var(--dark);
}

.assets-dark .asset-desc {
    color: rgba(255, 255, 255, 0.8);
}

.assets-dark .asset-desc strong {
    color: var(--white);
}

.assets-logo {
    bottom: 30px;
    left: 30px;
}

.assets-logo img {
    width: auto;
    height: 250px;
    opacity: 0.9;
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--dark);
}

.assets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.asset-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.asset-desc strong {
    color: var(--dark);
}

/* Clients Section */
.clients {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.clients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.client-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.client-list {
    list-style: none;
}

.client-list li {
    padding: 10px 0;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

.client-images img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--dark);
    color: var(--white);
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}

.contact-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    gap: 60px;
    text-align: center;
}

.contact-item h4 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

.logo-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold);
    letter-spacing: 0.2em;
}

/* Footer */
.footer {
    padding: 30px 0;
    background-color: #111;
    text-align: center;
}

.footer p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ==================== */
/* RESPONSIVE DESIGN    */
/* ==================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
        letter-spacing: 0.3em;
    }

    .intro-grid,
    .about-grid,
    .featured-grid,
    .clients-grid {
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-title,
    .section-title-light {
        font-size: 1.5rem;
        letter-spacing: 0.15em;
        margin-bottom: 2rem;
    }

    /* Hero */
    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 0.2em;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.3em;
    }

    /* Intro */
    .intro {
        padding: 60px 0;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-image {
        order: 0;
    }

    .intro-image img {
        width: 100%;
        height: auto;
    }

    .intro-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        text-align: center;
        padding: 12px 24px;
    }

    /* About */
    .about {
        padding: 60px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image img {
        height: 300px;
    }

    /* Why Choose */
    .why-choose {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature {
        padding: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .feature:last-child {
        border-bottom: none;
    }

    .feature-number {
        font-size: 2rem;
    }

    /* Featured */
    .featured {
        padding: 60px 0;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .featured-image img {
        height: 300px;
    }

    .featured-content h3 {
        font-size: 1.5rem;
    }

    /* Panorama */
    .panorama {
        height: 50vh;
        min-height: 350px;
    }

    .panorama-content h2 {
        font-size: 1.8rem;
        letter-spacing: 0.2em;
    }

    .panorama-content p {
        font-size: 1rem;
    }

    /* Services */
    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-images {
        flex-direction: column;
        gap: 10px;
    }

    .service-images .service-image {
        height: 200px;
    }

    .service-image {
        height: 200px;
    }

    /* Assets */
    .assets {
        padding: 60px 0;
    }

    .assets-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Clients */
    .clients {
        padding: 60px 0;
    }

    .clients-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .client-images img {
        height: 300px;
    }

    /* Contact */
    .contact {
        padding: 60px 0;
    }

    .contact-info {
        flex-direction: column;
        gap: 30px;
    }

    .contact-item {
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .contact-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 0.15em;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }

    .section-title,
    .section-title-light {
        font-size: 1.25rem;
    }

    .btn {
        font-size: 0.8rem;
        padding: 10px 20px;
    }

    .intro-image img {
        width: 100%;
        height: auto;
    }

    .panorama-content h2 {
        font-size: 1.4rem;
    }

    .assets-logo {
        position: relative;
        bottom: 0;
        left: 0;
    }
}
