:root {
    /* Colors */
    --primary: #2c3e50;
    /* Slate Blue */
    --primary-dark: #1a252f;
    --accent: #d4af37;
    /* Gold */
    --accent-light: #f3cf55;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --glass: rgba(255, 255, 255, 0.9);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    /* Spacing */
    --section-padding: 80px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    /* Elegant serif for headings */
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold-text {
    color: var(--accent);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary-dark);
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* --- Navigation --- */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary);
}

.nav-links li a:hover {
    color: var(--accent);
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: 0.3s;
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-link {
    padding: 15px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
    color: var(--primary);
}

/* --- Hero --- */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* --- Portal Section --- */
.portal-section {
    position: relative;
    margin-top: -60px;
    /* Overlap hero */
    z-index: 10;
    padding-bottom: 60px;
}

.portal-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border-top: 4px solid var(--accent);
}

.portal-card h2 {
    margin-bottom: 15px;
}

.portal-card p {
    margin-bottom: 25px;
    color: var(--text-light);
}

.small-text {
    font-size: 0.85rem;
    margin-top: 15px;
    opacity: 0.7;
}

/* --- Services / Pricing --- */
.services-section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.underline {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.pricing-card.popular {
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tag {
    position: absolute;
    top: 10px;
    right: -30px;
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 30px;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.pricing-card ul {
    margin-bottom: 30px;
    text-align: left;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-light);
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

/* --- Partners --- */
.partners-section {
    padding: var(--section-padding);
    background-color: #fff;
    /* White background to distinct from gray body */
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.partner-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.partner-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.partner-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--accent);
    display: block;
}

.partner-card h3 {
    margin-bottom: 5px;
}

.role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.bio {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- Footer --- */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand h4 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 5px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Hide default nav */
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero {
        padding: 120px 0 100px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Fair Value Promise --- */
.fair-value-section {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.05) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.fair-value-content {
    max-width: 800px;
    margin: 0 auto;
}

.fair-value-content h3 {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 1.8rem;
}

.fair-value-content p {
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* --- Contact Section --- */
.contact-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.btn-block {
    width: 100%;
    margin-top: 10px;
}

.form-status {
    text-align: center;
    font-size: 0.95rem;
    margin-top: 15px;
    font-weight: 500;
    min-height: 24px;
}

.form-status.sending {
    color: var(--primary);
}

.form-status.success {
    color: #27ae60;
}

.form-status.error {
    color: #c0392b;
}

/* --- Location Section --- */
.location-section {
    padding: var(--section-padding);
    padding-bottom: 100px;
    /* Increased bottom spacing */
    /* Added extra spacing */
    background-color: var(--white);
}

.location-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.location-text {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.location-text h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--primary);
}

.location-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.location-map {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: center;
}

.location-map img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 50px;
    /* Optional: add a subtle shadow or border if needed */
    /* box-shadow: var(--shadow); */
}

@media (max-width: 768px) {
    .location-content {
        flex-direction: column;
        text-align: center;
    }
}