/* Core Color Tokens */
:root {
    --color-grey: #a7a9ac;
    --color-blue: #00baf2;
    --color-green: #a6ce39;
    --color-dark: #1f252b;
    --color-light: #f8f9fa;
    --color-white: #ffffff;
    --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: #333333;
    line-height: 1.6;
    background-color: var(--color-white);
}

a {
    color: var(--color-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-green);
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--color-light);
}

/* Top Bar */
.top-bar {
    background-color: var(--color-dark);
    color: var(--color-white);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 2px solid var(--color-blue);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar a {
    color: #ffffff;
}

.top-bar i {
    color: var(--color-blue);
    margin-right: 5px;
}

/* Header & Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.brand-logo img {
    max-height: 55px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 20px;
}

.nav-menu a {
    font-weight: 600;
    font-size: 0.95rem;
    color: #444;
}

.btn-cta-nav {
    background-color: var(--color-green);
    color: var(--color-white) !important;
    padding: 8px 16px;
    border-radius: 4px;
}

.btn-cta-nav:hover {
    background-color: #92b72f;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-dark);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(31,37,43,0.85), rgba(0,186,242,0.75)), url('../images/investments.jpg') center/cover no-repeat;
    color: var(--color-white);
    padding: 120px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.badge {
    background-color: var(--color-green);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-section h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: #0098c7;
    color: var(--color-white);
}

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

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

.btn-accent {
    background-color: var(--color-green);
    color: var(--color-white);
}

.btn-accent:hover {
    background-color: #8fb52e;
    color: var(--color-white);
}

.block-btn {
    display: block;
    width: 100%;
    margin-top: 10px;
}

/* CTA Strip */
.cta-strip {
    background-color: var(--color-grey);
    color: var(--color-white);
    padding: 40px 0;
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--color-dark);
}

.underline {
    height: 4px;
    width: 70px;
    background-color: var(--color-blue);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* About Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.quote {
    border-left: 4px solid var(--color-green);
    padding-left: 15px;
    margin-top: 20px;
    font-style: italic;
    color: #555;
}

.quote cite {
    display: block;
    margin-top: 5px;
    font-style: normal;
    font-weight: bold;
}

.hours-card {
    background: var(--color-light);
    padding: 20px;
    border-radius: 8px;
    border-top: 4px solid var(--color-blue);
    margin-top: 20px;
}

.hours-card ul {
    list-style: none;
    margin: 10px 0;
}

.small-text {
    font-size: 0.85rem;
    color: #666;
}

/* Grid Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

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

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

.card-body {
    padding: 20px;
}

.card-body h3 {
    color: var(--color-blue);
    margin-bottom: 10px;
}

/* Legal Services */
.attorney-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.law-img {
    border-radius: 8px;
    margin-bottom: 20px;
}

.custom-list {
    list-style: none;
    margin-top: 15px;
}

.custom-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-list i {
    color: var(--color-green);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-item {
    margin: 15px 0;
}

.contact-item i {
    color: var(--color-blue);
    width: 25px;
}

.action-buttons {
    margin-top: 25px;
}

/* Footer Section */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 50px 0 20px;
    font-size: 0.9rem;
}

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

.footer-col h4 {
    color: var(--color-blue);
    margin-bottom: 15px;
}

.footer-col p {
    color: var(--color-grey);
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--color-green);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .about-grid, .attorney-container, .contact-wrapper, .footer-grid {
        grid-template-columns: 1fr;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-white);
        flex-direction: column;
        padding: 20px;
        display: none;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-section h1 {
        font-size: 2rem;
    }
}