@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #555555;
    --accent-color: #D4AF37;
    /* Gold-ish accent for a premium feel */
    --dark-blue: #23313A;
    /* Requested dark blue */
    --background-color: #f9f9f9;
    --white: #ffffff;
    --text-color: #333333;
    --light-text: #777777;
    --border-radius: 8px;
    --font-main: 'Outfit', sans-serif;
    --container-width: 1200px;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

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

.logo img {
    height: 80px;
    /* Adjust based on actual logo appearance */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary-color);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.btn-contact {
    border: 1px solid var(--primary-color);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
    /* Offset for fixed navbar */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay for text readability */
    z-index: -1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Sections General */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 60px;
    font-weight: 300;
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.content-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.content-text p {
    margin-bottom: 20px;
}

.highlight-text {
    font-weight: 500;
    color: var(--primary-color);
    border-left: 3px solid var(--accent-color);
    padding-left: 20px;
}

/* Investments Section */
.investments-section {
    background-color: var(--dark-blue);
}

.investments-section .section-title {
    color: var(--white);
}

.investments-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.card-content p {
    font-size: 0.95rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
    background-image: url('images/contact_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    /* Extra padding to show off the image */
}

.contact-section .section-title,
.contact-section .section-subtitle {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    display: inline-block;
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #000;
}

.contact-info {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.email-intro {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.btn-email {
    display: inline-block;
    border: 2px solid var(--dark-blue);
    color: var(--dark-blue);
    padding: 12px 25px;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background-color: var(--dark-blue);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 30px;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    text-align: left;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-column p,
.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 1rem;
    display: block;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}



/* Responsive */
@media (max-width: 900px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 50px 0;
    }
}

/* Detailed Investments Page */
.page-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    margin-top: 20px;
}

.detailed-investments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.detailed-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.detailed-card:hover {
    transform: translateY(-5px);
}

.detailed-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.detailed-content {
    padding: 30px;
}

.detailed-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.detailed-content p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Nav Active State */
.nav-links a.active {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .detailed-investments-grid {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.about-grid-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.intro-item h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 5px;
}

.about-banner {
    margin-bottom: 60px;
}

.about-banner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.about-text {
    margin-bottom: 80px;
}

/* Split Layout Generic */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.split-layout.align-center {
    align-items: center;
}

/* Location Section */
.location-section {
    background-color: var(--white);
}

.location-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.location-info h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mb-4 {
    margin-bottom: 30px;
}

/* Testimonial Section */
.rounded-img {
    width: 100%;
    border-radius: var(--border-radius);
    display: block;
}

.testimonial-card {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
}

.stars {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.6;
}

.reviewer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.reviewer img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

.reviewer span {
    font-weight: 500;
}

@media (max-width: 768px) {

    .about-grid-intro,
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-banner img {
        height: 250px;
    }
}

/* News Page Styles */
.news-container {
    max-width: 900px;
}

.news-item {
    background: var(--white);
    padding: 40px;
    margin-bottom: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--accent-color);
}

.news-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.news-date {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.news-content {
    font-size: 1.05rem;
    color: var(--secondary-color);
}

.news-content p {
    margin-bottom: 15px;
}